@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #F7F5F0; /* Soft warm beige */
    --bg-dark: #111412;      /* Off-black */
    --bg-accent: #ECE8E1;    /* Light sand */
    --text-primary: #1A1A1A;
    --text-secondary: #656565;
    --text-light: #9A9A9A;
    --color-gold: #C59B27;
    --color-terracotta: #C87A53;
    --color-olive: #4D5844;
    --color-border: #E8E5DF;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 15px 35px rgba(26, 26, 26, 0.08);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

ul {
    list-style: none;
}

input, button {
    font-family: inherit;
    border: none;
    outline: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: #c3beb3;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Utility / Trust Top Bar */
.top-bar {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--color-border);
    padding: 8px 5%;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.top-bar-items {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item i {
    color: var(--color-olive);
    font-size: 12px;
}

/* Main Header */
header {
    background-color: var(--bg-primary);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    border-bottom: 1px solid var(--color-border);
}

.header-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-container {
    height: 60px;
    width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Navigation & Action Bar Row */
.nav-row {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background-color: var(--bg-primary);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

/* Search Bar */
.search-wrapper {
    position: relative;
    width: 220px;
}

.search-input {
    width: 100%;
    padding: 6px 12px 6px 32px;
    font-size: 12px;
    border-radius: 4px;
    background-color: var(--bg-secondary);
    border: 1px solid transparent;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

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

.search-input:focus {
    background-color: var(--bg-primary);
    border-color: var(--color-olive);
    width: 250px;
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--text-secondary);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 20px;
    height: 100%;
    align-items: center;
}

.nav-menu li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-menu a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
    padding: 0 4px;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-terracotta);
    transition: var(--transition-smooth);
}

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

.nav-menu a:hover {
    color: var(--color-terracotta);
}

.nav-menu li.sale a {
    color: var(--color-terracotta);
}

/* User Actions */
.user-actions {
    display: flex;
    gap: 18px;
    align-items: center;
}

.action-icon-btn {
    position: relative;
    background: none;
    font-size: 16px;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 4px;
}

.action-icon-btn:hover {
    color: var(--color-terracotta);
    transform: translateY(-2px);
}

.icon-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--color-terracotta);
    color: white;
    font-size: 8px;
    font-weight: 700;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Summer Sale Bar */
.promo-banner-wrapper {
    background-color: var(--color-terracotta);
    color: var(--bg-primary);
    text-align: center;
    padding: 10px 5%;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
}

.promo-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.promo-close {
    background: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.promo-close:hover {
    opacity: 1;
    transform: translateY(-50%) rotate(90deg);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 480px;
    overflow: hidden;
    background-color: var(--bg-secondary);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 60px 8%;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ECE8E1;
    margin-bottom: 10px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: white;
    color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
    border: 1px solid white;
}

.hero-btn:hover {
    background-color: transparent;
    color: white;
}

/* Category Grid Sections */
.collections-grid-section {
    padding: 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Layout Row 1: 3 Columns (FOREST, GRANDE ARCHE, ZEBRA) */
.col-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.collection-card {
    position: relative;
    height: 380px;
    overflow: hidden;
    background-color: var(--bg-secondary);
}

.collection-card img {
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.15, 1, 0.3, 1);
}

.collection-card:hover img {
    transform: scale(1.06);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.collection-card:hover .collection-overlay {
    background: rgba(0,0,0,0.25);
}

.collection-info-top {
    position: absolute;
    top: 25px;
    left: 25px;
    color: white;
    z-index: 2;
}

.collection-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.collection-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
}

/* Layout Row 2: 3 Columns of different size/feel (Lounge Sets) */
.col-grid-3-medium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.collection-card-medium {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.collection-card-medium img {
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.15, 1, 0.3, 1);
}

.collection-card-medium:hover img {
    transform: scale(1.05);
}

/* Layout Row 3: 1 Column Large Dining Banner */
.col-grid-1-large {
    position: relative;
    height: 340px;
    overflow: hidden;
    margin-bottom: 15px;
}

.col-grid-1-large img {
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.15, 1, 0.3, 1);
}

.col-grid-1-large:hover img {
    transform: scale(1.03);
}

.collection-info-center-left {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    max-width: 400px;
}

.collection-info-center-left h3 {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Layout Row 4: 4 Columns details grid (pool, credenza, bar, details) */
.col-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.collection-card-small {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.collection-card-small img {
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.15, 1, 0.3, 1);
}

.collection-card-small:hover img {
    transform: scale(1.05);
}

/* Featured Products Section */
.products-section {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--color-border);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
}

.product-card {
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--bg-secondary);
    border-radius: 2px;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    transition: transform 1s cubic-bezier(0.15, 1, 0.3, 1);
}

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

/* Badges */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--color-terracotta);
    color: white;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 8px;
    text-transform: uppercase;
    z-index: 2;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: white;
    color: var(--text-primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    z-index: 2;
    transition: var(--transition-smooth);
    border: none;
}

.wishlist-btn:hover {
    transform: scale(1.1);
    color: var(--color-terracotta);
}

.wishlist-btn.active {
    background-color: var(--color-terracotta);
    color: white;
}

