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

:root {
    --primary-sage: #7A9D7E;
    --primary-deep-green: #4A6B4D;
    --accent-terracotta: #D4916F;
    --accent-gold: #C9A76B;
    --neutral-cream: #F5F1E8;
    --neutral-sand: #E8E0D1;
    --text-dark: #2C3E2D;
    --text-light: #FFFFFF;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --section-padding: 90px;
    --container-max: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--primary-deep-green);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1001;
}

.announcement-bar a {
    color: var(--accent-gold);
    text-decoration: underline;
    font-weight: 600;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 0;
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.06);
    transition: top 0.3s;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 8px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary-deep-green);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.logo {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-deep-green);
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo-img {
    height: 34px;
    width: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-img {
    height: 65px;
    width: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Slide-in Menu */
.nav-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.nav-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 1002;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 30px 30px;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
}

.nav-menu.active {
    left: 0;
}

.nav-menu-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--neutral-sand);
}

.nav-menu-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-menu-logo span {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-deep-green);
}

.nav-menu a {
    display: block;
    padding: 14px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.2s;
}

.nav-menu a:hover {
    color: var(--primary-sage);
    padding-left: 8px;
}

.nav-menu .menu-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 14px 18px;
    background: #25D366;
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: none;
}

.nav-menu .menu-whatsapp:hover {
    background: #1da851;
    padding-left: 18px;
}

/* Hero Section (legacy) */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--neutral-cream) 0%, var(--neutral-sand) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(122, 157, 126, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-50px, 50px) rotate(180deg);
    }
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-sage);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-deep-green);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 36px;
    opacity: 0.8;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

/* ====== Hero Carousel ====== */
.hero-carousel {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hero-carousel-track {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-carousel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease-out;
}

.hero-carousel-slide.active .hero-carousel-bg {
    transform: scale(1.05);
}

.hero-carousel-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-carousel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 45, 0.5);
    z-index: 1;
}

.hero-carousel-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    text-align: center;
    padding: 0 40px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-carousel-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-carousel-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-carousel-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-carousel-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-carousel-btns .btn-primary {
    background: var(--accent-gold);
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(201, 167, 107, 0.4);
}

.hero-carousel-btns .btn-primary:hover {
    background: #b8944f;
    transform: translateY(-2px);
}

.hero-carousel-btns .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
}

.hero-carousel-btns .btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* Arrows */
.hero-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: none;
}

.hero-carousel-arrow:hover {
    background: rgba(255,255,255,0.3);
}

.hero-carousel-prev { left: 24px; }
.hero-carousel-next { right: 24px; }

.hero-carousel.has-slides .hero-carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dots */
.hero-carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-carousel-dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: scale(1.25);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-carousel-title { font-size: 44px; }
}

@media (max-width: 768px) {
    .hero-carousel-title { font-size: 34px; }
    .hero-carousel-desc { font-size: 15px; }
    .hero-carousel-content { padding: 0 24px; }
    .hero-carousel-arrow { width: 38px; height: 38px; font-size: 16px; }
    .hero-carousel-prev { left: 12px; }
    .hero-carousel-next { right: 12px; }
}

@media (max-width: 480px) {
    .hero-carousel-title { font-size: 28px; }
    .hero-carousel-subtitle { font-size: 12px; letter-spacing: 2px; }
    .hero-carousel-btns { flex-direction: column; align-items: center; }
    .hero-carousel-btns .btn { width: 100%; max-width: 260px; text-align: center; }
}

.btn {
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-sage);
    color: white;
    box-shadow: 0 10px 30px rgba(122, 157, 126, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-deep-green);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(122, 157, 126, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-deep-green);
    border: 2px solid var(--primary-deep-green);
}

.btn-secondary:hover {
    background: var(--primary-deep-green);
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
    max-width: 420px;
    margin: 0 auto;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(122, 157, 126, 0.3) 0%, transparent 100%);
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero Image Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-slider .hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-slider .hero-slide.active {
    position: relative;
    opacity: 1;
}
.hero-slider .hero-slide img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}
.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(122, 157, 126, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.hero-slider-dot.active {
    background: var(--primary-deep-green);
    transform: scale(1.3);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-deep-green);
    margin-bottom: 16px;
}

.section-description {
    font-size: 16px;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: var(--section-padding) 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 36px 28px;
    background: var(--neutral-cream);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-sage), var(--accent-gold), var(--accent-terracotta));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:nth-child(1)::before { background: linear-gradient(90deg, var(--primary-sage), var(--primary-deep-green)); }
.feature-card:nth-child(2)::before { background: linear-gradient(90deg, var(--accent-gold), var(--accent-terracotta)); }
.feature-card:nth-child(3)::before { background: linear-gradient(90deg, var(--accent-terracotta), var(--primary-sage)); }

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
    border-color: rgba(122, 157, 126, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-deep-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(122, 157, 126, 0.3);
}

