/* ================================================
   BaghAtelier — Global Styles
   Color Palette:
   #FAF7F0 cream  |  #F5F5DC beige  |  #E8DCC8 sand
   #D2B48C tan    |  #C4956A leather |  #8B6347 umber
   #6B4226 wood   |  #4B3621 espresso|  #1A1008 dark
   #C9A84C gold
   ================================================ */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img {
    display: block;
    max-width: 100%;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #FAF7F0;
}

::-webkit-scrollbar-thumb {
    background: #C4956A;
    border-radius: 3px;
}

/* ================================================
   NAVIGATION
   ================================================ */
#navbar {
    background: transparent;
}

#navbar.nav-scrolled {
    background: rgba(250, 247, 240, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 30px rgba(75, 54, 33, 0.10);
}

/* Logo wordmark */
.nav-logo-text {
    color: #FAF7F0;
    transition: color 0.3s;
}

a:hover .nav-logo-text {
    color: rgba(210, 180, 140, 0.9);
}

#navbar.nav-scrolled .nav-logo-text {
    color: #4B3621;
}

a:hover #navbar.nav-scrolled .nav-logo-text {
    color: #C4956A;
}

/* Nav links — default cream */
.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250, 247, 240, 0.85);
    position: relative;
    padding-bottom: 2px;
    transition: color 0.25s;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #D2B48C;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.nav-active::after {
    width: 100%;
}

.nav-link.nav-active {
    color: #D2B48C;
}

.nav-link:hover {
    color: #FAF7F0;
}

/* Lang toggle: full definition — colors applied here override the structural block below */

/* btn-primary-sm — transparent / outline on dark bg */
.btn-primary-sm {
    background: transparent;
    color: rgba(250, 247, 240, 0.9);
    border: 1px solid rgba(250, 247, 240, 0.35);
}

.btn-primary-sm:hover {
    background: #C4956A;
    border-color: #C4956A;
    color: #FAF7F0;
}

/* Hamburger — cream on dark bg by default */
.hamburger-line {
    background: rgba(250, 247, 240, 0.9);
}

/* ── SCROLLED STATE — switch all to dark ── */
#navbar.nav-scrolled .nav-link {
    color: #4B3621;
}

#navbar.nav-scrolled .nav-link::after {
    background: #C4956A;
}

#navbar.nav-scrolled .nav-link.nav-active {
    color: #C4956A;
}

#navbar.nav-scrolled .nav-link:hover {
    color: #C4956A;
}

#navbar.nav-scrolled .lang-toggle {
    color: #8B6347;
    border-color: #D2B48C;
}

#navbar.nav-scrolled .lang-toggle:hover {
    background: #4B3621;
    color: #FAF7F0;
    border-color: #4B3621;
}

#navbar.nav-scrolled .btn-primary-sm {
    background: #4B3621;
    color: #FAF7F0;
    border-color: #4B3621;
}

#navbar.nav-scrolled .btn-primary-sm:hover {
    background: #C4956A;
    border-color: #C4956A;
}

#navbar.nav-scrolled .hamburger-line {
    background: #4B3621;
}

/* Mobile nav links */
.nav-link-mobile {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #4B3621;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E8DCC8;
    display: block;
    transition: color 0.2s;
}

.nav-link-mobile:hover {
    color: #C4956A;
}

/* Language toggle — complete definition (structural + default dark-bg colors) */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250, 247, 240, 0.75);
    /* cream — visible on dark hero */
    border: 1px solid rgba(250, 247, 240, 0.28);
    padding: 0.35rem 0.8rem;
    border-radius: 2px;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .lang-toggle {
        color: #8B6347;
        border-color: #D2B48C;
    }
}

.lang-toggle:hover {
    background: rgba(250, 247, 240, 0.15);
    color: #FAF7F0;
    border-color: rgba(250, 247, 240, 0.55);
}

