:root {
    --primary-color: #c4a68a;
    --secondary-color: #7a6855;
    --accent-color: #e2c4b0;
    --text-color: #3a3a3a;
    --light-color: #faf6f3;
    --dark-color: #2a2a2a;
    --success-color: #5b8070;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

p {
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--box-shadow);
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}

/* Header — transparent on homepage, frosted on inner pages */
header.site-header {
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Inner pages: sticky frosted header */
body:not(.home) header.site-header {
    position: sticky;
    top: 0;
    background-color: rgba(250, 246, 243, 0.92);
    /* --light-color at 92% opacity */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(196, 166, 138, 0.2);
    /* subtle --primary-color line */
    box-shadow: 0 2px 16px rgba(58, 58, 58, 0.06);
    padding: 14px 0;
    /* slightly tighter on inner pages */
}

/* Logo: white on homepage, brand brown on inner pages */
.site-header .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
}

/* Medium screen adjustments for wide menu spacing */
@media (max-width: 1100px) and (min-width: 769px) {
    .nav-menu {
        gap: 15px !important;
    }
    .nav-menu li a {
        font-size: 0.95rem !important;
    }
    .nav-menu>.menu-item {
        margin-left: 10px !important;
    }
}

body:not(.home) .site-header .logo {
    color: var(--secondary-color);
}

body:not(.home) .site-header .logo:hover {
    color: var(--primary-color);
}

/* Nav menu structures & layout */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu>.menu-item {
    position: relative;
    margin-left: 20px;
}

/* Nav links default: white on homepage */
.site-header nav a {
    display: inline-block;
    color: white;
    text-decoration: none;
    margin-left: 0 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Dropdown chevron indicator */
.nav-menu .menu-item-has-children>a {
    display: inline-block;
    padding-right: 18px;
    position: relative;
}

.nav-menu .menu-item-has-children>a::after {
    content: '\f078';
    /* FontAwesome chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.nav-menu .menu-item-has-children:hover>a::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Submenu container (dropdown) */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: rgba(250, 246, 243, 0.98);
    /* --light-color */
    box-shadow: 0 8px 25px rgba(58, 58, 58, 0.1);
    border: 1px solid rgba(196, 166, 138, 0.25);
    border-radius: var(--border-radius);
    min-width: 170px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1100;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-menu .menu-item-has-children:hover .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0);
}

.nav-menu .sub-menu li {
    width: 100%;
    margin-left: 0 !important;
}

/* Submenu link text styles (always dark background contrast) */
.nav-menu .sub-menu a {
    padding: 8px 20px !important;
    color: var(--secondary-color) !important;
    font-size: 0.92rem;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-menu .sub-menu a:hover {
    background: rgba(196, 166, 138, 0.12);
    color: var(--primary-color) !important;
}

/* Nav links: dark on inner pages */
body:not(.home) .site-header nav a {
    color: var(--secondary-color) !important;
}

body:not(.home) .site-header nav a:hover {
    color: var(--primary-color) !important;
    opacity: 1;
}

/* Ensure dropdown links don't turn white on scroll or active state */
body:not(.home) .nav-menu .sub-menu a {
    color: var(--secondary-color) !important;
}

body:not(.home) .nav-menu .sub-menu a:hover {
    color: var(--primary-color) !important;
}

/* ─── Active nav item (current page) ──────────────────────────── */
.nav-menu a.nav-active,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: var(--primary-color) !important;
    position: relative;
}

.nav-menu a.nav-active::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ─── Hero Carousel ──────────────────────────────────────────────────────── */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    background: #2a2a2a;
    /* fallback while images load */
}

/* Track holds all slides */
.hc-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* ── Slides ── */
.hc-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    pointer-events: none;
    /* inactive slides block nothing */
}

.hc-slide.is-active {
    pointer-events: auto;
}

/* ── Fade transition ── */
.hc-transition-fade .hc-slide {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hc-transition-fade .hc-slide.is-active {
    opacity: 1;
}

/* ── Slide transition ── */
.hc-transition-slide .hc-slide {
    transform: translateX(100%);
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
}

.hc-transition-slide .hc-slide.is-prev {
    transform: translateX(-100%);
}

.hc-transition-slide .hc-slide.is-active {
    transform: translateX(0);
}

/* ── Slide content ── */
.hc-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: hcFadeUp 0.9s ease both;
}

@keyframes hcFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hc-heading {
    color: white;
    font-size: clamp(2rem, 5vw, 3.8rem);
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    animation: hcFadeUp 0.9s ease both;
}