.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-deep-green));
    box-shadow: 0 8px 20px rgba(122, 157, 126, 0.3);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-terracotta));
    box-shadow: 0 8px 20px rgba(201, 167, 107, 0.3);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--accent-terracotta), #c0614a);
    box-shadow: 0 8px 20px rgba(212, 145, 111, 0.3);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(122, 157, 126, 0.4);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-deep-green);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #f7f4ee 0%, #faf8f5 50%, #f7f4ee 100%);
}

/* Category Chips Bar */
.products-chips-bar {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 28px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(122, 157, 126, 0.3) transparent;
    -webkit-overflow-scrolling: touch;
}

.products-chips-bar::-webkit-scrollbar {
    height: 4px;
}

.products-chips-bar::-webkit-scrollbar-thumb {
    background: rgba(122, 157, 126, 0.3);
    border-radius: 4px;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 2px solid rgba(122, 157, 126, 0.2);
    background: white;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

.category-chip:hover {
    border-color: var(--primary-sage);
    background: rgba(122, 157, 126, 0.06);
    transform: translateY(-1px);
}

.category-chip.active {
    background: var(--primary-deep-green);
    color: white;
    border-color: var(--primary-deep-green);
    box-shadow: 0 4px 14px rgba(74, 107, 77, 0.25);
}

.chip-count {
    font-size: 11px;
    font-weight: 700;
    background: rgba(0,0,0,0.06);
    padding: 2px 8px;
    border-radius: 20px;
}

.category-chip.active .chip-count {
    background: rgba(255,255,255,0.2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    transition: opacity 0.3s ease;
}

.products-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
}

.page-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 2px solid rgba(122, 157, 126, 0.2);
    background: white;
    color: var(--primary-deep-green);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.page-btn:hover {
    border-color: var(--primary-sage);
    background: rgba(122, 157, 126, 0.08);
    transform: translateY(-1px);
}

.page-btn.active {
    background: var(--primary-deep-green);
    color: white;
    border-color: var(--primary-deep-green);
    box-shadow: 0 4px 12px rgba(74, 107, 77, 0.25);
}

.page-btn.arrow {
    font-size: 18px;
    border: none;
    background: transparent;
    color: var(--primary-deep-green);
}

.page-btn.arrow:hover {
    background: rgba(122, 157, 126, 0.1);
}

.page-btn.arrow:disabled {
    color: #ccc;
    cursor: not-allowed;
    background: transparent;
}

/* ====== PRODUCT CARD - MODERN ====== */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(74, 107, 77, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(122, 157, 126, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(74, 107, 77, 0.14);
    border-color: rgba(122, 157, 126, 0.2);
}

/* Product Image */
.product-image {
    width: 100%;
    height: 200px;
    min-height: 200px;
    background: linear-gradient(145deg, #faf8f4 0%, #f0ece3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 8px;
}

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

/* Stock badge overlay on image */
.product-stock-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.product-stock-badge.in-stock {
    background: rgba(40, 167, 69, 0.9);
    color: #fff;
}

.product-stock-badge.low-stock {
    background: rgba(255, 193, 7, 0.95);
    color: #333;
}

.product-stock-badge.out-of-stock {
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
}

/* Hover overlay with cart button */
.product-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(44, 62, 45, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 14px;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

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

.product-quick-add {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-deep-green);
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transform: translateY(8px);
    backdrop-filter: blur(4px);
}

.product-card:hover .product-quick-add {
    transform: translateY(0);
}

.product-quick-add:hover {
    background: var(--accent-gold);
    color: #fff;
    box-shadow: 0 4px 15px rgba(201, 167, 107, 0.4);
}

.product-quick-add:disabled {
    background: rgba(200, 200, 200, 0.8);
    color: #888;
    cursor: not-allowed;
    box-shadow: none;
}

.product-quick-add svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

/* View detail icon */
.product-view-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.product-card:hover .product-view-btn {
    opacity: 1;
    transform: scale(1);
}

.product-view-btn:hover {
    background: var(--primary-deep-green);
    color: #fff;
}

.product-view-btn svg {
    width: 16px;
    height: 16px;
}

/* Product Info */
.product-info {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    font-weight: 600;
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-deep-green);
    margin-bottom: 6px;
    line-height: 1.3;
    min-height: 44px;
    transition: color 0.2s;
}

.product-card:hover .product-name {
    color: var(--accent-terracotta);
}

.product-description {
    font-size: 12px;
    color: #8a8a8a;
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(122, 157, 126, 0.08);
}

.product-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-deep-green);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
}

/* Legacy button fallback (mobile) */
.product-btn {
    width: 100%;
    padding: 10px;
    background: var(--primary-sage);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}

