/* ========================================
   Zeytinyağlarımız - Shared Styles
   ======================================== */

:root {
    --olive-dark: #2C3E2D;
    --olive: #4A6741;
    --olive-light: #6B8F5E;
    --olive-lighter: #8FB573;
    --gold: #C5A55A;
    --gold-light: #E8D5A3;
    --cream: #FDF8F0;
    --cream-dark: #F5EDE0;
    --brown: #5C4033;
    --brown-light: #8B6F5E;
    --text: #2D2A26;
    --text-light: #6B6560;
    --white: #FFFFFF;
    --shadow: 0 2px 16px rgba(44,62,45,0.08);
    --shadow-lg: 0 8px 32px rgba(44,62,45,0.12);
    --radius: 12px;
    --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; }

a { color: var(--olive); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--olive-dark); }

/* ========================================
   NAV
   ======================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253,248,240,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74,103,65,0.1);
    transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(44,62,45,0.1); }
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--olive-dark);
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
}
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.86rem;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active { color: var(--olive); }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-discover-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 100%);
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 24px rgba(44,62,45,0.14);
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.nav-discover-btn:hover {
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(44,62,45,0.2);
    filter: saturate(1.05);
}
.nav-search {
    position: relative;
}
.nav-search-toggle {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(74,103,65,0.16);
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
    color: var(--olive-dark);
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.nav-search-toggle:hover,
.nav-search.open .nav-search-toggle {
    transform: translateY(-1px);
    border-color: rgba(74,103,65,0.26);
    background: rgba(255,255,255,0.96);
    box-shadow: 0 10px 24px rgba(44,62,45,0.08);
}
.nav-search-toggle svg,
.nav-search-input-shell svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}
.nav-search-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(380px, calc(100vw - 32px));
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(74,103,65,0.14);
    box-shadow: 0 24px 48px rgba(44,62,45,0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.nav-search.open .nav-search-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.nav-search-form {
    margin: 0;
}
.nav-search-input-shell {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--cream);
    border: 1px solid rgba(74,103,65,0.12);
    color: var(--olive-dark);
}
.nav-search-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text);
    font: inherit;
}
.nav-search-input::placeholder {
    color: var(--brown-light);
}
.nav-search-results {
    margin-top: 12px;
    display: grid;
    gap: 6px;
}
.nav-search-status,
.nav-search-empty {
    padding: 10px 4px 4px;
    color: var(--text-light);
    font-size: 0.9rem;
}
.nav-search-result,
.nav-search-all {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--text);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.nav-search-result:hover,
.nav-search-all:hover {
    background: rgba(74,103,65,0.08);
    transform: translateY(-1px);
}
.nav-search-badge {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74,103,65,0.14), rgba(197,165,90,0.22));
    color: var(--olive-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
}
.nav-search-copy {
    min-width: 0;
}
.nav-search-title {
    display: block;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}
.nav-search-meta {
    display: block;
    margin-top: 2px;
    color: var(--text-light);
    font-size: 0.84rem;
    line-height: 1.5;
}
.nav-search-all {
    justify-content: space-between;
    border-top: 1px solid rgba(74,103,65,0.08);
    margin-top: 4px;
    padding-top: 12px;
    color: var(--olive);
    font-weight: 600;
}
.nav-search-all svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--olive-dark);
    transition: 0.3s;
}

/* MOBILE NAV OVERLAY */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253,248,240,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--olive-dark);
    text-decoration: none;
}
.mobile-nav a.mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 100%);
    color: var(--white);
    font-size: 1.15rem;
    box-shadow: 0 16px 30px rgba(44,62,45,0.14);
}
.mobile-nav a.mobile-nav-cta:hover {
    color: var(--white);
}
.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
}

/* ========================================
   BREADCRUMBS
   ======================================== */
.breadcrumbs-wrap {
    max-width: 1280px;
    margin: 82px auto 0;
    padding: 0 24px;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(74, 103, 65, 0.12);
    box-shadow: 0 2px 8px rgba(44, 62, 45, 0.04);
    font-size: 0.82rem;
    color: var(--text-light);
}
.breadcrumbs a {
    color: var(--olive);
    text-decoration: none;
    font-weight: 500;
}
.breadcrumbs a:hover { color: var(--olive-dark); }

/* ========================================
   HERO
   ======================================== */
.hero {
    padding: 140px 24px 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107,143,94,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197,165,90,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--olive-dark);
    margin-bottom: 16px;
    line-height: 1.2;
    position: relative;
}
.hero h1 em { color: var(--olive); font-style: italic; }
.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    position: relative;
}
.hero-stat {
    text-align: center;
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.46);
    border: 1px solid rgba(74,103,65,0.08);
    min-width: 132px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.hero-stat:hover {
    color: inherit;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(44,62,45,0.08);
    background: rgba(255,255,255,0.8);
    border-color: rgba(74,103,65,0.18);
}
.hero-stat:focus-visible {
    outline: 3px solid rgba(74,103,65,0.25);
    outline-offset: 3px;
}
.hero-stat .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--olive);
    display: block;
}
.hero-stat .label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================================
   PAGE HEADER (for inner pages)
   ======================================== */
.page-header {
    padding: 130px 24px 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
}
.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--olive-dark);
    margin-bottom: 12px;
}
.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   SEARCH & FILTER
   ======================================== */