/* Product Info */
.product-info {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-brand {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    gap: 3px;
    color: #F5A623;
    font-size: 10px;
    margin-bottom: 10px;
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.original-price {
    font-size: 11px;
    color: var(--text-light);
    text-decoration: line-through;
}

.current-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.price-sale {
    color: var(--color-terracotta);
}

.add-to-cart-btn {
    width: 100%;
    padding: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 2px;
    margin-top: auto;
}

.product-card:hover .add-to-cart-btn {
    background-color: var(--text-primary);
    color: white;
    border-color: var(--text-primary);
}

/* Brands section */
.brands-section {
    padding: 60px 5%;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
}

.brands-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 35px;
    color: var(--text-primary);
}

.brands-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.brand-logo-item {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #A5A29A;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
}

.brand-logo-item:hover {
    color: var(--text-primary);
    transform: scale(1.08);
}

/* Services / Guarantees Trust Block */
.trust-block-section {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.trust-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
}

.trust-card:last-child {
    border-bottom: none;
}

.trust-icon-wrapper {
    color: var(--color-olive);
    font-size: 22px;
    width: 30px;
}

.trust-card-content h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.trust-card-content p {
    font-size: 12px;
    color: var(--text-secondary);
}

.trust-right {
    background-color: var(--bg-secondary);
    padding: 40px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-right h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--color-olive);
}

.trust-right p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.trust-signature {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--color-terracotta);
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 5%;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

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

.newsletter-container h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.newsletter-container p {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-input {
    flex-grow: 1;
    padding: 12px 18px;
    font-size: 13px;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    background-color: white;
}

.newsletter-input:focus {
    border-color: var(--color-olive);
}

.newsletter-submit {
    padding: 12px 30px;
    background-color: var(--text-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.newsletter-submit:hover {
    background-color: var(--color-terracotta);
}

.newsletter-consent {
    font-size: 10px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Trust Badges and Payments Footer Section */
.trust-badges-bar {
    padding: 25px 5%;
    border-bottom: 1px solid var(--color-border);
}

.trust-badges-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 22px;
    color: var(--text-secondary);
}

.certificates {
    display: flex;
    gap: 20px;
    align-items: center;
}

.certificate-item {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.certificate-item i {
    color: #4CAF50;
    font-size: 14px;
}

/* Contact Info CTA banner */
.contact-cta-banner {
    background-color: var(--bg-dark);
    color: white;
    padding: 25px 5%;
    text-align: center;
}

.contact-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.contact-cta-text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-cta-btn {
    display: inline-block;
    padding: 10px 25px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid white;
    color: white;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.contact-cta-btn:hover {
    background-color: white;
    color: var(--bg-dark);
}

/* Main Footer */
footer.footer-main-dark {
    background-color: #0d0f0e;
    color: #c9c7c2;
    padding: 60px 5% 30px 5%;
    font-size: 12px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h5 {
    color: white;
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: #a8a6a1;
}

.footer-col a:hover {
    color: white;
    padding-left: 5px;
}

.footer-col p {
    line-height: 1.8;
    color: #a8a6a1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid #1E2220;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8c8a85;
    font-size: 11px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Toast Container & Notification Styles */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background-color: var(--bg-dark);
    color: white;
    padding: 15px 20px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    min-width: 280px;
    max-width: 350px;
    animation: slideInRight 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-left: 4px solid var(--color-terracotta);
}

.toast.fade-out {
    animation: slideOutRight 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    color: var(--color-terracotta);
    font-size: 16px;
}

.toast-message {
    font-size: 12px;
    font-weight: 500;
}

.toast-close {
    background: none;
    color: rgba(255,255,255,0.6);
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.toast-close:hover {
    color: white;
}

/* Keyframes animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Responsiveness */
@media (max-width: 1100px) {
    .nav-container {
        padding: 0 3%;
    }
    .nav-menu {
        gap: 12px;
    }
    .nav-menu a {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    .col-grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    .col-grid-3 .collection-card:last-child {
        grid-column: span 2;
        height: 280px;
    }
    .col-grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-items {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    .header-main {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    .logo-container {
        width: 100%;
        max-width: 250px;
        height: 45px;
    }
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px;
        gap: 15px;
    }
    .search-wrapper {
        width: 100%;
    }
    .search-input:focus {
        width: 100%;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }
    .nav-menu li {
        height: auto;
    }
    .nav-menu a {
        padding: 5px;
    }
    .hero-section {
        height: 50vh;
    }
    .hero-title {
        font-size: 32px;
    }
    .col-grid-3 {
        grid-template-columns: 1fr;
    }
    .col-grid-3 .collection-card:last-child {
        grid-column: span 1;
        height: 380px;
    }
    .col-grid-3-medium {
        grid-template-columns: 1fr;
    }
    .col-grid-1-large {
        height: 250px;
    }
    .collection-info-center-left {
        left: 20px;
    }
    .collection-info-center-left h3 {
        font-size: 24px;
    }
    .col-grid-4 {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-row {
        grid-template-columns: 1fr;
    }
    .trust-right {
        padding: 25px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .trust-badges-container {
        flex-direction: column;
        gap: 20px;
    }
    .contact-cta-container {
        flex-direction: column;
        gap: 15px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
