/* KAI Studios — Editorial Black & White */

/* ==================== FONTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ==================== CSS VARIABLES ==================== */
:root {
    /* KAI Studios — Black & White Palette */
    --cream-bg: #F7F5F2;          /* off-white background */
    --green: #0A0A0A;             /* black (used as primary accent) */
    --green-dark: #000000;        /* true black */
    --brown: #0A0A0A;             /* black (primary CTA) */
    --brown-light: #222222;       /* off-black */
    --black: #0A0A0A;             /* near-black */
    --white: #F7F5F2;             /* off-white */
    --gray-light: #F5F5F5;        /* very light gray — card bg */
    --gray-medium: #888888;       /* mid gray — secondary text */
    --gray-border: #E0E0E0;       /* subtle border */

    /* Legacy mappings for compatibility */
    --primary-dark: var(--black);
    --cream: var(--cream-bg);
    --taupe: var(--black);
    --terracotta: var(--brown-light);
    --sage: var(--black);
    --charcoal: var(--gray-light);
    --warm-brown: var(--black);
    --light-cream: var(--white);

    /* Typography — French serif (Garamond family) throughout */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'EB Garamond', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 7rem;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Prevent iOS zoom on input focus */
input, select, textarea {
    font-size: 16px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* No rounded corners — sharp editorial look */
img {
    border-radius: 0;
}

.logo-image {
    border-radius: 0;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
    color: var(--black);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 6vw, 6rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2.5rem, 4.5vw, 5rem); margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.75rem, 3vw, 3rem); margin-bottom: 1rem; }
h4 { font-size: clamp(1.25rem, 2vw, 2rem); }

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--black);
    opacity: 0.75;
}

/* ==================== HEADER ==================== */
.site-header {
    background-color: transparent;
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: color 0.4s ease, background-color 0.4s ease, border-color 0.4s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--black);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
}

.logo a {
    text-decoration: none;
    color: var(--black);
    transition: var(--transition);
}

.logo a:hover {
    opacity: 0.6;
}

.main-nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--black);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--black);
    opacity: 0.6;
}

.main-nav a.active {
    opacity: 1;
}

.cart-icon {
    background-color: var(--black);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: var(--transition);
}

.cart-icon:hover {
    background-color: var(--gray-medium);
}

.cart-count {
    background-color: var(--white);
    color: var(--black);
    padding: 2px 7px;
    font-size: 0.7rem;
    margin-left: 8px;
    font-weight: 600;
}

