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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2B2B2B;
    background: #fff;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.75rem 0;
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 400;
    color: #FF6100;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu a {
    text-decoration: none;
    color: #6B6B6B;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #E8A87C;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icon {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #6B6B6B;
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

.nav-currency {
    font-size: 0.875rem;
    color: #6B6B6B;
    font-weight: 500;
}

/* Navigation dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid #E5E5E5;
    min-width: 180px;
    z-index: 1000;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #2B2B2B;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #F88C44;
    color: white;
}

/* Home Hero Section - with wave background */
.home-hero {
    background: #FFF6ED;
    padding: 0;
    padding-top: 60px; /* Space for navbar */
    overflow: hidden;
    position: relative;
    min-height: 660px;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: -60px; /* Extend to include navbar area */
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/freepik_edit_gray-silk-background 1.png') no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

/* Page Hero Section - for About/Contact/Brand pages (no wave) */
.page-hero {
    background: #FFF6ED;
    padding: 120px 0 80px 0;
    position: relative;
}

.page-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.hero-decoration {
    position: absolute;
    width: 80px;
    opacity: 1;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    padding: 4rem 40px;
    gap: 0;
    position: relative;
    min-height: 600px;
}

.hero-badge {
    display: inline-block;
    background: #FFEEE5;
    color: #E8A87C;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero title styles moved to unified section above */

.hero-subtitle {
    font-size: 0.95rem;
    color: #6B6B6B;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-price {
    font-size: 2.25rem;
    font-weight: 600;
    color: #E8A87C;
    margin-bottom: 2rem;
}

.hero-price-old {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.75rem;
    font-weight: 400;
}

.btn-primary {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-block;
}

.btn-primary img {
    height: 50px;
    width: auto;
}

.hero-reviews {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.review-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.avatar:first-child {
    margin-left: 0;
}

.stars {
    font-size: 1.1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.review-count {
    font-size: 0.75rem;
    color: #6B6B6B;
    margin-left: 0.5rem;
    font-weight: 400;
}

.happy-text {
    font-size: 0.75rem;
    color: #6B6B6B;
    margin: 0.1rem 0 0 0;
    font-weight: 400;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-image img {
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

/* Shop By Brand */
.shop-brand {
    padding: 4rem 0;
    margin-bottom: 0;
    position: relative;
}

.shop-brand .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Global Component Styles */

/* Container - shared across all pages */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Title Styles - shared component */
.section-title {
    font-size: 2.25rem;
    text-align: left;
    margin-bottom: 2.5rem;
    color: #2B2B2B;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

/* Unified Title System - 2 Main Styles + 1 Special */

/* 1. Hero Title - Largest, for main page heroes and brand names */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.75rem;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #2B2B2B;
    font-weight: 400;
}

/* 2. Section Title - Standard section headings */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    text-align: left;
    margin-bottom: 2.5rem;
    color: #2B2B2B;
    font-weight: 400;
}

/* 3. Feature Title - Special large feature headings (crafted sections) */
.crafted-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4rem;
    color: #2B2B2B;
    line-height: 1.2;
}

/* Body Text - consistent across all pages */
.body-text {
    font-size: 1.125rem;
    color: #6B6B6B;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Extended Text Hierarchy */

/* Feature/Benefit Text - for product features and benefits */
.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2B2B2B;
    margin-bottom: 10px;
    line-height: 1.4;
}

.feature-desc {
    font-size: 0.875rem;
    color: #6B6B6B;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* FAQ Text Styles */
.faq-question-large {
    font-size: 1.125rem;
    font-weight: 500;
    color: #2B2B2B;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-question-medium {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2B2B2B;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-answer-medium {
    font-size: 1rem;
    color: #6B6B6B;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Bullet Point Styles */
.bullet-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2B2B2B;
    margin-bottom: 8px;
    line-height: 1.3;
}

.bullet-desc {
    font-size: 1rem;
    color: #6B6B6B;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Hero Text Styles - used in brand and contact pages */
.tagline {
    color: #F88C44;
    font-size: 18px;
    margin-bottom: 30px;
}

.desc {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.content-area h3 {
    font-size: 16px;
    color: #333;
    margin: 30px 0 15px 0;
}

.content-area ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.content-area li {
    padding: 2px 0 2px 20px;
    position: relative;
    color: #666;
    line-height: 1.4;
}

.content-area li:before {
    content: "•";
    color: #F88C44;
    position: absolute;
    left: 0;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin: 10px 0;
    line-height: 1.4;
}

/* Button Styles - shared CTA buttons */
.cta-button {
    display: inline-block;
    background: #F88C44;
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button.white {
    background: white;
    color: #F88C44;
}

/* Card Styles - for team, testimonials, etc. */
.card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Grid Layouts - common grid patterns */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

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

/* Responsive grid adjustments */
@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .large-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

.brand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.75rem;
    height: 600px;
}

a.brand-item,
.brand-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.brand-tall {
    grid-row: 1 / 3;
}

.brand-stack {
    display: contents;
}

.brand-stack .brand-item:first-child {
    grid-column: 2;
    grid-row: 1;
}

.brand-stack .brand-item:last-child {
    grid-column: 2;
    grid-row: 2;
}

.brand-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

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

.brand-item .brand-label {
    position: absolute;
    bottom: 0;
    left: 0;
    top: auto;
    right: auto;
    transform: none;
    z-index: 10;
    color: #2B2B2B;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.4rem 0.8rem;
    border-radius: 0;
    display: inline-block;
    margin: 0;
}

/* Popular Collections */
.popular {
    padding: 4rem 0;
    background: #fff;
    clear: both;
    position: relative;
    z-index: 1;
}

.popular .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.product-card h3 {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #2B2B2B;
    line-height: 1.3;
}

.product-price {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}

.price-current {
    font-size: 1rem;
    font-weight: 600;
    color: #FF6B35;
}

.price-original {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

.view-all img {
    cursor: pointer;
    height: 45px;
    width: auto;
}

/* Dealer Section - Shared Component */
#dealer {
    background: #FFF4ED;
    padding: 80px 0 0 0;
}

.dealer-layout {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    align-items: center;
    gap: 40px;
}

.people-left img,
.people-right img {
    width: 100%;
    height: auto;
}

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

.dealer-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.1;
}

.dealer-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.dealer-content a {
    display: inline-block;
    background: #F88C44;
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Features Bar */
.features-bar {
    background: #000000;
    padding: 3.75rem 0;
    margin-top: 0;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #fff;
    flex: 1;
    padding: 0 2rem;
    position: relative;
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 35px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.feature-item img {
    width: 28px;
    height: 28px;
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
    font-weight: 500;
}

.feature-item p {
    font-size: 0.7rem;
    opacity: 0.7;
    line-height: 1.3;
}

/* Stand Out Section */
.stand-out {
    padding: 4rem 0;
}

.stand-out-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-icons-left,
.feature-icons-right {
    display: grid;
    gap: 0;
}

.feature-icon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 1rem;
}

.feature-icon:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.feature-icon img {
    width: 28px;
    height: 28px;
    margin-bottom: 0.75rem;
}

.feature-icon h4 {
    font-size: 0.95rem;
    color: #2B2B2B;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.feature-icon p {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
    font-weight: 400;
}

.stand-out-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

/* Two Products */
.two-products {
    padding: 4rem 0;
}

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

.product-showcase {
    text-align: left;
    padding: 0;
}

.product-showcase > img:first-child {
    width: 100%;
    height: auto;
    border-radius: 0;
    margin-bottom: 1rem;
}

.product-showcase h3 {
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    color: #2B2B2B;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.product-showcase p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.shop-button {
    cursor: pointer;
    height: 45px;
    width: auto;
    display: block;
}

/* Crafted Section */
.crafted {
    padding: 5rem 0;
    background: #FFF6ED;
}

/* Crafted title styles moved to unified section above */

.crafted-content {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.crafted-left {
    display: flex;
    justify-content: center;
}

.crafted-illustration {
    width: 100%;
    max-width: 350px;
    height: auto;
}

.crafted-right {
    padding-right: 2rem;
}

.crafted-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #6B6B6B;
    margin-bottom: 3rem;
}

.crafted-quote {
    padding-left: 2rem;
    border-left: 3px solid #F88C44;
}

.quote-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #F88C44;
    font-style: italic;
    margin-bottom: 1rem;
}

.quote-author {
    font-size: 1rem;
    color: #6B6B6B;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: #FFF4ED;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.cta-images-left,
.cta-images-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-images-left {
    left: 0;
}

.cta-images-right {
    right: 0;
}

.cta-images-left img,
.cta-images-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    padding: 0 260px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    color: #2B2B2B;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #6B6B6B;
    margin-bottom: 2rem;
}

/* Duplicate .cta-button removed - using the shared one above with 8px border-radius */

.cta-note {
    margin-top: 2rem;
    font-size: 1rem;
    color: #6B6B6B;
    line-height: 1.6;
}

/* Get Inspired (if still needed) */
.inspired {
    padding: 4rem 0;
}

.inspired-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.carousel-controls {
    display: flex;
    gap: 1rem;
}

.carousel-prev,
.carousel-next {
    width: 48px;
    height: 48px;
    border: 2px solid #D4A574;
    background: #fff;
    color: #D4A574;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #D4A574;
    color: #fff;
}

.inspired-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #D4A574 #f0f0f0;
}

.inspired-carousel::-webkit-scrollbar {
    height: 8px;
}

.inspired-carousel::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.inspired-carousel::-webkit-scrollbar-thumb {
    background: #D4A574;
    border-radius: 4px;
}

.inspired-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s;
}

.inspired-item {
    flex: 0 0 calc(23.5% - 1.2rem);
}

.inspired-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
}

/* Newsletter Section */
.newsletter {
    background: #FFF6ED;
    padding: 4rem 0;
}

.newsletter-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 0.8fr 1.7fr;
    gap: 0;
    position: relative;
}

.newsletter-left {
    background: #FFF6ED;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2.25rem 3rem;
}

.brand-name {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: #FF6100;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.brand-phone {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.brand-social {
    display: flex;
    gap: 0.75rem;
}

.brand-social img {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

.newsletter-right {
    background: #F88C44;
    padding: 2.25rem 3rem;
    color: #fff;
    display: flex;
    align-items: center;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-text {
    flex-shrink: 0;
}

.newsletter h2 {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.newsletter p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: none;
}

.newsletter-form input {
    padding: 0.75rem 1.2rem;
    border: none;
    background: #fff;
    font-size: 0.9rem;
    color: #333;
    width: 280px;
    flex: none;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: #000;
    color: #fff;
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Footer */
.footer {
    background: #FFF6ED;
    color: #2C2C2C;
    padding: 3rem 0 1.5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: #E8A87C;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.footer-phone {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

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

.footer-social img {
    width: 18px;
    height: 18px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-social a:hover img {
    opacity: 1;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: #333;
    text-transform: uppercase;
}

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

.footer-column li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #E8A87C;
}

.footer-bottom {
    background: #fff;
    width: 100%;
    padding: 20px 0;
    margin: 0;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .brand-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .brand-tall {
        grid-row: span 1;
        height: 250px;
    }
    
    .brand-stack {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stand-out-content {
        grid-template-columns: 1fr;
    }
    
    .products-row {
        grid-template-columns: 1fr;
    }
    
    .inspired-item {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

/* Tablet breakpoint - 992px */
@media (max-width: 992px) {
    .newsletter-container {
        grid-template-columns: 1fr;
    }
    
    .newsletter-right {
        padding: 2rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .newsletter-text {
        text-align: center;
    }
    
    .newsletter-text h2 {
        margin-bottom: 0.5rem;
    }
    
    .newsletter-form {
        justify-content: center;
    }
}

/* Mobile breakpoint - 580px */
@media (max-width: 580px) {
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* Enhanced Product Card Styles for Dynamic Loading */
.product-card {
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 10px;
    box-sizing: border-box;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.price-current {
    font-size: 1.1rem;
    font-weight: 600;
    color: #F88C44;
}

.price-original {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.loading-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-style: italic;
}
