@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #ffffff;
    --secondary: #9011FE;
    --accent: #2f2f2f;
    --highlight: #ffffff;
    --mint: #f4edff;
    --text-color: #2f2f2f;
    --heading-color: #2f2f2f;
    --border-color: #9011FE;
    --card-bg: #ffffff;
    --muted-text: #666666;
    --font-body: "Manrope", sans-serif;
    --font-display: "Manrope", sans-serif;
    --font-ui: "Manrope", sans-serif;
    --font-handwritten: "Caveat", cursive;
}

/* Dark mode colors */
body.dark-mode {
    --primary: #121216;
    --secondary: #9011FE;
    --accent: #f4f4f8;
    --highlight: #1e1e24;
    --mint: #2b2242;
    --text-color: #e8e8ee;
    --heading-color: #ffffff;
    --border-color: #9011FE;
    --card-bg: #252530;
    --muted-text: #b9b9c7;
    --surface-1: #17171f;
    --surface-2: #21212c;
    --surface-3: #2b2b38;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--primary);
    color: var(--accent);
    overflow-x: hidden;
    transition: background-color 300ms ease, color 300ms ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: 0;
}

p, a, button, input, textarea, label, small, .nav-label, .stat-label {
    font-family: var(--font-body);
}

.nav-label,
.order-btn,
.cta-link,
.badge,
.stat-label {
    font-family: var(--font-ui);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 8%, rgba(144, 17, 254, 0.14), transparent 38%),
        radial-gradient(circle at 85% 92%, rgba(144, 17, 254, 0.1), transparent 34%);
    z-index: -1;
}

/* Smooth hover transitions across the site */
:is(
    a,
    button,
    .brand-link,
    .nav-links a,
    .order-btn,
    .order-cta,
    .cta-link,
    .scroll-to-top,
    .zoom-close,
    .slider .prev,
    .slider .next,
    .slider .dot,
    .menu-item,
    .featured-card,
    .testimonial,
    .team-member,
    .value-card,
    .contact-card,
    .hour-card,
    .social-link,
    .style-pill,
    .cta .cta-primary,
    .preview-panel,
    .preview-summary,
    .option-group,
    .text-option-card,
    .option-card,
    .gallery-item,
    .lb-prev,
    .lb-next,
    .lb-close
) {
    transition-property: background-color, color, border-color, box-shadow, transform, opacity, filter, width, height;
    transition-duration: 260ms;
    transition-timing-function: cubic-bezier(.2,.9,.3,1);
}

/* ========================= LOADING SCREEN ========================= */
.loading-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(144, 17, 254, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    transition: opacity 500ms ease, visibility 500ms ease;
    pointer-events: none;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    animation: fadeInUp 600ms ease;
}

.loader-logo {
    margin-bottom: 30px;
    animation: logoBounce 1s ease-in-out infinite;
}

.loader-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(144, 17, 254, 0.3));
}

.loader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: #9011FE;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: #ffffff;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: #2f2f2f;
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
}

.loading-text {
    color: var(--accent);
    font-size: 16px;
    font-weight: 600;
    animation: textPulse 1.5s ease-in-out infinite;
    margin: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes logoBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes textPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Dark mode loading screen */
body.dark-mode .loading-screen {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(47, 47, 47, 0.1) 100%);
}

body.dark-mode .loader-logo img {
    filter: drop-shadow(0 4px 12px rgba(144, 17, 254, 0.3));
}

body.dark-mode .spinner-ring {
    border-top-color: var(--secondary);
}

/* ========================= NAVBAR ========================= */
nav {
    background: linear-gradient(135deg, #9011FE 0%, #7a22de 100%);
    padding: 14px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 60;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.26);
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0;
    transition: all 300ms ease;
    padding: 8px 12px;
    border-radius: 12px;
}

.site-name {
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: 0;
}

.brand-link:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.brand-link svg {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    fill: var(--highlight);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.brand-link img {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    object-fit: contain;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 300ms ease;
}

.brand-link:hover img {
    transform: rotate(-5deg) scale(1.1);
}

.nav-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    position: relative;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    border-radius: 8px;
    backdrop-filter: blur(8px);
    margin-right: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Dark Mode Toggle Switch */
.dark-mode-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    margin: 0 8px 0 0;
    padding: 0;
}

.dark-mode-checkbox {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 54px;
    height: 28px;
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.2), rgba(47, 47, 47, 0.2));
    border: 2px solid rgba(144, 17, 254, 0.4);
    border-radius: 50px;
    transition: all 400ms cubic-bezier(.2, .9, .3, 1);
    display: flex;
    align-items: center;
    padding: 0 4px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(144, 17, 254, 0.15);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ffffff, #f4edff);
    border-radius: 50%;
    transition: all 400ms cubic-bezier(.2, .9, .3, 1);
    left: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.toggle-slider .sun-icon,
.toggle-slider .moon-icon {
    position: absolute;
    width: 16px;
    height: 16px;
    transition: all 400ms cubic-bezier(.2, .9, .3, 1);
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.toggle-slider .sun-icon {
    left: 6px;
    color: #5b14c4;
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.toggle-slider .moon-icon {
    right: 6px;
    color: #f4f4f8;
    opacity: 0.65;
    transform: scale(0.7) rotate(180deg);
}

/* Checked state (Dark Mode) */
.dark-mode-checkbox:checked + .toggle-slider {
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.25), rgba(47, 47, 47, 0.15));
    border-color: rgba(144, 17, 254, 0.4);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(144, 17, 254, 0.2);
}

.dark-mode-checkbox:checked + .toggle-slider::before {
    left: calc(100% - 24px);
    background: linear-gradient(135deg, #ffffff, #f4edff);
}

.dark-mode-checkbox:checked + .toggle-slider .sun-icon {
    opacity: 0.55;
    transform: scale(0.7) rotate(-180deg);
}

.dark-mode-checkbox:checked + .toggle-slider .moon-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

body.dark-mode .toggle-slider .sun-icon {
    color: #ebd7ff;
}

body.dark-mode .toggle-slider .moon-icon {
    color: #ffffff;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--highlight);
    font-size: 24px;
    cursor: pointer;
}

/* Animated underline that moves between nav links */
.nav-underline {
    position: absolute;
    bottom: 2px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.72));
    border-radius: 4px;
    transform-origin: left center;
    transition: transform 500ms cubic-bezier(.16, .84, .44, 1), width 500ms cubic-bezier(.16, .84, .44, 1), opacity 200ms ease;
    will-change: transform, width;
    opacity: 1;
    transform: translateZ(0);
    backface-visibility: hidden;
    z-index: 70;
    left: 0;
    box-shadow: 0 2px 8px rgba(144, 17, 254, 0.35);
}

.nav-links a {
    margin: 0;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 300ms ease;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 700;
    position: relative;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-label { 
    display: inline-block;
    position: relative;
    z-index: 2;
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.nav-links a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.22);
    font-weight: 700;
}

/* Order Button */
.order-btn {
    margin-left: 20px;
    padding: 10px 22px;
    background: linear-gradient(145deg, #ffffff, #f4e8ff);
    color: #5a10bc;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(38, 8, 82, 0.26);
    transition: all 300ms ease;
    border: 2px solid rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
}

.order-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(144, 17, 254, 0.18));
    opacity: 0;
    transition: opacity 300ms ease;
}

.order-btn:hover {
    background: linear-gradient(145deg, #ffffff, #ecd7ff);
    color: #4f0aa8;
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(38, 8, 82, 0.32);
    border-color: #ffffff;
}

.order-btn:hover::before {
    opacity: 1;
}

.order-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* ========================= SLIDER ========================= */
.slider {
    width: 100%;
    height: 460px;
    margin: 0 0 24px;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid rgba(144, 17, 254, 0.16);
    border-left: 0;
    border-right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(144, 17, 254, 0.08));
    box-shadow: 0 24px 60px rgba(144, 17, 254, 0.14);
    position: relative;
}

.slider::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 36%;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0), rgba(18, 18, 18, 0.28));
    pointer-events: none;
    z-index: 1;
}

.slides {
    display: flex;
    transition: transform 600ms ease;
    height: 100%;
}
.slides img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    flex: 0 0 100%;
    filter: saturate(1.05) contrast(1.02);
    transition: transform 700ms cubic-bezier(.2,.9,.3,1), filter 300ms ease;
}
.slides img.slide-contain {
    object-fit: contain;
    object-position: center center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(144, 17, 254, 0.08));
}

/* Slider controls */
.slider .prev,
.slider .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.24);
    color: #2a2532;
    border: 1px solid rgba(255, 255, 255, 0.26);
    width: 58px;
    height: 58px;
    min-width: 58px;
    min-height: 58px;
    border-radius: 16px;
    cursor: pointer;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 28px rgba(18, 18, 18, 0.2), inset 0 1px 0 rgba(255,255,255,0.16);
    transition: transform 260ms cubic-bezier(.2,.9,.3,1), box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
    backdrop-filter: blur(14px);
    z-index: 3;
}
.slider .prev { left: 18px; }
.slider .next { right: 18px; }
.slider .prev:hover,
.slider .next:hover {
    background: linear-gradient(145deg, #9011FE, #7a22de);
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
    border-color: rgba(255, 255, 255, 0.56);
}
.slider .prev:active,
.slider .next:active {
    transform: translateY(-50%) scale(0.98);
}
.slider .prev:focus,
.slider .next:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18), 0 16px 36px rgba(18,18,18,0.18);
}
.slider .prev::before,
.slider .next::before {
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
    font-weight: 700;
}
.slider .dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 22px;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 9px 14px;
    background: rgba(255,255,255,0.18);
    border-radius: 999px;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.15), 0 10px 24px rgba(0,0,0,0.16);
    z-index: 3;
}
.slider .dot {
    width: 20px;
    height: 6px;
    background: rgba(255,255,255,0.38);
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.26);
    cursor: pointer;
    transition: transform 340ms cubic-bezier(.2,.9,.3,1), background 260ms ease, border-color 260ms ease, width 260ms ease, height 260ms ease;
    transform-origin: center;
    opacity: 0.88;
    flex-shrink: 0;
}
.slider .dot.active {
    background: rgba(255,255,255,0.98);
    border-color: rgba(255,255,255,0.86);
    transform: scale(1.08);
    width: 34px;
    height: 7px;
}
.slider .dot:hover {
    transform: scale(1.04);
    background: rgba(255,255,255,0.82);
    border-color: rgba(255,255,255,0.7);
}
.slider .dot:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.18);
}

/* ========================= SECTIONS ========================= */
section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: auto;
}
section h2 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--secondary);
    text-shadow: 0 6px 18px rgba(144, 17, 254, 0.18);
    text-align: center;
    margin-bottom: 20px;
}
section p {
    font-size: 17px;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ========================= MENU GRID ========================= */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
    position: relative;
}

/* ========================= SHOP PAGE ========================= */