.hc-subtext {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.92;
    line-height: 1.7;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
    animation: hcFadeUp 0.9s 0.15s ease both;
}

.hc-btn {
    animation: hcFadeUp 0.9s 0.3s ease both;
}

/* ── Arrows ── */
.hc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.25);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(4px);
}

.hc-arrow:hover {
    background: rgba(196, 166, 138, 0.85);
    /* --primary-color */
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
}

.hc-prev {
    left: 1.5rem;
}

.hc-next {
    right: 1.5rem;
}

/* ── Dots ── */
.hc-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.hc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.hc-dot.is-active,
.hc-dot:hover {
    background: white;
    transform: scale(1.25);
}

/* ── Scroll-down arrow (shared with old .hero) ── */
.hero-carousel .scroll-down {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 20;
    opacity: 0.8;
}

/* Push scroll-down above dots when both exist */
.hero-carousel:has(.hc-dots) .scroll-down {
    bottom: 5rem;
}

@media (max-width: 768px) {
    .hc-arrow {
        display: none;
    }

    /* rely on swipe on mobile */
    .hc-dots {
        bottom: 1.5rem;
    }
}


.hero-peony {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../products/packages/peoney07.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-peony h1,
.hero-peony p {
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

.hero .btn {
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light-color);
}

@media (max-width: 768px) {
    .about .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        order: -1;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text .services-list {
    margin: 1.5rem 0;
    padding-left: 1.2rem;
    list-style: none;
}

.about-text .services-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-text .services-list li:before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Sensory Craftsmanship Custom Styling */
.grand-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
    margin-bottom: 2.5rem;
    position: relative;
}

.grand-headline::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 1.5rem;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.grand-list-container {
    margin: 2.5rem 0;
}

.grand-list-container .experience-intro {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.grand-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(196, 166, 138, 0.2);
    border-bottom: 1px solid rgba(196, 166, 138, 0.2);
}

.grand-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(196, 166, 138, 0.1);
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.6;
    transition: var(--transition);
}

.grand-list-item:last-child {
    border-bottom: none;
}

.grand-list-item:hover {
    padding-left: 10px;
    color: var(--secondary-color);
}

.grand-list-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.grand-outro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--secondary-color);
    text-align: right;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.grand-outro p {
    margin: 0;
}

.luxury-callout {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #faf6f3 100%);
    border: 1px solid rgba(196, 166, 138, 0.25);
    border-radius: 12px;
    padding: 2.2rem;
    box-shadow: 0 10px 30px rgba(196, 166, 138, 0.08);
    overflow: hidden;
    margin-top: 3rem;
}

.luxury-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.callout-quote-icon {
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 3.5rem;
    color: rgba(196, 166, 138, 0.08);
    pointer-events: none;
}

.luxury-callout p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
    position: relative;
    z-index: 1;
}


.workshops {
    padding: 60px 0;
    background-color: var(--light-color);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.workshop-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.workshop-card:hover {
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    .workshop-image {
        background-position: center;
        background-size: cover;
    }
}

.workshop-image {
    height: 200px;
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.workshop-card:hover .workshop-image img {
    transform: scale(1.05);
}

.workshop-content {
    padding: 25px;
}

.workshop-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.workshop-description {
    margin-bottom: 20px;
    color: var(--text-color);
}

.workshop-features {
    list-style: none;
    margin-bottom: 20px;
}

.workshop-features li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.workshop-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
}

/* Corporate Info Box on Workshop Detail Page */
.corporate-info-box {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(196, 166, 138, 0.08);
    border: 1px solid rgba(196, 166, 138, 0.2);
    margin: 4rem 0;
}

.corp-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(196, 166, 138, 0.15);
    padding-bottom: 1.2rem;
}

.corp-header i {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.corp-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 0;
}

.corp-lead-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2.5rem;
}

.corp-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .corp-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.corp-detail-card {
    background: var(--light-color);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 3px solid var(--primary-color);
}

.corp-card-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.corp-detail-card strong {
    display: block;
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.corp-detail-card p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-color);
    line-height: 1.5;
}

.corp-features-list-wrapper h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.corp-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.corp-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1.02rem;
    line-height: 1.5;
    color: var(--text-color);
}

.corp-features-list li:last-child {
    margin-bottom: 0;
}

