/* ============================================
   HAVEN FURNITURE - Premium E-Commerce Styles
   A Velvet-Inspired Modern Luxury Experience
   ============================================ */

/* -------------------- CSS Variables -------------------- */
:root {
    /* Color Palette */
    --white: #ffffff;
    --charcoal: #333333;
    --charcoal-light: #4a4a4a;
    --charcoal-dark: #1a1a1a;
    --wine: #6D0000;
    --wine-light: #8a1a1a;
    --wine-dark: #4a0000;
    --cream: #f8f6f3;
    --warm-gray: #e8e4df;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 10rem;
    
    /* Transitions */
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
    
    /* Shadows - Velvet depth */
    --shadow-subtle: 0 2px 20px rgba(51, 51, 51, 0.06);
    --shadow-medium: 0 8px 40px rgba(51, 51, 51, 0.1);
    --shadow-deep: 0 20px 60px rgba(51, 51, 51, 0.15);
    --shadow-wine: 0 10px 40px rgba(109, 0, 0, 0.2);
}

/* -------------------- Reset & Base -------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection styling */
::selection {
    background-color: var(--wine);
    color: var(--white);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--charcoal-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--wine);
}

/* -------------------- Typography -------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

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

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
}

.serif-accent {
    font-family: var(--font-display);
    font-style: italic;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-smooth);
}

/* -------------------- Layout Utilities -------------------- */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-wide {
    max-width: 1600px;
}

.container-narrow {
    max-width: 900px;
}

.section {
    padding: var(--space-xl) 0;
}

.section-lg {
    padding: var(--space-2xl) 0;
}

/* -------------------- Header & Navigation -------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.header.scrolled {
    padding: 0.75rem 0;
    border-bottom-color: rgba(51, 51, 51, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.logo-mark {
    width: 40px;
    height: 40px;
    position: relative;
}

.logo-mark svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo-text span {
    color: var(--wine);
}

.nav-main {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-main a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-main a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--wine);
    transition: width var(--duration-normal) var(--ease-smooth);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.cart-icon {
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform var(--duration-fast) var(--ease-bounce);
}

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

.cart-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--charcoal);
    fill: none;
    stroke-width: 1.5;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
    background: var(--wine);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    margin-right: -10px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all var(--duration-fast) var(--ease-smooth);
}

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

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

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

/* -------------------- Hero Section -------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-smooth) 0.3s forwards;
}

.hero-title {
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-smooth) 0.5s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--wine);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--charcoal-light);
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-smooth) 0.7s forwards;
}

.hero-image-container {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 80%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 120px;
    box-shadow: var(--shadow-deep);
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s var(--ease-smooth) 0.5s forwards;
}

.hero-decorator {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid var(--wine);
    opacity: 0.2;
    border-radius: 50%;
    right: 30%;
    top: 20%;
    animation: pulse 4s ease-in-out infinite;
}

/* Hero Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: 1px solid var(--charcoal);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
    background: transparent;
}

.hero-dot.active {
    background: var(--wine);
    border-color: var(--wine);
    transform: scale(1.2);
}

/* -------------------- Buttons -------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--wine);
    transition: left var(--duration-normal) var(--ease-smooth);
    z-index: 0;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

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

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

.btn-wine {
    background: var(--wine);
    color: var(--white);
}

.btn-wine:hover {
    background: var(--wine-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-wine);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--duration-fast) var(--ease-smooth);
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* -------------------- Featured Collection -------------------- */
.featured-collection {
    background: var(--white);
    position: relative;
}

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

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: var(--space-sm);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--charcoal-light);
}

/* Product Grid - Asymmetric */
.product-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-md);
}

.product-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.product-card:nth-child(1) {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
}

.product-card:nth-child(2) {
    grid-column: 7 / 10;
}

.product-card:nth-child(3) {
    grid-column: 10 / 13;
}

.product-card:nth-child(4) {
    grid-column: 7 / 10;
}

.product-card:nth-child(5) {
    grid-column: 10 / 13;
}

.product-card:nth-child(6) {
    grid-column: 1 / 5;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--cream);
}

