@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Cormorant+Garamond:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&family=Dancing+Script:wght@400;700&family=Playfair+Display:wght@400;600;700;900&family=Cinzel:wght@400;600;700&family=Great+Vibes&family=Allura&family=Parisienne&family=Alex+Brush&family=Righteous&family=Bungee&family=Noto+Serif+Devanagari:wght@400;600;700&display=swap');

@font-face {
    font-family: 'CoFo Raffine';
    src: url('fonts/CoFoRaffine-Bold.woff2') format('woff2'),
        url('fonts/CoFoRaffine-Bold.woff') format('woff'),
        url('fonts/CoFoRaffine-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CoFo Raffine';
    src: url('fonts/CoFoRaffine-Regular.woff2') format('woff2'),
        url('fonts/CoFoRaffine-Regular.woff') format('woff'),
        url('fonts/CoFoRaffine-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #FAA916;
    --primary-dark: #E89600;
    --primary-light: #FFC04D;
    --secondary: #96031A;
    --accent: #FF2E00;
    --text-dark: #121214;
    --text-mid: #4A4A4F;
    --text-light: #8E8E93;
    --bg-white: #FFFFFF;
    --bg-soft: #F9F9FB;
    --bg-cream: #FFFAF0;
    --border: rgba(18, 18, 20, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Cormorant Garamond', serif;
    --font-heading: 'Playfair Display', serif;
    --font-accent: 'Cinzel', serif;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.12);
}

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

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

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 4rem 1.5rem;
}

.text-center {
    text-align: center;
}

.text-light {
    color: var(--text-light);
}

/* Buttons */
.btn {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(250, 169, 22, 0.3);
}

.btn-primary:hover {
    background: #e6990d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 169, 22, 0.4);
}

.back-btn {
    background: var(--bg-white);
    border: 2px solid var(--primary);
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 2rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.back-btn:hover {
    background: var(--primary);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Steam Animation */
.steam-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.steam-particle {
    position: absolute;
    bottom: -100px;
    width: 80px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(250, 169, 22, 0.15) 0%, rgba(250, 169, 22, 0.08) 30%, rgba(250, 169, 22, 0.03) 60%, transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0;
    animation: steamFloat 8s infinite ease-out;
}

.steam-particle:nth-child(even) {
    animation-duration: 9s;
}

.steam-particle:nth-child(3n) {
    animation-duration: 7s;
}

.steam-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.steam-particle:nth-child(2) { left: 25%; animation-delay: 2s; }
.steam-particle:nth-child(3) { left: 45%; animation-delay: 1s; }
.steam-particle:nth-child(4) { left: 65%; animation-delay: 3s; }
.steam-particle:nth-child(5) { left: 80%; animation-delay: 1.5s; }
.steam-particle:nth-child(6) { left: 15%; animation-delay: 4s; }
.steam-particle:nth-child(7) { left: 55%; animation-delay: 2.5s; }
.steam-particle:nth-child(8) { left: 35%; animation-delay: 5s; }

@keyframes steamFloat {
    0% { transform: translateY(0) translateX(0) scale(0.8); opacity: 0; }
    10% { opacity: 0.6; }
    50% { transform: translateY(-40vh) translateX(20px) scale(1.2); opacity: 0.4; }
    100% { transform: translateY(-100vh) translateX(-15px) scale(1.5); opacity: 0; }
}

/* Intro Screen */
.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: all 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

.intro-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.intro-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

.intro-logo-img {
    max-width: 600px;
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
    animation: scaleInLogo 1.6s cubic-bezier(0.2, 0, 0.2, 1);
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.05));
    transition: all 1s cubic-bezier(0.85, 0, 0.15, 1);
}

.intro-logo-container.blend {
    transform: scale(0.12) translateY(-150vh);
    opacity: 0;
    filter: blur(10px);
}

.intro-tagline {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-mid);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInIntro 1.2s ease-out 0.8s forwards;
    transition: all 0.6s ease;
}

.fade-out-text {
    opacity: 0 !important;
}

.intro-subtitle {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--text-light);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    animation: fadeIn 1.2s ease-out 1s both;
}

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