.product-btn:hover {
    background: var(--primary-deep-green);
}

/* Product card entry animation */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: cardFadeIn 0.5s ease-out both;
}

/* Product Detail Modal */
.product-detail-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.product-detail-overlay.active {
    display: flex;
}

.product-detail-modal {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    animation: modalZoomIn 0.35s ease-out;
    position: relative;
}

@keyframes modalZoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.product-detail-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.06);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: all 0.3s;
    z-index: 2;
}

.product-detail-close:hover {
    background: rgba(0,0,0,0.12);
    color: #222;
}

.product-detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.product-detail-image {
    background: linear-gradient(135deg, #faf8f4 0%, var(--neutral-cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    padding: 30px;
    border-radius: 20px 0 0 20px;
    position: relative;
    overflow: hidden;
}

.product-detail-image img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
    border-radius: 10px;
}

.product-detail-image .emoji-large {
    font-size: 120px;
}

.product-detail-info {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
}

.product-detail-category {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    font-weight: 700;
    margin-bottom: 10px;
}

.product-detail-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-deep-green);
    margin-bottom: 16px;
    line-height: 1.2;
}

.product-detail-desc {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.product-detail-stock {
    margin-bottom: 16px;
}

.product-detail-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-deep-green);
    margin-bottom: 20px;
}

.product-detail-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-sage);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-detail-btn:hover {
    background: var(--primary-deep-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 107, 77, 0.3);
}

.product-detail-btn:disabled {
    background: #999;
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .product-detail-body {
        grid-template-columns: 1fr;
    }
    .product-detail-image {
        min-height: 250px;
        border-radius: 20px 20px 0 0;
    }
    .product-detail-info {
        padding: 25px 20px 30px;
    }
    .product-detail-name {
        font-size: 22px;
    }
    .product-detail-price {
        font-size: 24px;
    }
}

/* About Section */
.about {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--neutral-cream) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(122, 157, 126, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about .section-header {
    margin-bottom: 50px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-top-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-top-row .about-image {
    flex-shrink: 0;
    width: 280px;
}

.about-top-row .about-text-inner {
    flex: 1;
}

.about-bottom-row {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    max-width: 480px;
    margin: 0 auto;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary-sage), var(--accent-gold), var(--accent-terracotta));
    border-radius: 26px;
    z-index: -1;
    opacity: 0.6;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.about-slider { position: relative; width: 100%; }
.about-slider .about-slide { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; transition: opacity 1s ease-in-out; }
.about-slider .about-slide.active { position: relative; opacity: 1; }
.about-slider .about-slide img { width: 100%; height: auto; display: block; border-radius: 24px; }
.about-slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }

.about-text {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-bottom-row .about-stats {
    width: 100%;
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-deep-green);
    margin-bottom: 0;
}

.about-text-inner p {
    font-size: 15px;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 14px;
    line-height: 1.85;
    text-align: justify;
}

.about-text-inner p:last-child {
    margin-bottom: 0;
}

.about-text p {
    font-size: 15px;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 18px;
    line-height: 1.8;
}

/* About Highlights */
.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(122, 157, 126, 0.15);
}

.about-highlight-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-sage);
}

.about-highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent-terracotta);
}

.about-highlight-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-deep-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.about-highlight-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .about-highlights {
        gap: 10px;
    }
    .about-highlight-item {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-stat {
    text-align: center;
    padding: 20px 12px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-deep-green);
    line-height: 1.2;
}

.about-stat-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-terracotta);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.about-text .btn {
    align-self: flex-start;
}

/* Booking Section */
.booking {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f8f6f0 0%, #eee9df 100%);
}

/* Stepper */
.booking-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 10px;
    max-width: 600px;
    gap: 0;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.stepper-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0ddd6;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', sans-serif;
    border: 3px solid transparent;
}

.stepper-step.active .stepper-circle {
    background: var(--primary-deep-green);
    color: white;
    border-color: var(--primary-deep-green);
    box-shadow: 0 4px 15px rgba(74, 107, 77, 0.35);
    transform: scale(1.1);
}

.stepper-step.completed .stepper-circle {
    background: var(--primary-sage);
    color: white;
    border-color: var(--primary-sage);
}

.stepper-label {
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    white-space: nowrap;
}

.stepper-step.active .stepper-label,
.stepper-step.completed .stepper-label {
    color: var(--primary-deep-green);
}

.stepper-line {
    flex: 1;
    height: 3px;
    background: #e0ddd6;
    margin: 0 -4px;
    margin-bottom: 24px;
    transition: background 0.4s;
    min-width: 30px;
}

.stepper-line.completed {
    background: var(--primary-sage);
}

