/* ========================================
   LAMPSLEEVE - COMPREHENSIVE STYLESHEET
   Warm, Artisanal Dutch Craftsmanship
   ======================================== */

/* ========================================
   1. CSS VARIABLES & DESIGN SYSTEM
   ======================================== */

:root {
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-warm: #FBF8F4;
    --bg-blush: #F9F0EA;
    --bg-linen: #F3EDE6;
    --bg-copper-soft: #F5EBE0;

    /* Text Colors */
    --text-dark: #3D3229;
    --text-medium: #7A6E62;
    --text-light: #B0A396;

    /* Accent Colors */
    --accent: #C17F4E;
    --accent-hover: #A86A3D;
    --accent-light: #D9A87C;
    --accent-peach: #E8A88C;
    --accent-terracotta: #C4836A;
    --accent-sage: #A3B5A0;

    /* Borders & Utilities */
    --border: #EBE4DB;
    --white: #FFFFFF;

    /* Layout */
    --max-width: 1200px;
    --max-width-narrow: 780px;

    /* Typography */
    --font-heading: 'Fraunces', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing & Sizing */
    --radius: 12px;
    --radius-lg: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(61, 50, 41, 0.08);
    --shadow-md: 0 4px 16px rgba(61, 50, 41, 0.12);
    --shadow-lg: 0 12px 32px rgba(61, 50, 41, 0.15);
}

/* ========================================
   2. RESET & BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-hover);
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    outline: none;
}

input, textarea, select {
    font-family: var(--font-body);
}

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

/* ========================================
   3. CONTAINERS
   ======================================== */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    width: 100%;
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-full {
    width: 100%;
}

section {
    padding: 4rem 0;
}

section.py-small {
    padding: 2rem 0;
}

section.py-large {
    padding: 6rem 0;
}

/* ========================================
   4. NAVIGATION BAR
   ======================================== */

.navbar,
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 70px;
    display: flex;
    align-items: center;
}

nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.navbar-content,
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    padding: 0 2rem;
}

.navbar-brand,
.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.navbar-brand .highlight,
.nav-logo span {
    color: var(--accent);
}

.navbar-links,
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar-links a,
.nav-links a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 0.25rem;
}

.navbar-links a::after,
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.cart-toggle {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-medium);
    transition: color 0.3s;
}

.cart-toggle:hover {
    color: var(--accent);
}

.cart-toggle .cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: var(--accent);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Spacer for fixed navbar */
body {
    padding-top: 70px;
}

/* ========================================
   5. HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(135deg, var(--bg-linen) 0%, var(--bg-blush) 100%);
    padding: 4rem 0;
    margin-top: -70px;
    padding-top: 8rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.season-badge {
    display: inline-block;
    background: var(--bg-copper-soft);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    width: fit-content;
    font-weight: 500;
}

.hero h1 {
    margin-bottom: 1rem;
}

.hero h1 .highlight {
    color: var(--accent);
}

.hero .subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-image {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-peach) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   6. BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Copper Button (Primary) */
.btn-copper {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-copper:hover {
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--accent-hover) 0%, #8f5632 100%);
}

/* Soft Button (Secondary) */
.btn-soft {
    background: var(--white);
    color: var(--accent);
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-sm);
}

.btn-soft:hover {
    background: var(--bg-copper-soft);
    border-color: var(--accent-hover);
    color: var(--accent-hover);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: var(--white);
}

/* Small Button */
.btn-small {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
}

/* Large Button */
.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* Icon buttons */
.btn-icon {
    padding: 0.875rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   7. USP BAR
   ======================================== */

.usp-bar {
    background: var(--bg-warm);
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.usp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.usp-icon {
    font-size: 2.5rem;
    color: var(--accent);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usp-item h3 {
    font-size: 1.1rem;
    margin: 0;
}

.usp-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* ========================================
   8. PRODUCT GRID
   ======================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--accent-light);
}

.product-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-linen) 0%, var(--bg-blush) 100%);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

