﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Japandi / Earthy Luxury Palette */
    --primary: #2C2C2C;
    /* Soft Charcoal */
    --primary-light: #595959;
    /* Medium Grey */

    --accent: #D4A373;
    /* Warm Sand */
    --accent-hover: #A68A64;
    /* Antique Brass */

    /* Neutrals */
    --bg-body: #FAFAFA;
    /* Clean Off-White */
    --bg-surface: #FFFFFF;
    /* Pure White */
    --bg-soft: #F0F0F0;
    /* Very Light Grey */

    /* Text */
    --text-main: #1F1F1F;
    /* Deep Black/Grey */
    --text-muted: #757575;
    /* Muted Text */
    --text-light: #BDBDBD;
    /* Light Text */

    /* Metrics */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --header-height: 80px;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 30px -5px rgba(0, 0, 0, 0.1);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background: var(--primary);
    color: #fff;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    letter-spacing: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: var(--header-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

/* Typography Scale */
h1 {
    font-size: clamp(3rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.3rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Modern Glass Header */
header {
    background: rgba(255, 255, 255, 0.95);
    /* Less transparent for cleaner look */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    /* Added soft shadow for depth */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1440px;
    /* Ensure content constraint match container */
    margin: 0 auto;
    padding: 0 40px;
    /* Add internal padding constraints */
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    /* Slightly larger */
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
    line-height: 1;
}

/* Modern Nav */
nav ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    font-weight: 400;
    font-size: 1rem;
    color: var(--text-main);
    position: relative;
    padding-bottom: 4px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-btn {
    background: transparent;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text-main);
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.icon-btn:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--accent);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-soft);
    padding: 8px 20px;
    border-radius: 50px;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    width: 180px;
}

/* Components: Buttons & Cards */
.btn,
.cta-button,
button {
    font-family: var(--font-body) !important;
    text-transform: none;
    /* Removed harsh uppercase */
    letter-spacing: 0.02em;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: var(--primary);
    color: white;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background: black;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Sections Common */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    display: block;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}



/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.category-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    text-align: center;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    width: 90px;
    height: 90px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2.2rem;
    transition: var(--transition);
}