/* Menu Hero Section */
.menu-hero {
    background: linear-gradient(135deg, var(--highlight) 0%, rgba(144, 17, 254, 0.08) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    border: 2px solid rgba(144, 17, 254, 0.2);
}

.menu-hero h2 {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 15px;
}

.menu-hero p {
    font-size: 18px;
    color: var(--text-color);
}

/* Enhanced Menu Items */
.menu-item {
    background: var(--highlight);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 400ms cubic-bezier(.2, .9, .3, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(144, 17, 254, 0.15);
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(144, 17, 254, 0.05) 100%);
    opacity: 0;
    transition: opacity 400ms ease;
    pointer-events: none;
}

.menu-item:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 24px 56px rgba(144, 17, 254, 0.25);
    border-color: rgba(144, 17, 254, 0.4);
}

.menu-item:hover::before {
    opacity: 1;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 100%; /* 1:1 square ratio */
    background: var(--primary);
}

.menu-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(.2, .9, .3, 1);
    will-change: transform;
}

.lazy-img {
    opacity: 0;
    transition: opacity 380ms cubic-bezier(.2,.9,.3,1);
}

.lazy-img.loaded {
    opacity: 1;
}

.menu-item:hover img {
    transform: scale(1.12);
    filter: brightness(0.92) saturate(1.1);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.95), rgba(47, 47, 47, 0.95));
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 6px 18px rgba(47, 47, 47, 0.4);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-4px) scale(1.03); }
}

/* Menu Content */
.menu-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(244, 237, 255, 0.45) 100%);
}

.menu-item h3 {
    font-family: var(--font-display);
    color: var(--accent);
    margin: 0 0 12px 0;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0;
}

.menu-item p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 18px 0;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 900;
    color: var(--secondary);
    display: block;
    margin-top: auto;
    text-shadow: 0 2px 4px rgba(144, 17, 254, 0.2);
}

/* Price Section */
.price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.price {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
}

.order-cta {
    flex: 1;
    padding: 10px 14px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: all 300ms ease;
    box-shadow: 0 4px 12px rgba(144, 17, 254, 0.2);
}

.order-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(144, 17, 254, 0.3);
}

.order-cta:active {
    transform: translateY(0);
}

/* Dietary Section */
.dietary-section {
    background: linear-gradient(135deg, var(--highlight) 0%, rgba(144, 17, 254, 0.08) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    margin-top: 60px;
    text-align: center;
    border: 2px solid rgba(144, 17, 254, 0.2);
}

.dietary-section h2 {
    color: var(--accent);
    font-size: 32px;
    margin-bottom: 15px;
}

.dietary-section p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.dietary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.dietary-card {
    background: linear-gradient(135deg, var(--highlight) 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 14px;
    border: 2px solid rgba(144, 17, 254, 0.15);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: all 300ms cubic-bezier(.2, .9, .3, 1);
}

.dietary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(144, 17, 254, 0.15);
    border-color: rgba(144, 17, 254, 0.3);
}

.dietary-card h4 {
    color: var(--accent);
    margin: 12px 0;
    font-size: 16px;
}

.dietary-card p {
    color: #999;
    font-size: 13px;
    margin: 0;
}

/* ========================= SHOP PAGE REFRESH ========================= */
.shop-page main {
    max-width: 1240px;
    margin: 0 auto;
}

.shop-page .shop-eyebrow {
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.shop-page .menu-hero {
    border-radius: 10px;
    padding: 56px 44px;
    border: 1px solid rgba(144, 17, 254, 0.3);
    box-shadow: 0 20px 40px rgba(144, 17, 254, 0.12);
}

.shop-page .menu-hero h2 {
    color: var(--secondary);
    letter-spacing: 0.04em;
}

.shop-page .menu-grid {
    gap: 24px;
}

.shop-page .menu-item {
    border-radius: 10px;
    border: 1px solid rgba(144, 17, 254, 0.22);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.shop-page .menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 34px rgba(144, 17, 254, 0.2);
}

.shop-page .menu-content {
    padding: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(144, 17, 254, 0.08) 100%);
}

.shop-page .menu-item h3 {
    font-size: 25px;
    margin: 4px 0 10px;
}

.shop-page .menu-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-text);
}

.shop-page .price {
    font-size: 22px;
    margin-top: 6px;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(144, 17, 254, 0.12);
    border: 1px solid rgba(144, 17, 254, 0.28);
}