.filter-section {
    max-width: 1280px;
    margin: -40px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}
.filter-bar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.search-box {
    flex: 1;
    min-width: 240px;
    position: relative;
}
.search-box svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-light);
}
.search-box input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--cream);
    transition: border-color 0.2s, background 0.2s;
    color: var(--text);
}
.search-box input:focus {
    outline: none;
    border-color: var(--olive-light);
    background: var(--white);
}
.search-box input::placeholder { color: var(--brown-light); }
.filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--cream-dark);
    border-radius: 100px;
    background: var(--white);
    font-size: 0.85rem;
    font-family: inherit;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.filter-btn:hover {
    border-color: var(--olive-light);
    color: var(--olive);
}
.filter-btn.active {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--white);
}
.result-count {
    width: 100%;
    text-align: center;
    padding-top: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    display: none;
}

/* ========================================
   BRANDS GRID
   ======================================== */
.brands-section {
    max-width: 1280px;
    margin: 48px auto;
    padding: 0 24px;
}
.brands-section h2 {
    font-size: 1.8rem;
    color: var(--olive-dark);
    margin-bottom: 8px;
}
.brands-section > p {
    color: var(--text-light);
    margin-bottom: 32px;
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.brand-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.brand-card:focus-visible {
    outline: 3px solid rgba(74, 103, 65, 0.35);
    outline-offset: 3px;
}
.brand-card-header {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.brand-card-header.premium-butik {
    background: linear-gradient(135deg, #f6f0e4 0%, #ece2d0 100%);
}
.brand-card-header.market-endustriyel {
    background: linear-gradient(135deg, #e8ede6 0%, #d4ddd0 100%);
}
.brand-card-header.organik {
    background: linear-gradient(135deg, #e6efe2 0%, #c8dfc0 100%);
}
.brand-card-header.bolgesel-yerel {
    background: linear-gradient(135deg, #eee8de 0%, #ddd4c4 100%);
}
.brand-card-header img {
    width: 92%;
    height: 92%;
    max-width: 280px;
    max-height: 170px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s;
}
.brand-card-header img.logo-wide {
    width: 102%;
    height: 88%;
}
.brand-card-header img.logo-superwide {
    width: 118%;
    height: 90%;
}
.brand-card:hover .brand-card-header img {
    transform: scale(1.05);
}
.brand-initials {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(44,62,45,0.15);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.brand-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.brand-badge.premium-butik {
    background: rgba(197,165,90,0.15);
    color: #9A7B2C;
}
.brand-badge.market-endustriyel {
    background: rgba(74,103,65,0.12);
    color: var(--olive);
}
.brand-badge.organik {
    background: rgba(46,139,87,0.12);
    color: #2E8B57;
}
.brand-badge.bolgesel-yerel {
    background: rgba(139,111,94,0.12);
    color: var(--brown);
}
.brand-highlight-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--gold);
    color: var(--white);
}
.brand-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.brand-card-body h3 {
    font-size: 1.25rem;
    color: var(--olive-dark);
    margin-bottom: 4px;
}
.brand-region {
    font-size: 0.82rem;
    color: var(--olive-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.brand-region svg { width: 14px; height: 14px; }
.brand-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}
.brand-card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand-founded {
    font-size: 0.8rem;
    color: var(--brown-light);
}
.brand-website a {
    font-size: 0.82rem;
    color: var(--olive);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}
.brand-website a:hover { color: var(--olive-dark); }
.brand-website a svg { width: 14px; height: 14px; }
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 24px;
    color: var(--text-light);
}
.no-results svg {
    width: 64px;
    height: 64px;
    color: var(--cream-dark);
    margin-bottom: 16px;
}
.no-results h3 {
    color: var(--text);
    margin-bottom: 8px;
}

/* ========================================
   HOME FEATURED SECTION
   ======================================== */
.featured-section {
    max-width: 1280px;
    margin: 64px auto;
    padding: 0 24px;
    text-align: center;
}
.featured-section h2 {
    font-size: 2rem;
    color: var(--olive-dark);
    margin-bottom: 8px;
}
.featured-section > p {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.05rem;
}
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 14px 32px;
    background: var(--olive);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.view-all-btn:hover {
    background: var(--olive-dark);
    color: var(--white);
    transform: translateY(-2px);
}
.view-all-btn svg { width: 18px; height: 18px; }

/* HOME CTA CARDS */
.home-cta {
    max-width: 1280px;
    margin: 0 auto 80px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.cta-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
    text-decoration: none;
    color: inherit;
    display: block;
}
.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}
.cta-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--olive-light), var(--olive));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.cta-card-icon svg { width: 28px; height: 28px; color: var(--white); }
.cta-card h3 {
    font-size: 1.3rem;
    color: var(--olive-dark);
    margin-bottom: 8px;
}
.cta-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}
.cta-card .link-arrow {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--olive);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.cta-card .link-arrow svg { width: 16px; height: 16px; }

/* ========================================
   QUALITY GUIDE
   ======================================== */
.quality-section {
    background: var(--white);
    padding: 80px 24px;
}
.quality-inner {
    max-width: 900px;
    margin: 0 auto;
}
.quality-inner > h2 {
    font-size: 2.2rem;
    color: var(--olive-dark);
    text-align: center;
    margin-bottom: 8px;
}
.quality-inner > p.subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 48px;
    font-size: 1.05rem;
}
.quality-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
    position: sticky;
    top: 72px;
    background: var(--white);
    padding: 16px 0;
    z-index: 50;
}
.quality-nav-btn {
    padding: 10px 20px;
    border: 2px solid var(--cream-dark);
    border-radius: 100px;
    background: var(--white);
    font-size: 0.85rem;
    font-family: inherit;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.quality-nav-btn:hover {
    border-color: var(--olive-light);
    color: var(--olive);
}
.quality-nav-btn.active {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--white);
}
.quality-block {
    margin-bottom: 56px;
    scroll-margin-top: 160px;
}
.quality-block h3 {
    font-size: 1.5rem;
    color: var(--olive-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--cream-dark);
}
.quality-block h4 {
    font-size: 1.15rem;
    color: var(--olive);
    margin: 24px 0 12px;
}
.quality-block p {
    color: var(--text);
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.quality-block ul, .quality-block ol {
    margin: 12px 0 20px 20px;
    color: var(--text);
}
.quality-block li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.quality-block li strong { color: var(--olive-dark); }
.info-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 20px 0;
    border-left: 4px solid var(--olive-light);
}
.info-card.warning {
    border-left-color: var(--gold);
    background: #fefbf3;
}
.info-card p { margin-bottom: 0; }
.quality-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}
.quality-table th {
    background: var(--olive);
    color: var(--white);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}