@keyframes scaleInLogo {
    from { opacity: 0; transform: scale(0.9) translateY(20px); filter: blur(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

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

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

/* Header */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.cart-icon {
    font-size: 1.8rem;
    cursor: pointer;
    position: relative;
    padding-right: 15px;
    transition: transform 0.3s;
}

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

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.cart-badge:not(:empty) {
    display: flex;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero-fullpage {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, rgba(250, 169, 22, 0.03) 0%, var(--bg-white) 50%);
    position: relative;
    overflow: hidden;
}

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

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-eyebrow {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    color: var(--text-dark);
    line-height: 1.1;
    margin: 0;
    font-weight: 700;
}

.hero-title span {
    display: block;
}

.hero-title-main {
    color: transparent;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 20px rgba(250, 169, 22, 0.15));
}

.hero-title-main.text-fade {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    filter: blur(8px);
}

.hero-title-sub {
    font-size: 0.4em;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-mid);
    opacity: 0.8;
}

.hero-desc {
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 90%;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 70vh;
}

.hero-img {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* Product Section */
.product-section {
    background: var(--bg-white);
    padding-top: 2rem;
    padding-bottom: 2rem;
}


/* Bento Box UI */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-item {
    background: var(--bg-white);
    border-radius: 32px;
    border: 1px solid var(--border);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.2, 0, 0.2, 1);
}
.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

/* 1. Image Carousel (Spans 2 columns, 2 rows) */
.bento-image {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    background: var(--bg-light);
    border: none;
    overflow: hidden;
    position: relative;
    min-height: 480px;
}
.bento-image:hover { transform: none; }

.bento-image .product-carousel-wrapper {
    height: 100%;
}

.bento-image .product-carousel {
    height: 100%;
    display: flex;
    align-items: center;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.bento-image .carousel-container {
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.bento-image .carousel-slide {
    min-width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-image .carousel-slide img {
    height: 100%;
    width: 100%;
    max-height: none;
    object-fit: contain;
    transform: scale(1.05);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 1rem;
}

.carousel-btn.next {
    right: 1rem;
}

/* 2. Title Block (Spans 2 columns, 1 row) */
.bento-title {
    grid-column: span 2;
    grid-row: span 1;
    justify-content: center;
    background: var(--bg-white);
}

.bento-title .product-info-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--text-dark);
}

.bento-title .hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 !important;
}

/* 3. Features Block (Spans 1 column, 1 row) */
.bento-features {
    grid-column: span 1;
    grid-row: span 1;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 2rem;
}

.bento-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bento-features li {
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
}

.bento-features .icon {
    font-size: 1.3rem;
    background: var(--bg-white);
    padding: 0.4rem;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* 4. Action / Buy Block */
.bento-action {
    grid-column: span 1;
    grid-row: span 1;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #FFF5E6 100%);
    border: 1px solid rgba(250, 169, 22, 0.2);
    justify-content: space-between;
}

.bento-action .price-box {
    margin-bottom: 0.5rem;
    border: none;
}

.price-current {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary);
    font-weight: 600;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-left: 0.5rem;
    opacity: 0.7;
}

.bento-action .quantity-row {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bento-action .quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.qty-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.2s;
}

.qty-btn:hover {
    color: var(--primary);
}


.qty-value {
    min-width: 60px;
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

/* Sections General */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    font-family: var(--font-accent);
    color: var(--primary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--text-dark);
    font-weight: 400;
    margin: 0;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Tradition Section */
.tradition-section {
    background: var(--bg-light);
}

.tradition-content {
    max-width: 1000px;
    margin: 3rem auto 0;
    text-align: center;
}

.tradition-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    text-align: center;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.features-grid p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    font-family: var(--font-heading);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -450px;
    top: 0;
    width: 450px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1500;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.cart-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.3s;
}

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

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

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

.cart-item-image {
    font-size: 3rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 10px;
}

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

.cart-item-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cart-item-remove {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    color: var(--secondary);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--border);
    background: var(--bg-white);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.checkout-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(250, 169, 22, 0.3);
}

.checkout-btn:hover {
    background: #e6990d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 169, 22, 0.4);
}

/* Checkout Page */
#checkoutPage {
    min-height: 100vh;
    padding: 4rem 1.5rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-form-wrapper {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.checkout-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.checkout-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkout-form-wrapper label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.checkout-form-wrapper input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color 0.3s;
}

.checkout-form-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
}

.checkout-summary-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.checkout-summary-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
}

.summary-item:last-of-type {
    border-bottom: none;
}

#checkoutTotal {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 6rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.footer-col a {
    display: block;
    margin-bottom: 0.8rem;
    opacity: 0.8;
    transition: 0.3s;
    font-size: 1.1rem;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    html {
        font-size: 16px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text-content {
        order: 1;
        align-items: center;
    }

    .hero-image-wrapper {
        order: 2;
        margin-top: 2rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-desc {
        max-width: 100%;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .product-info-col {
        text-align: center;
    }

    .product-features-box {
        border-left: none;
        border-top: 4px solid var(--primary);
        padding-top: 2rem;
        padding-left: 0;
        margin: 2rem auto;
        text-align: left;
        display: inline-block;
    }

    .quantity-row {
        justify-content: center;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-summary-wrapper {
        position: static;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1.25rem;
    }

    .section-padding {
        padding: 3rem 1rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .product-info-title {
        font-size: 2.5rem;
    }

    .price-current {
        font-size: 3rem;
    }

    .intro-logo-img {
        max-width: 280px;
    }

    .intro-tagline {
        font-size: 1.5rem;
    }

    .intro-subtitle {
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .checkout-form-wrapper,
    .checkout-summary-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 968px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .bento-item.bento-image, 
    .bento-item.bento-title, 
    .bento-item.bento-features, 
    .bento-item.bento-action {
        grid-column: span 1;
        grid-row: auto;
    }
    .bento-title .product-info-title {
        font-size: 2.2rem;
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1) !important;
    pointer-events: none;
}

.reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto;
}

.reveal-delay-1 { transition-delay: 0.1s !important; }
.reveal-delay-2 { transition-delay: 0.2s !important; }
.reveal-delay-3 { transition-delay: 0.3s !important; }