.product-price .original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.product-actions .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

/* ========================================
   9. PRODUCT DETAIL PAGE
   ======================================== */

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

.product-detail-image {
    position: sticky;
    top: 100px;
}

.product-detail-image-main {
    aspect-ratio: 1;
    background: var(--bg-linen);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-detail-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.thumbnail {
    aspect-ratio: 1;
    background: var(--bg-linen);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--accent);
}

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

.product-detail-info {
    display: flex;
    flex-direction: column;
}

.product-detail-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: var(--accent);
}

.product-detail-price {
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.product-detail-description {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-medium);
}

/* Color Swatches */
.color-selector {
    margin-bottom: 2rem;
}

.color-selector h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
}

.color-swatches {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.color-swatch {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.color-swatch:hover,
.color-swatch.active {
    border-color: var(--text-dark);
    transform: scale(1.1);
}

.color-swatch.copper {
    background: var(--accent);
}

.color-swatch.sage {
    background: var(--accent-sage);
}

.color-swatch.terracotta {
    background: var(--accent-terracotta);
}

.color-swatch.peach {
    background: var(--accent-peach);
}

/* Size Selector */
.size-selector {
    margin-bottom: 2rem;
}

.size-selector h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
}

.size-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.size-option {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.size-option:hover {
    border-color: var(--accent);
}

.size-option.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-label {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.quantity-btn {
    background: var(--bg-warm);
    border: none;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.quantity-btn:hover {
    background: var(--border);
}

.quantity-value {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
}

/* Add to Cart */
.add-to-cart-section {
    margin-bottom: 2rem;
}

.add-to-cart-section .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
}

.product-features {
    background: var(--bg-warm);
    padding: 2rem;
    border-radius: var(--radius);
    margin-top: 2rem;
}

.product-features h4 {
    margin-bottom: 1rem;
}

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

.product-features li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.product-features li:before {
    content: '✓';
    color: var(--accent);
    font-weight: 600;
    flex-shrink: 0;
}

/* ========================================
   10. HOW IT WORKS SECTION
   ======================================== */

.how-it-works {
    background: var(--bg-warm);
}

.how-it-works-title {
    text-align: center;
    margin-bottom: 3rem;
}

.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 400;
}

.step h3 {
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-medium);
    line-height: 1.8;
}

.step-connector {
    display: none;
    width: 40px;
    height: 2px;
    background: var(--border);
    position: absolute;
    top: 60px;
}

/* ========================================
   11. REVIEWS & SOCIAL PROOF
   ======================================== */

.reviews-section {
    background: var(--bg-white);
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--bg-warm);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review-info {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.review-title {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ========================================
   12. STORY/ABOUT SECTION
   ======================================== */

.story-section {
    background: linear-gradient(135deg, var(--bg-blush) 0%, var(--bg-warm) 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-peach) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text h2 {
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.story-text p:last-of-type {
    margin-bottom: 2rem;
}

/* ========================================
   13. FAQ ACCORDION
   ======================================== */

.faq-section {
    background: var(--bg-white);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border);
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
}

.faq-tab:hover,
.faq-tab.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    padding: 1.5rem;
    background: var(--bg-warm);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
}

.faq-question:hover {
    background: var(--bg-linen);
}

.faq-question.active {
    background: var(--accent);
    color: var(--white);
}

.faq-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.8;
}

/* ========================================
   14. CONTACT FORM
   ======================================== */

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input,
.form-textarea,
.form-select {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(193, 127, 78, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-body);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237A6E62' d='M1 4l5 4 5-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-error {
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.form-success {
    background: var(--accent-sage);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    cursor: pointer;
    flex: 1;
}

/* ========================================
   15. FOOTER
   ======================================== */

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-newsletter {
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.newsletter-form button:hover {
    background: var(--accent-hover);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

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

.social-link:hover {
    background: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ========================================
   16. PAGE HEADER (Inner Pages)
   ======================================== */

.page-header {
    background: linear-gradient(135deg, var(--bg-linen) 0%, var(--bg-blush) 100%);
    padding: 3rem 0;
    margin-top: -70px;
    padding-top: 6rem;
    margin-bottom: 2rem;
}

.page-header-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.page-header h1 {
    margin-bottom: 0.75rem;
}

.page-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
}

/* ========================================
   17. FILTER BAR
   ======================================== */

.filter-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.625rem 1.25rem;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* ========================================
   18. SPECIFICATION TABLE
   ======================================== */

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
}

.spec-table th {
    background: var(--bg-warm);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border);
}

.spec-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-medium);
}

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

.spec-table tbody tr:hover {
    background: var(--bg-warm);
}

/* ========================================
   19. CROSS-SELL SECTION
   ======================================== */

.cross-sell {
    background: var(--bg-warm);
    padding: 3rem;
    border-radius: var(--radius-lg);
    margin-top: 3rem;
}

.cross-sell h3 {
    margin-bottom: 1.5rem;
}

.cross-sell-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.cross-sell-item {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.cross-sell-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.cross-sell-image {
    aspect-ratio: 1;
    background: var(--bg-linen);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.cross-sell-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cross-sell-title {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.cross-sell-price {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* ========================================
   20. CTA BANNER
   ======================================== */

.cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: var(--radius-lg);
    margin: 4rem 0;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}

.cta-banner .btn-soft {
    background: var(--white);
    color: var(--accent);
    border-color: var(--white);
}

.cta-banner .btn-soft:hover {
    background: var(--bg-warm);
    border-color: var(--bg-warm);
}

/* ========================================
   21. CART DRAWER
   ======================================== */

.cart-drawer {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 16px rgba(61, 50, 41, 0.2);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

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

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

.cart-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.cart-item-image {
    aspect-ratio: 1;
    background: var(--bg-linen);
    border-radius: var(--radius);
    overflow: hidden;
}

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

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

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

.cart-item-details {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    text-decoration: underline;
}

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

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

.cart-totals {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.cart-subtotal,
.cart-total {
    display: flex;
    justify-content: space-between;
}

.cart-total {
    font-weight: 600;
    font-size: 1.1rem;
}

.cart-drawer .btn-copper {
    width: 100%;
    margin-bottom: 0.75rem;
}

.cart-continue {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-continue:hover {
    background: var(--accent);
    color: var(--white);
}

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

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

/* ========================================
   22. CHECKOUT PAGE
   ======================================== */

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.checkout-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.checkout-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.checkout-section h3 {
    margin-bottom: 1.5rem;
}

.checkout-section:last-child {
    border-bottom: none;
}

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

.form-row.full {
    grid-template-columns: 1fr;
}

.order-summary {
    background: var(--bg-warm);
    padding: 2rem;
    border-radius: var(--radius-lg);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    margin-bottom: 1.5rem;
}

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

.summary-item-name {
    display: flex;
    gap: 0.75rem;
    flex: 1;
}

.summary-item-image {
    width: 60px;
    aspect-ratio: 1;
    background: var(--bg-linen);
    border-radius: var(--radius);
    overflow: hidden;
}

.summary-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.summary-item-title {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.summary-item-qty {
    font-size: 0.85rem;
    color: var(--text-light);
}

.summary-item-price {
    font-weight: 600;
    color: var(--accent);
    text-align: right;
}

.summary-totals {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.summary-total {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
}

.checkout-form .btn-copper {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    margin-top: 1.5rem;
}

/* ========================================
   23. THANK YOU PAGE
   ======================================== */

.thank-you-container {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 4rem;
    color: var(--accent-sage);
    margin-bottom: 1.5rem;
}

.thank-you-container h1 {
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.order-number {
    background: var(--bg-warm);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.order-number-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.order-number-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Courier New', monospace;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   24. UTILITY CLASSES
   ======================================== */

/* Text Alignment */
.text-center {
    text-align: center;
}

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

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

/* Text Colors */
.text-dark {
    color: var(--text-dark);
}

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

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

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

/* Margins Top */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mt-6 { margin-top: 3rem; }

/* Margins Bottom */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mb-6 { margin-bottom: 3rem; }

/* Margins All */
.m-auto {
    margin: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

/* Padding Top */
.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-6 { padding-top: 3rem; }

/* Padding Bottom */
.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-6 { padding-bottom: 3rem; }

/* Display */
.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.d-block {
    display: block;
}

.d-inline {
    display: inline;
}

.d-none {
    display: none;
}

/* Flex Utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.flex-col {
    flex-direction: column;
}

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* Width/Height */
.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.max-w-full {
    max-width: 100%;
}

/* Visibility */
.hidden {
    display: none !important;
}

.invisible {
    visibility: hidden;
}

.visible {
    visibility: visible;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

.overflow-auto {
    overflow: auto;
}

/* Opacity */
.opacity-50 {
    opacity: 0.5;
}

.opacity-75 {
    opacity: 0.75;
}

/* Cursor */
.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}

/* Rounded */
.rounded {
    border-radius: var(--radius);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-full {
    border-radius: 50%;
}

/* Shadows */
.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* ========================================
   25. MISSING COMPONENT STYLES
   ======================================== */

/* Hero Section Variants */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.usp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

/* Button Variants */
.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--accent-hover) 0%, #8f5632 100%);
}

.btn-secondary {
    background: var(--white);
    color: var(--accent);
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-copper-soft);
    border-color: var(--accent-hover);
    color: var(--accent-hover);
}

.full-width {
    width: 100%;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Featured Products Section */
.featured-products {
    background: var(--white);
    padding: 4rem 0;
}

.featured-products h2 {
    margin-bottom: 3rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.products-section {
    background: var(--white);
}

/* Product Card Colors */
.product-category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-colors {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-dot:hover {
    border-color: var(--accent);
    transform: scale(1.15);
}

.product-count {
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* Product Detail Modal */
.product-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 2rem;
}

.product-detail-modal.hidden {
    display: none !important;
}

.product-detail-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
}

.detail-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.detail-close:hover {
    color: var(--accent);
}

.detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-display {
    aspect-ratio: 1;
    background: var(--bg-linen);
    border-radius: var(--radius-lg);
    width: 100%;
}

.image-placeholder,
.img-placeholder {
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.875rem;
    height: 100%;
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}

.detail-description {
    color: var(--text-medium);
    line-height: 1.8;
}

.detail-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--accent);
}

.detail-colors {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-colors label {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    background: var(--bg-warm);
    border: none;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.qty-btn:hover {
    background: var(--border);
}

.qty-btn.minus {
    border-right: 1px solid var(--border);
}

.qty-btn.plus {
    border-left: 1px solid var(--border);
}

.detail-specs {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.detail-specs h3 {
    margin-bottom: 1rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.specs-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 40%;
}

.specs-table td:last-child {
    color: var(--text-medium);
}

.detail-crosssell {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.detail-crosssell h3 {
    margin-bottom: 1rem;
}

.crosssell-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.crosssell-products .product-card {
    cursor: pointer;
}

/* Filter Section */
.filter-section {
    background: var(--bg-white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

/* Reviews Section */
.reviews {
    background: var(--bg-white);
}

.reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Story Section */
.story {
    background: linear-gradient(135deg, var(--bg-blush) 0%, var(--bg-warm) 100%);
    padding: 4rem 0;
}

.story-container {
    max-width: 100%;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-item.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.story-item.reverse > * {
    direction: ltr;
}

.story-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.story-image {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-peach) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.story-cta h2 {
    margin-bottom: 1rem;
}

.story-cta p {
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.faq-preview {
    background: var(--bg-white);
    padding: 4rem 0;
}

.faq-preview h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-preview-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border);
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
}

.faq-tab:hover,
.faq-tab.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.faq-toggle {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 1.25rem;
}

.faq-toggle.active {
    transform: rotate(45deg);
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-blush) 100%);
    border-radius: var(--radius-lg);
}

.faq-cta h2 {
    margin-bottom: 1rem;
}

.faq-cta p {
    margin-bottom: 2rem;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--white);
}

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-block {
    padding: 2rem;
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
}

.contact-info-block h3 {
    margin-bottom: 1rem;
}

.contact-info-block p {
    margin-bottom: 0.75rem;
}

.contact-info-block a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-block a:hover {
    color: var(--accent-hover);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 0.75rem;
}

.contact-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-hover);
}

/* Checkout Section */
.checkout-section {
    background: var(--white);
    padding: 4rem 0;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.checkout-form-wrapper {
    background: var(--white);
}

.checkout-form-wrapper h2 {
    margin-bottom: 2rem;
}

.checkout-summary {
    background: var(--bg-warm);
    padding: 2rem;
    border-radius: var(--radius-lg);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.checkout-summary h2 {
    margin-bottom: 1.5rem;
}

.checkout-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.checkout-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
}

/* Order Items */
.order-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.order-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.order-row.total {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--accent);
    border-bottom: none;
    padding-top: 1rem;
    padding-bottom: 0;
}

.order-totals {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border);
}

.total {
    font-weight: 600;
    color: var(--accent);
}

/* Thank You Section */
.thank-you-section {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-blush) 100%);
    padding: 6rem 0;
    min-height: calc(100vh - 70px - 200px);
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.checkmark-icon {
    color: var(--accent-sage);
    margin-bottom: 2rem;
    display: inline-block;
}

.thank-you-content h1 {
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.order-reference {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.order-reference p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Closing CTA */
.closing-cta {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-blush) 100%);
    padding: 4rem 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-medium);
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Form Message */
.form-message {
    background: var(--accent-sage);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-message p {
    margin: 0;
    color: var(--white);
}

/* Eyebrow text */
.eyebrow {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Plus/Minus Icons */
.plus,
.minus {
    display: inline-block;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Reverse Modifier */
.reverse {
    direction: rtl;
}

.reverse > * {
    direction: ltr;
}

/* Story Visual */
.story-visual {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-peach) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-content {
    display: flex;
    flex-direction: column;
}

/* ========================================
   25. RESPONSIVE DESIGN
   ======================================== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .container,
    .container-narrow {
        padding: 0 1.5rem;
    }

    section {
        padding: 2.5rem 0;
    }

    section.py-large {
        padding: 4rem 0;
    }

    h1 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.25rem, 3vw, 2rem);
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Navigation */
    .navbar-links,
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 1rem 0;
        z-index: 999;
    }

    .navbar-links.active,
    .nav-links.open {
        display: flex;
    }

    .navbar-links a,
    .nav-links a {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border);
    }

    .navbar-links a::after,
    .nav-links a::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        aspect-ratio: 1;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    /* USP Bar */
    .usp-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Product Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Product Detail */
    .product-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-detail-image {
        position: static;
    }

    /* Story */
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image {
        aspect-ratio: 1;
    }

    /* Checkout */
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .order-summary {
        position: static;
    }

    /* Cart Drawer */
    .cart-drawer {
        width: 100%;
        right: -100%;
    }

    /* FAQ */
    .faq-categories {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .faq-items {
        max-width: 100%;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Hero Container */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Detail Container */
    .detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact Layout */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Checkout Layout */
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .checkout-summary {
        position: static;
    }

    /* Story Layout */
    .story-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-item.reverse {
        direction: ltr;
    }

    /* Button Group */
    .button-group {
        flex-direction: column;
    }

    .button-group .btn {
        width: 100%;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .container,
    .container-narrow {
        padding: 0 1rem;
    }

    section {
        padding: 2rem 0;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .navbar-content {
        padding: 0 1rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .navbar-links {
        top: 60px;
    }

    /* Hero */
    .hero {
        padding-top: 5rem;
    }

    .hero h1 .highlight {
        display: block;
    }

    .season-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    /* USP Bar */
    .usp-bar {
        padding: 2rem 0;
    }

    /* Product Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Product Detail */
    .color-swatches {
        gap: 0.75rem;
    }

    .color-swatch {
        width: 40px;
        height: 40px;
    }

    .size-options {
        gap: 0.5rem;
    }

    .size-option {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    /* How it Works */
    .how-it-works-steps {
        gap: 2rem;
    }

    .step-number {
        font-size: 2.5rem;
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    /* Contact Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Checkout */
    .form-row.full {
        grid-template-columns: 1fr;
    }

    .order-summary {
        padding: 1.5rem;
    }

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

    .footer-section h3 {
        font-size: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    /* Page Header */
    .page-header {
        padding: 2rem 0;
        padding-top: 4rem;
    }

    .page-header h1 {
        margin-bottom: 0.5rem;
    }

    /* Cross Sell */
    .cross-sell {
        padding: 1.5rem;
    }

    .cross-sell-items {
        grid-template-columns: 1fr 1fr;
    }

    /* Specification Table */
    .spec-table {
        font-size: 0.9rem;
    }

    .spec-table th,
    .spec-table td {
        padding: 0.75rem;
    }

    /* Product Detail Modal Mobile */
    .product-detail-modal {
        padding: 1rem;
    }

    .product-detail-content {
        max-height: 95vh;
    }

    .detail-container {
        padding: 1.5rem;
    }

    /* Contact Section Mobile */
    .contact-layout {
        gap: 2rem;
    }

    /* Checkout Mobile */
    .checkout-layout {
        gap: 2rem;
    }

    .order-items {
        gap: 1rem;
    }

    /* Product Colors */
    .product-colors {
        gap: 0.5rem;
    }

    .color-dot {
        width: 20px;
        height: 20px;
    }

    /* Button Group */
    .button-group {
        gap: 0.75rem;
    }

    /* Qty Controls */
    .qty-controls {
        width: 100%;
        justify-content: space-around;
    }

    .qty-btn {
        flex: 1;
    }
}

/* Very Small Mobile (320px and below) */
@media (max-width: 320px) {
    .container,
    .container-narrow {
        padding: 0 0.75rem;
    }

    h1 {
        font-size: 1.25rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }

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

    .cross-sell-items {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   26. ANIMATIONS
   ======================================== */

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

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

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

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Utility animation classes */
.animate-fade {
    animation: fadeIn 0.3s ease-out;
}

.animate-slide-up {
    animation: slideInUp 0.3s ease-out;
}

.animate-slide-down {
    animation: slideInDown 0.3s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 0.3s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.3s ease-out;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ========================================
   27. PRINT STYLES
   ======================================== */

@media print {
    .navbar,
    .footer,
    .cart-drawer,
    .cart-overlay {
        display: none !important;
    }

    body {
        padding-top: 0;
    }

    section {
        page-break-inside: avoid;
    }

    .btn {
        border: 1px solid var(--text-dark);
        color: var(--text-dark) !important;
        background: transparent !important;
    }
}

/* ========================================
   28. ACCESSIBILITY
   ======================================== */

/* Focus visible states */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: var(--radius);
    z-index: 1001;
}

.skip-to-main:focus {
    top: 0;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Uncomment to enable dark mode support */
    /* :root {
        --bg-white: #1a1a1a;
        --text-dark: #f5f5f5;
    } */
}

/* ========================================
   END OF STYLESHEET
   ======================================== */