.quality-table th:first-child { border-radius: var(--radius) 0 0 0; }
.quality-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.quality-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--cream-dark);
}
.quality-table tr:nth-child(even) { background: var(--cream); }
.quality-table tr:last-child td:first-child { border-radius: 0 0 0 var(--radius); }
.quality-table tr:last-child td:last-child { border-radius: 0 0 var(--radius) 0; }

/* ========================================
   REGIONS
   ======================================== */
.regions-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}
.regions-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.regions-inner > h2 {
    font-size: 2rem;
    color: var(--olive-dark);
    text-align: center;
    margin-bottom: 8px;
}
.regions-inner > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 48px;
}
.region-hub-section {
    padding: 28px 24px 92px;
    background:
        radial-gradient(circle at top right, rgba(197,165,90,0.12), transparent 34%),
        linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.region-hub-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(160deg, rgba(255,255,255,0.92), rgba(245,237,224,0.96));
    border: 1px solid rgba(74,103,65,0.12);
    box-shadow: var(--shadow-lg);
}
.region-hub-copy {
    max-width: 760px;
    margin-bottom: 24px;
}
.region-hub-copy h2 {
    margin: 10px 0 12px;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    color: var(--olive-dark);
}
.region-hub-copy p {
    color: var(--text-light);
    font-size: 0.98rem;
}
.region-hub-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.region-link-group {
    padding: 24px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.95), rgba(253,248,240,0.94));
    border: 1px solid rgba(74,103,65,0.12);
    box-shadow: 0 12px 28px rgba(44,62,45,0.08);
}
.region-link-group-head {
    margin-bottom: 16px;
}
.brand-map-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 24px;
}
.brand-map-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(245,237,224,0.92) 100%);
    border: 1px solid rgba(74,103,65,0.14);
    box-shadow: var(--shadow-lg);
}
.brand-map-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
.brand-region-map-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.brand-region-map-card {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(74,103,65,0.12);
    box-shadow: 0 14px 28px rgba(44,62,45,0.08);
}
.brand-region-map-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}
.brand-region-map-eyebrow {
    display: inline-flex;
    margin-bottom: 6px;
    color: var(--text-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.brand-region-map-head h3 {
    margin: 0;
    font-size: 1.35rem;
    color: var(--olive-dark);
}
.brand-region-map-head h3 a {
    color: inherit;
    text-decoration: none;
}
.brand-region-map-head h3 a:hover {
    color: var(--olive);
}
.brand-region-map-copy {
    margin: 0 0 14px;
    color: var(--text-light);
    font-size: 0.94rem;
}
.brand-map-copy h2 {
    font-size: 2rem;
    color: var(--olive-dark);
    margin: 8px 0 10px;
}
.brand-map-copy p {
    max-width: 780px;
    color: var(--text-light);
}
.brand-map-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 220px;
}
.brand-map-filters,
.brand-map-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.brand-map-filter,
.brand-map-stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(74,103,65,0.14);
    background: rgba(255,255,255,0.86);
    color: var(--olive-dark);
    font-size: 0.86rem;
    font-weight: 600;
}
.brand-map-stat {
    text-decoration: none;
    transition: transform 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.brand-map-stat:hover {
    color: var(--olive-dark);
    background: #efe3c8;
    border-color: rgba(74,103,65,0.24);
    box-shadow: 0 10px 18px rgba(44,62,45,0.08);
    transform: translateY(-1px);
}
.brand-map-stat:focus-visible {
    outline: 3px solid rgba(74,103,65,0.2);
    outline-offset: 3px;
}
.brand-map-filter {
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}
.brand-map-filter span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(74,103,65,0.08);
    font-size: 0.78rem;
}
.brand-map-filter:hover,
.brand-map-filter.active {
    background: var(--olive);
    color: var(--white);
    border-color: var(--olive);
    transform: translateY(-1px);
}
.brand-map-filter:hover span,
.brand-map-filter.active span {
    background: rgba(255,255,255,0.18);
}
.brand-map-canvas {
    height: 720px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(74,103,65,0.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.brand-map-canvas-region {
    height: 340px;
}
.brand-map-note {
    margin-top: 14px;
    color: var(--text-light);
    font-size: 0.9rem;
}
.brand-map-fallback {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    text-align: center;
    color: var(--text-light);
    background: linear-gradient(180deg, rgba(245,237,224,0.96), rgba(255,255,255,0.96));
}
.leaflet-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #dce7d5;
}
.brand-map-icon {
    background: transparent;
    border: 0;
}
.brand-map-pin {
    width: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.brand-map-pin-badge {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(245,237,224,0.98));
    border: 1px solid rgba(74,103,65,0.14);
    box-shadow: 0 10px 24px rgba(44,62,45,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--olive-dark);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.brand-map-pin.is-official .brand-map-pin-badge {
    background: linear-gradient(135deg, rgba(232,213,163,0.96), rgba(255,255,255,0.98));
    border-color: rgba(197,165,90,0.72);
    box-shadow: 0 10px 24px rgba(197,165,90,0.22);
}
.brand-map-pin.is-approximate .brand-map-pin-badge {
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(226,236,222,0.98));
}
.brand-map-pin-name {
    max-width: 96px;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(74,103,65,0.14);
    color: var(--olive-dark);
    font-size: 11px;
    line-height: 1.15;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 8px 18px rgba(44,62,45,0.12);
}
.brand-map-popup h3 {
    margin: 0 0 4px;
    color: var(--olive-dark);
    font-size: 1rem;
}
.brand-map-popup p {
    margin: 0;
}
.brand-map-popup-head {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    align-items: center;
}
.brand-map-popup-head img {
    width: 58px;
    height: 58px;
    max-width: 58px !important;
    max-height: 58px !important;
    object-fit: contain;
    border-radius: 16px;
    background: var(--cream);
    padding: 6px;
}
.brand-map-popup-head p {
    color: var(--text-light);
    font-size: 0.86rem;
}
.brand-map-popup-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 12px;
}
.brand-map-popup-meta span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--cream);
    color: var(--olive-dark);
    font-size: 0.78rem;
    font-weight: 600;
}
.brand-map-popup-address {
    font-size: 0.9rem;
    color: var(--text);
}
.brand-map-popup-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}
.brand-map-popup-links a {
    font-size: 0.84rem;
    font-weight: 700;
}
.leaflet-popup-content-wrapper {
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(44,62,45,0.18);
}
.leaflet-popup-content {
    margin: 16px 18px;
}
.leaflet-control-attribution {
    background: rgba(255,255,255,0.86);
    border-radius: 10px;
    padding: 2px 6px;
}
.region-link-group h2 {
    font-size: 1.2rem;
    color: var(--olive-dark);
    margin-bottom: 6px;
}
.region-link-group p {
    color: var(--text-light);
    font-size: 0.9rem;
}
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.region-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}
.region-card:hover { transform: translateY(-2px); }
.region-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--olive-light), var(--olive));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.region-icon svg { width: 24px; height: 24px; color: var(--white); }
.region-card h3 {
    font-size: 1.2rem;
    color: var(--olive-dark);
    margin-bottom: 8px;
}
.region-title-link {
    color: inherit;
    text-decoration: none;
}
.region-title-link:hover {
    color: var(--olive);
}
.region-card .provinces {
    font-size: 0.85rem;
    color: var(--olive-light);
    margin-bottom: 10px;
}
.region-count-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--cream);
    border: 1px solid rgba(74,103,65,0.14);
    color: var(--olive-dark);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}
