/* ==========================================================================
   HYDROLYST PREMIUM BLACK & WHITE DESIGN SYSTEM
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f4f4f4;
    --bg-dark: #0a0a0a;
    --text-primary: #000000;
    --text-secondary: #555555;
    --text-muted: #888888;
    --text-light: #ffffff;
    --border-color: #eaeaea;
    --border-dark: #222222;
    --accent-black: #000000;
    --accent-grey: #666666;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Layout */
    --header-height: 80px;
}

/* CSS Reset & Global Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-black);
    border-radius: 3px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.header-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    height: 60px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.logo-img {
    height: 150px;
    width: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.logo:hover {
    opacity: 0.8;
    transform: scale(0.98);
}

/* Navigation Links */
.main-nav {
    display: flex;
    gap: 3rem;
    justify-self: start;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--text-primary);
}

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

/* Cart Icon Button */
.header-right {
    display: flex;
    align-items: center;
    justify-self: end;
}

.cart-toggle-btn {
    position: relative;
    padding: 0.5rem;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-toggle-btn:hover {
    transform: scale(1.05);
}

.cart-icon {
    stroke: var(--text-primary);
    transition: var(--transition-smooth);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-black);
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-primary);
    transition: var(--transition-smooth);
}

/* Scrolled Header State (White to Black transition) */
.site-header.scrolled {
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-dark);
}

.site-header.scrolled .logo-img {
    filter: invert(1);
}

.site-header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.75);
}

.site-header.scrolled .nav-link::after {
    background-color: var(--text-light);
}

.site-header.scrolled .nav-link:hover {
    color: var(--text-light);
}

.site-header.scrolled .cart-icon {
    stroke: var(--text-light);
}

.site-header.scrolled .cart-badge {
    background-color: var(--text-light);
    color: var(--text-primary);
    border-color: var(--bg-dark);
}

/* ==========================================================================
   CART DRAWER (SIDE-OUT CONTAINER)
   ========================================================================== */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background-color: var(--bg-primary);
    border-left: 1px solid var(--border-color);
    z-index: 200;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.close-cart-btn {
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.close-cart-btn:hover {
    transform: rotate(90deg);
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Empty Cart View */
.empty-cart-message {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-secondary);
}

.empty-cart-message p {
    font-size: 1.1rem;
}

/* Cart Item Styles */
.cart-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    animation: fadeIn 0.3s ease;
}

.cart-item-img-container {
    width: 80px;
    height: 80px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

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

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cart-item-name {
    font-weight: 600;
    font-size: 1rem;
}

.cart-item-price {
    font-weight: 600;
    font-size: 1rem;
}

.cart-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity-adjuster {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    background-color: var(--bg-tertiary);
}

.qty-val {
    width: 32px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.remove-item-btn {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.remove-item-btn:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* Cart Footer */
.cart-drawer-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.checkout-btn {
    width: 100%;
    background-color: var(--accent-black);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    padding: 1.2rem;
    text-align: center;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    padding-top: var(--header-height);
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-grid {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 4rem;
    flex: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 5.5rem;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.hero-subheading {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.45s;
}

/* Requested Hero Button: small black round edged button "Shop Now" */
.hero-btn {
    background-color: var(--accent-black);
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.9rem 2.2rem;
    border-radius: 25px; /* Rounded edges */
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.7s;
    transition: var(--transition-smooth);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #222222;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.95s;
}

.hero-image-wrapper {
    position: relative;
    max-width: 1000px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    animation: float 6s ease-in-out infinite;
}

.hero-product-image {
    width: 100%;
    height: auto;
    display: block;
    z-index: 2;
    position: relative;
}

/* Organic floating water droplet effects in B&W */
.bubble {
    position: absolute;
    background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(0,0,0,0.02) 100%);
    border: 1.5px solid rgba(0,0,0,0.06);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: inset 2px 2px 5px rgba(255,255,255,0.8), inset -2px -2px 5px rgba(0,0,0,0.05), 3px 5px 15px rgba(0,0,0,0.03);
    z-index: 1;
    animation: floatDroplets 10s ease-in-out infinite alternate;
}

.bubble-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: -15%;
    animation-duration: 8s;
}

.bubble-2 {
    width: 50px;
    height: 50px;
    bottom: 15%;
    right: -10%;
    animation-duration: 12s;
    border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
}

.bubble-3 {
    width: 40px;
    height: 40px;
    bottom: 45%;
    left: -5%;
    animation-duration: 9s;
    border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
}

/* Hero Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid var(--border-color);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    pointer-events: none;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background-color: var(--accent-black);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatDroplets {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-20px) rotate(15deg);
    }
}

@keyframes scrollDot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(8px);
        opacity: 0.3;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

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

@keyframes revealAndBlurBottle {
    0% {
        opacity: 0;
        transform: translate(-50%, -40%) scale(0.9);
        filter: blur(0px);
    }
    30% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        filter: blur(0px);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        filter: blur(0px);
    }
    100% {
        opacity: 0.75; /* 75% opacity watermark */
        transform: translate(-50%, -50%) scale(1);
        filter: blur(8px); /* Blurred tinted backdrop */
    }
}

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

/* ==========================================================================
   PHILOSOPHY / FEATURES SECTION
   ========================================================================== */
.philosophy-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 4rem;
    letter-spacing: -1px;
    margin-bottom: 4rem;
    text-align: center;
    text-transform: uppercase;
}