.shop-page .badge {
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 10px;
    letter-spacing: 0.12em;
    background: rgba(20, 20, 24, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(3px);
    animation: none;
}

.shop-page .dietary-section {
    border-radius: 10px;
    border: 1px solid rgba(144, 17, 254, 0.26);
    box-shadow: 0 18px 36px rgba(144, 17, 254, 0.1);
}

body.dark-mode.shop-page .menu-hero,
body.dark-mode.shop-page .dietary-section {
    background: linear-gradient(135deg, rgba(35, 35, 46, 0.95) 0%, rgba(144, 17, 254, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.16);
}

body.dark-mode.shop-page .menu-item {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
}

body.dark-mode.shop-page .menu-content {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(144, 17, 254, 0.13) 100%);
}

body.dark-mode.shop-page .price {
    background: rgba(144, 17, 254, 0.2);
    border-color: rgba(200, 163, 255, 0.38);
}

/* ========================= CONTACT PAGE REFRESH ========================= */
.contact-page main {
    max-width: 1140px;
    margin: 0 auto;
}

.contact-page .contact-eyebrow {
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.contact-page .contact-container {
    gap: 18px;
}

.contact-page .contact-card {
    border-radius: 10px;
    border: 1px solid rgba(144, 17, 254, 0.24);
    box-shadow: 0 14px 30px rgba(144, 17, 254, 0.1);
    padding: 26px;
}

.contact-page .contact-card::before {
    background: linear-gradient(145deg, rgba(144, 17, 254, 0.1), transparent 65%);
}

.contact-page .contact-icon {
    animation: none;
    font-size: 42px;
}

.contact-page .contact-card h3 {
    font-size: 24px;
}

.contact-page .contact-map-row .map-address {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
}

.contact-page .form-wrapper {
    max-width: 680px;
    border-radius: 10px;
    border: 1px solid rgba(144, 17, 254, 0.26);
    background: linear-gradient(140deg, rgba(255,255,255,0.95), rgba(144, 17, 254, 0.12));
    box-shadow: 0 18px 36px rgba(144, 17, 254, 0.12);
}

.contact-page .form-wrapper h3 {
    color: var(--secondary);
    letter-spacing: 0.03em;
}

.contact-page .contact-form {
    gap: 14px;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
    border-radius: 8px;
    border: 1px solid rgba(144, 17, 254, 0.3);
    background: rgba(255, 255, 255, 0.95);
    font-family: var(--font-body);
}

.contact-page .contact-form button {
    border-radius: 8px;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #9011FE, #7a22de);
}

.contact-page .hours-grid,
.contact-page .social-links {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page .hour-card,
.contact-page .social-link {
    border-radius: 10px;
    border: 1px solid rgba(144, 17, 254, 0.22);
    box-shadow: 0 10px 24px rgba(0,0,0,0.07);
}

.contact-page .instagram-spotlight {
    max-width: 940px;
    margin: 0 auto;
    padding: 28px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgba(144, 17, 254, 0.3);
    background:
        radial-gradient(circle at 90% 10%, rgba(255,255,255,0.24), transparent 30%),
        linear-gradient(135deg, #9011FE 0%, #7a22de 46%, #2f2f2f 100%);
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(122, 34, 222, 0.26);
}

.contact-page .instagram-kicker {
    margin: 0 0 6px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.86);
}

.contact-page .instagram-spotlight h3 {
    margin: 0 0 10px;
    font-size: 30px;
    color: #ffffff;
}

.contact-page .instagram-spotlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page .instagram-link {
    margin: 14px auto 0;
    display: block;
    width: fit-content;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    padding-bottom: 2px;
}

.contact-page .instagram-link:hover {
    opacity: 0.9;
    border-bottom-color: #ffffff;
}

body.dark-mode.contact-page .contact-card,
body.dark-mode.contact-page .hour-card,
body.dark-mode.contact-page .social-link {
    background: linear-gradient(145deg, rgba(31, 31, 42, 0.95), rgba(144, 17, 254, 0.12));
    border-color: rgba(255, 255, 255, 0.14);
}

body.dark-mode.contact-page .map-frame {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(10, 10, 16, 0.92);
}

body.dark-mode.contact-page .form-wrapper {
    background: linear-gradient(145deg, rgba(25, 25, 34, 0.96), rgba(144, 17, 254, 0.16));
    border-color: rgba(255, 255, 255, 0.16);
}

body.dark-mode.contact-page .form-wrapper h3 {
    color: #d7b5ff;
}

body.dark-mode.contact-page .contact-form input,
body.dark-mode.contact-page .contact-form textarea {
    background: rgba(17, 17, 24, 0.9);
    border-color: rgba(255, 255, 255, 0.18);
}

body.dark-mode.contact-page .instagram-spotlight {
    background:
        radial-gradient(circle at 88% 12%, rgba(255,255,255,0.08), transparent 34%),
        linear-gradient(135deg, #6510bf 0%, #431076 48%, #17171f 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode.contact-page .instagram-link {
    color: #f4ecff;
    border-bottom-color: rgba(244, 236, 255, 0.65);
}

/* ========================= CUSTOMIZE PAGE REFRESH ========================= */
.customize-page main {
    max-width: 1240px;
    margin: 0 auto;
}

.customize-page .customize-eyebrow {
    text-align: center;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.customize-page .hero-section {
    border-radius: 10px;
    box-shadow: 0 18px 34px rgba(144, 17, 254, 0.12);
}

.customize-page .customize-section {
    padding-top: 34px;
}

.customize-page .customize-section::before {
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.05) 0%, rgba(47, 47, 47, 0.04) 100%);
}

.customize-page .preview-panel {
    border-radius: 10px;
    border-width: 1px;
    box-shadow: 0 14px 28px rgba(144, 17, 254, 0.16);
    padding: 14px 22px;
}

.customize-page .preview-panel h3 {
    font-family: var(--font-ui);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.customize-page .preview-panel h3::before {
    content: '';
    margin-right: 0;
}

.customize-page .preview-summary {
    border-radius: 10px;
}

.customize-page .order-custom-btn {
    border-radius: 8px;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #9011FE, #7a22de);
    box-shadow: 0 8px 18px rgba(144, 17, 254, 0.28);
}

.customize-page .order-custom-btn::before {
    content: '';
    margin-right: 0;
}

.customize-page .option-group {
    border-radius: 10px;
    border-width: 1px;
    border-color: rgba(144, 17, 254, 0.28);
    box-shadow: 0 12px 28px rgba(0,0,0,0.07);
}

.customize-page .option-group h3 {
    font-size: 28px;
    letter-spacing: 0.03em;
}

.customize-page .text-option-card {
    border-radius: 10px;
    border-width: 1px;
}

.customize-page .text-option-content h4 {
    font-size: 22px;
}

.customize-page .text-option-content p {
    font-size: 13px;
    color: var(--muted-text);
}

.customize-page .extra-price,
.customize-page .base-price {
    border-radius: 999px;
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 0.08em;
}

body.dark-mode.customize-page .hero-section,
body.dark-mode.customize-page .option-group,
body.dark-mode.customize-page .preview-panel {
    background: linear-gradient(145deg, rgba(29, 29, 40, 0.96), rgba(144, 17, 254, 0.12));
    border-color: rgba(255, 255, 255, 0.14);
}

body.dark-mode.customize-page .preview-summary {
    background: rgba(144, 17, 254, 0.14);
    border-color: rgba(255, 255, 255, 0.16);
}

body.dark-mode.customize-page .text-option-card {
    background: rgba(22, 22, 31, 0.94);
    border-color: rgba(255, 255, 255, 0.14);
}

body.dark-mode.customize-page .text-option-card.active {
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.3), rgba(47, 47, 47, 0.2));
}

/* Lazy image fade-in for improved perceived performance */
.lazy-img {
    opacity: 0;
    transition: opacity 380ms cubic-bezier(.2,.9,.3,1);
    display: block;
    width: 100%;
    height: auto; /* let parent/contextual rules control height */
    object-fit: cover;
}
.lazy-img.loaded {
    opacity: 1;
}
.menu-item h3 {
    text-align: center;
    margin-top: 15px;
}
.menu-item p {
    text-align: center;
    font-size: 17px;
    padding: 0 10px;
}

/* ========================= CONTACT PAGE ========================= */

/* Contact Cards Container */
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.contact-row {
    display: grid;
    gap: 25px;
}

.contact-map-row {
    grid-template-columns: minmax(0, 1fr);
}

.contact-details-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-map-row .contact-card {
    max-width: 100%;
}

/* Individual Contact Cards */
.contact-card {
    background: linear-gradient(135deg, var(--highlight) 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 380ms cubic-bezier(.2,.9,.3,1);
    border: 2px solid rgba(144, 17, 254, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(144, 17, 254, 0.1), transparent);
    pointer-events: none;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(144, 17, 254, 0.2);
    border-color: rgba(144, 17, 254, 0.35);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.contact-card h3 {
    color: var(--accent);
    margin: 12px 0;
    font-size: 20px;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

.contact-card a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.contact-card a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.map-frame {
    margin-top: 14px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(144, 17, 254, 0.14);
    background: #fff;
}

.map-frame iframe {
    display: block;
    width: 100%;
    min-height: 260px;
    border: 0;
}

.map-address {
    margin: 14px 0 0;
    color: #666;
    line-height: 1.6;
    font-weight: 500;
    text-align: center;
}

/* Form Wrapper */
.form-wrapper {
    max-width: 560px;
    margin: 50px auto;
    background: linear-gradient(135deg, rgba(247, 239, 229, 0.8) 0%, rgba(144, 17, 254, 0.08) 100%);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(144, 17, 254, 0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    backdrop-filter: blur(8px);
}

.form-wrapper h3 {
    text-align: center;
    color: var(--accent);
    margin-bottom: 30px;
    font-size: 24px;
}

/* Enhanced Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border-radius: 10px;
    border: 2px solid rgba(144, 17, 254, 0.25);
    font-size: 16px;
    font-family: inherit;
    background: rgba(255, 253, 252, 0.9);
    color: var(--accent);
    transition: all 300ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--highlight);
    box-shadow: 0 0 0 3px rgba(144, 17, 254, 0.15);
    transform: translateY(-2px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form button {
    padding: 14px 28px;
    min-height: 48px;
    background: linear-gradient(135deg, var(--secondary), #2f2f2f);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: all 380ms cubic-bezier(.2,.9,.3,1);
    margin-top: 8px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-form button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(144, 17, 254, 0.3);
}

.contact-form button:active {
    transform: translateY(-1px);
}

/* Hours Grid */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.hour-card {
    background: linear-gradient(135deg, var(--mint) 0%, rgba(230, 247, 245, 0.6) 100%);
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    border: 2px solid rgba(100, 200, 200, 0.2);
    box-shadow: 0 6px 18px rgba(100, 200, 200, 0.1);
    transition: all 300ms ease;
}

.hour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(100, 200, 200, 0.2);
    border-color: rgba(100, 200, 200, 0.4);
}

.hour-card h4 {
    color: var(--accent);
    margin: 0 0 10px 0;
    font-size: 18px;
}

.hour-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.social-link {
    background: linear-gradient(135deg, var(--accent), #7a5a48);
    color: white;
    padding: 25px;
    border-radius: 14px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(47, 47, 47, 0.2);
    transition: all 380ms cubic-bezier(.2,.9,.3,1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 400ms ease;
    will-change: transform;
    z-index: 0;
}

.social-link:hover::before {
    transform: translateX(100%);
}

.social-link span {
    position: relative;
    z-index: 1;
}

.social-link span:first-child {
    font-size: 18px;
    font-weight: 700;
}

.social-link .handle {
    font-size: 14px;
    opacity: 0.9;
    font-family: var(--font-ui);
    letter-spacing: 0.04em;
}

.social-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(47, 47, 47, 0.35);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-form {
    max-width: 480px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

/* ========================= FOOTER ========================= */
footer {
    background: var(--secondary);
    padding: 15px;
    text-align: center;
    color: white;
    margin-top: 40px;
    font-size: 18px;
}

/* Responsive small adjustments */
/* OLD MEDIA QUERY - REPLACED BY COMPREHENSIVE MOBILE STYLES BELOW */
/* @media (max-width: 600px) styles moved to end of file */

/* ========================= EXTRA SECTIONS ========================= */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.featured-card {
    background: var(--highlight);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid rgba(144, 17, 254, 0.22);
    box-shadow: 0 12px 26px rgba(144,17,254,0.1);
    text-align: center;
    position: relative;
}

.featured-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; aspect-ratio: 1; }

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2f2f2f;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
}

.featured-card h3 {
    margin: 20px 0 10px;
    font-size: 32px;
    color: var(--accent);
}

.featured-product-name {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
}

.featured-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 20px;
}

.featured-price {
    background: linear-gradient(135deg, #e5c7ff, #f4d9ff);
    color: var(--secondary);
    font-weight: 700;
    font-size: 24px;
    padding: 12px 20px;
    border-radius: 25px;
    display: inline-block;
    margin: 0;
}

.order-product-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), #7a22de);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-top: 12px;
    transition: all 300ms cubic-bezier(.2, .9, .3, 1);
    border: 2px solid transparent;
}

.order-product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(144, 17, 254, 0.4);
    background: linear-gradient(135deg, #7a22de, var(--secondary));
}

.style-lab-section {
    padding-top: 18px;
}

.style-lab {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: stretch;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(144, 17, 254, 0.1));
    border: 1px solid rgba(144, 17, 254, 0.18);
    box-shadow: 0 20px 44px rgba(144, 17, 254, 0.12);
    position: relative;
    overflow: hidden;
}

.style-lab::before {
    content: '';
    position: absolute;
    inset: auto auto -120px -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(144, 17, 254, 0.22), rgba(144, 17, 254, 0));
    pointer-events: none;
}

.style-lab-copy,
.style-lab-preview {
    position: relative;
    z-index: 1;
}

.style-lab-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.style-lab-kicker {
    margin: 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--secondary);
}

.style-lab-copy h2 {
    margin: 0;
    text-align: left;
    font-size: 42px;
    line-height: 1.06;
    color: var(--heading-color);
    text-shadow: none;
    max-width: 560px;
}

.style-lab-copy p {
    margin: 0;
    text-align: left;
    max-width: 560px;
}

.style-lab-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.style-pill {
    appearance: none;
    border: 1px solid rgba(144, 17, 254, 0.22);
    background: rgba(255, 255, 255, 0.74);
    color: var(--accent);
    padding: 11px 16px;
    border-radius: 999px;
    font-family: var(--font-ui);
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.style-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(144, 17, 254, 0.45);
    box-shadow: 0 10px 20px rgba(144, 17, 254, 0.14);
}

.style-pill.active {
    background: linear-gradient(135deg, #9011FE, #7a22de);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 12px 22px rgba(144, 17, 254, 0.28);
}

.style-lab-preview {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(144, 17, 254, 0.2);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 18px 30px rgba(144, 17, 254, 0.1);
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
}

.style-lab-badge {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(144, 17, 254, 0.12);
    color: var(--secondary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.style-lab-image-wrap {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    width: 100%;
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.08), rgba(47, 47, 47, 0.05));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    will-change: transform, opacity;
}

.style-lab-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 360ms cubic-bezier(.2,.9,.3,1), opacity 240ms ease;
}

.style-lab-preview[data-style="street"] .style-lab-image-wrap img,
.style-lab-preview[data-style="minimal"] .style-lab-image-wrap img,
.style-lab-preview[data-style="luxury"] .style-lab-image-wrap img {
    transform: scale(1.01);
}

.style-lab-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 1;
    will-change: transform, opacity;
}

.style-lab-meta h3 {
    margin: 0;
    font-size: 28px;
    color: var(--heading-color);
}

.style-lab-meta p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

.style-lab-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.style-lab-row span {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.12), rgba(47, 47, 47, 0.08));
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.style-lab-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #9011FE, #7a22de);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(144, 17, 254, 0.24);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.style-lab-row a:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(144, 17, 254, 0.3);
}

body.dark-mode .style-lab {
    background: linear-gradient(135deg, rgba(29, 29, 40, 0.96), rgba(144, 17, 254, 0.14));
    border-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode .style-pill {
    background: rgba(255, 255, 255, 0.08);
    color: var(--highlight);
    border-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode .style-pill.active {
    background: linear-gradient(135deg, #9011FE, #7a22de);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 12px 22px rgba(144, 17, 254, 0.4);
}

body.dark-mode .style-lab-preview {
    background: rgba(22, 22, 31, 0.96);
    border-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode .style-lab-row span {
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.26), rgba(255, 255, 255, 0.08));
    color: #f1e3ff;
}

/* Animation classes for style lab transitions */
.style-lab-image-wrap.animate {
    animation: slideInRight 500ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.style-lab-meta.animate {
    animation: slideInLeft 500ms cubic-bezier(0.34, 1.56, 0.64, 1) 100ms forwards;
    opacity: 0;
}

@media (max-width: 1024px) {
    .style-lab {
        grid-template-columns: 1fr;
    }

    .style-lab-copy h2 {
        font-size: 36px;
    }

    .style-lab-preview {
        max-width: 560px;
    }
}

@media (max-width: 600px) {
    .style-lab-section {
        padding-top: 10px;
    }

    .style-lab {
        padding: 18px;
        border-radius: 18px;
        gap: 18px;
    }

    .style-lab-copy h2 {
        font-size: 30px;
    }

    .style-lab-copy p {
        font-size: 15px;
        line-height: 1.65;
    }

    .style-pill,
    .style-lab-row a,
    .style-lab-row span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .style-lab-row {
        flex-direction: column;
        align-items: stretch;
    }
}

.testimonials {
    margin-top: 50px;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 30px;
}
.testimonial {
    background: var(--highlight);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid rgba(144, 17, 254, 0.22);
    box-shadow: 0 10px 22px rgba(144,17,254,0.09);
    font-style: italic;
}
.testimonial small { display:block; margin-top:10px; font-style:normal; color:var(--muted-text); }

.choose-section {
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.08), rgba(47, 47, 47, 0.04));
    border: 1px solid rgba(144, 17, 254, 0.2);
    box-shadow: 0 16px 34px rgba(144, 17, 254, 0.1);
}

.choose-kicker {
    text-align: center;
    margin: 0 0 6px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 800;
}

.choose-section h2 {
    text-align: center;
    margin: 0 0 20px;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.choose-card {
    background: var(--highlight);
    border: 1px solid rgba(144, 17, 254, 0.22);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    padding: 14px;
}

.choose-card:hover {
    transform: translateY(-4px);
    border-color: rgba(144, 17, 254, 0.42);
    box-shadow: 0 16px 30px rgba(144, 17, 254, 0.16);
}

.choose-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.choose-card h3 {
    margin: 14px 0 10px;
    font-size: 24px;
    line-height: 1.2;
    color: var(--heading-color);
}

.choose-card p {
    margin: 0;
    color: var(--muted-text);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }

    .choose-card img {
        height: 280px;
    }
}

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap:20px; }
.team-member { background: var(--highlight); padding: 14px; border-radius: 10px; text-align:center; }
.team-member img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; }
.team-member h4 { margin: 10px 0 6px; }