/* Wizard Container */
.booking-wizard {
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.wizard-step {
    display: none;
    animation: wizardFadeIn 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-step-active {
    display: block;
}

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

.wizard-step-header {
    text-align: center;
    margin-bottom: 30px;
}

.wizard-step-header h3 {
    font-family: var(--font-display);
    color: var(--primary-deep-green);
    font-size: 22px;
    margin-bottom: 8px;
}

.wizard-step-desc {
    font-size: 14px;
    color: #888;
}

/* Wizard Navigation Buttons */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 16px;
}

.wizard-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.wizard-btn-next {
    background: var(--primary-deep-green);
    color: white;
    margin-left: auto;
}

.wizard-btn-next:hover:not(:disabled) {
    background: var(--primary-sage);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 107, 77, 0.3);
}

.wizard-btn-next:disabled {
    background: #d0cdc6;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.wizard-btn-back {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #e0ddd6;
}

.wizard-btn-back:hover {
    border-color: var(--primary-sage);
    color: var(--primary-deep-green);
    background: rgba(122, 157, 126, 0.06);
}

.wizard-btn-confirm {
    background: linear-gradient(135deg, var(--primary-deep-green) 0%, var(--primary-sage) 100%);
    color: white;
    padding: 16px 40px;
    font-size: 16px;
    margin-left: auto;
}

.wizard-btn-confirm:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 107, 77, 0.4);
}

.wizard-btn-confirm:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Step 1: Service Cards */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.service-select-card {
    background: white;
    border: 2px solid #eae7e0;
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-select-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-sage);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-select-card:hover {
    border-color: var(--primary-sage);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 107, 77, 0.12);
}

.service-select-card:hover::before {
    transform: scaleX(1);
}

.service-select-card.selected {
    border-color: var(--primary-deep-green);
    background: linear-gradient(135deg, rgba(74, 107, 77, 0.04) 0%, rgba(122, 157, 126, 0.06) 100%);
    box-shadow: 0 8px 25px rgba(74, 107, 77, 0.15);
}

.service-select-card.selected::before {
    transform: scaleX(1);
    background: var(--primary-deep-green);
}

.service-select-card-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #e0ddd6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: transparent;
    transition: all 0.3s;
}

.service-select-card.selected .service-select-card-check {
    background: var(--primary-deep-green);
    border-color: var(--primary-deep-green);
    color: white;
}

.service-select-card h4 {
    font-family: var(--font-display);
    color: var(--primary-deep-green);
    font-size: 18px;
    margin-bottom: 6px;
    padding-right: 36px;
}

.service-select-card .service-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #888;
}

.service-select-card .service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-deep-green);
    font-family: var(--font-display);
}

/* Skeleton Loader */
.service-card-skeleton {
    background: white;
    border: 2px solid #eae7e0;
    border-radius: 16px;
    padding: 24px;
}

.skeleton-line {
    height: 14px;
    background: linear-gradient(90deg, #eee 25%, #e0e0e0 50%, #eee 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
    border-radius: 6px;
    margin-bottom: 12px;
}

.skeleton-title {
    width: 70%;
    height: 20px;
}

.skeleton-text {
    width: 100%;
}

.skeleton-text.short {
    width: 50%;
}

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Step 2: Calendar & Time */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.booking-calendar {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.booking-calendar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: url('images/products/logo.png') no-repeat center center;
    background-size: contain;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.booking-calendar > * {
    position: relative;
    z-index: 1;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h3 {
    font-family: var(--font-display);
    color: var(--primary-deep-green);
    font-size: 18px;
}

.calendar-nav {
    display: flex;
    gap: 8px;
}

.calendar-nav button {
    background: var(--primary-sage);
    color: white;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.calendar-nav button:hover {
    background: var(--primary-deep-green);
    transform: scale(1.05);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.calendar-day-header {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-terracotta);
    padding: 8px 0;
    text-transform: uppercase;
}

.calendar-day {
    padding: 10px 4px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-dark);
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: var(--primary-sage);
    color: white;
    transform: scale(1.08);
}

.calendar-day.selected {
    background: var(--primary-deep-green);
    color: white;
    box-shadow: 0 3px 10px rgba(74, 107, 77, 0.3);
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.today {
    border: 2px solid var(--accent-terracotta);
    font-weight: 700;
}

/* Time Slots Panel */
.time-slots-panel {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.time-slots-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-deep-green);
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.time-slots-icon {
    font-size: 20px;
}

.time-slots-empty {
    text-align: center;
    padding: 40px 20px;
    color: #aaa;
}

.time-slots-empty-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
    opacity: 0.5;
}

.time-slots-empty p {
    font-size: 14px;
}

.time-group-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-terracotta);
    margin: 16px 0 10px;
    padding-left: 4px;
}

.time-group-label:first-child {
    margin-top: 0;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.time-slot {
    padding: 12px 8px;
    border: 2px solid #eae7e0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    font-family: 'Montserrat', sans-serif;
}

.time-slot:hover:not(.taken) {
    border-color: var(--primary-sage);
    background: rgba(122, 157, 126, 0.08);
    transform: scale(1.04);
}

.time-slot.selected {
    background: var(--primary-deep-green);
    color: white;
    border-color: var(--primary-deep-green);
    box-shadow: 0 3px 12px rgba(74, 107, 77, 0.3);
    transform: scale(1.04);
}

.time-slot.taken {
    background: #f8f8f7;
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
    border-color: #f0eeea;
}

/* Loading spinner for time slots */
.time-slots-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px;
}

.time-slots-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #e8e4dc;
    border-top-color: var(--primary-sage);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.time-slots-loading p {
    font-size: 13px;
    color: #aaa;
}

/* Step 3: Form Card */
.booking-form-card {
    background: white;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-form-card .form-group {
    margin-bottom: 20px;
}

.booking-form-card label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.booking-form-card input,
.booking-form-card select,
.booking-form-card textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e8e4dc;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
    background: #faf9f7;
}

.booking-form-card input:focus,
.booking-form-card select:focus,
.booking-form-card textarea:focus {
    outline: none;
    border-color: var(--primary-sage);
    background: white;
    box-shadow: 0 0 0 4px rgba(122, 157, 126, 0.1);
}

.phone-input-group {
    display: flex;
    gap: 10px;
}

.country-code-wrapper {
    min-width: 130px;
}

.country-code-wrapper select {
    padding: 13px 10px;
    cursor: pointer;
}

.phone-input-group input[type="tel"] {
    flex: 1;
}

/* Step 4: Confirmation Card */
.confirmation-card {
    background: white;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    max-width: 560px;
    margin: 0 auto;
    border: 2px solid rgba(122, 157, 126, 0.15);
}

.confirmation-section {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
}

.confirmation-icon {
    font-size: 22px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-cream);
    border-radius: 12px;
    flex-shrink: 0;
}