/* Scroll Reveal Animations for Philosophy Section Header */
.philosophy-section .section-title {
    font-family: 'Space Grotesk', sans-serif !important;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.philosophy-section .section-title.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: -3rem auto 4rem auto;
}

.philosophy-showcase-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8rem; /* Pushes the entire content grid down from the header */
}

.philosophy-bg-image-wrapper {
    position: absolute;
    top: 55%; /* Shift the background bottle slightly downwards */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 700px; /* Adjusted down from 900px for new cropped image scale */
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.philosophy-bg-image-wrapper.revealed {
    animation: revealAndBlurBottle 3.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.philosophy-bg-image {
    width: 100%;
    height: auto;
    display: block;
}

.features-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    justify-items: center;
    width: 100%;
}

.feature-card {
    background-color: #000000;
    border: 1px solid #222222;
    padding: 1.8rem 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 280px;
    min-height: 140px;
    
    /* Scroll Reveal properties */
    opacity: 0;
    transform: translateY(30px);
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.philosophy-section .feature-card.revealed {
    animation: fadeInCards 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered delay for left-to-right appearance */
.philosophy-section .feature-card:nth-child(1).revealed {
    animation-delay: 0.7s;
}

.philosophy-section .feature-card:nth-child(2).revealed {
    animation-delay: 0.85s;
}

.philosophy-section .feature-card:nth-child(3).revealed {
    animation-delay: 1.0s;
}

.feature-text {
    font-family: var(--font-body); /* 'Inter', different from 'Outfit' */
    color: #e2eeff; /* White-blue (very light blue) */
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Custom 0 Calories, Sugar & Flavours Boxes (Sora Font) */
.feature-calories,
.feature-sugar,
.feature-flavours {
    font-family: 'Sora', sans-serif;
}

.feature-calories .feature-num,
.feature-sugar .feature-num,
.feature-flavours .feature-num {
    font-family: 'Sora', sans-serif;
    color: #ffffff;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.feature-calories .feature-label,
.feature-sugar .feature-label,
.feature-flavours .feature-label {
    font-family: 'Sora', sans-serif;
    color: #00FFFF; /* Cyan */
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.feature-calories .feature-desc,
.feature-sugar .feature-desc,
.feature-flavours .feature-desc {
    font-family: 'Sora', sans-serif;
    color: #E5E7EB; /* Lighter grey/white description */
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    max-width: 200px;
}

.feature-card:hover {
    transition-delay: 0s !important; /* Responds instantly to hover */
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #555555;
}

.feature-icon {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-black);
}

.feature-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--accent-black);
}

.feature-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.products-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
}

.products-heading {
    font-family: 'Space Grotesk', sans-serif !important;
}

.products-heading .drinking-highlight {
    color: #34E3FF;
}

/* Product Showcase Carousel Wrapper */
.product-carousel-wrapper {
    position: relative;
    max-width: 960px; /* Widened to allow preview behind buttons */
    margin: 4rem auto 0 auto;
    width: 100%;
}

.product-carousel-viewport {
    overflow: hidden;
    max-width: 960px; /* Widened to display wider side-preview */
    width: 100%;
    border-radius: 12px;
    margin: 0 auto;
}

.product-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 370%; /* 5 slides * 74% slide width */
}

.carousel-slide {
    width: 20%; /* 1/5 of track width */
    flex-shrink: 0;
    padding: 0 15px; /* Gutters between slides */
}

/* Carousel Control Buttons (Aqua Blue & Black) */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #34E3FF !important; /* Aqua blue */
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    color: #000000 !important; /* Black arrows */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
    cursor: pointer;
    flex-shrink: 0;
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

.carousel-control:hover {
    background-color: #5ce9ff !important; /* Lighter aqua blue */
    transform: translateY(-50%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-control:active {
    transform: translateY(-50%);
}

.product-showcase-card {
    display: flex !important;
    flex-direction: row !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    overflow: hidden;
    background-color: var(--bg-primary) !important; /* Original White background */
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    height: 450px; /* Lock height to match placeholder cards exactly */
}

/* Hover transitions removed to keep carousel cards static */

/* Placeholder slides styling */
.showcase-placeholder-grey {
    background-color: var(--bg-primary) !important; /* White background */
    border: 1px solid var(--border-color) !important; /* Matching other cards */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: 450px; /* Matching the height of the product cards */
    padding-top: 4rem !important; /* Place heading at the top */
    border-radius: 12px !important;
    width: 100%;
    text-align: center !important;
}

.placeholder-heading-top {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700;
    font-size: 3.2rem;
    color: #38BDF8;
    margin: 0;
}

.placeholder-subheading {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 1.2rem;
    color: #555555 !important; /* Premium dark grey */
    margin-top: 1.2rem;
    margin-bottom: 0;
}

.placeholder-btn {
    display: inline-block !important;
    background-color: #000000 !important;
    color: #ffffff !important;
    padding: 0.9rem 2.2rem;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none !important;
    border-radius: 30px !important;
    margin-top: 2.5rem;
    transition: var(--transition-smooth);
    border: 1px solid #000000 !important;
}

.placeholder-btn:hover {
    background-color: #222222 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-showcase-image-side {
    width: 50%; /* Restored to 50% image side */
    background-color: var(--bg-secondary) !important; /* Original Light Grey/Off-white side */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem; /* Reduced padding from 3rem to make image larger */
    overflow: hidden;
    border-right: 1px solid var(--border-color) !important;
}

.product-showcase-img {
    max-height: 360px; /* Increased from 320px to make the image size larger */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

/* Product image hover scale removed */

.product-showcase-info-side {
    width: 50%; /* Restored to 50% description side */
    padding: 2.2rem 1.4rem; /* Tightened padding to prevent horizontal feature cropping */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: var(--bg-primary) !important; /* Original White side */
}

.product-showcase-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700;
    font-size: 2.2rem;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: none;
}

.product-showcase-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary); /* Original dark grey description color */
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Big 3 Feature Row */
.product-showcase-features {
    display: flex;
    gap: 0.45rem; /* Tightened gap to keep text in 1 line inside 50% column */
    margin-bottom: 2.5rem;
    flex-wrap: nowrap;
    width: 100%;
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 0.25rem; /* Tightened gap between icon and text */
    font-family: 'Inter', sans-serif;
    font-size: 0.74rem; /* Adjusted slightly from 0.78rem to prevent cropping */
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
}

.feature-icon-small {
    stroke: #000000;
    fill: none;
    flex-shrink: 0;
}

.product-showcase-price-row {
    margin-bottom: 1.5rem;
}

.product-showcase-price {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #000000;
}

.product-showcase-card .add-to-cart-btn {
    max-width: 200px;
    background-color: #000000 !important;
    color: #ffffff !important;
    border: none !important;
}

.product-showcase-card .add-to-cart-btn:hover {
    background-color: #222222 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .product-carousel-wrapper {
        gap: 0.5rem;
    }
    .carousel-control {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
    }
    .carousel-control.prev {
        left: 15px;
    }
    .carousel-control.next {
        right: 15px;
    }
    .product-showcase-card {
        flex-direction: column !important;
        height: auto !important; /* Allow auto height on mobile to fit contents */
    }
    .showcase-placeholder-grey {
        height: 350px !important; /* More compact placeholders on mobile */
    }
    .product-showcase-image-side,
    .product-showcase-info-side {
        width: 100%;
    }
    .product-showcase-image-side {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 2rem;
    }
    .product-showcase-info-side {
        padding: 2.5rem 2rem;
    }
    .product-showcase-img {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .product-showcase-features {
        flex-wrap: wrap !important;
        gap: 0.8rem !important;
    }
}

.product-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-primary);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-black);
}