.hours { max-width: 420px; margin: 8px auto 0; text-align: left; background: var(--highlight); padding: 12px; border-radius: 8px; }
.hours b { display:block; margin-bottom:6px; }

.home-cta-section {
    padding-top: 60px;
}

.cta {
    position: relative;
    isolation: isolate;
    background: linear-gradient(130deg, rgba(144, 17, 254, 0.14), rgba(47, 47, 47, 0.06));
    padding: 42px 34px;
    border-radius: 20px;
    text-align: center;
    margin-top: 10px;
    border: 1px solid rgba(144, 17, 254, 0.24);
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(144, 17, 254, 0.14);
}

.cta::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    top: -130px;
    right: -70px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: -1;
}

.cta::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.42);
    pointer-events: none;
}

.cta .cta-kicker {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(90, 16, 188, 0.95);
}

.cta h3 {
    margin: 0;
    font-size: 40px;
    color: var(--heading-color);
    line-height: 1.15;
}

.cta p {
    margin: 14px auto 0;
    max-width: 740px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.75;
}

.cta .cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 12px 24px;
    min-height: 46px;
    background: linear-gradient(135deg, #ffffff, #f1e2ff);
    color: #5714af;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    border: 2px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 24px rgba(52, 12, 107, 0.24);
    transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.cta .cta-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffffff, #ead2ff);
    box-shadow: 0 16px 30px rgba(52, 12, 107, 0.3);
}

.cta .cta-primary:active {
    transform: translateY(0);
}

body.dark-mode .cta {
    background: linear-gradient(130deg, rgba(144, 17, 254, 0.28), rgba(25, 25, 34, 0.84));
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.34);
}

body.dark-mode .cta::after {
    border-color: rgba(255, 255, 255, 0.14);
}

body.dark-mode .cta .cta-kicker {
    color: rgba(237, 214, 255, 0.92);
}

body.dark-mode .cta .cta-primary {
    background: linear-gradient(135deg, #ffffff, #ead8ff);
    color: #430b93;
    border-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 600px) {
    .featured-card img, .team-member img { height: 140px; }

    .home-cta-section {
        padding-top: 20px;
    }

    .cta {
        padding: 28px 18px;
        border-radius: 16px;
    }

    .cta h3 {
        font-size: 30px;
    }

    .cta p {
        font-size: 15px;
        line-height: 1.65;
    }

    .cta .cta-primary {
        margin-top: 18px;
        width: min(100%, 280px);
        padding: 11px 16px;
        font-size: 12px;
        letter-spacing: 0.09em;
    }
}
/* Ripple effect base: apply .ripple to any clickable element */
.ripple { position: relative; overflow: hidden; }
.ripple .ripple-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255,255,255,0.35);
    pointer-events: none;
    animation: ripple 600ms cubic-bezier(.2,.9,.3,1);
}
@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

/* ========================= GALLERY PAGE ========================= */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 400ms cubic-bezier(.2, .9, .3, 1);
}