.confirmation-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.confirmation-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #aaa;
}

.confirmation-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.confirmation-divider {
    height: 1px;
    background: #f0eeea;
}

/* Booking Alert */
.booking-alert {
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: alertSlideIn 0.4s ease;
}

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

.booking-alert.success {
    background: linear-gradient(135deg, #d4edda 0%, #c8e6c9 100%);
    color: #1b5e20;
    border: 1px solid #a5d6a7;
    display: block;
}

.booking-alert.error {
    background: linear-gradient(135deg, #f8d7da 0%, #ffcdd2 100%);
    color: #b71c1c;
    border: 1px solid #ef9a9a;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-stepper {
        gap: 0;
        margin: 30px auto 10px;
    }
    .stepper-label {
        font-size: 9px;
    }
    .stepper-circle {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    .booking-container {
        grid-template-columns: 1fr;
    }
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .wizard-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    .service-cards-grid {
        grid-template-columns: 1fr;
    }
    .booking-form-card {
        padding: 24px;
    }
    .confirmation-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .stepper-label {
        display: none;
    }
    .stepper-line {
        margin-bottom: 0;
    }
    .wizard-step-header h3 {
        font-size: 18px;
    }
    .phone-input-group {
        flex-direction: column;
    }
    .country-code-wrapper {
        min-width: 100%;
    }
}

/* ====== WELLNESS EXPERIENCE SECTIONS ====== */

/* Wellness Hero */
.wellness-hero {
    padding: 100px 0 80px;
    background: linear-gradient(160deg, #2d4a30 0%, #4A6B4D 40%, #5a7d5e 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.wellness-hero--compact {
    padding: 60px 0 50px;
}

.wellness-hero--compact h2 {
    font-size: 34px;
    margin-bottom: 8px;
}

.wellness-hero--compact .wellness-hero-desc {
    font-size: 15px;
    line-height: 1.6;
    margin: 16px auto 28px;
    max-width: 540px;
}

.wellness-hero--compact .wellness-hero-cta {
    padding: 13px 34px;
    font-size: 14px;
}

.wellness-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 167, 107, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.wellness-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(122, 157, 126, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.wellness-hero .container {
    position: relative;
    z-index: 1;
}

.wellness-hero-badge {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(201, 167, 107, 0.4);
    padding: 8px 20px;
    border-radius: 30px;
}

.wellness-hero h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.wellness-hero-accent {
    display: block;
    color: var(--accent-gold);
    font-style: italic;
}

.wellness-hero-desc {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.85;
    max-width: 620px;
    margin: 24px auto 40px;
}

.wellness-hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-gold);
    color: var(--primary-deep-green);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(201, 167, 107, 0.3);
}

.wellness-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 167, 107, 0.45);
}