.category-card:hover .category-image {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.category-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Featured Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 320px;
    background: var(--bg-soft);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    color: var(--text-main);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-info h3 a {
    color: var(--text-main);
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.stars {
    color: var(--accent);
}

.product-price {
    display: none;
}

/* Hidden for B2B/Quote */

.add-to-cart {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: var(--text-main);
    color: white;
    border: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart:hover {
    background: var(--accent);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 0;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    padding: 1.5rem;
    border-left: 2px solid var(--accent);
    /* Simple clean line */
    background: var(--bg-body);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.signature-block {
    margin-top: 3rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Newsletter */
.newsletter {
    background: var(--primary);
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: white;
    padding: 12px 24px;
    flex: 1;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    background: var(--accent);
    border: none;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: white;
    color: var(--primary);
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
        width: 100%;
    }

    .header-content {
        padding: 0 1.5rem;
        gap: 15px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .search-box {
        display: none;
        /* Hidden by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        border-radius: 0;
        padding: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        justify-content: center;
    }

    .search-box.active {
        display: flex;
    }

    .search-box input {
        width: 100%;
        border: 1px solid #eee;
        padding: 10px;
        border-radius: 4px;
    }

    /* Force 1 column grids */
    .products-grid,
    .categories-grid,
    .details-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 15px;
    }

    .newsletter-form input {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        width: 100%;
        text-align: center;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Mobile Search Button */
.mobile-search-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text-main);
    padding: 8px;
}

@media (max-width: 768px) {
    .mobile-search-btn {
        display: block;
    }

    /* Ensure no horizontal overflow */
    body {
        overflow-x: hidden;
        width: 100%;
    }
}

/* Footer */
footer {
    background: #1F1815;
    /* Even darker walnut for footer */
    color: white;
    padding-top: 6rem;
    border-top: 4px solid var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(62, 39, 35, 0.8);
    /* Dark walnut overlay */
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-modal {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-sm);
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--accent);
}

.modal-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.modal-input,
.modal-textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.modal-input:focus,
.modal-textarea:focus {
    border-color: var(--accent);
}

.modal-textarea {
    min-height: 100px;
    resize: vertical;
}

.success-modal h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

.whatsapp-btn {
    background: #25D366;
    /* WhatsApp Green */
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
}

.modal-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 40px;
    margin-top: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
}

.modal-btn:hover {
    background: var(--accent);
}

/* Cart Sidebar */
.cart-sidebar {
    background: #FAF8F5;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    z-index: 2000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    padding: 24px;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background: white;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
}

.cart-footer {
    padding: 24px;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: white;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background: var(--primary);
}

/* Optimized Notification Toast */
.notification-toast {
    position: fixed;
    top: 100px;
    /* Below header */
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    /* Transparent / Glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    /* Pill shape */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    border-left: 4px solid var(--accent);
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Subtle border for glass look */
    animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   3D Carousel Styles (Swiper Overrides)
   ========================================= */
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    perspective: 1200px;
    /* Force deep perspective */
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .cart-sidebar {
        width: 100%;
        max-width: 320px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 4rem 2rem;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Section Dividers */
.section-divider {
    width: 100%;
    height: 40px;
    background-repeat: repeat-x;
    background-position: center;
    background-size: contain;
    opacity: 0.15;
    margin: -20px 0 40px;
    position: relative;
    z-index: 2;
}

.divider-wave {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox=%220 0 1200 120%22 preserveAspectRatio=%22none%22 xmlns=%22http://www.w3.org/2000/svg%22><path d=%22M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z%22 fill=%22%233E2723%22></path></svg>');
}


.highlight {
    color: var(--accent);
    font-style: italic;
}

/* Product Page Specific Styles */
.product-details-section {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--bg-body);
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.product-gallery img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(62, 39, 35, 0.05);
}

.thumbnail-grid {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
}

.thumbnail.active,
.thumbnail:hover {
    opacity: 1;
    border-color: var(--accent);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.product-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.features-list li i {
    color: var(--accent);
}

.moq-badge {
    background: var(--bg-soft);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 15px;
    vertical-align: middle;
}

@media (max-width: 968px) {
    .product-container {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: static;
    }
}

/* Premium Features Section (Why Partner With Us) */
.features {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(rgba(31, 24, 21, 0.95), rgba(31, 24, 21, 0.98)), url('assets/images/wood-texture-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

/* Abstract Wood Grain Overlay */
.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.features .section-header h2 {
    color: white;
    font-size: 3.5rem;
}

.features .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    /* Glassmorphism Base */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-item::after {
    /* Shine Effect */
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.feature-item:hover::after {
    left: 150%;
    transition: 0.7s ease-in-out;
}

.feature-item:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #8B6914 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
}

.feature-item h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features .section-header h2 {
        font-size: 2.5rem;
    }
}

/* --- Hero Section Redesign --- */
.hero {
    background: url('assets/images/hero-image.jpg') center/cover no-repeat;
    position: relative;
    min-height: 100vh;
    margin-top: 0;
    padding-top: 0;
    /* Handled by body padding */
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: block;
    /* Override grid */
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text h1 {
    color: white;
    font-size: 5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.hero-text h1 span.highlight {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.hero-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    max-width: 700px;
}

.hero-image-wrapper {
    display: none;
}

/* Premium Buttons */
.cta-button {
    background: var(--accent);
    color: white;
    border: 1px solid var(--accent);
    padding: 16px 40px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    border-radius: 2px;
    position: relative;
    transition: all 0.4s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.cta-button.btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.cta-button.btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* --- Categories (Art Gallery Style) --- */
.categories {
    background: #F9F9F9;
    padding: 8rem 0;
}

.categories .section-header h2 {
    color: var(--primary);
    font-size: 3.5rem;
}

.categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.category-card {
    height: 450px;
    padding: 0;
    border: none;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: transform 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.category-card:hover::before {
    opacity: 1;
    background: linear-gradient(to top, rgba(62, 39, 35, 0.9) 0%, rgba(62, 39, 35, 0.4) 100%);
}

.category-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: none;
    border-radius: 0;
    margin: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image i {
    font-size: 10rem;
    color: rgba(62, 39, 35, 0.1);
    transition: all 0.5s ease;
}

.category-card:hover .category-image i {
    transform: scale(1.2);
    color: rgba(255, 255, 255, 0.1);
}

.category-image img.icon-img {
    width: 60%;
    height: auto;
    opacity: 0.2;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.category-card:hover .category-image img.icon-img {
    opacity: 0.15;
    transform: scale(1.1);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    text-align: left;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.category-card:hover .category-info {
    transform: translateY(0);
}

.category-info h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.category-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.category-card:hover .category-info p {
    opacity: 1;
    transform: translateY(0);
}

/* --- Featured Products (Museum Style) --- */
.products {
    background: white;
    padding: 8rem 0;
}

.product-card {
    border: none;
    border-radius: 2px;
    box-shadow: none;
    transition: all 0.4s ease;
    background: white;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-image {
    height: 380px;
    background: #F5F5F5;
    border-radius: 2px;
}

.product-info {
    text-align: left;
    padding: 1.5rem 0.5rem;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    letter-spacing: 0.02em;
}

.product-info h3 a {
    color: var(--text-main);
    background-image: linear-gradient(var(--accent), var(--accent));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size .3s;
}

.product-card:hover .product-info h3 a {
    background-size: 100% 1px;
}

.product-rating {
    justify-content: flex-start;
}

.add-to-cart {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 20px;
    margin-top: 10px;
    width: auto;
    font-size: 0.75rem;
}

.add-to-cart:hover {
    background: var(--primary);
    color: white;
}

/* --- Newsletter (Texture) --- */
.newsletter {
    background: linear-gradient(rgba(31, 24, 21, 0.9), rgba(31, 24, 21, 0.9)), url('assets/images/wood-texture-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    border-top: 4px solid var(--accent);
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    /* Global Safety */
    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative;
    }

    /* Container Fix */
    .container {
        padding: 0 15px !important;
        width: 100% !important;
        overflow: hidden;
    }

    /* Header Fixes */
    .header-content {
        padding: 0 10px !important;
        gap: 10px;
        justify-content: space-between;
    }

    /* Mobile Menu - Drawer Style */
    nav {
        position: fixed;
        /* Fixed to viewport */
        top: 60px;
        /* Below header */
        left: 0;
        width: 100%;
        background: white;
        padding: 2rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        /* Hidden by default */
        transition: transform 0.3s ease;
        z-index: 998;
        display: block !important;
        /* Ensure element exists */
    }

    nav.active {
        transform: translateY(0);
        /* Slide down */
    }

    nav ul {
        display: flex !important;
        /* Restore flex */
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        width: 100%;
    }

    nav a {
        display: block;
        font-size: 1.2rem;
        color: var(--primary);
        font-weight: 500;
        padding: 10px;
    }

    /* Show Hamburger Button */
    .mobile-menu-btn {
        display: block !important;
        font-size: 1.5rem;
        padding: 5px;
        color: var(--primary);
        background: none;
        border: none;
        cursor: pointer;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .search-box {
        display: none !important;
        /* Keep search hidden on mobile for space */
    }

    /* Hero Fixes */
    .hero-text h1 {
        font-size: 2rem !important;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .hero-content {
        padding: 0;
        width: 100%;
    }

    /* Stack buttons vertical */
    .hero-text div[style*="display: flex"] {
        flex-direction: column !important;
        width: 100%;
        gap: 10px !important;
    }

    .cta-button {
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Grid Fixes */
    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .category-card {
        height: 200px !important;
    }

    .product-image {
        height: 160px !important;
    }

    .category-info {
        padding: 0.8rem !important;
    }

    .category-info h3 {
        font-size: 1.1rem !important;
    }

    .category-info p {
        display: none;
    }

    /* About Fixes */
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image img {
        width: 100%;
        height: auto;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Categories Fix (Images) --- */
.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: black;
    /* Fallback */
    overflow: hidden;
    border-radius: 4px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    opacity: 0.8;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
    opacity: 0.6;
}

/* Remove old icon styles if any conflict */
.category-image i {
    display: none;
}

.category-image img.icon-img {
    display: none;
}

.category-info {
    z-index: 2;
    /* Ensure on top of image */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    transform: translateY(0);
    /* Always visible */
    opacity: 1;
    /* Always visible */
}

/* Ensure text is clearly visible */
.category-info h3 {
    color: white;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.category-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    opacity: 0.8;
    transform: translateY(0);
}

.category-card:hover .category-info h3 {
    color: var(--accent);
}

.category-card:hover .category-info p {
    opacity: 1;
    color: white;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    /* Right side */
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: all 0.3s ease;
    text-decoration: none;
    /* Ensure no underline */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
    color: white;
}

/* --- Features Section (Why Partner With Us) --- */
.features {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/wood-texture-bg.jpg');
    /* Ensure this image exists or use a fallback */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 6rem 0;
}

.features .section-header h2,
.features .section-header p {
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-item:hover h3,
.feature-item:hover p {
    color: var(--text-main);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-item h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    transition: var(--transition);
}


/* --- Featured B2B Products Section --- */
.products {
    background-color: #FAF8F5;
    /* Light walnut/beige tint */
    color: var(--text-main);
}

.cta-button.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.cta-button.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
        width: 100%;
    }

    .header-content {
        padding: 0 1.5rem;
        gap: 15px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .search-box {
        display: none;
        /* Hidden by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        border-radius: 0;
        padding: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        justify-content: center;
    }

    .search-box.active {
        display: flex !important;
    }

    .search-box input {
        width: 100%;
        border: 1px solid #eee;
        padding: 10px;
        border-radius: 4px;
    }

    /* Force 1 column grids */
    .products-grid,
    .categories-grid,
    .details-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 15px;
    }

    .newsletter-form input {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        width: 100%;
        text-align: center;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Mobile Search Button */
.mobile-search-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text-main);
    padding: 8px;
}

@media (max-width: 768px) {
    .mobile-search-btn {
        display: block;
    }

    /* Ensure no horizontal overflow */
    body {
        overflow-x: hidden;
        width: 100%;
    }
}