.gallery-item .image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 landscape ratio */
    background: var(--primary);
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(.2,.9,.3,1);
    will-change: transform;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47, 47, 47, 0.7), rgba(144, 17, 254, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 380ms cubic-bezier(.2,.9,.3,1);
    z-index: 2;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(144, 17, 254, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.12);
    filter: brightness(0.88) saturate(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    color: var(--highlight);
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: slideUp 380ms cubic-bezier(.2,.9,.3,1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================= ABOUT PAGE ========================= */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.08) 0%, rgba(47, 47, 47, 0.06) 100%);
    padding: 80px 40px;
    border-radius: 25px;
    text-align: center;
    margin: 20px 0 50px 0;
    border: 2px solid transparent;
    background-image: 
        linear-gradient(var(--highlight), var(--highlight)),
        linear-gradient(135deg, var(--secondary), var(--accent));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: 'TWICHIC';
    position: absolute;
    font-family: var(--font-display);
    font-size: 120px;
    letter-spacing: 0.18em;
    opacity: 0.035;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-section h2 {
    font-size: 58px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    text-align: center;
    display: block;
    width: 100%;
}

.intro-text {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
    position: relative;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.value-card {
    background: linear-gradient(135deg, var(--highlight) 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(144, 17, 254, 0.15);
    transition: transform 360ms cubic-bezier(.2, .9, .3, 1), box-shadow 360ms cubic-bezier(.2, .9, .3, 1), border-color 360ms cubic-bezier(.2, .9, .3, 1);
    will-change: transform;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(144, 17, 254, 0.2);
    border-color: rgba(144, 17, 254, 0.35);
}

.value-icon {
    font-size: 42px;
    margin-bottom: 15px;
    display: inline-block;
    animation: none;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.value-card h3 {
    color: var(--accent);
    margin: 15px 0;
    font-size: 20px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 60px 20px;
    margin: 40px auto;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-column,
.vision-column {
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(144, 17, 254, 0.1);
}

.mission-column h3,
.vision-column h3 {
    color: var(--accent);
    font-size: 28px;
    margin: 0 0 20px;
}

.mission-column p,
.vision-column p {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* Enhanced Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    background: var(--highlight);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 360ms cubic-bezier(.2, .9, .3, 1), box-shadow 360ms cubic-bezier(.2, .9, .3, 1), border-color 360ms cubic-bezier(.2, .9, .3, 1);
    border: 2px solid rgba(144, 17, 254, 0.1);
    will-change: transform;
}

.team-member:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(47, 47, 47, 0.15);
    border-color: rgba(144, 17, 254, 0.3);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms cubic-bezier(.2, .9, .3, 1), filter 320ms ease;
    will-change: transform;
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47, 47, 47, 0.7), rgba(144, 17, 254, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 380ms cubic-bezier(.2, .9, .3, 1), transform 380ms cubic-bezier(.2, .9, .3, 1);
}

.team-member:hover .team-overlay {
    opacity: 1;
}

.role-badge {
    background: var(--secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member h4 {
    font-size: 20px;
    color: var(--accent);
    margin: 20px 15px 5px;
}

.team-member .role {
    color: var(--secondary);
    font-weight: 700;
    font-size: 14px;
    margin: 5px 15px;
}

.team-member .bio {
    color: #666;
    font-size: 14px;
    padding: 0 15px 15px;
    line-height: 1.6;
}

.founder-intro {
    max-width: 720px;
    margin: 0 auto 24px;
    text-align: center;
    font-family: var(--font-handwritten);
    font-size: 30px;
    line-height: 1.4;
}

.founder-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.08) 0%, rgba(47, 47, 47, 0.06) 100%);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid transparent;
    background-image: 
        linear-gradient(var(--highlight), var(--highlight)),
        linear-gradient(135deg, var(--secondary), var(--accent));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.founder-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--secondary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.founder-card h3 {
    margin: 0 0 8px;
    font-size: 30px;
    color: var(--accent);
    font-family: var(--font-handwritten);
    font-size: 42px;
    line-height: 1.1;
}

.founder-role {
    margin: 0 0 16px;
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 0.3px;
}

.founder-copy {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-family: var(--font-handwritten);
    font-size: 29px;
    line-height: 1.45;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
    margin: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary), var(--secondary) 50%, transparent);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
    width: calc(50% - 30px);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    width: calc(50% - 30px);
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 3px rgba(144, 17, 254, 0.3);
    transition: width 320ms cubic-bezier(.2, .9, .3, 1), height 320ms cubic-bezier(.2, .9, .3, 1), box-shadow 320ms cubic-bezier(.2, .9, .3, 1), transform 320ms cubic-bezier(.2, .9, .3, 1);
}

.timeline-item:hover .timeline-dot {
    width: 28px;
    height: 28px;
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 0 6px rgba(144, 17, 254, 0.2);
}

.timeline-content {
    background: linear-gradient(135deg, var(--highlight) 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(144, 17, 254, 0.15);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: transform 320ms cubic-bezier(.2, .9, .3, 1), box-shadow 320ms cubic-bezier(.2, .9, .3, 1), border-color 320ms cubic-bezier(.2, .9, .3, 1);
    will-change: transform;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 12px 32px rgba(144, 17, 254, 0.15);
    border-color: rgba(144, 17, 254, 0.3);
    transform: translateY(-4px);
}

.timeline-content h4 {
    color: var(--accent);
    font-size: 20px;
    margin: 0 0 10px 0;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        width: calc(100% - 60px);
        text-align: left;
    }
}


/* Social Section */
.social-section {
    background: linear-gradient(135deg, var(--mint) 0%, rgba(230, 247, 245, 0.5) 100%);
    border-radius: 20px;
    padding: 50px 40px;
    margin-top: 60px;
    text-align: center;
    border: 2px solid rgba(100, 200, 200, 0.25);
    box-shadow: 0 12px 36px rgba(100, 200, 200, 0.12);
}

.social-section h2 {
    color: var(--accent);
    font-size: 32px;
    margin-bottom: 15px;
}

.social-section p {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
}

.social-cta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-link {
    background: linear-gradient(135deg, var(--secondary), #2f2f2f);
    color: white;
    padding: 18px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 380ms cubic-bezier(.2,.9,.3,1);
    box-shadow: 0 8px 24px rgba(144, 17, 254, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid transparent;
}

.cta-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(144, 17, 254, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-link:active {
    transform: translateY(-2px);
}

/* ========================= LIGHTBOX ========================= */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(6,6,6,0.86);
    z-index: 200;
    transition: opacity 220ms ease;
    opacity: 0;
}
.lightbox-overlay.open {
    display: flex;
    opacity: 1;
}
.lb-stage { position: relative; display:flex; align-items:center; justify-content:center; max-width:90vw; max-height:90vh; }
.lb-img {
    max-width: calc(100vw - 120px);
    max-height: calc(100vh - 120px);
    object-fit: contain;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    border-radius: 8px;
    transition: transform 260ms cubic-bezier(.22,1,.36,1), opacity 240ms ease;
    opacity: 0;
}
.lightbox-overlay.open .lb-img { opacity: 1; }
.lb-prev, .lb-next, .lb-close {
    position: absolute;
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: none;
    padding: 10px 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 26px;
    z-index: 210;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-close { top: 18px; right: 18px; border-radius: 8px; font-size: 20px; padding: 8px 10px; }
.lb-prev:hover, .lb-next:hover, .lb-close:hover { background: rgba(255,255,255,0.12); }

@media (max-width: 700px) {
    .lb-prev, .lb-next { font-size: 22px; padding: 8px 10px; }
    .lb-img { max-width: calc(100vw - 56px); max-height: calc(100vh - 56px); }
}

/* ========================= MOBILE RESPONSIVE ========================= */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    /* Typography */
    h2 { font-size: 28px; }
    h3 { font-size: 20px; }
    
    /* Navbar adjustments */
    nav {
        padding: 12px 20px;
    }
    
    .brand-link {
        font-size: 18px;
    }
    
    .brand-link img {
        width: 52px;
        height: 52px;
    }
    
    .nav-links {
        gap: 4px;
        padding: 6px 8px;
    }
    
    .nav-links a {
        padding: 8px 14px;
        font-size: 14px;
    }
    
    /* Sections */
    section {
        padding: 40px 20px;
    }
    
    /* Hero sections */
    .menu-hero,
    .hero-section,
    .social-section,
    .dietary-section {
        padding: 40px 25px;
    }
    
    /* Grids */
    .menu-grid {
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    
    .featured-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
    
    /* Slider */
    .slider {
        width: 100%;
        height: 360px;
        border-radius: 0;
    }
    
    .slides img {
        height: 360px;
    }

    .prev, .next {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .slider .prev { left: 12px; }
    .slider .next { right: 12px; }
    .slider .dots { bottom: 14px; padding: 8px 14px; }
}

/* Mobile (600px and below) */
@media (max-width: 600px) {
    /* Reset existing styles */
    .nav-links a { 
        margin: 0; 
        font-size: 16px;
        padding: 16px 20px;
        min-height: 48px;
        width: 100%;
        text-align: left;
        border-radius: 8px;
        display: flex;
        align-items: center;
    }
    
    .brand-link { 
        font-size: 16px;
        padding: 4px 8px;
    }
    
    .brand-link img {
        width: 44px;
        height: 44px;
    }
    
    /* Mobile navbar */
    nav {
        padding: 10px 15px;
        flex-wrap: nowrap;
    }
    
    .dark-mode-toggle {
        margin: 0 0 8px 0;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .toggle-slider {
        width: 50px;
        height: 26px;
    }
    
    .toggle-slider::before {
        width: 18px;
        height: 18px;
    }
    
    .toggle-slider .sun-icon,
    .toggle-slider .moon-icon {
        width: 14px;
        height: 14px;
    }
    
    .dark-mode-checkbox:checked + .toggle-slider::before {
        left: calc(100% - 22px);
    }
    
    .nav-toggle { 
        display: block;
        margin-left: auto;
        margin-right: 0;
        font-size: 28px;
        padding: 12px;
        min-width: 48px;
        min-height: 48px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links { 
        display: none;
        position: fixed;
        right: 15px;
        top: 70px;
        background: #9011FE;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 12px 32px rgba(0,0,0,0.4);
        flex-direction: column;
        min-width: 200px;
        gap: 12px;
        z-index: 100;
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-links.open { 
        display: flex;
    }
    
    /* Dark mode mobile menu */
    body.dark-mode .nav-links {
        background: #9011FE;
        border-color: rgba(255, 255, 255, 0.28);
        box-shadow: 0 12px 32px rgba(0,0,0,0.7);
    }
    
    .nav-underline {
        display: none;
    }
    
    .order-btn { 
        display: none;
    }
    
    /* Typography */
    h2 { 
        font-size: 24px;
        line-height: 1.3;
    }
    
    h3 { 
        font-size: 18px;
    }
    
    /* Sections */
    section {
        padding: 30px 15px;
    }
    
    .menu-hero h2,
    .hero-section h2 {
        font-size: 28px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    /* Slider */
    .slider { 
        width: 100%;
        height: 270px;
        border-radius: 0;
    }
    
    .slides img { 
        height: 270px;
    }

    .prev, .next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .prev { left: 10px; }
    .next { right: 10px; }
    
    .slider .dots { 
        padding: 7px 10px;
        gap: 7px;
        bottom: 10px;
    }
    
    .slider .dot { 
        width: 16px;
        height: 5px;
    }

    .slider .dot.active {
        width: 26px;
        height: 6px;
    }
    
    /* Grids - 3 columns on mobile for compact layout */
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Home page featured grid - single column for better presentation */
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Featured cards on mobile */
    .featured-card {
        padding: 12px;
    }
    
    .featured-card img {
        height: 160px;
    }
    
    .featured-card h3 {
        font-size: 15px;
        margin: 10px 0 6px;
    }
    
    .featured-card p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    /* Featured items keep larger sizing for readability */
    .featured-grid .menu-item h3 {
        font-size: 16px;
    }
    
    .featured-grid .menu-item p {
        font-size: 13px;
    }
    
    .featured-grid .menu-item .price {
        font-size: 18px;
    }
    
    .featured-grid .image-wrapper {
        padding-bottom: 56.25%; /* Keep 16:9 ratio for featured items */
    }
    
    /* Other grids - 2 columns */
    .team-grid,
    .values-grid,
    .hours-grid,
    .dietary-grid,
    .contact-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Menu items - Compact for mobile */
    .menu-item {
        border-radius: 8px;
    }
    
    .menu-content {
        padding: 8px;
    }
    
    .menu-item h3 {
        font-size: 11px;
        margin: 0 0 4px 0;
    }
    
    .menu-item p {
        font-size: 9px;
        line-height: 1.3;
        margin: 0 0 6px 0;
    }
    
    .badge {
        top: 4px;
        right: 4px;
        padding: 3px 6px;
        font-size: 7px;
    }
    
    .price {
        font-size: 14px;
        font-weight: 800;
    }
    
    /* Image wrapper - smaller padding for compact look */
    .image-wrapper {
        padding-bottom: 75%; /* More square ratio for mobile */
    }
    
    /* Hero sections */
    .menu-hero,
    .hero-section,
    .social-section,
    .dietary-section {
        padding: 40px 20px;
        border-radius: 15px;
        margin: 15px 0 30px 0;
    }
    
    .hero-section::before {
        font-size: 120px;
    }
    
    .menu-hero h2,
    .hero-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .menu-hero p,
    .hero-section p,
    .intro-text {
        font-size: 12px;
    }
    
    section h2 {
        font-size: 18px;
    }
    
    section p {
        font-size: 12px;
    }
    
    /* Contact cards */
    .contact-card {
        padding: 25px;
    }
    
    .contact-icon {
        font-size: 40px;
    }
    
    /* Form */
    .form-wrapper {
        padding: 30px 20px;
        margin: 30px 0;
    }

    .contact-details-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 15px;
    }
    
    /* Social */
    .social-cta,
    .social-links {
        grid-template-columns: 1fr;
    }
    
    /* Timeline */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        width: calc(100% - 60px);
        text-align: left;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    /* Team members */
    .team-image-wrapper {
        height: 240px;
    }
    
    .role-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    /* Gallery */
    .gallery-label {
        font-size: 14px;
    }
    
    .gallery-overlay {
        padding: 15px;
    }
    
    /* Footer */
    footer {
        font-size: 13px;
        padding: 12px;
    }
}

/* Small mobile (400px and below) */
@media (max-width: 400px) {
    nav {
        padding: 8px 12px;
    }
    
    .brand-link {
        font-size: 14px;
        gap: 8px;
    }
    
    .brand-link img {
        width: 34px;
        height: 34px;
    }
    
    /* Keep 3 columns for menu grid, single for featured */
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .menu-item h3 {
        font-size: 10px;
    }
    
    .menu-item p {
        font-size: 8px;
    }
    
    .price {
        font-size: 12px;
    }
    
    .badge {
        font-size: 6px;
        padding: 2px 4px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    section {
        padding: 25px 12px;
    }
    
    .slider {
        height: 220px;
    }
    
    .slides img {
        height: 220px;
    }
    
    .prev, .next {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .menu-content {
        padding: 15px;
    }
    
    .price {
        font-size: 22px;
    }
}

/* ========================= DARK MODE ENHANCEMENTS ========================= */

/* Dark mode navbar */
body.dark-mode nav {
    background: linear-gradient(135deg, #9011FE 0%, #6620b8 100%);
    border-bottom-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Dark mode brand name */
body.dark-mode .brand-link {
    color: #ffffff;
}

/* Dark mode nav links */
body.dark-mode .nav-links {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Dark mode mobile menu override */
@media (max-width: 600px) {
    body.dark-mode .nav-links {
        background: var(--surface-1) !important;
        border-color: rgba(255, 255, 255, 0.1);
    }
}

body.dark-mode .nav-links a {
    color: rgba(255, 255, 255, 0.84);
}

body.dark-mode .nav-links a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.24);
    font-weight: 700;
}

/* Smooth dark mode hover transitions across the site */
/* Dark mode underline */
body.dark-mode .nav-underline {
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.72));
    box-shadow: 0 2px 8px rgba(144, 17, 254, 0.4);
}

/* Dark mode order button */
body.dark-mode .order-btn {
    background: linear-gradient(145deg, #ffffff, #ecdeff);
    color: #4b0d9d;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

/* Dark mode cards and sections */
body.dark-mode .menu-item,
body.dark-mode .featured-card,
body.dark-mode .testimonial,
body.dark-mode .team-member,
body.dark-mode .value-card,
body.dark-mode .contact-card,
body.dark-mode .dietary-card,
body.dark-mode .hour-card,
body.dark-mode .timeline-content {
    background: linear-gradient(160deg, var(--surface-2), var(--highlight));
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

/* Dark mode hero sections */
body.dark-mode .menu-hero,
body.dark-mode .hero-section,
body.dark-mode .social-section,
body.dark-mode .dietary-section {
    background: linear-gradient(135deg, var(--surface-2) 0%, rgba(144, 17, 254, 0.12) 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Dark mode inputs */
body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
    background: var(--surface-1);
    border-color: rgba(255, 255, 255, 0.14);
    color: #f5f5ff;
}

body.dark-mode .contact-form input:focus,
body.dark-mode .contact-form textarea:focus {
    border-color: rgba(144, 17, 254, 0.85);
    box-shadow: 0 0 0 3px rgba(144, 17, 254, 0.22);
    outline: none;
}

body.dark-mode .contact-form input::placeholder,
body.dark-mode .contact-form textarea::placeholder {
    color: var(--muted-text);
}

/* Dark mode footer */
body.dark-mode footer {
    background: #0f0f14;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Dark mode images - slight brightness adjustment */
body.dark-mode .slides img,
body.dark-mode .menu-item img,
body.dark-mode .gallery-item img,
body.dark-mode .team-member img,
body.dark-mode .featured-card img {
    filter: brightness(0.88) saturate(1.05);
}

/* Dark mode slider */
body.dark-mode .slider {
    background: linear-gradient(135deg, rgba(22, 22, 31, 0.96), rgba(144, 17, 254, 0.16));
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

body.dark-mode .slider .prev,
body.dark-mode .slider .next {
    background: rgba(18, 18, 26, 0.78);
    border-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

body.dark-mode .slider::after {
    background: linear-gradient(180deg, rgba(18, 18, 31, 0), rgba(18, 18, 31, 0.34));
}

body.dark-mode .slider .prev:focus,
body.dark-mode .slider .next:focus {
    box-shadow: 0 0 0 4px rgba(144, 17, 254, 0.28), 0 16px 36px rgba(0, 0, 0, 0.3);
}

body.dark-mode .slider .dots {
    background: rgba(10, 10, 14, 0.5);
    border-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode .slider .dot {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.18);
}

body.dark-mode .slider .dot.active {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.82);
}

/* Dark mode lightbox */
body.dark-mode .lightbox-overlay {
    background: rgba(0, 0, 0, 0.95);
}

/* Dark mode gallery overlay */
body.dark-mode .gallery-overlay {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.85), rgba(47, 47, 47, 0.7));
}

/* ========================= STATISTICS COUNTER ========================= */
.stats-section {
    background: linear-gradient(135deg, var(--secondary) 0%, rgba(144, 17, 254, 0.6) 100%);
    padding: 50px 20px;
    border-radius: 20px;
    margin: 40px auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    width: 85%;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), #f4a261);
    transform: translateX(-100%);
    transition: transform 600ms ease;
    z-index: 2;
}

.stat-item:hover::before {
    transform: translateX(0);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 100%;
    height: 120px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary) 0%, rgba(144, 17, 254, 0.5) 100%);
    transition: all 400ms ease;
}

.stat-icon svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    transition: transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: iconFloat 3s ease-in-out infinite;
}

.stat-item:hover .stat-icon svg {
    transform: scale(1.15) rotate(5deg);
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(-3deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-8px) rotate(3deg); }
}

.stat-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 0%, transparent 60%);
    pointer-events: none;
}

.stat-number {
    font-size: 40px;
    font-weight: bold;
    color: var(--accent);
    display: block;
    margin: 20px 0 12px;
    font-family: var(--font-display);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 13px;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 15px 20px;
    display: block;
}

/* Home page simplified stats */
.home-stats {
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.12) 0%, rgba(144, 17, 254, 0.2) 100%);
    border: 1px solid rgba(144, 17, 254, 0.24);
    box-shadow: 0 16px 34px rgba(144, 17, 254, 0.16);
}

.home-stats::before,
.home-stats .stat-item::before,
.home-stats .stat-icon,
.home-stats .stat-icon::after {
    display: none;
}

.home-stats .stats-grid {
    gap: 16px;
}

.home-stats .stat-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(144, 17, 254, 0.2);
    border-radius: 12px;
    padding: 18px 14px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.home-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 26px rgba(144, 17, 254, 0.2);
}

.home-stats .stat-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(144, 17, 254, 0.35);
    color: var(--secondary);
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 2px;
}

.home-stats .stat-number {
    margin: 4px 0 8px;
    font-size: 34px;
    color: var(--secondary);
    text-shadow: none;
}

.home-stats .stat-label {
    padding: 0;
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 0.05em;
}

body.dark-mode .home-stats {
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.2) 0%, rgba(33, 33, 44, 0.95) 100%);
    border-color: rgba(255, 255, 255, 0.14);
}

body.dark-mode .home-stats .stat-item {
    background: rgba(22, 22, 31, 0.95);
    border-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode .home-stats .stat-chip {
    border-color: rgba(144, 17, 254, 0.7);
    color: #d8bcff;
}

body.dark-mode .home-stats .stat-label {
    color: #d7d7e4;
}

/* Dark mode statistics */
body.dark-mode .stats-section {
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.22) 0%, rgba(17, 17, 23, 0.75) 100%);
}