.region-count-pill:hover {
    background: #e9ddc5;
    color: var(--olive-dark);
}
.region-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}
.region-varieties {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.variety-tag {
    padding: 4px 10px;
    background: var(--cream);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--olive);
    font-weight: 500;
}
a.variety-tag {
    text-decoration: none;
}
a.variety-tag:hover {
    background: #e9ddc5;
    color: var(--olive-dark);
}

/* ========================================
   BRAND DETAIL PAGE
   ======================================== */
.brand-detail-page {
    padding: 28px 24px 56px;
    min-height: 65vh;
}
.brand-detail-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.brand-detail-header {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 28px;
    display: grid;
    gap: 22px;
    grid-template-columns: 180px 1fr;
}
.brand-detail-logo-wrap {
    background: var(--cream);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 20px;
}
.brand-detail-logo {
    width: 100%;
    height: 150px;
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    object-position: center;
}
.brand-detail-logo.logo-wide {
    height: 170px;
    max-height: 170px;
}
.brand-detail-logo.logo-superwide {
    height: 188px;
    max-height: 188px;
}
.brand-detail-head-content h1 {
    color: var(--olive-dark);
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.brand-detail-head-content p {
    color: var(--text-light);
    margin-bottom: 16px;
}
.brand-detail-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.brand-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--olive);
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 600;
}
.brand-detail-btn:hover { color: var(--white); background: var(--olive-dark); }
.brand-detail-btn.secondary {
    background: var(--cream-dark);
    color: var(--olive-dark);
}
.brand-detail-btn.secondary:hover {
    background: var(--gold-light);
    color: var(--olive-dark);
}