/* Hamburger — structural */
.hamburger-line {
    display: block;
    width: 24px;
    height: 1.5px;
    transition: all 0.3s;
}


/* Small primary button */
.btn-primary-sm {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #4B3621;
    color: #FAF7F0;
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    transition: all 0.3s;
}

.btn-primary-sm:hover {
    background: #C4956A;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: #4B3621;
    color: #FAF7F0;
    padding: 0.875rem 2rem;
    border-radius: 2px;
    border: 2px solid #4B3621;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: #C4956A;
    border-color: #C4956A;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent;
    color: #FAF7F0;
    padding: 0.875rem 2rem;
    border-radius: 2px;
    border: 2px solid rgba(250, 247, 240, 0.5);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(250, 247, 240, 0.15);
    border-color: #FAF7F0;
}

.btn-dark-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent;
    color: #4B3621;
    padding: 0.875rem 2rem;
    border-radius: 2px;
    border: 2px solid #4B3621;
    transition: all 0.3s ease;
}

.btn-dark-outline:hover {
    background: #4B3621;
    color: #FAF7F0;
}

/* ================================================
   SECTION LABELS / BADGES
   ================================================ */
.section-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C4956A;
    margin-bottom: 1rem;
}

.section-badge::before {
    content: '—';
    margin-right: 0.5rem;
    color: #D2B48C;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(26, 16, 8, 0.72) 0%,
            rgba(75, 54, 33, 0.45) 60%,
            rgba(26, 16, 8, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* ================================================
   PRODUCT CATEGORY GRID
   ================================================ */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: #E8DCC8;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover img {
    transform: scale(1.06);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 16, 8, 0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

/* ================================================
   ADVANTAGE CARDS (Why Cairo)
   ================================================ */
.advantage-card {
    background: #FAF7F0;
    border: 1px solid #E8DCC8;
    border-radius: 4px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    border-color: #D2B48C;
    box-shadow: 0 8px 30px rgba(75, 54, 33, 0.08);
    transform: translateY(-4px);
}

.advantage-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4B3621, #6B4226);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.advantage-icon i {
    color: #D2B48C;
    font-size: 1.25rem;
}

/* ================================================
   TIMELINE (Services)
   ================================================ */
.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 1.5rem;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 1.875rem;
    top: 4rem;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, #C4956A, #E8DCC8);
}

.timeline-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #4B3621, #6B4226);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #D2B48C;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(75, 54, 33, 0.2);
}

/* ================================================
   REPAIR HIGHLIGHT BOX
   ================================================ */
.repair-box {
    background: linear-gradient(135deg, #4B3621 0%, #6B4226 100%);
    border-radius: 4px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.repair-box::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
}

/* ================================================
   CONTACT FORM
   ================================================ */
.form-field {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    color: #4B3621;
    background: transparent;
    border: none;
    border-bottom: 1px solid #D2B48C;
    padding: 0.75rem 0;
    outline: none;
    transition: border-color 0.3s;
}

.form-field::placeholder {
    color: #8B6347;
    opacity: 0.7;
}

.form-field:focus {
    border-color: #4B3621;
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8B6347;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #E8DCC8;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #4B3621;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #D2B48C;
    font-size: 0.875rem;
}

/* ================================================
   FOOTER
   ================================================ */
.footer-link {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    color: rgba(232, 220, 200, 0.7);
    transition: color 0.25s;
    padding: 0.2rem 0;
}

.footer-link:hover {
    color: #D2B48C;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(210, 180, 140, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(232, 220, 200, 0.7);
    transition: all 0.3s;
}

.footer-social-link:hover {
    background: #C4956A;
    border-color: #C4956A;
    color: #FAF7F0;
}

/* ================================================
   SCROLL REVEAL ANIMATIONS
   ================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
    padding-top: 15rem;
    padding-bottom: 10rem;
    background-image: url('/assets/images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 16, 8, 0.7), rgba(26, 16, 8, 0.85));
}

@media (max-width: 768px) {
    .page-hero {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
}

/* ================================================
   DIVIDER
   ================================================ */
.ornamental-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
    width: fit-content;
}