body.dark-mode .stat-item {
    background: rgba(23, 23, 31, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

body.dark-mode .stat-icon::after {
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

body.dark-mode .stat-number {
    color: var(--secondary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body.dark-mode .stat-label {
    color: #bbb;
}

/* Responsive statistics */
@media (max-width: 1024px) {
    .stats-section {
        width: 85%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 50px 20px;
        margin: 40px auto;
        width: 90%;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .stat-icon {
        height: 150px;
    }
    
    .stat-number {
        font-size: 40px;
        margin: 20px 0 12px;
    }
    
    .stat-label {
        font-size: 12px;
        padding: 0 10px 20px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 40px 15px;
        width: 95%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-icon {
        height: 200px;
    }
}

/* ========================= SCROLL TO TOP BUTTON ========================= */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary) 0%, rgba(144, 17, 254, 0.9) 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 400ms ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--accent) 0%, rgba(47, 47, 47, 0.9) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top:active {
    transform: translateY(0);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Dark mode scroll button */
body.dark-mode .scroll-to-top {
    background: linear-gradient(135deg, var(--secondary) 0%, rgba(47, 47, 47, 0.9) 100%);
}

/* Responsive scroll button */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================= IMAGE ZOOM OVERLAY ========================= */
.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1), visibility 500ms cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px) saturate(100%);
    -webkit-backdrop-filter: blur(0px) saturate(100%);
}

.zoom-overlay.active {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 500ms cubic-bezier(0.4, 0, 0.2, 1),
                backdrop-filter 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-container {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 600ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zoomIn {
    0% {
        transform: scale(0.3) translateY(50px);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.zoom-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.zoom-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--secondary);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-close:hover {
    background: var(--accent);
    transform: rotate(90deg);
}

/* Dark mode zoom overlay */
body.dark-mode .zoom-overlay {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
}

body.dark-mode .zoom-close {
    background: var(--secondary);
}

/* Responsive zoom */
@media (max-width: 768px) {
    .zoom-container {
        max-width: 95%;
    }
    
    .zoom-close {
        top: -45px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
}

/* ============================================
   PARALLAX SECTIONS
   ============================================ */

.parallax-section {
    position: relative;
    min-height: 350px;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 80px auto;
    max-width: 100%;
    width: 100%;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255,107,107,0.75), 
        rgba(212,167,116,0.75));
    mix-blend-mode: multiply;
    z-index: 1;
}

.parallax-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
        transparent 30%, 
        rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 50px 30px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: transform 0.1s ease-out, opacity 0.3s ease-out;
}

.parallax-icon {
    font-size: 70px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5));
    transform-origin: center;
    transition: transform 0.1s ease-out;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.parallax-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5),
                 0 0 30px rgba(255,255,255,0.2);
    letter-spacing: 0.03em;
    color: white;
    text-transform: uppercase;
    line-height: 1.2;
    font-family: var(--font-display);
}

.team-member h4,
.timeline-content h4,
.value-card h3,
.menu-hero h2,
.social-section h2,
.option-group h3 {
    font-family: var(--font-display);
}

.parallax-text {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 1px 1px 12px rgba(0,0,0,0.5);
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 0;
    font-style: italic;
}

/* Decorative elements */
.parallax-section .parallax-content::before,
.parallax-section .parallax-content::after {
    content: '✦';
    position: absolute;
    color: rgba(255,255,255,0.5);
    font-size: 24px;
    top: 20px;
    animation: twinkle 2s ease-in-out infinite;
}

.parallax-section .parallax-content::before {
    left: 15px;
}

.parallax-section .parallax-content::after {
    right: 15px;
    animation-delay: 1s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.15); }
}

/* Parallax Background Images */
.parallax-style {
    background-image: url('fashion5.jpg');
}

.parallax-style::before {
    background: linear-gradient(135deg, 
    rgba(144, 17, 254, 0.72), 
    rgba(47, 47, 47, 0.7));
}

.parallax-fresh {
    background-image: url('fashion6.jpg');
}

.parallax-fresh::before {
    background: linear-gradient(135deg, 
        rgba(47, 47, 47, 0.74), 
        rgba(144, 17, 254, 0.64));
}

.parallax-style .parallax-title,
.parallax-fresh .parallax-title,
.parallax-style .parallax-text,
.parallax-fresh .parallax-text {
    color: #ffffff;
}

/* Responsive Parallax */
@media (max-width: 1024px) {
    .parallax-section {
        background-attachment: scroll;
        min-height: 320px;
        margin: 40px auto;
    }
    
    .parallax-content {
        padding: 45px 25px;
    }
    
    .parallax-title {
        font-size: 36px;
        letter-spacing: 0.02em;
    }
    
    .parallax-text {
        font-size: 18px;
    }
    
    .parallax-icon {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .parallax-section {
        min-height: 280px;
        margin: 35px auto;
    }
    
    .parallax-content {
        padding: 40px 20px;
    }
    
    .parallax-title {
        font-size: 30px;
        letter-spacing: 0.02em;
        margin-bottom: 15px;
    }
    
    .parallax-text {
        font-size: 17px;
        line-height: 1.5;
    }
    
    .parallax-icon {
        font-size: 55px;
        margin-bottom: 18px;
    }
    
    .parallax-section .parallax-content::before,
    .parallax-section .parallax-content::after {
        font-size: 20px;
        top: 15px;
    }
}

@media (max-width: 480px) {
    .parallax-section {
        min-height: 250px;
        margin: 30px auto;
    }
    
    .parallax-content {
        padding: 35px 18px;
    }
    
    .parallax-title {
        font-size: 26px;
        margin-bottom: 14px;
        letter-spacing: 0.01em;
    }
    
    .parallax-text {
        font-size: 16px;
    }
    
    .parallax-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }
    
    .parallax-section .parallax-content::before,
    .parallax-section .parallax-content::after {
        display: none;
    }
}

/* Dark mode adjustments */
body.dark-mode .parallax-section::before {
    opacity: 0.9;
}

body.dark-mode .parallax-title {
    color: white;
    text-shadow: 2px 2px 25px rgba(0,0,0,0.8),
                 0 0 50px rgba(255,255,255,0.2);
}

body.dark-mode .parallax-text {
    color: rgba(255,255,255,0.95);
}

/* ============================================
    OUTFIT CUSTOMIZATION TOOL
   ============================================ */

.customize-section {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Hero section on customize page */
.hero-section + .customize-section,
.customize-section {
    max-width: 1400px;
}

.hero-section {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5%;
    padding-right: 5%;
}

.customize-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,107,0.03) 0%, rgba(212,167,116,0.03) 100%);
    z-index: -1;
    pointer-events: none;
}

.customize-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: stretch;
}