.brand-facts-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.brand-fact-card {
    background: var(--white);
    border: 1px solid rgba(74, 103, 65, 0.14);
    border-radius: var(--radius);
    padding: 14px;
}
.brand-fact-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.brand-fact-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: rgba(74, 103, 65, 0.28);
}
.brand-fact-card span {
    display: block;
    color: var(--text-light);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.brand-fact-card strong {
    color: var(--olive-dark);
    font-size: 1rem;
}

.brand-gallery-section,
.brand-info-section {
    margin-top: 26px;
}
.brand-gallery-section h2,
.brand-info-section h2 {
    font-size: 1.55rem;
    margin-bottom: 10px;
    color: var(--olive-dark);
}
.brand-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.brand-gallery-item {
    margin: 0;
    background: var(--white);
    border: 1px solid rgba(74, 103, 65, 0.12);
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-gallery-item img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: contain;
    display: block;
    background: #fff;
}
.brand-info-body {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid rgba(74, 103, 65, 0.12);
}
.brand-story-section + .brand-story-section {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(74, 103, 65, 0.12);
}
.brand-story-section h3 {
    color: var(--olive-dark);
    font-size: 1.18rem;
    margin-bottom: 10px;
}
.brand-info-section p {
    margin-bottom: 14px;
}
.brand-info-section p:last-child {
    margin-bottom: 0;
}
.brand-info-body::after {
    content: "";
    display: block;
    clear: both;
}
.brand-inline-photo {
    float: right;
    width: min(42%, 340px);
    margin: 6px 0 18px 24px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(74, 103, 65, 0.12);
    box-shadow: 0 18px 30px rgba(58, 78, 45, 0.14);
    background: #fff;
}
.brand-inline-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.brand-inline-photo.is-bottle {
    float: left;
    width: min(32%, 250px);
    margin: 6px 24px 18px 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}
.brand-inline-photo.is-bottle img {
    aspect-ratio: 3 / 4;
    object-fit: contain;
}
.brand-inline-photo.is-about {
    width: min(44%, 360px);
}
.brand-inline-photo.is-about.is-about-left {
    float: left;
    margin: 6px 24px 18px 0;
}
.brand-inline-photo.is-about.is-about-right {
    float: right;
    margin: 6px 0 18px 24px;
}
.brand-detail-empty {
    max-width: 880px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(74, 103, 65, 0.12);
    padding: 28px;
}

/* ========================================
   TOPIC CLUSTER PAGES
   ======================================== */
.topic-page {
    padding: 24px 24px 56px;
}
.topic-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.topic-header {
    background: linear-gradient(135deg, #fff 0%, #f6f0e5 100%);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}
.topic-header h1 {
    color: var(--olive-dark);
    font-size: clamp(1.8rem, 3.4vw, 2.7rem);
    margin-bottom: 10px;
}
.topic-header p {
    color: var(--text-light);
    max-width: 900px;
}
.topic-spotlight {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(74,103,65,0.14);
    padding: 16px;
    box-shadow: var(--shadow);
}
.topic-spotlight-media {
    border: 1px solid rgba(74,103,65,0.14);
    border-radius: 12px;
    background: #f7f1e2;
    padding: 10px;
}
.topic-spotlight-media img {
    width: 100%;
    max-height: 240px;
    object-fit: contain;
    display: block;
}
.topic-spotlight-content h2 {
    color: var(--olive-dark);
    margin-bottom: 8px;
    font-size: 1.3rem;
}
.topic-spotlight-content p {
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}
.topic-spotlight-content a {
    color: var(--olive-dark);
    font-weight: 600;
}
.topic-stats {
    margin-top: 14px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.topic-stat {
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(74,103,65,0.15);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.8rem;
    color: var(--olive-dark);
}
.topic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}
.topic-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(74,103,65,0.14);
    padding: 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.topic-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.topic-card h3 {
    color: var(--olive-dark);
    margin-bottom: 6px;
    font-size: 1.15rem;
}
.topic-card p {
    color: var(--text-light);
    font-size: 0.88rem;
}
.topic-count {
    font-size: 0.78rem;
    color: var(--olive-light);
    font-weight: 600;
    margin-top: 8px;
    display: inline-block;
}
.topic-section {
    margin-top: 24px;
}
.topic-section h2 {
    color: var(--olive-dark);
    font-size: 1.55rem;
    margin-bottom: 12px;
}
.topic-highlight-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(74,103,65,0.14);
    padding: 16px;
    box-shadow: var(--shadow);
}
.topic-highlight-media {
    width: 100%;
    max-width: 220px;
    background: #f7f1e2;
    border: 1px solid rgba(74,103,65,0.12);
    border-radius: 12px;
    padding: 10px;
    object-fit: contain;
}
.topic-highlight-body h3 {
    margin-bottom: 8px;
    color: var(--olive-dark);
}
.topic-highlight-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}
.topic-highlight-body a {
    color: var(--olive-dark);
    font-weight: 600;
    text-decoration: underline;
}
.topic-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.topic-link {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(74,103,65,0.14);
    color: var(--olive-dark);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(44,62,45,0.06);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.topic-link:hover {
    background: #efe3c8;
    color: var(--olive-dark);
    border-color: rgba(74,103,65,0.24);
    box-shadow: 0 10px 18px rgba(44,62,45,0.1);
    transform: translateY(-1px);
}
.topic-brand-card {
    text-decoration: none;
    color: inherit;
}
.topic-brand-card .brand-card-body h3 {
    font-size: 1.08rem;
}
.brand-topic-links {
    margin-top: 18px;
}
.brand-topic-links h2 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--olive-dark);
}
.brand-contact-section {
    margin-top: 22px;
}
.brand-contact-section h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--olive-dark);
}
.brand-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.brand-contact-card,
.brand-contact-empty {
    background: var(--white);
    border: 1px solid rgba(74, 103, 65, 0.12);
    border-radius: var(--radius);
    padding: 16px 18px;
}
.brand-contact-card span {
    display: block;
    color: var(--text-light);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.brand-contact-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}