.ornamental-divider span {
    display: block;
    height: 1px;
    width: 60px;
    background: #D2B48C;
}

.ornamental-divider i {
    color: #C4956A;
    font-size: 0.5rem;
}

/* ================================================
   MAPS PLACEHOLDER
   ================================================ */
.map-placeholder {
    width: 100%;
    height: 360px;
    background: linear-gradient(135deg, #E8DCC8 0%, #D2B48C 100%);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.05) 10px,
            rgba(255, 255, 255, 0.05) 20px);
}

/* ================================================
   UTILITY
   ================================================ */
.text-gradient {
    background: linear-gradient(135deg, #C4956A 0%, #D2B48C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, #D2B48C, transparent);
    margin: 4rem 0;
}

.gold-line {
    display: block;
    width: 3rem;
    height: 2px;
    background: #C4956A;
    margin-bottom: 1.5rem;
}

/* ================================================
   SUCCESS MESSAGE
   ================================================ */
.alert-success {
    background: rgba(196, 149, 106, 0.12);
    border: 1px solid #C4956A;
    border-radius: 2px;
    padding: 1rem 1.5rem;
    color: #4B3621;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ================================================
   WHAT WE PRODUCE — ACCORDION CATEGORIES
   ================================================ */
.wc-section {
    padding: 6rem 0;
    background: #FAF7F0;
}

.wc-header {
    text-align: center;
    margin-bottom: 4rem;
}

.wc-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: #4B3621;
    line-height: 1.15;
    margin: 0.5rem 0 0;
}

/* ---- Accordion wrapper ---- */
.wc-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ---- Single accordion item ---- */
.wc-item {
    border: 1px solid #E8DCC8;
    border-radius: 4px;
    background: #FFFFFF;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.wc-item:hover {
    box-shadow: 0 6px 28px rgba(75, 54, 33, 0.08);
    border-color: #D2B48C;
}

.wc-item.is-open {
    border-color: #C4956A;
    box-shadow: 0 8px 36px rgba(75, 54, 33, 0.12);
}

/* ---- Accordion trigger / header row ---- */
.wc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.4rem 1.75rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.25s;
}

.wc-trigger:hover {
    background: rgba(232, 220, 200, 0.25);
}

.wc-item.is-open .wc-trigger {
    background: rgba(196, 149, 106, 0.07);
}

/* icon circle */
.wc-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4B3621, #6B4226);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.wc-item.is-open .wc-icon-wrap {
    background: linear-gradient(135deg, #C4956A, #8B6347);
    transform: scale(1.06);
}

.wc-icon-wrap i {
    color: #D2B48C;
    font-size: 1rem;
}

.wc-item.is-open .wc-icon-wrap i {
    color: #FAF7F0;
}

.wc-cat-name {
    flex: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #4B3621;
    font-weight: 600;
}

/* category thumbnail (single image) */
.wc-thumb {
    width: 52px;
    height: 52px;
    border-radius: 3px;
    object-fit: cover;
    border: 1px solid #E8DCC8;
    flex-shrink: 0;
    transition: opacity 0.3s;
}

.wc-item.is-open .wc-thumb {
    opacity: 0.75;
}

/* chevron arrow */
.wc-chevron {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FAF7F0;
    border: 1px solid #E8DCC8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B6347;
    font-size: 0.7rem;
    transition: transform 0.35s ease, background 0.25s, color 0.25s;
}

.wc-item.is-open .wc-chevron {
    transform: rotate(180deg);
    background: #4B3621;
    color: #D2B48C;
    border-color: #4B3621;
}

/* ---- Collapsible body ---- */
.wc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
    padding: 0 1.75rem;
}