/* Preview Panel */
.preview-panel {
    position: sticky;
    top: 90px;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 10px 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    background-image: linear-gradient(var(--card-bg), var(--card-bg)), 
                      linear-gradient(135deg, #9011FE, #6f0fd0, #2f2f2f);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
}

.preview-panel:hover {
    box-shadow: 0 4px 25px rgba(255,107,107,0.25), 0 0 0 1px rgba(255,107,107,0.1);
    transform: translateY(-1px);
}

.preview-panel h3 {
    font-size: 14px;
    margin: 0;
    color: var(--heading-color);
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.preview-panel h3::before {
    content: '🛒 ';
    -webkit-text-fill-color: initial;
}

.preview-summary {
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.08), rgba(47, 47, 47, 0.08));
    border-radius: 8px;
    padding: 8px 12px;
    margin: 0;
    border: 1px solid rgba(144, 17, 254, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.preview-summary:hover {
    border-color: rgba(144, 17, 254, 0.3);
}

.preview-summary p {
    font-size: 12px;
    margin: 0;
    color: var(--text-color);
    padding: 0;
    border: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.preview-summary p strong {
    opacity: 0.7;
    font-weight: 500;
}

.preview-summary p span {
    color: var(--secondary);
    font-weight: 600;
    font-size: 13px;
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.1), rgba(47, 47, 47, 0.1));
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(144, 17, 254, 0.2);
}

.price-display {
    margin: 0;
    padding: 0 0 0 15px;
    border-left: 2px solid rgba(144, 17, 254, 0.3);
    font-size: 13px;
    color: var(--text-color);
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-display strong {
    opacity: 0.7;
    font-weight: 500;
}

.price-display span {
    font-weight: bold;
    font-size: 16px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-custom-btn {
    padding: 8px 20px;
    min-height: 44px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(144, 17, 254, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.order-custom-btn::before {
    content: '🛍️ ';
    margin-right: 4px;
}

.order-custom-btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 20px rgba(144, 17, 254, 0.5);
}

.order-custom-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(144, 17, 254, 0.3);
}

/* Options Panel */
.options-panel {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.option-group {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    will-change: transform;
}

.option-group:hover::before {
    transform: translateX(100%);
}

.option-group:hover {
    border-color: rgba(144, 17, 254, 0.3);
    box-shadow: 0 8px 30px rgba(144, 17, 254, 0.15);
}

.option-group h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.option-group h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 2px;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

/* Text-only option cards */
.text-option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.text-option-card {
    position: relative;
    background: var(--highlight);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 25px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.text-option-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: rgba(144, 17, 254, 0.5);
}

.text-option-card.active {
    border-color: var(--secondary);
    border-width: 3px;
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.15), rgba(47, 47, 47, 0.08));
    box-shadow: 0 8px 30px rgba(144, 17, 254, 0.35);
    transform: translateY(-5px) scale(1.03);
    position: relative;
}

.text-option-card.active::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 2px 10px rgba(144, 17, 254, 0.4);
    animation: checkmark-pop 0.3s ease;
}

@keyframes checkmark-pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.text-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.text-option-content {
    text-align: center;
}

.text-option-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--heading-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.text-option-card.active .text-option-content h4 {
    color: var(--secondary);
    font-weight: 700;
}

.text-option-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 10px 0;
    line-height: 1.5;
}

/* Keep original option cards for compatibility */

.option-card {
    position: relative;
    background: var(--highlight);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.option-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-light);
}

.option-card.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(255,107,107,0.05));
    box-shadow: 0 4px 20px rgba(255,107,107,0.2);
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-content {
    text-align: center;
}

.option-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.option-card:hover .option-icon {
    transform: scale(1.1);
}

.option-card.active .option-icon {
    transform: scale(1.15);
}

.option-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--heading-color);
}

.option-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.customize-page .extra-price,
.customize-page .base-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
    border: 1px solid rgba(144, 17, 254, 0.2);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.customize-page .extra-price {
    color: #6a1fc4;
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.14), rgba(144, 17, 254, 0.06));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 6px 12px rgba(144, 17, 254, 0.16);
}

.customize-page .base-price {
    color: #2f2f2f;
    background: linear-gradient(135deg, rgba(47, 47, 47, 0.08), rgba(47, 47, 47, 0.03));
    border-color: rgba(47, 47, 47, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 6px 12px rgba(47, 47, 47, 0.1);
}

.customize-page .text-option-card:hover .extra-price,
.customize-page .text-option-card:hover .base-price {
    transform: translateY(-1px);
}

body.dark-mode.customize-page .extra-price {
    color: #f5eaff;
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.34), rgba(144, 17, 254, 0.16));
    border-color: rgba(200, 153, 255, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 8px 14px rgba(0, 0, 0, 0.32);
}

body.dark-mode.customize-page .base-price {
    color: #f0f0f6;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.09));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 14px rgba(0, 0, 0, 0.28);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .customize-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .preview-panel {
        position: sticky;
        top: 80px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .text-option-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .option-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .customize-section {
        padding: 30px 4%;
    }
    
    .preview-panel {
        position: sticky;
        top: 70px;
        padding: 25px 20px;
        z-index: 10;
        box-shadow: 0 8px 30px rgba(255,107,107,0.15);
    }
    
    .preview-panel h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .option-group {
        padding: 25px 20px;
    }
    
    .option-group h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .text-option-grid,
    .option-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .text-option-card,
    .option-card {
        padding: 20px 15px;
    }
    
    .text-option-content h4 {
        font-size: 18px;
    }
    
    .text-option-content p {
        font-size: 13px;
    }
    
    .preview-summary p {
        font-size: 15px;
    }
    
    .preview-summary p span {
        font-size: 16px;
    }
    
    .order-custom-btn {
        padding: 16px;
        min-height: 48px;
        font-size: 16px;
    }
    
    .option-icon {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .customize-section {
        padding: 20px 3%;
    }
    
    .preview-panel {
        position: sticky;
        top: 60px;
        padding: 18px 15px;
        border-radius: 15px;
        z-index: 10;
        box-shadow: 0 6px 25px rgba(255,107,107,0.2);
        backdrop-filter: blur(10px);
        max-width: 100%;
    }
    
    .option-group {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .preview-panel h3 {
        font-size: 20px;
    }
    
    .option-group h3 {
        font-size: 18px;
    }
    
    .preview-summary {
        padding: 20px;
    }
    
    .text-option-card,
    .option-card {
        padding: 15px;
    }
    
    .text-option-content h4 {
        font-size: 16px;
    }
    
    .customize-page .extra-price,
    .customize-page .base-price {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* ========================= MOBILE USABILITY POLISH ========================= */
@media (max-width: 768px) {
    nav {
        padding: 10px 12px;
    }

    .brand-link {
        font-size: 15px;
        gap: 8px;
    }

    .brand-link img {
        width: 36px;
        height: 36px;
    }

    .nav-links {
        top: 64px;
        left: 12px;
        right: 12px;
        min-width: 0;
        width: auto;
        max-height: calc(100vh - 84px);
        overflow-y: auto;
        padding: 14px;
        gap: 8px;
    }

    main {
        padding: 0;
    }

    section {
        padding: 22px 14px;
    }

    h2 {
        font-size: 22px;
        line-height: 1.25;
    }

    h3 {
        font-size: 17px;
    }

    p,
    li,
    .stat-label,
    .lookbook-feature p,
    .style-lab-copy p {
        font-size: 14px;
        line-height: 1.55;
    }

    .slider,
    .slides img {
        height: 220px;
    }

    .style-lab,
    .lookbook,
    .cta,
    .form-wrapper,
    .contact-card,
    .hour-card,
    .social-link,
    .value-card,
    .featured-card,
    .testimonial {
        border-radius: 14px;
    }

    .style-lab,
    .lookbook,
    .form-wrapper {
        padding: 16px;
    }

    .lookbook-feature h2,
    .style-lab-copy h2,
    .parallax-title {
        font-size: 26px;
    }

    .parallax-section {
        min-height: 220px;
        margin: 24px auto;
    }

    .parallax-content {
        padding: 26px 14px;
    }

    .stats-section {
        width: calc(100% - 24px);
        padding: 24px 14px;
        margin: 24px auto;
    }

    .stats-grid,
    .values-grid,
    .team-grid,
    .dietary-grid,
    .social-links,
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-details-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .contact-details-row .contact-card {
        padding: 14px 10px;
        border-radius: 12px;
    }

    .contact-details-row .contact-icon {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .contact-details-row .contact-card h3 {
        margin: 6px 0;
        font-size: 15px;
    }

    .contact-details-row .contact-card p,
    .contact-details-row .contact-card a {
        font-size: 12px;
        line-height: 1.35;
        word-break: break-word;
    }

    .map-frame iframe {
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 18px 10px;
    }

    h2 {
        font-size: 20px;
    }

    p,
    li,
    .stat-label {
        font-size: 13px;
    }

    .slider,
    .slides img {
        height: 190px;
    }

    .prev,
    .next {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .map-frame iframe {
        min-height: 200px;
    }

    .contact-details-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .contact-details-row .contact-card {
        padding: 12px 8px;
    }

    .contact-details-row .contact-icon {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .contact-details-row .contact-card h3 {
        font-size: 14px;
    }

    .contact-details-row .contact-card p,
    .contact-details-row .contact-card a {
        font-size: 11px;
    }
}

/* ================================
   COLLECTION PAGE STYLES
   ================================ */

/* Collection Header */
.collection-header {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(144, 17, 254, 0.08) 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 2px solid rgba(144, 17, 254, 0.2);
}

.collection-header-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 600ms ease;
}

.collection-header h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    margin: 0 0 15px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--heading-color);
}

.collection-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--muted-text);
    margin: 0 0 30px;
    font-weight: 400;
    line-height: 1.6;
}

.back-home-btn {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 260ms cubic-bezier(.2,.9,.3,1);
    cursor: pointer;
    font-size: 14px;
}

.back-home-btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

/* Filter Tabs */
.collection-filters {
    padding: 40px 20px;
    background: var(--primary);
    border-bottom: 1px solid rgba(144, 17, 254, 0.1);
    position: sticky;
    top: 80px;
    z-index: 30;
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 28px;
    background: transparent;
    border: 2px solid rgba(144, 17, 254, 0.3);
    color: var(--text-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 260ms cubic-bezier(.2,.9,.3,1);
    position: relative;
    overflow: hidden;
}

.filter-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    z-index: -1;
    transition: left 260ms cubic-bezier(.2,.9,.3,1);
}

.filter-tab:hover {
    border-color: var(--secondary);
}

.filter-tab.active {
    color: white;
    border-color: var(--secondary);
    background: var(--secondary);
}

/* Collection Sections */
.collection-section {
    display: none;
    opacity: 0;
    transition: opacity 300ms ease;
}

.collection-section.active {
    display: block;
    opacity: 1;
}

.section-header {
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 0 20px;
    text-align: center;
    animation: fadeInUp 600ms ease;
}

.section-header h2 {
    font-size: clamp(2rem, 6vw, 2.8rem);
    margin: 0 0 15px;
    color: var(--heading-color);
    font-weight: 800;
}

.section-header p {
    color: var(--muted-text);
    font-size: 16px;
    margin: 0;
}

/* Products Grid */
.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Product Card */
.product-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 260ms cubic-bezier(.2,.9,.3,1);
    animation: fadeIn 600ms ease;
    opacity: 0;
    animation-fill-mode: forwards;
}

.product-card:nth-child(1) { animation-delay: 0ms; }
.product-card:nth-child(2) { animation-delay: 100ms; }
.product-card:nth-child(3) { animation-delay: 200ms; }
.product-card:nth-child(4) { animation-delay: 300ms; }
.product-card:nth-child(5) { animation-delay: 400ms; }
.product-card:nth-child(6) { animation-delay: 500ms; }

.product-card.reveal {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(144, 17, 254, 0.2);
}

/* Product Image */
.product-image-wrap {
    position: relative;
    overflow: hidden;
    height: 350px;
    background: var(--mint);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms cubic-bezier(.2,.9,.3,1);
    will-change: transform;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 300ms cubic-bezier(.2,.9,.3,1);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    padding: 12px 32px;
    background: white;
    color: var(--secondary);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 260ms cubic-bezier(.2,.9,.3,1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.quick-view-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Wishlist Button */
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 260ms cubic-bezier(.2,.9,.3,1);
    color: var(--secondary);
    font-size: 20px;
    z-index: 10;
}

.wishlist-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wishlist-btn.wishlisted {
    background: var(--secondary);
    color: white;
    animation: heartBeat 300ms ease;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1); }
    75% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Product Info */
.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 16px;
    margin: 0 0 10px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.4;
}