.product-image-container {
    height: 320px;
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.product-img {
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.product-tag {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background-color: var(--accent-black);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 0.8rem;
    border-radius: 2px;
}

.product-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.2;
}

.product-price {
    font-weight: 600;
    font-size: 1.25rem;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    flex: 1;
}

.add-to-cart-btn {
    width: 100%;
    border: 1px solid var(--accent-black);
    background-color: transparent;
    color: var(--accent-black);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.add-to-cart-btn:hover {
    background-color: var(--accent-black);
    color: var(--text-light);
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.explore-btn {
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.95rem 1rem;
    border-radius: 30px;
    transition: var(--transition-smooth);
    text-align: center;
    text-decoration: none;
    border: 1px solid #000000;
}

.explore-btn:hover {
    background-color: #f5f5f5;
    color: #000000;
    text-decoration: none;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-page {
    padding-top: var(--header-height);
    background-color: var(--bg-primary);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary); /* black */
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content p, .legal-content li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a; /* dark grey */
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style-type: disc;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how-it-works {
    padding: 0;
    background-color: var(--bg-primary);
}

.steps-box {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.steps-box .section-title {
    font-family: 'Space Grotesk', sans-serif !important;
    color: var(--text-light);
    margin-top: 0;
}

.steps-box .section-title .steps-highlight {
    color: #34E3FF;
}

@media (max-width: 768px) {
    .steps-box {
        padding: 4rem 1.5rem;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem auto 0 auto;
    max-width: 600px;
}

.step-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    
    /* Scroll Reveal properties */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for steps fade-in (Step 1 -> Step 2 -> Step 3) */
.steps-grid .step-card:nth-child(1) {
    transition-delay: 0s;
}

.steps-grid .step-card:nth-child(2) {
    transition-delay: 0.25s;
}

.steps-grid .step-card:nth-child(3) {
    transition-delay: 0.5s;
}

.steps-grid .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 48px;
    right: -2rem;
    width: 2rem;
    height: 1px;
    border-top: 1px dashed var(--border-dark);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    width: 70px;
    height: 70px;
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 13px;
    margin-bottom: calc(2rem + 13px);
    background-color: var(--bg-dark);
    transition: var(--transition-smooth);
}

.step-card:hover .step-num {
    border-color: var(--text-light);
    transform: scale(1.05);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-icon {
    width: 36px;
    height: 36px;
    display: block;
}

.step-icon-container {
    height: 96px; /* matches .step-icon-large height for vertical baseline alignment */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.step-card:hover .step-icon-container {
    transform: scale(1.05);
}

.step-icon-large {
    width: 96px; /* increased to 96px */
    height: 96px;
}

.step-card p {
    color: #a0a0a0;
    font-size: 0.95rem;
    max-width: 280px;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.faq-section .section-title {
    font-family: 'Space Grotesk', sans-serif !important;
}

.faq-accordion {
    max-width: 800px;
    margin: 4rem auto 0 auto;
    border-top: 1px solid var(--border-color);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--text-secondary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition-smooth);
    margin-left: 2rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding-bottom: 2rem;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* Expanded state managed via JS */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem 0;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
}

.index-footer-container {
    display: flex !important;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4rem;
    flex-wrap: wrap;
}

.index-footer-container .footer-brand {
    margin-left: 14rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 293px;
}

.index-footer-logo {
    height: 220px;
    margin: -3.5rem 0 0 0 !important;
    display: block;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: -3rem;
}

.social-icon {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .index-footer-container .footer-brand {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .index-footer-container {
        flex-direction: column;
        gap: 3rem;
    }
}

.footer-links-group {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-links-col h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links-list a:hover {
    color: var(--text-primary);
}

.footer-story-col p {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0;
}

@media (max-width: 576px) {
    .footer-links-group {
        gap: 3rem;
    }
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 380px;
}

.footer-newsletter h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid var(--text-primary);
    max-width: 400px;
    padding-bottom: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.5rem 0;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-submit {
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.newsletter-submit:hover {
    transform: translateX(4px);
}

.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem 4rem 0 4rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 2rem;
    }
    .hero-grid {
        padding: 0 2rem;
        gap: 2rem;
    }
    .hero-heading {
        font-size: 4.5rem;
    }
    .section-container {
        padding: 0 2rem;
    }
    .footer-container {
        padding: 0 2rem;
    }
    .footer-bottom {
        margin: 0 2rem;
        padding: 2rem 0 0 0;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 3rem;
        padding-bottom: 3rem;
        gap: 3rem;
    }
    .hero-content {
        align-items: center;
        order: 1;
    }
    .hero-visual {
        order: 0;
    }
    .hero-heading {
        font-size: 4rem;
    }
    .hero-subheading {
        margin-bottom: 2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .steps-grid .step-card:not(:last-child)::after {
        display: none;
    }
}

.mobile-nav-toggle {
    display: none;
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    /* Mobile Navigation & Hamburger Styling */
    .mobile-nav-toggle {
        display: block !important;
        background: none;
        border: none;
        color: var(--text-primary);
        font-size: 1.8rem;
        cursor: pointer;
        padding: 0.5rem;
        order: -1; /* Far-left placement */
        outline: none;
        line-height: 1;
        z-index: 1001;
        transition: var(--transition-smooth);
    }
    
    .site-header.scrolled .mobile-nav-toggle {
        color: var(--text-light) !important;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-primary);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.25rem;
        align-items: center;
        z-index: 999;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }
    
    .site-header.scrolled .main-nav {
        background-color: var(--bg-dark);
        border-bottom-color: var(--border-dark);
    }
    
    .main-nav.active {
        display: flex !important;
    }
    
    .main-nav a {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        font-size: 1.15rem;
        text-transform: uppercase;
        color: var(--text-primary) !important;
        letter-spacing: 0.5px;
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .site-header.scrolled .main-nav a {
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .site-header.scrolled .main-nav a:hover,
    .site-header.scrolled .main-nav a.active {
        color: var(--text-light) !important;
    }
    
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1.5rem;
    }
    
    .cart-toggle-btn {
        padding: 0.75rem; /* Increase touch target on mobile */
    }
    
    .carousel-control {
        width: 46px !important;
        height: 46px !important;
    }
    
    .product-showcase-img {
        max-height: 250px !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    .hero-grid {
        padding: 0 1.5rem;
    }
    .hero-heading {
        font-size: 3rem;
    }
    .hero-subheading {
        font-size: 1.25rem;
    }
    .section-container {
        padding: 0 1.5rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
        margin: 0 1.5rem;
    }
}

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

/* ==========================================================================
   PRODUCTS CATALOG PAGE (products.html)
   ========================================================================== */
.catalog-page {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 8rem;
    background-color: var(--bg-primary);
}

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

.catalog-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.catalog-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Let's make sure the shadow fallback variable exists or we use a hardcoded shadow on hover */
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--accent-black);
}

/* Style for product card button - rounded design as requested: "make the button black with white font and rounded edges" */
.product-card .add-to-cart-btn {
    border-radius: 25px; /* Rounded edges */
    background-color: var(--accent-black);
    color: var(--text-light);
    border: 1px solid var(--accent-black);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    padding: 0.9rem 1.8rem;
    transition: var(--transition-smooth);
}

.product-card .add-to-cart-btn:hover {
    background-color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1200px) {
    .shop-grid {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .shop-grid {
        padding: 0 1.5rem;
        grid-template-columns: 1fr;
    }
}

/* Entrances / Page Load Animations for products.html */
@keyframes fadeInUpCatalog {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.catalog-title {
    opacity: 0;
    animation: fadeInUpCatalog 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

.catalog-subtitle {
    opacity: 0;
    animation: fadeInUpCatalog 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.25s;
}

/* First row of products (cards 1, 2, 3) */
.shop-grid .product-card:nth-child(1),
.shop-grid .product-card:nth-child(2),
.shop-grid .product-card:nth-child(3) {
    opacity: 0;
    animation: fadeInUpCatalog 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.45s;
}

/* Second row of products (cards 4, 5) */
.shop-grid .product-card:nth-child(4),
.shop-grid .product-card:nth-child(5) {
    opacity: 0;
    animation: fadeInUpCatalog 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.65s;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE (peach-iced-tea.html)
   ========================================================================== */
.detail-page {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 2rem;
    background-color: var(--bg-primary);
}

.detail-page .how-it-works {
    margin-top: 4rem;
}

.breadcrumbs {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding: 0 4rem;
}

.breadcrumbs a {
    transition: var(--transition-smooth);
}

.breadcrumbs a:hover {
    color: var(--text-primary);
}

.breadcrumbs .current-crumb {
    color: var(--text-primary);
    font-weight: 500;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    align-items: center;
}

.detail-image-side {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.detail-main-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    animation: fadeIn 0.8s ease;
}

.product-tag-detail {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background-color: var(--accent-black);
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    z-index: 10;
}

.detail-info-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.detail-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.detail-price-row {
    margin-bottom: 1.5rem;
}

.detail-price {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--text-primary);
}

.detail-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin: 1.5rem 0;
}

.detail-marketing-desc {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.detail-product-details {
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.detail-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    margin-bottom: 1rem;
}

.detail-feature-item {
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    padding: 1rem 0.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.detail-feature-item .feature-icon {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.detail-feature-num,
.detail-feature-text,
.detail-feature-label,
.detail-feature-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.detail-actions-row {
    display: flex;
    gap: 2rem;
    width: 100%;
    align-items: flex-end;
}

.quantity-selector-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.qty-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    height: 50px;
    padding: 0 0.5rem;
    background-color: var(--bg-primary);
}

.detail-qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    color: var(--text-primary);
}

.detail-qty-btn:hover {
    background-color: var(--bg-secondary);
}

.detail-qty-val {
    width: 40px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.add-to-cart-btn-main {
    flex: 1;
    height: 50px;
    background-color: var(--accent-black);
    color: var(--text-light);
    border: 1px solid var(--accent-black);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-btn-main:hover {
    background-color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1200px) {
    .breadcrumbs {
        padding: 0 2rem;
    }
    .detail-grid {
        padding: 0 2rem;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .detail-image-side {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding: 0 1.5rem;
    }
    .detail-grid {
        padding: 0 1.5rem;
        gap: 3rem;
    }
    .detail-title {
        font-size: 2.8rem;
    }
    .detail-actions-row {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    .quantity-selector-wrapper {
        width: 100%;
    }
    .detail-quantity-selector {
        width: 100%;
        justify-content: space-between;
    }
    .detail-qty-val {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .detail-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .detail-feature-item {
        padding: 1rem;
    }
}

@media (max-width: 380px) {
    .detail-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Detail Bottom Row (Flavour Experience & Notes) */
.detail-bottom-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    margin-top: 4rem;
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
}

.detail-experience-box {
    max-width: 550px;
    margin-left: auto;
    text-align: left;
}

.detail-experience-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.detail-experience-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Flavour Notes Box Styling */
.detail-notes-box {
    max-width: 550px;
    text-align: left;
}

.detail-notes-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.detail-notes-list {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 1.2rem;
    list-style-type: disc;
}

.detail-notes-list li {
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .detail-bottom-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 3rem;
        padding-top: 3rem;
    }
    .detail-experience-box {
        max-width: 100%;
        margin-left: 0;
    }
    .detail-notes-box {
        max-width: 100%;
    }
}

/* Product Info Accordion Styling */
.detail-info-accordion-section {
    max-width: 650px;
    margin: 4rem auto 0 auto;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
}

.info-accordion-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    cursor: pointer;
    background: none;
    border: none;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.info-accordion-toggle:hover {
    color: var(--text-secondary);
}

.info-accordion-icon {
    font-size: 0.85rem;
    font-weight: 400;
    transition: transform 0.4s ease;
    display: inline-block;
}

.detail-info-accordion-section.active .info-accordion-icon {
    transform: rotate(180deg);
}

.info-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: flex-start;
}

.info-content-wrapper {
    width: 100%;
    padding: 0.5rem 0 2.5rem 0;
    text-align: left;
}

.info-section-subtitle {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.info-section-subtitle:first-of-type {
    margin-top: 0;
}

.info-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.info-bullets-list {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    list-style-type: disc;
    padding-left: 1.5rem;
    margin: 0;
}

.info-bullets-list li {
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .detail-info-accordion-section {
        margin: 3rem auto 0 auto;
        padding: 0.25rem 0;
    }
}

/* Nutrition Thumbnail Styling */
.info-nutrition-wrapper {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.nutrition-thumbnail {
    width: 120px;
    height: auto;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nutrition-thumbnail:hover {
    transform: scale(1.03);
    border-color: var(--accent-black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nutrition-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}

/* Lightbox Modal for Nutrition Facts */
.nutrition-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nutrition-modal.active {
    display: flex;
    opacity: 1;
}

.nutrition-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.nutrition-modal.active .nutrition-modal-content {
    transform: scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 300;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.close-modal-btn:hover,
.close-modal-btn:focus {
    color: #ffffff;
    text-decoration: none;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .nutrition-modal-content {
        width: 90%;
    }
    .close-modal-btn {
        top: 20px;
        right: 20px;
        font-size: 35px;
    }
}

/* Related Products Section (Details Page) */
.related-products-section {
    margin-top: 6rem;
    border-top: 3px solid var(--text-primary);
    padding-top: 6rem;
    width: 100%;
}

.related-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 800;
    font-size: 3rem;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: var(--text-primary);
}

.related-shop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 750px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .related-products-section {
        margin-top: 4rem;
        padding-top: 4rem;
    }
    .related-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    .related-shop-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        gap: 2rem;
    }
}

/* ==========================================================================
   FAQ PAGE (faq.html)
   ========================================================================== */
@keyframes fadeInUpFAQ {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-page {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 8rem;
    background-color: var(--bg-primary);
    opacity: 0;
    animation: fadeInUpFAQ 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 6rem;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    align-items: flex-start;
}

.faq-image-side {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-secondary);
}

.faq-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-content-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.faq-page-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    color: var(--text-primary);
}

.faq-page .faq-accordion {
    width: 100%;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .faq-image-side {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .faq-image-side {
        height: auto;
        border: none;
        background: transparent;
    }
    .faq-main-img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* ==========================================================================
   CHECKOUT PAGE STYLING
   ========================================================================== */
.checkout-page {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.checkout-page h1,
.checkout-page h2,
.checkout-page h3,
.checkout-page h4,
.checkout-page h5,
.checkout-page h6 {
    font-family: 'Space Grotesk', sans-serif !important;
}

/* Checkout Header overrides */
.checkout-header {
    background-color: #000000 !important;
    position: sticky !important;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-dark) !important;
}

.checkout-header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
}

.checkout-header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: visible;
}

.checkout-header .logo-img,
.checkout-page .site-header.scrolled .logo-img {
    height: 150px !important; /* Forces correct scaling */
    width: auto !important;
    filter: none !important; /* Disables scroll color inversion */
    display: block;
}

.checkout-header .nav-back-link {
    position: absolute;
    left: 4rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s;
}

.checkout-header .nav-back-link:hover {
    opacity: 0.8;
}

.checkout-header .header-right {
    position: absolute;
    right: 4rem;
    display: flex;
    align-items: center;
}

.checkout-header .cart-toggle-btn {
    color: #ffffff !important;
}

.checkout-header .cart-icon {
    stroke: #ffffff !important;
}

.checkout-header .cart-badge {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #000000 !important;
}

@media (max-width: 768px) {
    .checkout-header-container {
        padding: 0 1.5rem;
    }
    .checkout-header .nav-back-link {
        left: 1.5rem;
        font-size: 0.85rem;
    }
    .checkout-header .header-right {
        right: 1.5rem;
    }
    .checkout-header .logo-img,
    .checkout-page .site-header.scrolled .logo-img {
        height: 150px !important;
    }
}

.checkout-container-main {
    padding: 3rem 2rem 6rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.checkout-left-column {
    width: 100%;
    min-width: 0;
}

.checkout-right-column {
    width: 100%;
    min-width: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

.checkout-form-section {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.checkout-section-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
    color: var(--text-secondary);
}

.form-group label[for="address1"],
.form-group label[for="address2"] {
    font-size: 0.65rem;
}

.form-group input,
.form-group select {
    padding: 0.65rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
    min-width: 0;
}

.form-group input::placeholder {
    color: #a0a0a0;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-black);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.phone-input-wrapper {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
    overflow: hidden;
    width: 100%;
}

.phone-input-wrapper:focus-within {
    border-color: var(--accent-black);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 0.8rem;
    background-color: #f9f9f9;
    border-right: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    user-select: none;
}

.phone-input-wrapper input {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    flex: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 0.75rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

#cardSubform .form-grid {
    grid-template-columns: 1fr 1fr;
}

/* Form Validation Styling */
.form-group.invalid input,
.form-group.invalid select {
    border-color: #ff3b30 !important;
    background-color: #fffbfa;
}

.form-error-msg {
    display: none;
    color: #ff3b30;
    font-size: 0.68rem;
    margin-top: 0.25rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.form-group.invalid .form-error-msg {
    display: block;
}

/* Payment Selectable Option Cards */
.payment-options-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option-card {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.25rem;
    cursor: pointer;
    background-color: var(--bg-primary);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.payment-option-card:hover {
    border-color: #a0a0a0;
}

.payment-option-card.active {
    border-color: var(--accent-black);
    box-shadow: 0 0 0 1px var(--accent-black);
    background-color: var(--bg-secondary);
}

.payment-option-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-option-header input[type="radio"] {
    margin-top: 0.3rem;
    cursor: pointer;
    accent-color: var(--accent-black);
    width: 16px;
    height: 16px;
}

.payment-card-label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    flex: 1;
}

.payment-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.payment-method-logo {
    height: 1.1em;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    margin-left: auto;
    opacity: 0.9;
    transition: opacity 0.25s ease, filter 0.25s ease;
}

.payment-method-logo--dim {
    opacity: 0.2;
    filter: grayscale(100%);
}

.card-logos {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: auto;
    flex-shrink: 0;
}

.card-logos .payment-method-logo {
    margin-left: 0;
    height: 0.85em;
}

.ewallet-logos .payment-method-logo {
    height: 1.8em;
}

.payment-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}

.payment-subform {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease;
    border-top: 1px dashed transparent;
    padding-top: 0;
}

.payment-option-card.active .payment-subform {
    max-height: 250px;
    opacity: 1;
    border-top-color: var(--border-color);
    padding-top: 1.25rem;
    margin-top: 1rem;
}

/* Place Order Button */
.place-order-btn {
    width: 100%;
    padding: 1.15rem;
    background-color: var(--accent-black);
    color: var(--text-light);
    border: none;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 1rem;
}

.place-order-btn:hover {
    background-color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.place-order-btn:active {
    transform: translateY(0);
}

/* Order Summary Panel */
.checkout-summary-panel {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
}

.checkout-summary-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom Scrollbar for summary items list */
.checkout-summary-items::-webkit-scrollbar {
    width: 4px;
}

.checkout-summary-items::-webkit-scrollbar-track {
    background: transparent;
}

.checkout-summary-items::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 2px;
}

.checkout-summary-item {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.25rem;
}

.checkout-summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-item-img-container {
    width: 64px;
    height: 64px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
    flex-shrink: 0;
}

.summary-item-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.summary-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.summary-item-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.summary-item-qty {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.summary-item-price {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    text-align: right;
}

/* Promo Code Entry widget */
.promo-code-container {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.promo-code-container input {
    width: 160px;
    padding: 0.65rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    outline: none;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.promo-code-container input:focus {
    border-color: var(--accent-black);
}

.promo-code-container button {
    padding: 0.65rem 1.2rem;
    background-color: var(--accent-black);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.promo-code-container button:hover {
    background-color: #222222;
}

.promo-message {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    margin-top: -1rem;
    margin-bottom: 1.25rem;
}

.promo-message.success {
    color: #24b47e;
}

.promo-message.error {
    color: #ff3b30;
}

/* Totals styling */
.checkout-summary-totals {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkout-summary-totals .totals-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.checkout-summary-totals .totals-row.grand-total-row {
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
    margin-top: 0.4rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--text-primary);
}

.discount-row {
    color: #24b47e !important;
    font-weight: 600;
}

/* Premium Success Modal Overlay (Black and White Theme) */
.order-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.order-success-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.order-success-content {
    background-color: var(--bg-primary);
    padding: 4rem 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 520px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    transform: translateY(40px);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.order-success-modal.active .order-success-content {
    transform: translateY(0);
}

.success-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

/* Premium Black Outline Checkmark Animation */
.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2.5;
    stroke: var(--accent-black);
    stroke-miterlimit: 10;
    animation: scale-up 0.4s ease-in-out 0.8s both;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2.5;
    stroke-miterlimit: 10;
    stroke: var(--accent-black);
    fill: none;
    animation: stroke-circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: var(--accent-black);
    fill: none;
    animation: stroke-check 0.35s cubic-bezier(0.65, 0, 0.45, 1) 0.55s forwards;
}

@keyframes stroke-circle {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes stroke-check {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale-up {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.08, 1.08, 1);
    }
}

.success-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 800;
    font-size: 2.15rem;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.success-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.success-home-btn {
    display: inline-block;
    padding: 0.95rem 2.2rem;
    background-color: var(--accent-black);
    color: var(--text-light);
    border: none;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.success-home-btn:hover {
    background-color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.success-home-btn:active {
    transform: translateY(0);
}

/* ==========================================================================
   CHECKOUT MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .checkout-wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }
    
    .checkout-left-column,
    .checkout-right-column {
        width: 100%;
        flex: none;
    }
    
    .checkout-right-column {
        position: static;
    }
    
    .checkout-container-main {
        padding: 2rem 1.5rem 5rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .checkout-form-section {
        padding: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    #cardSubform .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .payment-option-card {
        padding: 1rem;
    }
    
    .payment-option-card.active .payment-subform {
        padding-top: 1rem;
    }
    
    .place-order-btn {
        padding: 1rem;
    }
    
    .checkout-summary-panel {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   ORDER SUCCESS ID DISPLAY
   ========================================================================== */
.success-order-info {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.success-order-id {
    font-weight: 700;
    color: #34E3FF; /* Cyan accent */
}

/* ==========================================================================
   ORDER TRACKING PAGE STYLES
   ========================================================================== */
.track-order-page {
    padding: 6rem 0 8rem 0;
    background-color: var(--bg-primary);
    min-height: 80vh;
}

.tracking-card {
    max-width: 650px;
    margin: 0 auto;
    padding: 3.5rem 3rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--bg-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.tracking-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    text-align: center;
}

.tracking-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 2.5rem;
    text-align: center;
}

.tracking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.track-submit-btn {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--accent-black);
    color: var(--text-light);
    border: none;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 0.75rem;
}

.track-submit-btn:hover {
    background-color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.track-submit-btn:active {
    transform: translateY(0);
}

.divider-line {
    height: 1px;
    background-color: var(--border-color);
    margin: 2.5rem 0;
}

.status-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stepper Component */
.stepper-wrapper {
    position: relative;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.stepper-line-bg {
    position: absolute;
    top: 14px;
    left: 3rem;
    right: 3rem;
    height: 4px;
    background-color: #e5e7eb;
    z-index: 1;
    border-radius: 2px;
}

.stepper-line-progress {
    height: 100%;
    width: 0%;
    background-color: var(--accent-black);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.stepper-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    text-align: center;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    border: 3px solid #e5e7eb;
    margin-bottom: 0.75rem;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-node.active .step-dot {
    border-color: var(--accent-black);
    background-color: var(--accent-black);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}

.step-node.completed .step-dot {
    border-color: var(--accent-black);
    background-color: var(--accent-black);
}

.step-node.active .step-dot::after,
.step-node.completed .step-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-light);
}

.step-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.step-node.active .step-label,
.step-node.completed .step-label {
    color: var(--text-primary);
    font-weight: 600;
}

/* Tracking Details Panel */
.tracking-info-grid {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-row:first-child {
    padding-top: 0;
}

.info-label {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.info-value {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.track-action-wrapper {
    text-align: center;
}

.track-parcel-btn {
    display: inline-block;
    padding: 0.95rem 2.5rem;
    background-color: var(--accent-black);
    color: var(--text-light);
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.track-parcel-btn:hover {
    background-color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.track-parcel-btn:active {
    transform: translateY(0);
}

/* Tracking Error State */
.tracking-error {
    border-left: 4px solid #ef4444;
    background-color: #fff5f5;
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
}

.tracking-error p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #ef4444;
    margin: 0;
    font-weight: 500;
}

/* ==========================================================================
   ADMIN DASHBOARD PAGE STYLES
   ========================================================================== */
.admin-dashboard-page {
    padding: 6rem 0 8rem 0;
    background-color: var(--bg-primary);
    min-height: 80vh;
}

.admin-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 1.5rem;
}

.admin-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.5px;
}

.admin-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.admin-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    background-color: var(--accent-black);
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.admin-reset-btn {
    padding: 0.65rem 1.5rem;
    border: 1px solid var(--border-color);
    background-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-primary);
}

.admin-reset-btn:hover {
    background-color: #ef4444;
    color: var(--text-light);
    border-color: #ef4444;
}

/* Admin Table Layout */
.admin-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    background-color: var(--bg-primary);
}

.admin-orders-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 900px;
}

.admin-orders-table th,
.admin-orders-table td {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.admin-orders-table th {
    background-color: #f8fafc;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.admin-orders-table td {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-primary);
    vertical-align: middle;
}

.admin-orders-table tr:last-child td {
    border-bottom: none;
}

.table-empty-message {
    text-align: center;
    padding: 4rem !important;
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.95rem;
}

/* Admin Forms inside Table */
.admin-status-select {
    padding: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    width: 130px;
    cursor: pointer;
}

.admin-courier-input,
.admin-tracking-input {
    padding: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    width: 120px;
}

.admin-save-btn {
    padding: 0.5rem 1.1rem;
    background-color: var(--accent-black);
    color: var(--text-light);
    border: none;
    border-radius: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.admin-save-btn:hover {
    background-color: #222222;
    transform: translateY(-1px);
}

.admin-save-btn:active {
    transform: translateY(0);
}

/* ==========================================================================
   TRACKING PAGE RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .tracking-card {
        padding: 2.5rem 1.5rem;
    }
    
    .stepper-line-bg {
        left: 2rem;
        right: 2rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .admin-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Hide mobile footer on desktop */
@media (min-width: 768px) {
    .mobile-footer {
        display: none !important;
    }
}



/* Order Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #000000;
    white-space: nowrap;
    min-width: 100px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.status-processing {
    background-color: #fde68a; /* Amber */
}

.status-shipped {
    background-color: #bfdbfe; /* Blue */
}

.status-delivered {
    background-color: #bbf7d0; /* Green */
}

.status-cancelled--no-refund- {
    background-color: #fca5a5; /* Red */
}

.status-cancelled--refund-pending- {
    background-color: #fdba74; /* Orange */
}

.status-cancelled--refunded- {
    background-color: #d1d5db; /* Dark Grey / Medium Grey for readability */
}

/* Dashboard Stats Pills */
.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    font-family: var(--font-body);
}

.stat-icon {
    font-size: 1.1rem;
}

/* Responsive Visibility Wrappers (Track Order Unified Migration) */
@media (min-width: 768px) { .mobile-only { display: none !important; } }
@media (max-width: 767px) { .desktop-only { display: none !important; } }

/* ==========================================================================
   Product Size Selector UI
   ========================================================================== */

.size-info-text {
    color: #4EC9D7;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
    font-family: var(--font-body);
    transition: color 0.2s ease, opacity 0.2s ease;
}

.size-info-text.error {
    color: #ef4444; /* red error state */
}

.size-selector-container {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.size-btn {
    flex: 1;
    padding: 16px 24px;
    background-color: #f5f5f5;
    color: #000;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    outline: none;
}

.size-btn:hover {
    background-color: #eee;
}

.size-btn.selected {
    background-color: #000;
    color: #fff;
    border-color: #000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.size-btn.sold-out {
    background: linear-gradient(to top right, transparent calc(50% - 1px), #a0a0a0 calc(50% - 1px), #a0a0a0 calc(50% + 1px), transparent calc(50% + 1px)), #f9f9f9 !important;
    color: #a0a0a0 !important;
    border-color: #e5e5e5 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    transform: none !important;
}

/* ==========================================================================
   Product Size Variants - Price 'From' Label
   ========================================================================== */
.price-from-label {
    font-size: 0.8em; /* Significantly smaller */
    color: #888; /* Subtle grey */
    font-weight: 500;
    margin-right: 4px;
    vertical-align: middle;
}

/* Injected Sub-Subheading */
.hero-sub-subheading {
    font-size: 1.1rem;
    font-weight: 400;
    color: #888888;
    letter-spacing: 0.5px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.55s;
}

/* ==========================================================================
   Product Gallery
   ========================================================================== */
.product-gallery-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.gallery-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gallery-thumb:hover {
    border-color: #ccc;
}

.gallery-thumb.active {
    border-color: #000;
}

/* Mobile Gallery View */
.mobile-detail-image-wrapper {
    position: relative;
    width: 100%;
}

.mobile-gallery-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.mobile-gallery-scroll::-webkit-scrollbar {
    display: none;
}

.mobile-gallery-scroll img {
    scroll-snap-align: start;
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
}