.corp-features-list li i {
    color: var(--success-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.corp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: rgba(196, 166, 138, 0.05);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 3rem;
    border: 1px dashed rgba(196, 166, 138, 0.3);
}

@media (max-width: 768px) {
    .corp-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 1.5rem;
    }
    
    .corp-footer .btn {
        text-align: center;
        display: block;
    }
}

.corp-footer-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.corp-footer-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
}


/* Image with luxury border offset */
.about-image-wrapper {
    position: relative;
    padding: 15px;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--primary-color);
    z-index: 0;
    pointer-events: none;
    transition: var(--transition);
}

.about-image img {
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    width: 100%;
}

.about-image:hover::before {
    transform: translate(10px, 10px);
}

.about-image:hover img {
    transform: translate(-5px, -5px);
}

@media (max-width: 480px) {
    .about-image::before {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--light-color);
    border: 1px solid rgba(196, 166, 138, 0.15);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Products Section */
.products {
    padding: 100px 0;
    background-color: white;
}

.collection-section {
    margin-bottom: 60px;
}

.collection-section h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.collection-section p {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.product-filters {
    margin-bottom: 40px;
    text-align: center;
}

.search-input {
    width: 100%;
    max-width: 400px;
    padding: 12px 20px;
    margin-bottom: 20px;
    border: 1px solid var(--accent-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(196, 166, 138, 0.2);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

.products-container {
    position: relative;
}

.collection-section {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.collection-section.hidden {
    display: none;
    opacity: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        gap: 20px;
    }

    .product-image {
        height: 300px;
    }

    .product-details {
        padding: 15px;
    }

    .product-card-full {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .product-details {
        padding: 0.5rem;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .product-features li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        gap: 15px;
    }

    .product-image {
        height: 250px;
    }
}

/* Peony landing page specific product grid */
.peony-products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .peony-products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 400px;
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    display: block;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-details {
    padding: 20px;
}

/* 专用于牡丹香薰石页面的全宽产品卡片样式 */
.product-card-full {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-price {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.product-description {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Gift Box Content Card */
.gift-box-content {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--accent-color);
}

.gift-box-content .product-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.gift-box-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gift-box-content li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--accent-color);
    font-size: 1.1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gift-box-content li:last-child {
    border-bottom: none;
}

.gift-box-content li:before {
    content: '✦';
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* How to Use Section */
.how-to-use {
    padding: 100px 0;
    background-color: var(--light-color);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: white;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    text-align: center;
    padding: 40px 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1596178065887-1198b6148b2b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 30px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
}

/* Product archive — category tag link */
.category-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.category-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Product archive — image wrapper link */
.product-image-link {
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.product-image-link .product-image {
    transition: transform 0.35s ease;
}

.product-image-link:hover .product-image img {
    transform: scale(1.04);
}

/* ─── Breadcrumb Navigation ─── */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    /* up from browser default ~0.8rem */
    font-weight: 500;
    color: var(--secondary-color);
    padding: 0.6rem 0;
    line-height: 1.5;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
    padding-bottom: 1px;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--text-color);
    font-weight: 600;
}

/* separator > characters */
.breadcrumb a::after,
.breadcrumb span.sep {
    content: '';
}

@media (max-width: 600px) {
    .breadcrumb {
        font-size: 0.9rem;
    }
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 0;
    padding: 5px 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

/* Lightbox Styles */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-caption {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    text-align: center;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    margin-top: 10px;
}

.lightbox-title {
    color: var(--secondary-color);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.lightbox-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }
}

/* Founder Section */
.founder {
    padding: 100px 0;
    background-color: var(--light-color);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.founder-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.founder-text h2 {
    margin-bottom: 0.5rem;
}

.founder-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.founder-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    text-align: center;
}

.achievement {
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(196, 166, 138, 0.1);
}

.achievement-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.achievement-text {
    font-size: 0.9rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
    }

    .founder-image {
        order: -1;
    }

    .founder-achievements {
        grid-template-columns: 1fr;
    }
}

.workshop-card {
    background-position: center bottom;
}

/* ─── Featured Sections (Products, Workshops, Courses) ─── */
.featured-section {
    padding: 80px 0;
    background-color: var(--light-color);
    /* Light warm beige */
}

/* Alternating backgrounds: workshops=light, courses=white, products=light */
#featured-workshops {
    background-color: var(--light-color);
}

#featured-courses {
    background-color: white;
}

#featured-products {
    background-color: var(--light-color);
}

.featured-header {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3rem);
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.featured-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.featured-view-all {
    text-align: center;
    margin-top: 3rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* ─── Premium Carousel Enhancements ─── */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 60px !important; /* Gutter space for navigation arrows */
    overflow: visible !important;  /* Allow shadows to bloom */
}

.carousel-viewport {
    overflow: hidden !important;
    width: 100%;
    padding: 15px 0 !important;   /* Extra space for hover translateY translation */
    margin: -15px 0 !important;   /* Compensate padding to keep margins correct */
}

.carousel-track {
    display: flex !important;
    gap: 30px !important;
    align-items: stretch !important; /* Stretch cards to equal height */
    transition: transform 0.5s ease-in-out;
    width: max-content;
}

.carousel-card {
    flex: 0 0 300px !important;
    max-width: 300px !important;
    width: 300px !important;
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    border-radius: var(--border-radius) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    transition: var(--transition) !important;
}

/* Elevate hover effect */
.carousel-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Card Link and Inner Elements Flexing */
.carousel-card > a.product-link-wrapper,
.carousel-card > a.workshop-link-wrapper,
.carousel-card > a {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    text-decoration: none !important;
    color: inherit !important;
}

.carousel-card .product-image,
.carousel-card .workshop-image {
    width: 100% !important;
    height: 300px !important; /* Balanced portrait aspect ratio */
    overflow: hidden !important;
    position: relative !important;
    border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
}

.carousel-card .product-image img,
.carousel-card .workshop-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: var(--transition) !important;
}

.carousel-card .product-details,
.carousel-card .workshop-info,
.carousel-card .workshop-details {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    padding: 1.5rem !important;
}

.carousel-card .product-title,
.carousel-card .workshop-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.35rem !important;
    color: var(--secondary-color) !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
}