.wc-item.is-open .wc-body {
    max-height: 600px;
    padding: 0 1.75rem 1.75rem;
}

/* decorative thin rule */
.wc-body-rule {
    height: 1px;
    background: linear-gradient(to right, #D2B48C, transparent);
    margin-bottom: 1.25rem;
}

/* subcategory pills */
.wc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.wc-pill {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6B4226;
    background: #FAF7F0;
    border: 1px solid #D2B48C;
    padding: 0.45rem 1rem;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.wc-pill:hover {
    background: #4B3621;
    color: #D2B48C;
    border-color: #4B3621;
    transform: translateY(-2px);
}

/* ---- Belts standalone card (no dropdown) ---- */
.wc-belts-card {
    border: 1px solid #E8DCC8;
    border-radius: 4px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.4rem 1.75rem;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.wc-belts-card:hover {
    box-shadow: 0 6px 28px rgba(75, 54, 33, 0.08);
    border-color: #D2B48C;
}

.wc-belts-card .wc-cat-name {
    color: #6B4226;
}

.wc-belts-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C4956A;
    border: 1px solid #D2B48C;
    padding: 0.3rem 0.85rem;
    border-radius: 2px;
    margin-left: auto;
}

@media (max-width: 640px) {
    .wc-trigger {
        padding: 1.1rem 1.1rem;
        gap: 0.9rem;
    }

    .wc-thumb {
        width: 40px;
        height: 40px;
    }

    .wc-icon-wrap {
        width: 38px;
        height: 38px;
    }

    .wc-cat-name {
        font-size: 1.05rem;
    }

    .wc-belts-card {
        padding: 1.1rem;
    }
}

/* ================================================
   COOKIE CONSENT BANNER
   ================================================ */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transform: translateY(110%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

#cookie-banner.cookie-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

#cookie-banner.cookie-hidden {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
}

#cookie-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #1A1008;
    border-top: 1px solid rgba(196, 149, 106, 0.25);
    padding: 1.25rem 2rem;
    max-width: 100%;
    position: relative;
    box-shadow: 0 -8px 40px rgba(26, 16, 8, 0.35);
}

#cookie-icon-wrap {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4B3621, #8B6347);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C4956A;
    font-size: 1.1rem;
}

#cookie-text {
    flex: 1;
    min-width: 0;
}

.cookie-heading {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #FAF7F0;
    margin-bottom: 0.25rem;
}

.cookie-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: rgba(232, 220, 200, 0.65);
    line-height: 1.6;
}

.cookie-learn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #C4956A;
    margin-top: 0.4rem;
    transition: color 0.2s;
}

.cookie-learn-link:hover {
    color: #D2B48C;
}

#cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    align-items: center;
}

#cookie-decline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(232, 220, 200, 0.6);
    background: transparent;
    border: 1px solid rgba(232, 220, 200, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

#cookie-decline:hover {
    color: #FAF7F0;
    border-color: rgba(232, 220, 200, 0.45);
}

#cookie-accept {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FAF7F0;
    background: #C4956A;
    border: 1px solid #C4956A;
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

#cookie-accept:hover {
    background: #D2B48C;
    border-color: #D2B48C;
}

#cookie-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: transparent;
    border: none;
    color: rgba(232, 220, 200, 0.4);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.2s;
}

#cookie-close:hover {
    color: #FAF7F0;
}

@media (max-width: 768px) {
    #cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem 1.5rem 1.5rem;
    }

    #cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }

    #cookie-icon-wrap {
        display: none;
    }
}

/* ================================================
   PRIVACY POLICY PAGE
   ================================================ */
.privacy-intro {
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.08), rgba(210, 180, 140, 0.04));
    border-left: 3px solid #C4956A;
    padding: 1.75rem 2rem;
    border-radius: 0 4px 4px 0;
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #E8DCC8;
}

.privacy-section:last-of-type {
    border-bottom: none;
}

