:root {
    --bg-white: #ffffff;
    --bg-light: #f9f9f9;
    --bg-gray: #f4f4f4;
    --text-dark: #2e2e2e;
    --text-gray: #6b6b6b;
    
    /* PlantShed Pastel Palette */
    --c-sage: #c5ddcb;
    --c-dusty-pink: #f2c4ce;
    --c-muted-blue: #c5d6dd;
    --c-peach: #eedaC2;
    --c-pale-yellow: #f8f1de;
    
    --font-serif: 'Cormorant', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-fluid { max-width: 1600px; margin: 0 auto; padding: 0 4rem; }
.center { text-align: center; }
.pt-3 { padding-top: 3rem; }

/* ═══════════════ TYPOGRAPHY ═══════════════ */
.serif { font-family: var(--font-serif); font-weight: 500; }
.sans { font-family: var(--font-sans); }
.uppercase { text-transform: uppercase; letter-spacing: 1.5px; }

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    text-align: center;
    border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--text-dark); color: var(--bg-white); }
.btn-primary:hover { background: #000; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.btn-outline { background: transparent; border-color: var(--text-dark); color: var(--text-dark); }
.btn-outline:hover { background: var(--text-dark); color: var(--bg-white); }
.btn-full { width: 100%; }

.bg-sage { background-color: var(--c-sage); }
.bg-dusty-pink { background-color: var(--c-dusty-pink); }
.bg-muted-blue { background-color: var(--c-muted-blue); }
.bg-peach { background-color: var(--c-peach); }
.bg-light { background-color: var(--bg-gray); }
.bg-gray-section { background-color: #f7f7f7; }
.bg-white { background-color: var(--bg-white); }

/* ═══════════════ HEADER ═══════════════ */
.site-header {
    background: var(--bg-white);
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Softer line */
    box-shadow: 0 4px 20px rgba(0,0,0,0.02); /* Very subtle depth */
}

.top-bar {
    background: var(--text-dark); /* Darker, richer top bar */
    color: var(--bg-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 4rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.top-bar .divider { margin: 0 0.5rem; color: #666; }
.top-bar a:hover { color: var(--c-sage); }
.top-bar-center { width: 400px; text-align: center; }
.promo-swiper { height: 20px; }
.promo-swiper .swiper-slide { display: flex; align-items: center; justify-content: center; }

.main-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 1.5rem 4rem;
    align-items: center;
}
.brand-logo { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 500; letter-spacing: 1px; }
.mh-right { justify-self: end; }
.header-icons { display: flex; gap: 1.5rem; }
.icon-btn { background: none; border: none; cursor: pointer; position: relative; transition: transform 0.2s; }
.icon-btn:hover { transform: scale(1.1); }
.cart-count {
    position: absolute; top: -8px; right: -8px;
    background: var(--c-peach); color: var(--text-dark); font-size: 0.65rem; font-weight: bold;
    height: 18px; width: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }

.category-nav { padding: 1.25rem 0; background: var(--bg-white); }
.category-nav ul { display: flex; justify-content: center; gap: 3rem; }
.category-nav a { 
    font-size: 0.85rem; 
    font-weight: 600; /* Bolder font */
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    position: relative; /* For the underline animation */
    padding-bottom: 4px;
}
.category-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--text-dark);
    transition: width 0.3s ease;
}
.category-nav a:hover::after { width: 100%; }

/* ═══════════════ SPLIT FRAME (Hero & Blocks) ═══════════════ */
.split-frame { display: flex; height: 100%; min-height: 550px; }
.split-frame.reversed { flex-direction: row-reverse; }
.sf-text { flex: 1; display: flex; align-items: center; justify-content: center; padding: 4rem; }
.sf-content { max-width: 500px; text-align: center; }
.kicker { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; }
.sf-content h1, .sf-content h2 { font-size: 4.5rem; line-height: 1.05; margin-bottom: 1.5rem; }
.sf-content p { font-size: 1.15rem; margin-bottom: 2.5rem; opacity: 0.9; }
.sf-image { flex: 1; }
.sf-image img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════ HERO SWIPER ═══════════════ */
.hero-section { position: relative; }
.hero-swiper { height: 85vh; min-height: 600px; }
.hero-swiper .swiper-slide { display: flex; }
.style-nav-btn { color: var(--text-dark); }
.style-nav-btn::after { font-size: 1.5rem; }

/* ═══════════════ STATS SECTION (NEW) ═══════════════ */
.trust-stats { padding: 5rem 0; border-bottom: 1px solid var(--bg-gray); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; gap: 2rem; }
.stat-item h2 { font-size: 4rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.stat-item p { font-size: 0.85rem; font-weight: 600; color: var(--text-gray); }

/* ═══════════════ HOW IT WORKS (NEW) ═══════════════ */
.how-it-works { padding: 6rem 0; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4rem; margin-top: 4rem; text-align: center; }
.process-step { position: relative; padding: 2rem; background: var(--bg-white); box-shadow: 0 10px 40px rgba(0,0,0,0.03); border-radius: 4px; transition: transform 0.3s ease; }
.process-step:hover { transform: translateY(-10px); }
.step-num { font-size: 3rem; color: var(--c-sage); margin-bottom: 1rem; line-height: 1; }
.process-step h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.process-step p { color: var(--text-gray); }

/* ═══════════════ TRIPLE CATEGORIES ═══════════════ */
.triple-categories { padding: 6rem 0; }
.tc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.tc-block { display: flex; flex-direction: column; cursor: pointer; }
.tc-img { aspect-ratio: 1/1; overflow: hidden; }
.tc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.tc-block:hover .tc-img img { transform: scale(1.05); }
.tc-text { padding: 2rem; text-align: center; }
.tc-text h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.link-view { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-bottom: 2px solid var(--text-dark); padding-bottom: 2px; transition: color 0.3s; }
.tc-block:hover .link-view { color: var(--text-gray); border-color: var(--text-gray); }

/* ═══════════════ PRODUCT CAROUSEL ═══════════════ */
.product-carousel-section { padding: 6rem 0; overflow: hidden; }
.section-header { margin-bottom: 4rem; }
.section-header h2 { font-size: 3rem; margin-bottom: 0.5rem; }
.products-swiper { padding-bottom: 4rem; }

/* Scale effect for center slide */
.products-swiper .swiper-slide {
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.6;
    transform: scale(0.9);
}
.products-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

.product-item { text-align: left; position: relative; }
.pi-image { position: relative; aspect-ratio: 1/1; background: var(--bg-gray); overflow: hidden; margin-bottom: 1rem; }
.pi-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-item:hover .pi-image img { transform: scale(1.03); }
.pi-action { position: absolute; bottom: -60px; left: 0; width: 100%; padding: 1rem; transition: bottom 0.3s ease; }
.product-item:hover .pi-action { bottom: 0; }
.pi-info h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.pi-info .price { font-weight: 600; }

/* ═══════════════ TESTIMONIALS (NEW) ═══════════════ */
.testimonials-section { padding: 6rem 0; overflow: hidden; }
.testimonial-swiper { padding-bottom: 3rem; }
.testimonial-swiper .swiper-slide { padding: 0 2rem; }
.stars { color: var(--text-dark); font-size: 1.5rem; letter-spacing: 4px; margin-bottom: 2rem; }
.quote { font-size: 2.2rem; line-height: 1.3; max-width: 800px; margin: 0 auto 2rem; font-style: italic; }
.author { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.test-pagination { bottom: 0 !important; }
.test-pagination .swiper-pagination-bullet-active { background: var(--text-dark); }

/* ═══════════════ TABS SECTION ═══════════════ */
.occasion-tabs-section { padding: 6rem 0; border-top: 1px solid var(--bg-gray); }
.tabs-nav { display: flex; justify-content: center; gap: 4rem; margin-bottom: 4rem; border-bottom: 1px solid #e0e0e0; }
.tab-btn { background: none; border: none; font-family: var(--font-sans); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 1rem 0; cursor: pointer; border-bottom: 2px solid transparent; color: var(--text-gray); transition: all 0.3s; }
.tab-btn:hover { color: var(--text-dark); }
.tab-btn.active { color: var(--text-dark); border-bottom-color: var(--text-dark); }
.tab-content { display: none; animation: fadeIn 0.5s ease; }
.tab-content.active { display: block; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════ 2x2 FEATURE GRID ═══════════════ */
.features-2x2 { padding: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; }
.grid-2 .split-frame { flex-direction: column; min-height: auto; }
.grid-2 .sf-image, .grid-2 .sf-text { flex: none; height: 50vh; }
.grid-2 .sf-image img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════ FOOTER ═══════════════ */
.site-footer { background: var(--bg-white); border-top: 1px solid var(--bg-gray); padding: 6rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 4rem; margin-bottom: 4rem; }
.brand-col h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.brand-col p { opacity: 0.8; }
.links-col h4, .subscribe-col h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; }
.links-col ul { display: flex; flex-direction: column; gap: 1rem; }
.links-col a, .subscribe-col p { color: var(--text-gray); font-size: 0.95rem; }
.links-col a:hover { color: var(--text-dark); }
.subscribe-form { display: flex; border-bottom: 1px solid var(--text-dark); padding-bottom: 0.5rem; margin-top: 1.5rem; }
.subscribe-form input { flex-grow: 1; background: transparent; border: none; outline: none; font-size: 0.95rem; }
.subscribe-form button { background: none; border: none; cursor: pointer; text-transform: uppercase; font-weight: 600; font-size: 0.9rem; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--bg-gray); padding-top: 2rem; font-size: 0.85rem; color: var(--text-gray); }
.legal { display: flex; gap: 2rem; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1200px) {
    .container-fluid { padding: 0 2rem; }
    .tc-grid, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .sf-content h1, .sf-content h2 { font-size: 3.5rem; }
    .stats-grid, .process-grid { gap: 2rem; }
}

@media (max-width: 768px) {
    .top-bar-left, .top-bar-right { display: none; }
    .top-bar { justify-content: center; }
    .category-nav { display: none; }
    .menu-toggle { display: block; }
    .main-header { grid-template-columns: auto 1fr auto; padding: 1.5rem 2rem; }
    .brand-logo { justify-self: center; }
    .split-frame { flex-direction: column; min-height: auto; }
    .sf-text { padding: 3rem 2rem; }
    .sf-image { min-height: 400px; }
    .hero-swiper { height: auto; }
    .tc-grid, .grid-4 { grid-template-columns: 1fr; }
    .stats-grid, .process-grid { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .quote { font-size: 1.5rem; }
}