.carousel-card .product-description {
    font-size: 0.85rem !important;
    color: #777 !important;
    margin-bottom: 1rem !important;
    line-height: 1.5 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-card .product-price,
.carousel-card .workshop-meta {
    margin-top: auto !important; /* Pushes price/meta to the bottom of the details section */
    font-weight: 600;
}

.carousel-card .product-price {
    font-size: 1.15rem !important;
    color: var(--secondary-color) !important;
    margin-bottom: 0 !important;
}

.carousel-card .product-actions {
    padding: 0 1.5rem 1.5rem !important;
    margin-top: auto !important; /* Aligns button neatly at bottom of the card */
}

.carousel-card .product-actions .btn {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

/* Premium Navigation Arrows */
.carousel-container .carousel-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
    font-size: 0.9rem !important; /* Elegant small icon */
}

.carousel-container .carousel-nav:hover {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(196, 166, 138, 0.3) !important;
}

.carousel-container .carousel-nav.prev {
    left: 8px !important; /* Centered in the 60px side padding space */
}

.carousel-container .carousel-nav.next {
    right: 8px !important;
}

.carousel-container .carousel-nav:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    border-color: #ddd !important;
    color: #ccc !important;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .carousel-container {
        padding: 20px 15px !important;
    }
    
    .carousel-container .carousel-nav {
        display: none !important; /* Hide arrows on touch devices to prioritize swipe navigation */
    }
    
    .carousel-card {
        flex: 0 0 270px !important;
        width: 270px !important;
        max-width: 270px !important;
    }
    
    .carousel-card .product-image,
    .carousel-card .workshop-image {
        height: 220px !important;
    }
}

/* ─── Storytelling Editorial Layout styles ─── */

.section-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-lead-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* 50/50 Split Experience Section */
.workshop-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.workshop-split-image {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.workshop-split-image .image-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
}

.overlay-badge {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.workshop-split-content {
    display: flex;
    flex-direction: column;
}

.workshop-split-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Workshops Mini Grid */
.workshop-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 2.5rem;
}

.workshop-mini-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.workshop-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(196, 166, 138, 0.2);
}

.mini-card-link-wrapper {
    display: flex;
    text-decoration: none;
    color: inherit;
    padding: 16px;
    gap: 15px;
    align-items: center;
}

.mini-card-image {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.mini-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-card-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mini-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 4px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-card-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.8rem;
    color: #777;
}

.mini-card-meta i {
    color: var(--primary-color);
    margin-right: 4px;
}

.mini-price {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Academy Highlight Section styles */
.academy-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.academy-spotlight {
    display: flex;
}

.spotlight-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: all 0.3s ease;
}

.spotlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.spotlight-image {
    height: 360px;
    position: relative;
    overflow: hidden;
}

.spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.spotlight-details {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.spotlight-details h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.spotlight-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: #666;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.spotlight-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.spotlight-meta i {
    color: var(--primary-color);
}