/* Logo Image */
.logo-image {
    max-height: 45px;
    width: auto;
    display: block;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 1px;
    background-color: var(--black);
    margin: 4px 0;
    transition: var(--transition);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header-content {
        flex-wrap: wrap;
        position: relative;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: -2rem;
        right: -2rem;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-bottom: 1px solid var(--gray-border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 1.1rem 2rem;
        border-bottom: 1px solid var(--gray-border);
        width: 100%;
        text-align: left;
        font-size: 0.75rem;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background-color: var(--gray-light);
        opacity: 1;
    }

    .header-actions {
        order: 2;
    }

    .logo {
        order: 1;
    }

    .mobile-menu-toggle {
        order: 3;
    }

    .logo-image {
        max-height: 36px;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    z-index: 0;
    pointer-events: none;
}

.hero-video-bg::-webkit-media-controls,
.hero-video-bg::-webkit-media-controls-panel,
.hero-video-bg::-webkit-media-controls-start-playback-button,
.hero-video-bg::-webkit-media-controls-play-button,
.hero-video-bg::-webkit-media-controls-overlay-play-button {
    display: none !important;
    -webkit-appearance: none;
    opacity: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
}

.hero h1 {
    font-size: clamp(4rem, 9vw, 9rem);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--white);
    font-style: italic;
    line-height: 1.05;
}

.hero p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    margin-bottom: 3rem;
    color: var(--white);
    opacity: 0.75;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 300;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 1rem 3rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* When btn-primary is on white background */
.btn-primary.dark {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-primary.dark:hover {
    background-color: transparent;
    color: var(--black);
}

.btn-secondary {
    background-color: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.btn-secondary:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ==================== FEATURED SECTION ==================== */
.featured-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-medium);
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 300;
    font-style: italic;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
    opacity: 0.6;
    color: var(--black);
    letter-spacing: 0.03em;
}

/* ==================== PRODUCTS GRID ==================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    margin-top: var(--spacing-lg);
    border: 1px solid var(--gray-border);
}

.product-card {
    background-color: var(--white);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    border: none;
}

.product-card:hover {
    transform: none;
    background-color: var(--gray-light);
}

.product-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    background-color: var(--gray-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition);
    padding: 2rem;
}

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

.product-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background-color: var(--black);
    color: var(--white);
    padding: 0.35rem 0.875rem;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 0;
}

.product-info {
    padding: 1.75rem;
    border-top: 1px solid var(--gray-border);
}

.product-category {
    color: var(--gray-medium);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.product-info h3 {
    font-size: 1.4rem;
    margin: 0.5rem 0 0.75rem;
    font-weight: 400;
    color: var(--black);
    font-style: italic;
}

.product-description {
    font-size: 0.9rem;
    line-height: 1.65;
    opacity: 0.6;
    margin-bottom: 1.25rem;
    color: var(--black);
}

.product-price {
    font-size: 1.4rem;
    color: var(--black);
    font-weight: 400;
    margin: 1.25rem 0;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.product-stock {
    color: var(--gray-medium);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.out-of-stock {
    color: var(--black);
    font-weight: 500;
    opacity: 0.4;
}

/* ==================== FEATURED PRODUCTS ==================== */
.featured-grid {
    display: flex;
    gap: 1px;
    margin-top: var(--spacing-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: none;
    border: 1px solid var(--gray-border);
}

.featured-grid::-webkit-scrollbar {
    display: none;
}

.featured-grid .featured-product {
    min-width: 280px;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.featured-product {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: none;
    transition: background-color 0.3s ease;
}

.featured-product:hover {
    background-color: var(--gray-light);
    box-shadow: none;
    transform: none;
}

.featured-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.featured-product-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: var(--gray-light);
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
    padding: 2rem;
}

.featured-product:hover .featured-product-image img {
    transform: scale(1.05);
}

.featured-product-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-light);
    color: var(--gray-medium);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.featured-product-info {
    padding: 1.5rem;
    text-align: center;
    background-color: transparent;
    border-top: 1px solid var(--gray-border);
}

.featured-product-tag {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-medium);
    margin-bottom: 0.5rem;
    display: block;
}