/* Service Tier Cards */
.wellness-services {
    padding: 50px 0 40px;
    background: var(--neutral-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.service-tier {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(74, 107, 77, 0.08);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(122, 157, 126, 0.12);
    position: relative;
}

.service-tier::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-sage), var(--accent-gold));
    border-radius: 3px 3px 0 0;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(74, 107, 77, 0.16);
}

.service-tier:hover::after {
    width: 60%;
}

.service-tier.featured {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(180deg, rgba(201, 167, 107, 0.03) 0%, white 30%);
}

.service-tier.featured::before {
    content: 'Mas Popular';
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--accent-gold), #d4b87a);
    color: var(--primary-deep-green);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 3px 12px rgba(201, 167, 107, 0.3);
}

.service-tier-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    display: none;
    position: relative;
    cursor: pointer;
}

.service-tier-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-tier:hover .service-tier-image img {
    transform: scale(1.05);
}

.service-tier-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, white 0%, transparent 100%);
    pointer-events: none;
}

.service-tier-image::before {
    content: '\1F50D';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.service-tier-image:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.service-tier-image.active {
    display: block;
}

.service-tier-icon {
    font-size: 38px;
    padding: 24px 28px 0;
}

.service-tier-icon.hidden {
    display: none;
}

.service-tier-body {
    padding: 16px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-tier-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.service-tier-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-deep-green);
    margin-bottom: 10px;
    line-height: 1.2;
}

.service-tier-tagline {
    font-size: 13.5px;
    color: var(--text-dark);
    opacity: 0.75;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.5;
}

.service-tier-features {
    list-style: none;
    margin-bottom: 18px;
    flex: 1;
}

.service-tier-features li {
    padding: 5px 0;
    font-size: 13.5px;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.service-tier-features li::before {
    content: '\2713';
    color: white;
    font-weight: 700;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 3px;
    background: var(--primary-sage);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-tier.featured .service-tier-features li::before {
    background: var(--accent-gold);
    color: var(--primary-deep-green);
}

.service-tier-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(122, 157, 126, 0.12);
    margin-bottom: 16px;
}

.service-tier-duration {
    font-size: 13px;
    color: var(--primary-sage);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.service-tier-price {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-deep-green);
}

.service-tier-cta {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-deep-green));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: var(--font-body);
    box-shadow: 0 4px 16px rgba(74, 107, 77, 0.2);
}

.service-tier-cta:hover {
    background: linear-gradient(135deg, var(--primary-deep-green), #3a5a3d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 107, 77, 0.3);
}

.service-tier.featured .service-tier-cta {
    background: linear-gradient(135deg, var(--accent-gold), #b89650);
    color: var(--primary-deep-green);
    box-shadow: 0 4px 16px rgba(201, 167, 107, 0.3);
}

.service-tier.featured .service-tier-cta:hover {
    background: linear-gradient(135deg, #b8964f, #a07f3e);
    box-shadow: 0 6px 20px rgba(201, 167, 107, 0.4);
}

/* Experience Image Lightbox */
.exp-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.exp-lightbox-overlay.active {
    display: flex;
}

.exp-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: expLightboxIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes expLightboxIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.exp-lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.exp-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}


/* Responsive for Wellness Sections */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .wellness-hero {
        padding: 70px 0 60px;
    }

    .wellness-hero h2 {
        font-size: 30px;
    }

    .wellness-hero-desc {
        font-size: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

}

@media (max-width: 480px) {
    .wellness-hero {
        padding: 50px 0 40px;
    }

    .wellness-hero h2 {
        font-size: 24px;
    }

    .wellness-hero-badge {
        font-size: 10px;
        padding: 6px 14px;
    }

    .wellness-hero-desc {
        font-size: 14px;
        margin: 16px auto 28px;
    }

    .wellness-hero-cta {
        padding: 14px 30px;
        font-size: 13px;
    }

    .service-tier-image {
        height: 200px;
    }

    .service-tier-body {
        padding: 12px 18px 20px;
    }

    .service-tier-name {
        font-size: 20px;
    }

    .service-tier-price {
        font-size: 22px;
    }

}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--neutral-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-quote {
    font-size: 36px;
    color: var(--primary-sage);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.author-info h4 {
    font-weight: 600;
    color: var(--primary-deep-green);
    margin-bottom: 3px;
}

.author-info p {
    font-size: 13px;
    color: var(--text-dark);
    opacity: 0.6;
}

/* Contact Section */
.contact {
    padding: var(--section-padding) 0;
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-deep-green);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 15px;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 24px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: var(--neutral-cream);
    border-radius: 14px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.contact-item:hover {
    background: white;
    border-color: rgba(122, 157, 126, 0.2);
    box-shadow: 0 6px 20px rgba(74, 107, 77, 0.08);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-deep-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.contact-item-info {
    flex: 1;
}

.contact-item-info h4 {
    font-weight: 600;
    color: var(--primary-deep-green);
    margin-bottom: 4px;
    font-size: 15px;
}

.contact-item-info p {
    font-size: 13px;
    color: var(--text-dark);
    opacity: 0.75;
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    background: var(--neutral-cream);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-deep-green);
    margin-bottom: 10px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-sage);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-sage);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-deep-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(122, 157, 126, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Guide Download Section */
.guide-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e8 50%, #f5f0eb 100%);
}

.guide-card {
    max-width: 480px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.guide-image-wrapper {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.guide-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.guide-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.guide-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--primary-deep-green);
    margin-bottom: 8px;
}

.guide-form .form-group {
    margin-bottom: 12px;
}

.guide-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font-primary);
    transition: border-color 0.3s;
}