.spotlight-price {
    font-weight: 700;
    color: var(--secondary-color);
}

.spotlight-details .btn {
    align-self: flex-start;
}

/* Academy Sidebar list */
.academy-sidebar {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(196, 166, 138, 0.2);
    padding-bottom: 10px;
}

.academy-side-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.academy-side-item {
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.academy-side-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border-color: rgba(196, 166, 138, 0.15);
}

.side-item-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    gap: 20px;
    align-items: center;
    padding: 12px;
}

.side-item-image {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.side-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-item-details {
    display: flex;
    flex-direction: column;
}

.side-item-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 6px;
    line-height: 1.3;
}

.side-item-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #666;
}

.side-item-price {
    font-weight: 600;
    color: var(--primary-color);
}

.academy-sidebar-action {
    margin-top: auto;
}

.academy-sidebar-action .btn {
    width: 100%;
    text-align: center;
}

/* Responsive Editorial Layouts */
@media (max-width: 992px) {
    .workshop-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .workshop-split-image {
        min-height: 350px;
    }
    
    .academy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .workshop-mini-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .spotlight-details {
        padding: 1.5rem;
    }
    
    .academy-sidebar {
        padding: 1.5rem;
    }
    
    .workshop-split-content h2 {
        font-size: 2.2rem;
    }
}

/* ─── Mini Card & Side List Rotator Controls ─────────────────────── */

/* Wrapper keeps height stable during card swap */
.workshop-rotator,
.academy-side-rotator {
    position: relative;
}

/* Rotator grid stays 2-col but cards animate in/out */
.rotator-grid {
    position: relative;
    min-height: 110px;
}

.rotator-card,
.rotator-side-card,
.rotator-spotlight-card {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Controls row: prev arrow | dots | next arrow */
.rotator-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 12px 0 18px;
}

.side-rotator-controls {
    margin: 10px 0 0;
}