.brand-contact-card li {
    color: var(--olive-dark);
    word-break: break-word;
}
.brand-contact-card a {
    color: var(--olive-dark);
}
.brand-contact-card a:hover {
    color: var(--olive);
}
.brand-contact-empty {
    color: var(--text-light);
}

/* ========================================
   WEBSITE EXPLORER
   ======================================== */
.website-explorer-page {
    padding: 84px 24px 72px;
}
.website-explorer-inner {
    max-width: 1380px;
    margin: 0 auto;
}
.website-frame-shell {
    position: relative;
    min-height: 84vh;
    background: #f2e8d5;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(74,103,65,0.12);
    box-shadow: var(--shadow-lg);
}
.website-frame {
    width: 100%;
    height: 84vh;
    min-height: 820px;
    border: 0;
    background: var(--white);
}
.website-frame-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(253,248,240,0.72) 0%, rgba(245,237,224,0.68) 100%);
    z-index: 2;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.website-frame-loading::after {
    content: "";
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid rgba(74,103,65,0.18);
    border-top-color: var(--olive-dark);
    animation: website-spinner 0.8s linear infinite;
}
.website-frame-loading.is-hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes website-spinner {
    to { transform: rotate(360deg); }
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--olive-dark);
    color: rgba(255,255,255,0.7);
    padding: 48px 24px;
    text-align: center;
}
footer .footer-inner {
    max-width: 800px;
    margin: 0 auto;
}
footer h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 8px;
}
footer p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
footer .footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
footer .footer-links a:hover { color: var(--white); }
footer .copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
}

/* ========================================
   GUIDE HUB & ARTICLES
   ======================================== */
.guide-hub-page {
    max-width: 1280px;
    margin: 0 auto 96px;
    padding: 40px 24px 0;
}
.guide-hub-hero {
    margin-top: 42px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
    gap: 24px;
    align-items: start;
}
.guide-hub-hero-copy {
    padding: 38px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(197,165,90,0.18), transparent 38%),
        linear-gradient(150deg, rgba(255,255,255,0.92), rgba(245,237,224,0.92));
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(74,103,65,0.1);
}
.guide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(74,103,65,0.08);
    color: var(--olive);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.guide-hub-hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(2.4rem, 4.2vw, 4rem);
    line-height: 1.08;
    color: var(--olive-dark);
}
.guide-hub-hero-copy p {
    margin-top: 16px;
    max-width: 760px;
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--text-light);
}
.guide-hub-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 26px;
}
.guide-hub-stats div {
    min-width: 148px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(74,103,65,0.1);
}
.guide-hub-stats strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--olive-dark);
}
.guide-hub-stats span {
    display: block;
    margin-top: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--brown-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.guide-hub-panel {
    padding: 24px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(74,103,65,0.08);
}
.guide-search-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brown-light);
}
.guide-search-box input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--cream-dark);
    border-radius: 16px;
    background: var(--cream);
    color: var(--text);
    font-size: 0.96rem;
    font-family: inherit;
}
.guide-search-box input:focus {
    outline: none;
    border-color: var(--olive-light);
    background: var(--white);
}
.guide-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.guide-filter {
    border: 1px solid rgba(74,103,65,0.12);
    background: var(--white);
    color: var(--text-light);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 0.82rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.guide-filter:hover,
.guide-filter.active {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--white);
    transform: translateY(-1px);
}
.guide-hub-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
}
.guide-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(74,103,65,0.08);
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.2s;
}
.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(74,103,65,0.16);
    color: inherit;
}
.guide-card-media {
    position: relative;
    height: 188px;
    background:
        radial-gradient(circle at top left, rgba(197,165,90,0.26), transparent 35%),
        linear-gradient(160deg, rgba(253,248,240,1), rgba(245,237,224,1));
}
.guide-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.guide-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
    padding: 20px 20px 22px;
}
.guide-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.guide-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(74,103,65,0.08);
    color: var(--olive);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.guide-card-body h2 {
    font-size: 1.3rem;
    line-height: 1.28;
    color: var(--olive-dark);
}
.guide-card-body p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-light);
}
.guide-card-footer {
    margin-top: auto;
    display: grid;
    gap: 5px;
    padding-top: 12px;
    border-top: 1px solid rgba(74,103,65,0.08);
    font-size: 0.8rem;
    color: var(--brown-light);
}
.guide-page {
    padding-bottom: 88px;
}
.guide-hero-section {
    padding: 34px 24px 0;
}
.guide-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.85fr);
    gap: 24px;
    align-items: stretch;
    padding: 34px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(197,165,90,0.2), transparent 38%),
        linear-gradient(150deg, rgba(255,255,255,0.96), rgba(245,237,224,0.94));
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(74,103,65,0.1);
}
.guide-hero-copy h1 {
    margin-top: 16px;
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    line-height: 1.12;
    color: var(--olive-dark);
}
.guide-summary {
    margin-top: 14px;
    max-width: 760px;
    font-size: 1.04rem;
    line-height: 1.86;
    color: var(--text-light);
}
.guide-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.guide-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(74,103,65,0.12);
    color: var(--olive-dark);
    font-size: 0.78rem;
    font-weight: 600;
}
.guide-hero-media {
    border-radius: 22px;
    overflow: hidden;
    min-height: 300px;
    background:
        radial-gradient(circle at top left, rgba(197,165,90,0.3), transparent 36%),
        linear-gradient(160deg, rgba(253,248,240,1), rgba(235,228,214,1));
    border: 1px solid rgba(74,103,65,0.08);
}
.guide-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.guide-layout {
    max-width: 1280px;
    margin: 24px auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}