.guide-input:focus {
    outline: none;
    border-color: var(--primary-sage);
}

.guide-section .guide-btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    margin-top: 8px;
}

/* Newsletter Section */
.newsletter {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-deep-green));
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.newsletter-content p {
    font-size: 18px;
    color: white;
    opacity: 0.9;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
}

.newsletter-btn {
    padding: 18px 40px;
    background: white;
    color: var(--primary-deep-green);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-sage);
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-sage);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-sage);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 14px;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    animation: slideIn 0.3s ease-out;
}

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

.alert.show {
    display: block;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 70px;
    }

    .hero-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 44px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-chip {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .category-chip {
        padding: 7px 14px;
        font-size: 12px;
    }

    .products-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-top-row {
        flex-direction: column;
        gap: 24px;
    }

    .about-top-row .about-image {
        width: 100%;
        max-width: 360px;
    }

    .about-content {
        gap: 28px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .about-stat {
        padding: 16px 8px;
    }

    .about-stat-number {
        font-size: 26px;
    }

    .about-stat-label {
        font-size: 10px;
    }

    .features-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .features-grid::-webkit-scrollbar {
        height: 4px;
    }

    .features-grid::-webkit-scrollbar-track {
        background: var(--neutral-sand);
        border-radius: 4px;
    }

    .features-grid::-webkit-scrollbar-thumb {
        background: var(--primary-sage);
        border-radius: 4px;
    }

    .feature-card {
        min-width: 220px;
        max-width: 220px;
        scroll-snap-align: center;
        padding: 24px 18px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
        font-size: 32px;
    }

    .feature-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .feature-description {
        font-size: 13px;
    }

    /* Testimonials horizontal carousel on mobile */
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        margin-top: 30px;
    }

    .testimonials-grid::-webkit-scrollbar {
        height: 4px;
    }

    .testimonials-grid::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 4px;
    }

    .testimonials-grid::-webkit-scrollbar-thumb {
        background: var(--primary-sage);
        border-radius: 4px;
    }

    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
        scroll-snap-align: center;
        padding: 24px 20px;
    }

    /* Experiences horizontal carousel on mobile */
    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 14px;
        -webkit-overflow-scrolling: touch;
        margin-top: 30px;
    }

    .services-grid::-webkit-scrollbar {
        height: 4px;
    }

    .services-grid::-webkit-scrollbar-track {
        background: var(--neutral-sand);
        border-radius: 4px;
    }

    .services-grid::-webkit-scrollbar-thumb {
        background: var(--primary-sage);
        border-radius: 4px;
    }

    .service-tier {
        min-width: 280px;
        max-width: 280px;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .service-tier:hover {
        transform: none;
    }

    .testimonial-quote {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .testimonial-text {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 1.6;
    }

    .author-avatar {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .author-info h4 {
        font-size: 13px;
    }

    .author-info p {
        font-size: 11px;
    }

    /* Newsletter mobile fix */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-content h2 {
        font-size: 32px;
    }

    .newsletter-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .newsletter-input {
        padding: 14px 20px;
    }

    .newsletter-btn {
        padding: 14px 30px;
    }

    /* Footer mobile fix */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    footer {
        padding: 50px 0 25px;
    }

    .footer-brand h3 {
        font-size: 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    /* Cart sidebar mobile fix */
    .cart-sidebar {
        max-width: 100vw;
        width: 100%;
        right: -105vw;
    }

    .cart-header {
        padding: 18px 20px;
    }

    .cart-header h3 {
        font-size: 20px;
    }

    .cart-items {
        padding: 15px;
    }

    .cart-footer {
        padding: 15px 20px;
    }

    .cart-total {
        font-size: 18px;
    }

    .cart-checkout-btn {
        padding: 12px;
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-image {
        height: 150px;
        min-height: 150px;
        font-size: 50px;
        background: var(--neutral-cream);
    }

    .product-image img {
        object-fit: cover;
        padding: 0;
    }

    /* On touch devices: show overlay always, hide hover-only elements */
    .product-image-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 50%, rgba(44, 62, 45, 0.7) 100%);
    }

    .product-quick-add {
        transform: translateY(0);
        padding: 7px 14px;
        font-size: 10px;
    }

    .product-view-btn { display: none; }

    .product-stock-badge {
        font-size: 8px;
        padding: 3px 7px;
    }

    .product-info {
        padding: 10px 12px 12px;
    }

    .product-category {
        font-size: 8px;
        letter-spacing: 1px;
        margin-bottom: 4px;
    }

    .product-name {
        font-size: 14px;
        min-height: auto;
        margin-bottom: 4px;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-description {
        display: none;
    }

    .product-price {
        font-size: 15px;
    }

    .product-price-row {
        border-top: none;
        padding-top: 6px;
    }

    /* Footer stacked on small screens */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand {
        grid-column: auto;
    }

    footer {
        padding: 40px 0 20px;
    }

    .footer-brand h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .footer-links h4 {
        margin-bottom: 10px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    /* Newsletter compact on small screens */
    .newsletter {
        padding: 60px 0;
    }

    .announcement-bar {
        font-size: 10px;
        padding: 5px 10px;
    }

    .newsletter-content h2 {
        font-size: 22px;
    }

    .newsletter-content p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    /* Section spacing */
    :root {
        --section-padding: 50px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
    }

    /* Feature cards */
    .feature-card {
        min-width: 200px;
        max-width: 200px;
    }

    /* Testimonial cards */
    .testimonial-card {
        min-width: 240px;
        max-width: 240px;
        padding: 20px 16px;
    }
}

/* Language Toggle */
.lang-toggle {
    background: var(--primary-deep-green);
    color: white;
    border: none;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s;
}
.lang-toggle:hover {
    background: var(--primary-sage);
    transform: scale(1.05);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    padding: 6px 10px;
    transition: transform 0.3s;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-terracotta);
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
}

/* Cart Overlay */
.cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.cart-overlay.active {
    display: block;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: white;
    z-index: 999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--primary-deep-green);
}

.cart-close {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.cart-close:hover {
    color: var(--text-dark);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    color: #999;
    padding: 40px 0;
    font-size: 16px;
}

.cart-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: var(--neutral-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--accent-terracotta);
    font-weight: 600;
    font-size: 14px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-controls button {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cart-item-controls button:hover {
    background: var(--primary-sage);
    color: white;
    border-color: var(--primary-sage);
}

.cart-item-qty {
    font-weight: 600;
    font-size: 14px;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    transition: transform 0.2s;
}

.cart-item-remove:hover {
    transform: scale(1.2);
}

.cart-footer {
    padding: 20px 25px;
    border-top: 2px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-deep-green);
    margin-bottom: 15px;
}

.cart-checkout-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-sage);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 10px;
}

.cart-checkout-btn:hover {
    background: var(--primary-deep-green);
}

.cart-clear-btn {
    width: 100%;
    padding: 10px;
    background: transparent;
    color: #999;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.cart-clear-btn:hover {
    color: #dc3545;
    border-color: #dc3545;
}

/* Search Bar */
.products-search-bar {
    position: relative;
    margin-bottom: 10px;
}

.products-search-bar input {
    width: 100%;
    padding: 14px 90px 14px 48px;
    border: 2px solid rgba(122, 157, 126, 0.2);
    border-radius: 50px;
    font-size: 15px;
    font-family: var(--font-body);
    background: white;
    color: var(--text-dark);
    transition: all 0.3s;
}

.products-search-bar input:focus {
    outline: none;
    border-color: var(--primary-sage);
    box-shadow: 0 0 0 4px rgba(122, 157, 126, 0.1);
}

.products-search-bar input::placeholder {
    color: #aaa;
}

.search-icon-svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--primary-sage);
    pointer-events: none;
    stroke-width: 2.5;
}

.search-clear-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.06);
    color: #666;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.search-clear-btn:hover {
    background: rgba(0,0,0,0.12);
    color: #333;
}

.search-result-count {
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--primary-sage);
    font-weight: 600;
    display: none;
}

/* Empty State */
.products-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: #aaa;
}

.products-empty-state svg {
    margin-bottom: 16px;
    color: var(--primary-sage);
    opacity: 0.4;
}

.empty-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.empty-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.empty-reset-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid var(--primary-sage);
    background: transparent;
    color: var(--primary-deep-green);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.empty-reset-btn:hover {
    background: var(--primary-deep-green);
    color: white;
    border-color: var(--primary-deep-green);
}

@media (max-width: 768px) {
    .products-search-bar input {
        font-size: 16px;
        padding: 12px 80px 12px 44px;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.4s; }

.reveal-stagger.revealed > * {
    opacity: 1;
    transform: translateY(0);
}