.product-card:nth-child(1) .product-card-image {
    aspect-ratio: auto;
    height: 100%;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(51, 51, 51, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.product-card-actions {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    display: flex;
    gap: var(--space-sm);
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.product-card:hover .product-card-actions {
    transform: translateY(0);
    opacity: 1;
}

.product-card-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.625rem;
    background: var(--white);
    color: var(--charcoal);
    border: none;
    cursor: pointer;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.product-card-btn:hover {
    background: var(--wine);
    color: var(--white);
}

.product-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 0.5rem 1rem;
    background: var(--wine);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.product-card-info {
    padding: var(--space-md) 0;
}

.product-card-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    transition: color var(--duration-fast) var(--ease-smooth);
}

.product-card:hover .product-card-name {
    color: var(--wine);
}

.product-card-price {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--charcoal-light);
}

/* -------------------- New Arrivals Carousel -------------------- */
.new-arrivals {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.new-arrivals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--wine), transparent);
    opacity: 0.3;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: var(--space-md);
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.carousel-item {
    flex: 0 0 calc(25% - var(--space-md));
    min-width: 280px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--charcoal);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.carousel-btn:hover {
    background: var(--charcoal);
    color: var(--white);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

/* -------------------- Collections Section -------------------- */
.collections {
    background: var(--white);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.collection-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
}

.collection-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.collection-card:hover .collection-card-image {
    transform: scale(1.1);
}

.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(51, 51, 51, 0.8) 0%, rgba(51, 51, 51, 0.2) 50%, transparent 100%);
    transition: background var(--duration-normal) var(--ease-smooth);
}

.collection-card:hover .collection-card-overlay {
    background: linear-gradient(to top, rgba(109, 0, 0, 0.85) 0%, rgba(109, 0, 0, 0.3) 50%, transparent 100%);
}

.collection-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    color: var(--white);
    transform: translateY(20px);
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.collection-card:hover .collection-card-content {
    transform: translateY(0);
}

.collection-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.collection-card-description {
    font-size: 0.875rem;
    opacity: 0.8;
    font-family: var(--font-display);
    font-style: italic;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

.collection-card:hover .collection-card-description {
    opacity: 0.9;
}

/* -------------------- Craftsmanship Section -------------------- */
.craftsmanship {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.craftsmanship-images {
    position: relative;
    height: 700px;
}

.craftsmanship-image {
    position: absolute;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}

.craftsmanship-image:nth-child(1) {
    width: 70%;
    height: 60%;
    top: 0;
    left: 0;
    z-index: 2;
}

.craftsmanship-image:nth-child(2) {
    width: 50%;
    height: 45%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

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

.craftsmanship-decorator {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--wine);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    z-index: 0;
}

.craftsmanship-content {
    padding-left: var(--space-lg);
}

.craftsmanship-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: var(--space-md);
}

.craftsmanship-title {
    margin-bottom: var(--space-lg);
}

.craftsmanship-text {
    color: var(--charcoal-light);
    margin-bottom: var(--space-md);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.9;
}

.craftsmanship-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.craftsmanship-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.craftsmanship-feature-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--wine);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.craftsmanship-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--wine);
    fill: none;
    stroke-width: 1.5;
}

.craftsmanship-feature-text {
    font-size: 0.875rem;
    font-weight: 400;
}

/* Wine accent curve */
.wine-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.wine-curve::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: var(--wine);
    border-radius: 50%;
    opacity: 0.05;
}

/* -------------------- Testimonials -------------------- */
.testimonials {
    background: var(--white);
    position: relative;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    text-align: center;
    padding: var(--space-lg);
    display: none;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.6s var(--ease-smooth);
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--wine);
    line-height: 1;
    opacity: 0.3;
    margin-bottom: -2rem;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--wine);
}

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

.testimonial-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 400;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--charcoal-light);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border: 1px solid var(--charcoal);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
    background: transparent;
}

.testimonial-dot.active {
    background: var(--wine);
    border-color: var(--wine);
}

/* -------------------- Limited Edition -------------------- */
.limited-edition {
    background: var(--charcoal-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.limited-edition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(109, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.limited-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.limited-content {
    padding-right: var(--space-lg);
}

.limited-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1rem;
    border: 1px solid var(--wine);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wine-light);
    margin-bottom: var(--space-md);
}

.limited-label svg {
    width: 14px;
    height: 14px;
    fill: var(--wine-light);
}

.limited-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.limited-title em {
    color: var(--wine-light);
    font-style: italic;
}

.limited-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
    font-family: var(--font-display);
    font-style: italic;
}

.limited-stats {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

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

.limited-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--wine-light);
}

.limited-stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.countdown {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.countdown-item {
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1;
    display: block;
}

.countdown-label {
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.limited-image {
    position: relative;
}

.limited-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.limited-price {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    background: var(--wine);
    padding: var(--space-md) var(--space-lg);
    text-align: center;
}

.limited-price-amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    display: block;
}

.limited-price-note {
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

/* -------------------- Trust Badges -------------------- */
.trust-badges {
    background: var(--cream);
    padding: var(--space-lg) 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.trust-item {
    text-align: center;
    padding: var(--space-md);
}

.trust-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--charcoal);
    fill: none;
    stroke-width: 1;
}

.trust-title {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.trust-description {
    font-size: 0.75rem;
    color: var(--charcoal-light);
}

/* -------------------- Newsletter -------------------- */
.newsletter {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--wine), transparent);
    opacity: 0.3;
}

.newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: var(--space-sm);
}

.newsletter-description {
    color: var(--charcoal-light);
    margin-bottom: var(--space-lg);
    font-family: var(--font-display);
    font-style: italic;
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(51, 51, 51, 0.2);
    font-family: var(--font-body);
    font-size: 0.875rem;
    background: transparent;
    transition: border-color var(--duration-fast) var(--ease-smooth);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--wine);
}

.newsletter-input::placeholder {
    color: rgba(51, 51, 51, 0.4);
}

/* -------------------- Footer -------------------- */
.footer {
    background: var(--charcoal-dark);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-logo-text span {
    color: var(--wine-light);
}

.footer-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-md);
    font-family: var(--font-display);
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.social-icon:hover {
    border-color: var(--wine-light);
    background: var(--wine);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    color: var(--wine-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--duration-fast) var(--ease-smooth);
}

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

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

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

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-legal a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a:hover {
    color: var(--wine-light);
}

/* -------------------- Shop Page Styles -------------------- */
.page-hero {
    padding-top: 150px;
    padding-bottom: var(--space-xl);
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    text-align: center;
}

.page-hero-title {
    margin-bottom: var(--space-sm);
}

.page-hero-breadcrumb {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal-light);
}

.page-hero-breadcrumb a {
    color: var(--wine);
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
}

/* Shop Sidebar */
.shop-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.filter-section {
    margin-bottom: var(--space-lg);
}

.filter-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
}

.filter-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid var(--charcoal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.filter-checkbox.active {
    background: var(--wine);
    border-color: var(--wine);
}

.filter-checkbox svg {
    width: 12px;
    height: 12px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    opacity: 0;
    transition: opacity var(--duration-fast) var(--ease-smooth);
}

.filter-checkbox.active svg {
    opacity: 1;
}

.filter-label {
    font-size: 0.875rem;
    color: var(--charcoal-light);
}

/* Price Range */
.price-range {
    padding: var(--space-sm) 0;
}

.price-slider {
    width: 100%;
    height: 4px;
    background: var(--warm-gray);
    border-radius: 2px;
    position: relative;
    margin-bottom: var(--space-md);
}

.price-slider-fill {
    position: absolute;
    height: 100%;
    background: var(--wine);
    border-radius: 2px;
}

.price-inputs {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.price-input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid rgba(51, 51, 51, 0.2);
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-align: center;
}

.price-separator {
    color: var(--charcoal-light);
}

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.shop-header {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.shop-count {
    font-size: 0.875rem;
    color: var(--charcoal-light);
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.shop-sort-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.shop-sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(51, 51, 51, 0.2);
    font-family: var(--font-body);
    font-size: 0.875rem;
    background: transparent;
    cursor: pointer;
}

/* Shop Product Card */
.shop-product-card {
    position: relative;
    overflow: hidden;
}

.shop-product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--cream);
}

.shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.quick-view-btn {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: none;
    font-family: var(--font-body);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.shop-product-card:hover .quick-view-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.quick-view-btn:hover {
    background: var(--wine);
    color: var(--white);
}

.shop-product-info {
    padding: var(--space-md) 0;
}

.shop-product-name {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.shop-product-name a {
    transition: color var(--duration-fast) var(--ease-smooth);
}

.shop-product-name a:hover {
    color: var(--wine);
}

.shop-product-material {
    font-size: 0.75rem;
    color: var(--charcoal-light);
    margin-bottom: 0.5rem;
}

.shop-product-price {
    font-size: 0.875rem;
    font-weight: 400;
}

/* -------------------- Product Detail Page -------------------- */
.product-detail {
    padding-top: 120px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--cream);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

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

.product-thumbnails {
    display: flex;
    gap: var(--space-sm);
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    background: var(--cream);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--duration-fast) var(--ease-smooth);
}

.product-thumbnail.active,
.product-thumbnail:hover {
    opacity: 1;
}

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

.product-info {
    padding: var(--space-lg) 0;
}

.product-breadcrumb {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    margin-bottom: var(--space-md);
}

.product-breadcrumb a {
    color: var(--wine);
}

.product-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: var(--space-lg);
}

.product-description {
    color: var(--charcoal-light);
    margin-bottom: var(--space-lg);
    font-family: var(--font-display);
    font-style: italic;
    line-height: 1.9;
}

.product-options {
    margin-bottom: var(--space-lg);
}

.option-group {
    margin-bottom: var(--space-md);
}