.guide-content {
    padding: 32px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid rgba(74,103,65,0.08);
}
.guide-quick-answer {
    padding: 24px 26px;
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(197,165,90,0.18), transparent 30%),
        linear-gradient(150deg, rgba(253,248,240,1), rgba(245,237,224,1));
    border: 1px solid rgba(74,103,65,0.08);
}
.guide-quick-answer h2 {
    font-size: 1.7rem;
    color: var(--olive-dark);
}
.guide-quick-answer p {
    margin-top: 12px;
    font-size: 1rem;
    color: var(--text);
}
.guide-takeaways {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    list-style: none;
}
.guide-takeaways li {
    position: relative;
    padding-left: 22px;
    color: var(--text-light);
}
.guide-takeaways li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
}
.guide-callout {
    margin: 24px 0;
    padding: 20px 22px;
    border-radius: 18px;
    border-left: 4px solid var(--gold);
    background: rgba(197,165,90,0.08);
}
.guide-callout strong {
    display: block;
    margin-bottom: 6px;
    color: var(--olive-dark);
}
.guide-callout p {
    color: var(--text-light);
}
.guide-figure-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 26px 0 8px;
}
.guide-figure-grid.single {
    grid-template-columns: minmax(0, 1fr);
}
.guide-figure {
    overflow: hidden;
    border-radius: 20px;
    background: var(--cream);
    border: 1px solid rgba(74,103,65,0.08);
}
.guide-figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.guide-figure figcaption {
    padding: 12px 14px 14px;
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--text-light);
}
.guide-section {
    padding: 28px 0;
    border-top: 1px solid rgba(74,103,65,0.08);
}
.guide-section h2 {
    margin-bottom: 14px;
    font-size: 1.72rem;
    color: var(--olive-dark);
}
.guide-section p {
    margin-bottom: 14px;
    color: var(--text-light);
}
.guide-list {
    margin: 8px 0 0 20px;
    color: var(--text-light);
}
.guide-list li {
    margin-bottom: 10px;
}
.guide-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.guide-link-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    border-radius: 18px;
    background: var(--cream);
    border: 1px solid rgba(74,103,65,0.08);
    color: inherit;
}
.guide-link-card:hover {
    color: inherit;
    border-color: rgba(74,103,65,0.16);
}
.guide-link-card strong {
    color: var(--olive-dark);
    font-size: 1.03rem;
}
.guide-link-card span {
    font-size: 0.82rem;
    color: var(--brown-light);
}
.guide-faq-list {
    display: grid;
    gap: 14px;
}
.guide-faq-item {
    border-radius: 18px;
    background: var(--cream);
    border: 1px solid rgba(74,103,65,0.08);
    padding: 0 18px;
}
.guide-faq-item summary {
    padding: 18px 4px;
    cursor: pointer;
    color: var(--olive-dark);
    font-weight: 600;
    list-style: none;
}
.guide-faq-item p {
    padding: 0 4px 18px;
    margin: 0;
}
.guide-source-list {
    display: grid;
    gap: 14px;
}
.guide-source-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: var(--cream);
    border: 1px solid rgba(74,103,65,0.08);
}
.guide-source-card strong {
    color: var(--olive-dark);
}
.guide-source-card span {
    flex-shrink: 0;
    font-size: 0.8rem;
    color: var(--brown-light);
}
.guide-measure-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}
.guide-measure-card {
    padding: 18px;
    border-radius: 18px;
    background: var(--cream);
    border: 1px solid rgba(74,103,65,0.08);
}
.guide-measure-card span {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brown-light);
}
.guide-measure-card strong {
    display: block;
    margin-top: 8px;
    font-size: 1.2rem;
    color: var(--olive-dark);
}
.guide-measure-card small {
    display: block;
    margin-top: 6px;
    color: var(--text-light);
}
.guide-sidebar {
    position: sticky;
    top: 94px;
    display: grid;
    gap: 16px;
}
.guide-side-card {
    padding: 20px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid rgba(74,103,65,0.08);
}
.guide-side-card h3 {
    margin-bottom: 14px;
    font-size: 1.2rem;
    color: var(--olive-dark);
}
.guide-side-links {
    display: grid;
    gap: 10px;
}
.guide-side-links a {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--cream);
    border: 1px solid rgba(74,103,65,0.08);
    color: inherit;
}
.guide-side-links a:hover {
    color: inherit;
    border-color: rgba(74,103,65,0.18);
}
.guide-side-links strong {
    color: var(--olive-dark);
}
.guide-side-links span {
    font-size: 0.82rem;
    color: var(--text-light);
}
/* ========================================
   ANIMATIONS
   ======================================== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* SCROLL TO TOP */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--olive);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 100;
}
.scroll-top.show {
    opacity: 1;
    transform: translateY(0);
}
.scroll-top:hover { background: var(--olive-dark); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1080px) {
    .nav-links { display: none; }
    .nav-discover-btn { display: none; }
    .nav-hamburger { display: flex; }
    .nav-search-panel {
        right: -10px;
        width: min(360px, calc(100vw - 24px));
    }
    .guide-hub-hero,
    .guide-hero-inner,
    .guide-layout {
        grid-template-columns: 1fr;
    }
    .guide-sidebar {
        position: static;
    }
    .brand-map-header {
        flex-direction: column;
    }
    .brand-map-actions {
        min-width: 0;
        justify-content: flex-start;
    }
    .brand-region-map-grid {
        grid-template-columns: 1fr;
    }
    .region-hub-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero { padding: 120px 20px 60px; }
    .hero-stats { gap: 24px; }
    .nav-inner {
        padding: 0 20px;
    }
    .nav-logo span {
        font-size: 1.15rem;
    }
    .nav-actions {
        gap: 10px;
    }
    .nav-search-toggle {
        width: 40px;
        height: 40px;
    }
    .nav-search-panel {
        right: -6px;
        width: min(340px, calc(100vw - 20px));
        padding: 12px;
    }
    .filter-bar {
        flex-direction: column;
        padding: 20px;
    }
    .search-box { min-width: 100%; }
    .filter-buttons { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
    .brands-grid { grid-template-columns: 1fr; }
    .quality-nav { gap: 6px; }
    .quality-nav-btn { padding: 8px 14px; font-size: 0.8rem; }
    .regions-grid { grid-template-columns: 1fr; }
    .home-cta { grid-template-columns: 1fr; }
    .page-header { padding: 110px 20px 40px; }
    .brand-detail-page { padding: 20px 20px 40px; }
    .brand-detail-header { grid-template-columns: 1fr; }
    .brand-inline-photo {
        float: none;
        width: 100%;
        max-width: none;
        margin: 16px 0;
    }
    .brand-contact-grid { grid-template-columns: 1fr; }
    .brand-facts-grid { grid-template-columns: 1fr 1fr; }
    .brand-gallery-grid { grid-template-columns: 1fr 1fr; }
    .breadcrumbs-wrap {
        margin-top: 74px;
        padding: 0 20px;
    }
    .topic-grid { grid-template-columns: 1fr; }
    .topic-spotlight { grid-template-columns: 1fr; }
    .topic-highlight-card { grid-template-columns: 1fr; }
    .topic-highlight-media { max-width: 100%; }
    .guide-hub-page,
    .guide-hero-section,
    .guide-layout {
        padding-left: 20px;
        padding-right: 20px;
    }
    .guide-hub-hero-copy,
    .guide-hub-panel,
    .guide-hero-inner,
    .guide-content {
        padding: 22px;
    }
    .guide-hub-grid,
    .guide-link-grid,
    .guide-figure-grid,
    .guide-measure-grid {
        grid-template-columns: 1fr;
    }
    .guide-hero-media {
        min-height: 240px;
    }
    .guide-source-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .brand-map-section {
        padding: 20px;
    }
    .region-hub-section {
        padding: 22px 20px 76px;
    }
    .region-hub-shell {
        padding: 24px 22px;
        border-radius: 24px;
    }
    .brand-map-shell {
        padding: 22px;
        border-radius: 24px;
    }
    .brand-region-map-card {
        padding: 18px;
        border-radius: 20px;
    }
    .brand-region-map-head {
        flex-direction: column;
    }
    .brand-map-copy h2 {
        font-size: 1.6rem;
    }
    .brand-map-canvas {
        height: 620px;
    }
    .brand-map-canvas-region {
        height: 320px;
    }
    .brand-map-filter,
    .brand-map-stat {
        padding: 9px 12px;
        font-size: 0.82rem;
    }
    .brand-map-pin {
        width: 84px;
    }
    .brand-map-pin-name {
        max-width: 84px;
        font-size: 10px;
    }
    .region-link-group {
        padding: 20px;
        border-radius: 20px;
    }
    .website-explorer-page {
        padding: 80px 20px 64px;
    }
    .website-frame-shell,
    .website-frame {
        height: 74vh;
        min-height: 640px;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .brand-card-header { height: 140px; }
    .brand-facts-grid,
    .brand-gallery-grid { grid-template-columns: 1fr; }
    .brand-map-canvas {
        height: 520px;
    }
    .brand-map-canvas-region {
        height: 280px;
    }
    .brand-map-pin-badge {
        width: 38px;
        height: 38px;
        border-radius: 13px;
        font-size: 1.1rem;
    }
    .website-frame-shell,
    .website-frame {
        height: 72vh;
        min-height: 560px;
    }
}