.rotator-arrow {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.rotator-arrow:hover {
    background: var(--primary-color);
    color: white;
}

.rotator-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.rotator-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(196, 166, 138, 0.3);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.rotator-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Spotlight bottom dots (center-aligned) */
.spotlight-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

/* Spotlight card swap — smooth height */
.spotlight-rotator {
    position: relative;
}

.rotator-spotlight-card {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* ─── Location Landing Page Styles (Local SEO) ─── */
.location-header {
    background: linear-gradient(135deg, #faf6f3 0%, #f3ede7 100%);
    padding: 6rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.location-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(196, 166, 138, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.6;
    pointer-events: none;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 166, 138, 0.15);
    color: var(--secondary-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.location-badge i {
    color: var(--primary-color);
}

.location-header .archive-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.2;
}

.location-header .archive-description {
    font-size: 1.15rem;
    color: #555;
    max-width: 750px;
    margin: 0 auto 2.5rem;
}

.location-cta-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.location-cta-row .btn-secondary {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.location-cta-row .btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.location-workshops-section,
.location-sessions-section {
    padding: 5rem 2rem;
}

.location-workshops-section {
    background-color: white;
}

.location-sessions-section {
    background-color: var(--light-color);
    border-top: 1px solid rgba(196, 166, 138, 0.1);
}

.section-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #777;
    max-width: 650px;
    margin: 0 auto 3rem;
}

@media (max-width: 768px) {
    .location-header {
        padding: 4rem 1.5rem 3.5rem;
    }
    .location-cta-row {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .location-cta-row .btn {
        width: 100%;
        text-align: center;
    }
    .location-workshops-section,
    .location-sessions-section {
        padding: 3.5rem 1rem;
    }
}

/* ─── Mobile Navigation & Header Responsiveness ─── */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white; /* transparent on homepage initially */
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 1200;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 5px;
}

body:not(.home) .mobile-nav-toggle {
    color: var(--secondary-color);
}

.mobile-nav-toggle:hover {
    transform: scale(1.05);
}

.mobile-nav-toggle:focus {
    outline: none;
}

@media (max-width: 768px) {
    .site-header nav {
        position: absolute;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .mobile-nav-toggle[aria-expanded="true"] {
        color: var(--secondary-color) !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -320px; /* slide off-screen */
        width: 290px;
        height: 100vh;
        background-color: rgba(250, 246, 243, 0.98); /* var(--light-color) */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: -10px 0 30px rgba(58, 58, 58, 0.15);
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 90px 30px 40px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1050;
        margin: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > .menu-item {
        margin: 12px 0 !important;
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active > .menu-item {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered load animation */
    .nav-menu.active > .menu-item:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active > .menu-item:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active > .menu-item:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active > .menu-item:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active > .menu-item:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu.active > .menu-item:nth-child(6) { transition-delay: 0.3s; }
    .nav-menu.active > .menu-item:nth-child(7) { transition-delay: 0.35s; }
    .nav-menu.active > .menu-item:nth-child(8) { transition-delay: 0.4s; }

    .site-header nav a {
        color: var(--secondary-color) !important;
        font-size: 1.15rem;
        font-weight: 600;
        display: block;
        padding: 8px 0;
        width: 100%;
        border-bottom: 1px solid rgba(196, 166, 138, 0.15);
    }

    .site-header nav a.nav-active::after,
    .nav-menu .current-menu-item > a::after,
    .nav-menu .current_page_item > a::after {
        display: none !important;
    }

    .nav-menu a.nav-active,
    .nav-menu .current-menu-item > a,
    .nav-menu .current_page_item > a {
        color: var(--primary-color) !important;
    }

    /* Submenus on Mobile - Expanded */
    .nav-menu .sub-menu {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 5px 0 5px 15px;
        min-width: unset;
        display: block !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-menu .sub-menu li {
        margin: 5px 0 !important;
    }

    .nav-menu .sub-menu a {
        font-size: 0.95rem !important;
        font-weight: 500;
        padding: 6px 0 !important;
        border-bottom: none !important;
        color: #666 !important;
    }

    .nav-menu .sub-menu a:hover {
        background: transparent !important;
        color: var(--primary-color) !important;
    }

    .nav-menu .menu-item-has-children > a::after {
        display: none !important;
    }
}

/* ─── Specialty Pages: Team Building & Collaboration ─── */
.editorial-hero {
    background-color: var(--secondary-color);
    color: white;
    padding: 110px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.editorial-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.6;
    pointer-events: none;
}

.team-building-hero {
    background: linear-gradient(135deg, rgba(122, 104, 85, 0.85) 0%, rgba(42, 42, 42, 0.9) 100%), url('../images/products/backgrounds/studio.jpg') no-repeat center center/cover;
    background-attachment: scroll;
}

.collaboration-hero {
    background: linear-gradient(135deg, rgba(122, 104, 85, 0.85) 0%, rgba(42, 42, 42, 0.9) 100%), url('../images/products/backgrounds/artsofaroma.jpg') no-repeat center center/cover;
    background-attachment: scroll;
}

.editorial-hero h1 {
    color: white;
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.editorial-hero p {
    color: #f3ede7;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.alternate-bg {
    background-color: var(--light-color) !important;
}

/* Services Features Grid */
.services-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Activity Split Showcase */
.activity-split-showcase {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(196, 166, 138, 0.1);
    transition: var(--transition);
}

.showcase-row.alternate-layout {
    grid-template-columns: 1.1fr 1fr;
}

.showcase-row.alternate-layout .showcase-image {
    order: 2;
}

.showcase-image {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.showcase-row:hover .showcase-image img {
    transform: scale(1.03);
}

.showcase-content {
    padding: 40px;
}

.showcase-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
}

.showcase-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.activity-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.activity-specs li {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.activity-specs i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Scent Customization */
.scents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.scent-item {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    border: 1px solid rgba(196, 166, 138, 0.1);
    transition: var(--transition);
}

.scent-item:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 166, 138, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.scent-leaf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.scent-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.scent-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Custom FAQ Accordion */
.custom-faq-section {
    padding: 100px 0;
    background-color: white;
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid rgba(196, 166, 138, 0.15);
    border-radius: var(--border-radius);
    background-color: var(--light-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(196, 166, 138, 0.08);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    margin: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: var(--secondary-color) !important;
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Sections paddings */
.team-benefits-section,
.team-activities-section,
.collab-value-section,
.scent-customization-section {
    padding: 100px 0;
}

/* Responsive Specialty Pages styles */
@media (max-width: 992px) {
    .showcase-row,
    .showcase-row.alternate-layout {
        grid-template-columns: 1fr;
    }
    .showcase-row.alternate-layout .showcase-image {
        order: unset;
    }
    .showcase-image {
        height: 280px;
    }
    .showcase-content {
        padding: 30px;
    }
    .team-benefits-section,
    .team-activities-section,
    .collab-value-section,
    .scent-customization-section,
    .custom-faq-section {
        padding: 70px 0;
    }
}


