/* ==========================================================================
   Treat Section — Premium Design Matching Travorea Site Style
   Color identity: Warm coral (#e8654a) → amber (#f59e0b)
   ========================================================================== */

/* ── Hero ── */
.treat-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.5) 100%),
                linear-gradient(135deg, #e8654a 0%, #f59e0b 100%);
    color: white;
    padding: var(--spacing-xxl, 5rem) 0 var(--spacing-xl, 3rem);
    text-align: center;
    min-height: 35vh;
    display: flex;
    align-items: center;
}
.treat-hero h1 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 3rem;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}
.treat-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.treat-hero .breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}
.treat-hero .breadcrumb a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Sticky Category Tabs ── */
.treat-tabs {
    position: sticky;
    top: 60px;
    z-index: 50;
    background: white;
    border-bottom: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.treat-tabs .container {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.treat-tabs .container::-webkit-scrollbar {
    display: none;
}
.treat-tab {
    padding: 1rem 1.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted, #888);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--font-body, inherit);
    letter-spacing: 0.3px;
}
.treat-tab:hover {
    color: #e8654a;
    background: rgba(232,101,74,0.04);
}
.treat-tab.active {
    color: #e8654a;
    border-bottom-color: #e8654a;
    background: rgba(232,101,74,0.04);
}

/* ── Category Sections ── */
.treat-section {
    padding: var(--spacing-xxl, 4rem) 0;
    border-bottom: none;
}
.treat-section:nth-child(even) {
    background: var(--bg-light, #f8f9fa);
}
.treat-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.treat-section-header .section-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.treat-section-header h2 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 2rem;
    margin: 0;
    color: var(--text-dark, #1a1a1a);
}
.treat-section-header p {
    color: var(--text-light, #666);
    margin: 0.25rem 0 0;
    font-size: 1rem;
}

/* Icon backgrounds */
.icon-food { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.icon-shopping { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.icon-souvenirs { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.icon-fashion { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.icon-wellness { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.icon-nightlife { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
.icon-luxury { background: linear-gradient(135deg, #fef9c3, #fde68a); }
.icon-cafe { background: linear-gradient(135deg, #fde8d0, #fed7aa); }

/* ── Budget Grid ── */
.budget-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.budget-column h3 {
    font-size: 1.05rem;
    font-family: var(--font-body, inherit);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid;
    letter-spacing: 0.3px;
}
.budget-column.budget-low h3 { border-color: #10b981; color: #059669; }
.budget-column.budget-mid h3 { border-color: #f59e0b; color: #d97706; }
.budget-column.budget-high h3 { border-color: #ef4444; color: #dc2626; }

/* ── Price Badge ── */
.price-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
    font-family: var(--font-body, inherit);
}
.price-badge.low { background: #d1fae5; color: #059669; }
.price-badge.mid { background: #fef3c7; color: #d97706; }
.price-badge.high { background: #fee2e2; color: #dc2626; }

/* ── Treat Cards ── */
.treat-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-light, #e0e0e0);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.treat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover, 0 8px 30px rgba(0,0,0,0.12));
}
.treat-card h4 {
    font-size: 1.05rem;
    font-family: var(--font-heading, 'Playfair Display', serif);
    margin: 0 0 0.5rem;
    color: var(--text-dark, #1a1a1a);
}
.treat-card p {
    color: var(--text-light, #666);
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
    line-height: 1.6;
}
.treat-card .card-meta {
    font-size: 0.8rem;
    color: var(--text-muted, #888);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f3f4f6;
}

/* Card grids */
.treat-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.treat-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.treat-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

/* ── Subsection headers ── */
.treat-subsection {
    margin-bottom: 2.5rem;
}
.treat-subsection h3 {
    font-size: 1.2rem;
    font-family: var(--font-heading, 'Playfair Display', serif);
    margin-bottom: 1.25rem;
    color: var(--text-dark, #1a1a1a);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ── Tip & Warning boxes ── */
.treat-tip {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border-left: 4px solid #f59e0b;
    padding: 1.25rem 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.treat-tip strong { color: #d97706; }
.treat-warning {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-left: 4px solid #ef4444;
    padding: 1.25rem 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.treat-warning strong { color: #dc2626; }

/* ── Perfect Evening ── */
.evening-itinerary {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(30,27,75,0.3);
}
.evening-itinerary h3 {
    color: #c4b5fd;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}
.evening-step {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}
.evening-step .step-time {
    background: rgba(255,255,255,0.15);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
    backdrop-filter: blur(4px);
}
.evening-step .step-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* ── Luxury cards ── */
.luxury-card {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1px solid #fcd34d;
}
.luxury-card h4::before {
    content: "★ ";
    color: #f59e0b;
}

/* ── Cross-links ── */
.treat-crosslinks {
    background: var(--bg-cream, #fdf8f3);
    padding: var(--spacing-xxl, 4rem) 0;
}
.treat-crosslinks .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ── Treat Index Hero ── */
.treat-index-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.4) 100%),
                linear-gradient(135deg, #e8654a 0%, #f59e0b 100%);
    color: white;
    padding: var(--spacing-xxl, 5rem) 0;
    text-align: center;
    min-height: 35vh;
    display: flex;
    align-items: center;
}
.treat-index-hero h1 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 3.2rem;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}
.treat-index-hero p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}
.treat-category-pills {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}
.treat-category-pills span {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.15);
    transition: background 0.3s;
}
.treat-category-pills span:hover {
    background: rgba(255,255,255,0.35);
}

/* ════════════════════════════════════════
   AI Search Panels — Premium Style
   ════════════════════════════════════════ */
.ai-search-panel {
    background: white;
    border: 1px solid var(--border-light, #e0e0e0);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-soft, 0 4px 20px rgba(0,0,0,0.08));
    position: relative;
    overflow: hidden;
}
.ai-search-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e8654a, #f59e0b);
}
.ai-search-panel h3 {
    font-size: 1.15rem;
    font-family: var(--font-heading, 'Playfair Display', serif);
    color: var(--text-dark, #1a1a1a);
    margin: 0 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ai-search-panel form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}
.ai-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
    min-width: 150px;
}
.ai-field label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted, #888);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.ai-field select,
.ai-field input {
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--border-light, #e0e0e0);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: var(--font-body, inherit);
    background: var(--bg-light, #f8f9fa);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.ai-field select:focus,
.ai-field input:focus {
    outline: none;
    border-color: #e8654a;
    box-shadow: 0 0 0 3px rgba(232, 101, 74, 0.12);
    background: white;
}
.ai-search-btn {
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, #e8654a, #f59e0b);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-family: var(--font-body, inherit);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(232,101,74,0.25);
    letter-spacing: 0.3px;
}
.ai-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 101, 74, 0.35);
}
.ai-loading {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted, #888);
}
.ai-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid #f3f4f6;
    border-top: 3px solid #e8654a;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}
.ai-error {
    text-align: center;
    padding: 2rem;
    color: #dc2626;
    background: #fef2f2;
    border-radius: 12px;
    font-size: 0.95rem;
}
.ai-result-card {
    border-left: 4px solid #e8654a;
}

/* Fashion weather bar */
.fashion-weather {
    display: flex;
    gap: 2rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    flex-wrap: wrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ════════════════════════════════════════
   3-Pillar Cards (Index Page)
   ════════════════════════════════════════ */
.treat-pillars {
    padding: var(--spacing-xxl, 4rem) 0;
    background: var(--bg-cream, #fdf8f3);
}
.treat-pillars h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}
.treat-pillars .section-description {
    text-align: center;
    color: var(--text-light, #666);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1050px;
    margin: 0 auto;
}
.pillar-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 2px solid var(--border-light, #e0e0e0);
    border-top: 5px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-soft, 0 4px 20px rgba(0,0,0,0.08));
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.pillar-card.food { border-top-color: #e8654a; }
.pillar-card.fashion { border-top-color: #7c3aed; }
.pillar-card.shopping { border-top-color: #059669; }
.pillar-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}
.pillar-card.food .pillar-icon { background: linear-gradient(135deg, #fff1ee, #fde8d0); }
.pillar-card.fashion .pillar-icon { background: linear-gradient(135deg, #f3e8ff, #e0e7ff); }
.pillar-card.shopping .pillar-icon { background: linear-gradient(135deg, #d1fae5, #e0f7fa); }
.pillar-card h3 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.5rem;
    margin-bottom: 0.15rem;
}
.pillar-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted, #888);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
}
.pillar-card ul {
    list-style: none;
    padding: 0;
    width: 100%;
    text-align: left;
    margin: 0;
}
.pillar-card ul li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-light, #666);
    border-bottom: 1px solid #f3f4f6;
    line-height: 1.4;
}
.pillar-card ul li:last-child { border-bottom: none; }
.pillar-card ul li::before {
    font-weight: bold;
    margin-right: 0.5rem;
}
.pillar-card.food ul li::before { content: "🍽️ "; }
.pillar-card.fashion ul li::before { content: "👗 "; }
.pillar-card.shopping ul li::before { content: "🛍️ "; }
.pillar-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: white;
    transition: opacity 0.3s, transform 0.2s;
}
.pillar-cta:hover { opacity: 0.9; transform: translateY(-1px); color: white; }
.pillar-card.food .pillar-cta { background: linear-gradient(135deg, #e8654a, #f59e0b); }
.pillar-card.fashion .pillar-cta { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.pillar-card.shopping .pillar-cta { background: linear-gradient(135deg, #059669, #34d399); }
.pillar-discover {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 1.1rem;
    color: var(--text-light, #666);
}

/* ════════════════════════════════════════
   Standalone Tool Pages
   ════════════════════════════════════════ */
.treat-tool-hero {
    color: white;
    padding: var(--spacing-xxl, 5rem) 0 6rem;
    text-align: center;
    min-height: 30vh;
    display: flex;
    align-items: center;
}
.treat-tool-hero h1 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 2.8rem;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}
.treat-tool-hero p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}
.food-hero { background: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.4)), linear-gradient(135deg, #e8654a, #f59e0b); }
.fashion-hero { background: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.4)), linear-gradient(135deg, #7c3aed, #a78bfa); }
.shopping-hero { background: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.4)), linear-gradient(135deg, #059669, #34d399); }

.tool-search-form {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    max-width: 900px;
    margin: -3.5rem auto 2.5rem;
    position: relative;
    z-index: 10;
}
.tool-search-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--text-dark, #1a1a1a);
}
.tool-search-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}
.tool-results {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}
.tool-crosslinks-section {
    background: var(--bg-light, #f8f9fa);
    padding: 3rem 0;
}
.tool-crosslinks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}
.tool-crosslink {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-light, #e0e0e0);
    transition: box-shadow 0.3s, transform 0.3s;
    background: white;
    box-shadow: var(--shadow-soft, 0 4px 20px rgba(0,0,0,0.08));
}
.tool-crosslink:hover {
    box-shadow: var(--shadow-hover, 0 8px 30px rgba(0,0,0,0.12));
    transform: translateY(-3px);
}
.tool-crosslink .crosslink-icon { font-size: 2.5rem; flex-shrink: 0; }
.tool-crosslink h4 { margin: 0 0 0.15rem; font-size: 1.05rem; }
.tool-crosslink p { margin: 0; font-size: 0.85rem; color: var(--text-muted, #888); }

/* ════════════════════════════════════════
   Destination Hero with Background Image
   ════════════════════════════════════════ */
.treat-hero-image {
    background-size: cover;
    background-position: center;
    position: relative;
}
.treat-hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232,101,74,0.75), rgba(245,158,11,0.75));
}
.treat-hero-image .container {
    position: relative;
    z-index: 1;
}

/* ════════════════════════════════════════
   Outfit Gallery (5 outfit images)
   ════════════════════════════════════════ */
.outfit-gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.outfit-gallery-item {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-light, #e0e0e0);
    overflow: hidden;
    box-shadow: var(--shadow-soft, 0 4px 20px rgba(0,0,0,0.08));
    transition: transform 0.3s, box-shadow 0.3s;
}
.outfit-gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover, 0 8px 30px rgba(0,0,0,0.12));
}
.outfit-image-wrap {
    position: relative;
    min-height: 360px;
    background: #f9fafb;
}
.outfit-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.outfit-number {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.outfit-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.outfit-details h4 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #7c3aed;
}
.outfit-details p {
    color: var(--text-light, #666);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Photo upload area */
.photo-upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: border-color 0.3s;
    background: #fafafa;
    cursor: pointer;
    min-width: 100%;
}
.photo-upload-area:hover {
    border-color: #7c3aed;
    background: #faf5ff;
}
.photo-upload-area label {
    cursor: pointer;
    color: #7c3aed;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
}
.photo-upload-area p {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0.25rem 0 0;
}
#fashion-photo-remove {
    display: none;
    background: none;
    border: none;
    color: #dc2626;
    font-size: 0.85rem;
    cursor: pointer;
    margin-top: 0.25rem;
    text-decoration: underline;
}

/* ════════════════════════════════════════
   Responsive
   ════════════════════════════════════════ */
@media (max-width: 768px) {
    .pillar-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .pillar-card { padding: 2rem 1.5rem; }
    .tool-search-form { margin: -2rem 1rem 1.5rem; padding: 1.5rem; border-radius: 16px; }
    .tool-search-form form { flex-direction: column; }
    .tool-crosslinks { grid-template-columns: 1fr; }
    .treat-tool-hero { padding: 3rem 0 4rem; min-height: auto; }
    .treat-tool-hero h1 { font-size: 2rem; }
    .outfit-gallery-item { grid-template-columns: 1fr; }
    .outfit-image-wrap { min-height: 280px; }
    .treat-hero { padding: 3rem 0 2rem; min-height: auto; }
    .treat-hero h1 { font-size: 2.2rem; }
    .treat-tabs .container { padding: 0 0.5rem; }
    .treat-tab { padding: 0.85rem 1rem; font-size: 0.8rem; }
    .budget-grid { grid-template-columns: 1fr; }
    .treat-grid-2, .treat-grid-3, .treat-grid-4 { grid-template-columns: 1fr; }
    .treat-crosslinks .card-grid { grid-template-columns: 1fr; }
    .evening-step { flex-direction: column; gap: 0.25rem; }
    .treat-index-hero { padding: 3rem 0; min-height: auto; }
    .treat-index-hero h1 { font-size: 2.2rem; }
    .ai-search-panel form { flex-direction: column; }
    .ai-field { min-width: 100%; }
    .fashion-weather { flex-direction: column; gap: 0.5rem; }
    .treat-section { padding: 2.5rem 0; }
    .treat-section-header h2 { font-size: 1.5rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .treat-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .budget-grid { grid-template-columns: repeat(2, 1fr); }
}