.featured-product-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--black);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.featured-product-price {
    font-size: 0.9rem;
    color: var(--black);
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

/* Featured Product Add Button */
.featured-add-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(0deg, rgba(255,255,255,0.98) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.featured-product:hover .featured-add-btn {
    transform: translateY(0);
    opacity: 1;
}

.featured-add-btn button,
.featured-add-btn .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--black);
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.featured-add-btn button:hover,
.featured-add-btn .btn:hover {
    background-color: var(--gray-medium);
}

.featured-add-btn button:disabled,
.featured-sold-out {
    background-color: var(--gray-light);
    color: var(--gray-medium);
    cursor: not-allowed;
}

/* Featured CTA */
.featured-cta {
    text-align: center;
    padding: var(--spacing-lg) 0;
}

.btn-view-all {
    display: inline-block;
    padding: 1rem 3.5rem;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    background-color: transparent;
    border: 1px solid var(--black);
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: var(--black);
    color: var(--white);
}

/* Featured Products Responsive */
@media (max-width: 600px) {
    .featured-grid .featured-product {
        min-width: 220px;
        max-width: 240px;
    }

    .featured-add-btn {
        transform: translateY(0);
        opacity: 1;
        position: relative;
        background: none;
        padding: 0 1.5rem 1.5rem;
    }
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-section .section-title,
.about-section .section-subtitle,
.about-section .section-description,
.about-section h2,
.about-section h3,
.about-section p {
    color: var(--white);
}

.about-section .section-subtitle {
    color: rgba(255,255,255,0.5);
}

.about-section .section-description {
    opacity: 0.55;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    margin-top: var(--spacing-lg);
}

.about-item {
    text-align: center;
    padding: 3.5rem 2.5rem;
    background-color: #111111;
    border-radius: 0;
    border: none;
    transition: var(--transition);
}

.about-item:hover {
    background-color: #1a1a1a;
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.about-item h3 {
    margin-bottom: 1rem;
    color: var(--white);
    font-style: italic;
    font-weight: 300;
}

.about-item p {
    color: rgba(255,255,255,0.55);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-light);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
    color: var(--black);
    font-style: italic;
    font-weight: 300;
}

.cta-section p {
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    color: var(--black);
    opacity: 0.6;
    letter-spacing: 0.03em;
}

.cta-section .btn-primary {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.cta-section .btn-primary:hover {
    background-color: transparent;
    color: var(--black);
}

/* ==================== FOOTER ==================== */
.site-footer {
    background-color: var(--black);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.footer-section p {
    color: var(--white);
    opacity: 0.5;
    font-size: 0.85rem;
    line-height: 1.9;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.5;
    transition: var(--transition);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-social-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--white);
    opacity: 0.5;
    transition: var(--transition);
}

.footer-social-link:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    opacity: 0.4;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ==================== FORMS ==================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-border);
    border-radius: 0;
    background-color: var(--white);
    color: var(--black);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: none;
}

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

/* ==================== ALERTS ==================== */
.alert {
    padding: 1.25rem 1.5rem;
    border-radius: 0;
    margin-bottom: 2rem;
    border-left: 3px solid;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.alert-success {
    background-color: var(--gray-light);
    border-color: var(--black);
    color: var(--black);
}

.alert-error {
    background-color: #fff5f5;
    border-color: #cc0000;
    color: #cc0000;
}

/* ==================== HERO IMAGE BACKGROUND ==================== */
.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.55;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
}

/* ==================== STORY VIDEO SECTION ==================== */
.story-video-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--gray-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-wrapper {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.video-wrapper video,
.video-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.video-wrapper video {
    background: var(--black);
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: var(--spacing-lg);
    border: 1px solid var(--gray-border);
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 0;
    overflow: hidden;
    background: var(--gray-light);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 0;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }
}

/* ==================== SCALLOP DIVIDER ==================== */
.scallop-svg { display: none; }
.scallop-svg-mobile { display: none; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }

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

    .product-image {
        aspect-ratio: 1 / 1;
    }

    .container {
        padding: 0 1rem;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.7s ease-out forwards;
}

/* ==================== UTILITIES ==================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--gray-light);
    color: var(--gray-medium);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ==================== SCROLL REVEAL ANIMATIONS ==================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

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

.reveal-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

/* Disable flex centering on mobile */
@media (max-width: 768px) {
    .featured-section,
    .about-section,
    .cta-section,
    .story-video-section,
    .gallery-section {
        display: block;
    }
}

/* ==================== HEADER ICON OVERRIDES ==================== */
.header-icon-link {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.5rem !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
    color: var(--black) !important;
    text-decoration: none !important;
}

.header-icon-link:hover {
    background: var(--gray-light) !important;
    transform: none !important;
}

.header-icon {
    width: 22px !important;
    height: 22px !important;
    stroke-width: 1.5 !important;
}

.cart-badge {
    position: absolute !important;
    top: 2px !important;
    right: 2px !important;
    background: var(--black) !important;
    color: var(--white) !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 16px !important;
    height: 16px !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 3px !important;
}