.product-desc {
    font-size: 13px;
    color: var(--muted-text);
    margin: 0 0 12px;
    line-height: 1.5;
    min-height: 40px;
}

.product-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--secondary);
    margin: 0 0 15px;
}

.view-details-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--secondary), rgba(144, 17, 254, 0.8));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 260ms cubic-bezier(.2,.9,.3,1);
    box-shadow: 0 4px 12px rgba(144, 17, 254, 0.3);
}

.view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(144, 17, 254, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
    animation: fadeIn 300ms ease;
    backdrop-filter: blur(3px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--card-bg);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 400ms cubic-bezier(.2,.9,.3,1);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-color);
    transition: all 260ms cubic-bezier(.2,.9,.3,1);
    z-index: 10;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px;
}

@media (max-width: 600px) {
    .modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    background: var(--mint);
}

.modal-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 400px;
}

.modal-info h2 {
    font-size: 24px;
    margin: 0 0 10px;
    color: var(--heading-color);
    font-weight: 800;
}

.modal-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    margin: 5px 0 15px;
}

.modal-info > p:last-of-type {
    color: var(--muted-text);
    line-height: 1.6;
    margin: 0 0 20px;
    font-size: 14px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.modal-wishlist-btn {
    flex: 0 0 auto;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 260ms cubic-bezier(.2,.9,.3,1);
}

.modal-wishlist-btn:hover {
    background: var(--secondary);
    color: white;
}

.modal-wishlist-btn.wishlisted {
    background: var(--secondary);
    color: white;
}

.modal-add-btn {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--secondary), rgba(144, 17, 254, 0.8));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 260ms cubic-bezier(.2,.9,.3,1);
    box-shadow: 0 4px 12px rgba(144, 17, 254, 0.3);
}

.modal-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(144, 17, 254, 0.4);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary), rgba(144, 17, 254, 0.8));
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 110;
    transition: bottom 300ms cubic-bezier(.2,.9,.3,1);
    box-shadow: 0 4px 20px rgba(144, 17, 254, 0.4);
    white-space: nowrap;
}

.toast.show {
    bottom: 30px;
}

@media (max-width: 480px) {
    .toast {
        padding: 12px 24px;
        font-size: 14px;
        bottom: -70px;
    }
    
    .toast.show {
        bottom: 20px;
    }
}

/* Footer */
.collection-footer {
    background: linear-gradient(135deg, var(--accent), rgba(0, 0, 0, 0.05));
    color: var(--text-color);
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-section h3 {
    font-size: 16px;
    margin: 0 0 15px;
    font-weight: 700;
    color: var(--heading-color);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-text);
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--muted-text);
    text-decoration: none;
    font-size: 14px;
    transition: color 260ms cubic-bezier(.2,.9,.3,1);
}

.footer-section a:hover {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(144, 17, 254, 0.1);
    color: var(--secondary);
    transition: all 260ms cubic-bezier(.2,.9,.3,1);
}

.social-icons a:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(144, 17, 254, 0.1);
    font-size: 13px;
    color: var(--muted-text);
}

.footer-bottom p {
    margin: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .collection-header {
        padding: 40px 20px;
    }

    .collection-header h1 {
        margin-bottom: 10px;
    }

    .collection-subtitle {
        margin-bottom: 20px;
    }

    .collection-filters {
        top: 60px;
        padding: 20px;
    }

    .filter-container {
        gap: 10px;
    }

    .filter-tab {
        padding: 10px 20px;
        font-size: 13px;
    }

    .section-header {
        margin: 40px auto 25px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .products-grid {
        padding: 0 20px 40px;
    }

    .product-image-wrap {
        height: 300px;
    }

    .modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .modal-body {
        padding: 25px;
    }

    .footer-content {
        gap: 30px;
        padding-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .collection-header {
        padding: 30px 15px;
    }

    .collection-header h1 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .collection-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .back-home-btn {
        font-size: 12px;
        padding: 10px 20px;
    }

    .collection-filters {
        top: 50px;
        padding: 15px;
    }

    .filter-tab {
        padding: 8px 16px;
        font-size: 12px;
    }

    .section-header {
        margin: 30px auto 20px;
        padding: 0 15px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 13px;
    }

    .products-grid {
        padding: 0 15px 30px;
        gap: 15px;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-image-wrap {
        height: 240px;
    }

    .product-info {
        padding: 15px;
    }

    .product-info h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .product-price {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .view-details-btn {
        padding: 10px;
        font-size: 13px;
    }

    .modal-content {
        width: 100%;
        border-radius: 12px;
        max-height: 95vh;
    }

    .modal-body {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 15px;
    }

    .modal-close {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .modal-info h2 {
        font-size: 18px;
    }

    .modal-price {
        font-size: 18px;
    }

    .modal-actions {
        flex-direction: column-reverse;
    }

    .modal-add-btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-bottom: 20px;
    }

    .collection-footer {
        padding: 40px 15px 15px;
        margin-top: 40px;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 12px;
    }
}

/* ================================
   EXPLORE COLLECTIONS SECTION
   ================================ */

.explore-collections-section {
    padding: 100px 20px;
    margin-bottom: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(144, 17, 254, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(144, 17, 254, 0.2);
    box-shadow: 0 16px 34px rgba(144, 17, 254, 0.1);
    position: relative;
    overflow: hidden;
}

.explore-collections-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(144, 17, 254, 0.08), transparent 70%);
    pointer-events: none;
}

.explore-collections-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(144, 17, 254, 0.06), transparent 70%);
    pointer-events: none;
}

.explore-collections-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.explore-collections-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.explore-kicker {
    text-align: center;
    margin: 0 0 6px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 800;
}

.explore-header {
    text-align: center;
    max-width: 700px;
    animation: fadeInUp 600ms ease;
}

.explore-header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin: 0 0 20px;
    font-weight: 800;
    color: var(--heading-color);
    letter-spacing: -0.5px;
}

.explore-header p {
    font-size: 16px;
    color: var(--muted-text);
    margin: 0;
    line-height: 1.6;
}

.explore-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 700px;
}

.explore-btn {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: var(--card-bg);
    border: 2px solid rgba(144, 17, 254, 0.15);
    border-radius: 16px;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.2,.9,.3,1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    animation: fadeInUp 600ms ease;
}

.explore-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.1), rgba(144, 17, 254, 0.02));
    opacity: 0;
    transition: opacity 300ms cubic-bezier(.2,.9,.3,1);
    z-index: 0;
}

.explore-btn:hover {
    border-color: var(--secondary);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(144, 17, 254, 0.15);
}

.explore-btn:hover::before {
    opacity: 1;
}

.explore-btn:nth-child(2) {
    animation-delay: 100ms;
}

.explore-icon-box {
    width: 100px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.12), rgba(144, 17, 254, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 40px;
    transition: all 300ms cubic-bezier(.2,.9,.3,1);
    position: relative;
    z-index: 1;
}

.explore-btn:hover .explore-icon-box {
    background: linear-gradient(135deg, var(--secondary), rgba(144, 17, 254, 0.8));
    color: white;
    transform: scale(1.1);
}

.explore-icon-box svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
}

.explore-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.explore-content {
    flex: 1;
    padding: 24px 24px 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.explore-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--heading-color);
}

.explore-content p {
    font-size: 13px;
    color: var(--muted-text);
    margin: 0;
    line-height: 1.5;
}

.explore-arrow {
    padding: 0 24px;
    display: flex;
    align-items: center;
    color: var(--secondary);
    font-size: 20px;
    font-weight: 700;
    transition: all 300ms cubic-bezier(.2,.9,.3,1);
    position: relative;
    z-index: 1;
}

.explore-btn:hover .explore-arrow {
    transform: translateX(4px);
    color: var(--secondary);
}

/* Dark Mode */
body.dark-mode .explore-btn {
    border-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode .explore-btn:hover {
    border-color: var(--secondary);
    box-shadow: 0 16px 40px rgba(144, 17, 254, 0.25);
}

body.dark-mode .explore-icon-box {
    background: linear-gradient(135deg, rgba(144, 17, 254, 0.18), rgba(144, 17, 254, 0.08));
}

body.dark-mode .explore-btn:hover .explore-icon-box {
    background: linear-gradient(135deg, var(--secondary), rgba(144, 17, 254, 0.8));
}

/* Responsive Design */
@media (max-width: 768px) {
    .explore-collections-section {
        padding: 60px 20px;
        margin-bottom: 60px;
    }

    .explore-collections-content {
        gap: 40px;
    }

    .explore-header h2 {
        font-size: 24px;
    }

    .explore-header p {
        font-size: 14px;
    }

    .explore-buttons {
        gap: 20px;
    }

    .explore-btn {
        border-radius: 14px;
    }

    .explore-icon-box {
        width: 90px;
    }

    .explore-icon-box svg {
        width: 36px;
        height: 36px;
    }

    .explore-icon-img {
        width: 100%;
        height: 100%;
    }

    .explore-content {
        padding: 20px 20px 20px 16px;
    }

    .explore-content h3 {
        font-size: 16px;
    }

    .explore-content p {
        font-size: 12px;
    }

    .explore-arrow {
        padding: 0 20px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .explore-collections-section {
        padding: 40px 15px;
    }

    .explore-collections-content {
        gap: 30px;
    }

    .explore-header h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .explore-header p {
        font-size: 13px;
    }

    .explore-buttons {
        gap: 16px;
    }

    .explore-btn {
        border-radius: 12px;
        gap: 0;
    }

    .explore-icon-box {
        width: 80px;
        flex-shrink: 0;
    }

    .explore-icon-box svg {
        width: 32px;
        height: 32px;
    }

    .explore-icon-img {
        width: 100%;
        height: 100%;
    }

    .explore-content {
        padding: 18px 16px 18px 12px;
        gap: 6px;
    }

    .explore-content h3 {
        font-size: 15px;
    }

    .explore-content p {
        font-size: 12px;
    }

    .explore-arrow {
        padding: 0 16px;
        font-size: 16px;
    }
}

/* Media queries for responsive spacing */
@media (max-width: 768px) {
    section {
        padding: 60px 20px;
    }

    section h2 {
        margin-bottom: 16px;
    }

    .featured-grid {
        gap: 20px;
        margin-top: 30px;
    }

    .choose-grid {
        gap: 20px;
    }

    .testimonial-grid {
        gap: 18px;
        margin-top: 25px;
    }

    .parallax-section {
        margin: 60px auto;
    }

    .explore-collections-section {
        padding: 70px 20px;
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 15px;
    }

    section h2 {
        margin-bottom: 14px;
        font-size: 32px;
    }

    section p {
        font-size: 15px;
    }

    .featured-grid {
        gap: 16px;
        margin-top: 25px;
    }

    .choose-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-grid {
        gap: 14px;
        margin-top: 20px;
    }

    .parallax-section {
        margin: 40px auto;
    }

    .explore-collections-section {
        padding: 40px 15px;
        margin-bottom: 40px;
    }
}