.option-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    display: block;
}

.option-values {
    display: flex;
    gap: var(--space-sm);
}

.option-value {
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(51, 51, 51, 0.2);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.option-value:hover,
.option-value.selected {
    border-color: var(--charcoal);
    background: var(--charcoal);
    color: var(--white);
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid rgba(51, 51, 51, 0.2);
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background var(--duration-fast) var(--ease-smooth);
}

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

.quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    border-left: 1px solid rgba(51, 51, 51, 0.2);
    border-right: 1px solid rgba(51, 51, 51, 0.2);
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.875rem;
}

.product-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.product-actions .btn {
    flex: 1;
}

.wishlist-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(51, 51, 51, 0.2);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.wishlist-btn:hover {
    border-color: var(--wine);
    background: var(--wine);
}

.wishlist-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--charcoal);
    fill: none;
    stroke-width: 1.5;
    transition: stroke var(--duration-fast) var(--ease-smooth);
}

.wishlist-btn:hover svg {
    stroke: var(--white);
}

.product-specs {
    border-top: 1px solid rgba(51, 51, 51, 0.1);
    padding-top: var(--space-lg);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.05);
}

.spec-label {
    font-size: 0.875rem;
    color: var(--charcoal-light);
}

.spec-value {
    font-size: 0.875rem;
    font-weight: 400;
}

/* -------------------- About Page Styles -------------------- */
.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.9) 0%, rgba(109, 0, 0, 0.7) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 700px;
}

.about-hero-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-md);
}

.about-hero-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
}

/* About Story Section */
.about-story {
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.story-content {
    padding-right: var(--space-lg);
}

.story-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: var(--space-md);
}

.story-title {
    margin-bottom: var(--space-lg);
}

.story-text {
    color: var(--charcoal-light);
    margin-bottom: var(--space-md);
}

.story-text.lead {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.125rem;
    color: var(--charcoal);
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: auto;
    box-shadow: var(--shadow-deep);
}

.story-image-decorator {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--wine);
    top: -30px;
    right: -30px;
    z-index: -1;
    opacity: 0.3;
}

/* About Materials */
.about-materials {
    background: var(--cream);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.material-card {
    background: var(--white);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-subtle);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.material-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.material-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.material-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--wine);
    fill: none;
    stroke-width: 1;
}

.material-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.material-description {
    font-size: 0.875rem;
    color: var(--charcoal-light);
    font-family: var(--font-display);
    font-style: italic;
}

/* About Philosophy */
.about-philosophy {
    background: var(--charcoal-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(109, 0, 0, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.philosophy-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.philosophy-quote-mark {
    font-size: 4rem;
    color: var(--wine-light);
    line-height: 1;
    opacity: 0.5;
}

.philosophy-author {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

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

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-smooth);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s var(--ease-smooth);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s var(--ease-smooth);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* -------------------- Responsive Design -------------------- */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .product-card:nth-child(1) {
        grid-column: 1 / 4;
        grid-row: auto;
    }
    
    .product-card:nth-child(2),
    .product-card:nth-child(3),
    .product-card:nth-child(4),
    .product-card:nth-child(5),
    .product-card:nth-child(6) {
        grid-column: span 3;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 var(--space-md);
    }
    
    .hero-image-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 50vh;
        margin-top: var(--space-lg);
    }
    
    .hero-image {
        border-radius: 0;
    }
    
    .hero {
        flex-direction: column;
        justify-content: center;
        padding-top: 120px;
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .craftsmanship-grid,
    .limited-grid,
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .craftsmanship-images {
        height: 500px;
        margin-bottom: var(--space-lg);
    }
    
    .craftsmanship-content {
        padding-left: 0;
    }
    
    .limited-content {
        padding-right: 0;
        order: 2;
    }
    
    .limited-image {
        order: 1;
        margin-bottom: var(--space-lg);
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-md);
    }
    
    .filter-section {
        flex: 1 1 200px;
    }
    
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        position: static;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        box-shadow: var(--shadow-medium);
    }
    
    .nav-main.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-card:nth-child(1),
    .product-card:nth-child(2),
    .product-card:nth-child(3),
    .product-card:nth-child(4),
    .product-card:nth-child(5),
    .product-card:nth-child(6) {
        grid-column: span 1;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .materials-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-item {
        flex: 0 0 calc(50% - var(--space-md));
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .countdown {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .limited-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .carousel-item {
        flex: 0 0 calc(100% - var(--space-md));
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
    }
}

/* -------------------- Print Styles -------------------- */
@media print {
    .header,
    .footer,
    .newsletter,
    .cart-icon {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .section {
        padding: 1cm 0;
    }
}