.privacy-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #4B3621;
    margin-bottom: 1.1rem;
    line-height: 1.3;
}

.privacy-section-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    color: #6B4226;
    line-height: 1.85;
}

.privacy-section-body ul {
    margin-top: 0.75rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.privacy-section-body li {
    margin-bottom: 0.5rem;
    color: #6B4226;
}

.privacy-section-body strong {
    color: #4B3621;
    font-weight: 600;
}

.privacy-section-body a {
    color: #C4956A;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.privacy-section-body a:hover {
    color: #8B6347;
}

/* ================================================
   BRAND REFERENCES STRIP — Marquee / Ticker
   ================================================ */

/* ---- Keyframe ---- */
@keyframes brandsTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.3333%);
    }
}

/* ---- Section container ---- */
.brands-strip {
    padding: 5rem 0 4.5rem;
    background: #FFFFFF;
    border-top: 1px solid #E8DCC8;
    border-bottom: 1px solid #E8DCC8;
    overflow: hidden;
}

/* ---- Section header ---- */
.brands-strip__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
    padding: 0 1.5rem;
}

.brands-strip__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: #4B3621;
    line-height: 1.2;
    margin: 0.4rem 0 0.75rem;
}

.brands-strip__sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    color: #8B6347;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

/* ---- Marquee wrapper ---- */
.brands-marquee-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Subtle inner shadow to give depth */
    box-shadow: inset 0 1px 0 #E8DCC8, inset 0 -1px 0 #E8DCC8;
    background: #FAFAFA;
    padding: 2.25rem 0;
}

/* Gradient fade-out on the edges */
.brands-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

.brands-fade--left {
    left: 0;
    background: linear-gradient(to right, #FAFAFA 0%, transparent 100%);
}

.brands-fade--right {
    right: 0;
    background: linear-gradient(to left, #FAFAFA 0%, transparent 100%);
}

/* ---- Scrolling track ---- */
.brands-track {
    display: flex;
    align-items: center;
    gap: 0;
    /* spacing handled per item */
    width: max-content;
    animation: brandsTicker 32s linear infinite;
    will-change: transform;
}

/* Pause on hover for UX */
.brands-marquee-wrap:hover .brands-track {
    animation-play-state: paused;
}

/* ---- Individual logo card ---- */
.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    flex-shrink: 0;
    /* Thin vertical separator */
    border-right: 1px solid #E8DCC8;
    height: 100px;
}

.brand-logo-item:last-child {
    border-right: none;
}

.brand-logo-item img {
    display: block;
    /* Let the height define the size; width adapts naturally */
    height: 64px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: grayscale(100%) contrast(0.85) brightness(0.45);
    opacity: 0.75;
    transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
    user-select: none;
}


.brand-logo-item:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.06);
}

/* ---- Oversized logos (Brooks Brothers, Palas Hotel) ---- */
.brand-logo-item--big img {
    height: 84px;
    max-width: 280px;
}

/* ---- Responsive tweaks ---- */
@media (max-width: 768px) {
    .brands-strip {
        padding: 4rem 0 3.5rem;
    }

    .brands-strip__header {
        margin-bottom: 2.5rem;
    }

    .brand-logo-item {
        padding: 0 2rem;
        height: 80px;
    }

    .brand-logo-item img {
        height: 48px;
        max-width: 160px;
    }

    .brand-logo-item--big img {
        height: 64px;
        max-width: 210px;
    }

    .brands-fade {
        width: 70px;
    }

    .brands-track {
        animation-duration: 22s;
    }
}

@media (max-width: 480px) {
    .brand-logo-item {
        padding: 0 1.5rem;
    }

    .brand-logo-item img {
        height: 38px;
        max-width: 130px;
    }

    .brand-logo-item--big img {
        height: 50px;
        max-width: 170px;
    }

    .brands-track {
        animation-duration: 18s;
    }
}