/* =========================================
   PREMIUM CATEGORY GRID REDESIGN
   ========================================= */

html,
body {
    overflow-x: hidden !important;
    /* Force no horizontal scroll */
    max-width: 100vw !important;
    width: 100% !important;
    position: relative;
    background-color: #FAF8F5;
    background-image: url('assets/images/seamless_light_wood_bg.png');
    background-repeat: repeat;
    background-size: 500px;
}

/* =========================================
   REBRANDING ADJUSTMENTS (Long Name Fixes)
   ========================================= */
.logo-text {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    /* Increased from 1.2rem */
    line-height: 1.2 !important;
    max-width: 300px;
    /* Force wrapping if needed */
    display: inline-block;
    text-align: left;
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem !important;
        /* Smaller for mobile */
        max-width: 150px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 900px) {
    .search-box {
        display: none !important;
        /* Hide Search on Mobile to prevent overflow */
    }

    .header-content {
        padding: 0 15px !important;
        /* Reduce horizontal padding */
        width: 100% !important;
        justify-content: space-between !important;
    }

    .icon-btn {
        font-size: 1.1rem !important;
        /* Smaller icons */
        padding: 5px !important;
    }
}



#categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* Mobile Menu Visibility Control */
.mobile-menu-btn {
    display: none;
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: block !important;
    }

    nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    nav.active {
        transform: translateY(0);
    }
}

/* 2. Card Architecture */
.category-card {
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: #000;
    box-shadow: var(--shadow-md);
    padding: 0 !important;
    border: none !important;
}

.category-card:hover {
    box-shadow: var(--shadow-hover);
}

/* 3. Background Image Layer (New Structure) */
.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.95;
    z-index: 1;
}

.category-card:hover .category-bg {
    transform: scale(1.1);
    /* Smooth zoom */
    opacity: 0.8;
    /* Darken slightly */
}

/* 4. Text Overlay & Typography */
.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    pointer-events: none;
}

.category-info h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #fff !important;
}

.category-info p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 300;
    max-width: 90%;
    line-height: 1.5;
}

.category-card:hover .category-info {
    transform: translateY(0);
}

/* 5. Explore Link */
.explore-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.category-card:hover .explore-link {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   INNER PAGE HEADERS (Page Hero)
   ========================================= */
.page-header {
    margin-top: 80px;
    /* Header offset */
    padding: 6rem 0;
    background-color: var(--primary);
    background-image:
        linear-gradient(rgba(44, 30, 26, 0.9), rgba(44, 30, 26, 0.9)),
        url('assets/images/wood-texture-bg.jpg');
    /* Fallback/Blend */
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}


/* =========================================
   SIDEBAR & MODALS (UX Polish)
   ========================================= */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    background: var(--primary);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    color: white;
    margin: 0;
    font-size: 1.25rem;
}

.cart-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.cart-close:hover {
    transform: rotate(90deg);
    color: var(--accent);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cart-footer {
    padding: 2rem;
    background: var(--bg-soft);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}


/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 30, 26, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================
   PRODUCT DETAIL PAGE
   ========================================= */
.product-details-section {
    padding: 4rem 0;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 900px) {
    .product-container {
        grid-template-columns: 1fr;
    }
}

.product-gallery {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Thumbnails */
.thumbnail-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.2s;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--accent);
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Column */
.product-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.features-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list i {
    color: var(--accent);
}

.moq-badge {
    display: inline-block;
    background: var(--bg-soft);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 1rem;
    color: var(--text-muted);
}

/* =========================================
   EMERGENCY LAYOUT FIXES
   ========================================= */

/* 1. Global WhatsApp Fix */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 9999 !important;
}

/* 2. Mobile Layout Restorations */
@media (max-width: 900px) {

    /* Force 2-column grid on mobile */
    #categories-grid,
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .category-card {
        height: 150px !important;
        /* Smaller Height */
    }

    .category-info {
        padding: 0.8rem !important;
        /* Tighter padding */
    }

    .category-image {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .category-info h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0 !important;
        line-height: 1.2;
    }

    .category-info p {
        display: none !important;
    }

    .product-image {
        height: 120px !important;
        /* Smaller Product Image */
    }

    .product-info {
        padding: 0.8rem !important;
    }

    .product-info h3 {
        font-size: 0.9rem !important;
    }

    /* Fix Hero Distortion */
    .hero-content {
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }


    .hero-text h1 {
        font-size: 2rem !important;
    }
}

/* =========================================
   3. WHY PARTNER WITH US (Features) FIX
   ========================================= */
.features {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/wood-texture-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 6rem 0;
    position: relative;
    z-index: 5;
    isolation: isolate;
}

.features .section-header h2,
.features .section-header p {
    color: white !important;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem !important;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        /* Force 2 columns */
        gap: 1rem !important;
        /* Tighter gap */
    }

    .feature-item {
        padding: 1rem !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .feature-item h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.2rem !important;
    }

    .feature-item p {
        display: none !important;
        /* Hide description to fit */
    }

    .feature-icon {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
}

.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);
    text-align: center;
    transition: transform 0.3s;
}

.feature-item:hover {
    background: white;
    color: var(--text-main);
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.feature-item:hover h3,
.feature-item:hover p {
    color: var(--text-main);
}

/* =========================================
   4. HERO SECTION FIX
   ========================================= */
.hero {
    position: relative;
    padding: 8rem 0 5rem;
    background: transparent;
    /* Use body texture */
    overflow: hidden;
    margin-top: -80px;
}

/* Background Blob/Decoration Simulation */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(230, 200, 180, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem !important;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-text .highlight {
    color: var(--primary);
    font-style: italic;
    font-family: var(--font-heading);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    border: 8px solid white;
}

.hero-card img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.hero-card:hover img {
    transform: scale(1.05);
}

/* Stack on Mobile (Preserved from earlier fix) */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 2rem !important;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 2.5rem !important;
    }

    .hero-text p {
        margin: 0 auto 1.5rem;
    }

    .hero-card {
        max-width: 100%;
        transform: rotate(0);
    }

    /* Re-align buttons for mobile center */
    .hero-text div[style*="display: flex"] {
        justify-content: center;
    }
}

/* =========================================
   5. OUR STORY MOBILE FIX
   ========================================= */
@media (max-width: 900px) {

    /* Target the parent container of the about section */
    .about-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem !important;
        padding-top: 0 !important;
    }

    /* Reset text side */
    .about-text {
        width: 100% !important;
        order: 1;
        /* Text first */
        text-align: center;
    }

    .stat-row {
        justify-content: center;
    }

    .signature-block {
        margin: 2rem auto 0;
    }

    /* Fix Image Visibility */
    .about-image {
        width: 100% !important;
        height: auto !important;
        min-height: 300px !important;
        order: 2;
        /* Image second */
        display: block !important;
        position: relative !important;
        margin-top: 2rem;
    }

    /* Force image to show */
    .about-image img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        object-fit: cover;
    }

    .about-image-wrapper {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}

/* =========================================
   6. WHATSAPP BUTTON FIX
   ========================================= */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    background: #25D366 !important;
    color: white !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 30px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
    z-index: 9999 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E !important;
    color: white !important;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
}

/* =========================================
   7. PREMIUM PRODUCT CARD REDESIGN
   ========================================= */
.product-card {
    background: #fff;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft premium shadow */
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 300px;
    /* Fixed height for consistency */
    width: 100%;
    background: #f8f8f8;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
    /* Sophisticated slow zoom */
}

/* Badge Styling */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    color: var(--primary);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    /* Pushes button to bottom if needed */
    display: flex;
    flex-direction: column;
    text-align: center;
    /* Boutique alignment */
}

.product-info h3 {
    margin-bottom: 0.5rem;
}

.product-info h3 a {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-info h3 a:hover {
    color: var(--accent);
}

/* Rating Stars */
.product-rating {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #FFD700;
    /* Gold */
}

.product-rating span {
    color: #ccc;
    font-size: 0.8rem;
    margin-left: 5px;
}

.product-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-family: var(--font-body);
}

/* Add to Quote Button */
.add-to-cart {
    width: 100%;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 12px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin-top: auto;
    /* Push to bottom */
}

.add-to-cart:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(44, 30, 26, 0.2);
}

/* Mobile Responsiveness for Products */
@media (max-width: 900px) {
    .section-header {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        overflow-wrap: break-word;
        /* Prevent text overflow */
    }

    .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
    }

    .about-image {
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 768px) {
    .product-image {
        height: 220px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-info h3 a {
        font-size: 1.1rem;
    }

    .product-info h3 a {
        font-size: 1.1rem;
    }
}

/* =========================================
   8. FOOTER COLOR UNIFICATION
   ========================================= */
footer,
.footer-section,
.footer-section p,
.footer-section a,
.footer-section li,
.footer-section h3,
.footer-bottom p {
    color: #FFFFFF !important;

    .footer-section a:hover {
        color: var(--accent) !important;
        opacity: 1 !important;
    }

    opacity: 1 !important;
}

/* =========================================
   MOBILE FIXES (Must be at end to override all other queries)
   ========================================= */
@media (max-width: 600px) {

    #categories-grid,
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 15px !important;
    }

    .category-card {
        height: 150px !important;
        min-height: 0 !important;
    }

    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
    }

    .hero-content {
        padding: 0 15px !important;
    }

    .hero-text h1 {
        font-size: 2rem !important;
    }

    .product-image {
        height: auto !important;
        max-height: 250px !important;
    }
}

/* =========================================
   9. TRENDY 3D HEADINGS (v77)
   ========================================= */
.section-header h2,
.about-text h2 {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    color: var(--primary);
    /* Default color */
    text-shadow:
        1px 1px 0 var(--accent),
        2px 2px 0 var(--accent),
        3px 3px 0 var(--accent),
        4px 4px 0 var(--accent),
        6px 6px 20px rgba(0, 0, 0, 0.15);
    transform: perspective(500px) rotateX(5deg);
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 1.5rem !important;
    letter-spacing: -1px;
}

.section-header h2:hover,
.about-text h2:hover {
    transform: perspective(500px) rotateX(5deg) translateY(-8px);
    text-shadow:
        1px 1px 0 var(--accent),
        2px 2px 0 var(--accent),
        3px 3px 0 var(--accent),
        4px 4px 0 var(--accent),
        5px 5px 0 var(--accent),
        6px 6px 0 var(--accent),
        7px 7px 0 var(--accent),
        8px 8px 0 var(--accent),
        12px 12px 30px rgba(0, 0, 0, 0.25);
}

/* Newsletter Heading (Dark Background Variation) */
.newsletter-content h2 {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-shadow:
        1px 1px 0 var(--accent),
        2px 2px 0 var(--accent),
        3px 3px 0 var(--accent),
        4px 4px 0 var(--accent),
        6px 6px 20px rgba(0, 0, 0, 0.5);
    /* Darker shadow */
    transform: perspective(500px) rotateX(5deg);
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 1.5rem !important;
    letter-spacing: -1px;
}

.newsletter-content h2:hover {
    transform: perspective(500px) rotateX(5deg) translateY(-8px);
    text-shadow:
        1px 1px 0 var(--accent),
        2px 2px 0 var(--accent),
        3px 3px 0 var(--accent),
        4px 4px 0 var(--accent),
        5px 5px 0 var(--accent),
        6px 6px 0 var(--accent),
        7px 7px 0 var(--accent),
        8px 8px 0 var(--accent),
        12px 12px 30px rgba(0, 0, 0, 0.6);
}

/* Mobile Adjustments for Headings */
@media (max-width: 768px) {

    .section-header h2,
    .about-text h2,
    .newsletter-content h2 {
        font-size: 2.5rem !important;
        text-shadow:
            1px 1px 0 var(--accent),
            2px 2px 0 var(--accent),
            4px 4px 10px rgba(0, 0, 0, 0.1) !important;
        transform: none !important;
        /* Flatten 3D on mobile */
        letter-spacing: normal;
    }

    .section-header h2:hover,
    .about-text h2:hover,
    .newsletter-content h2:hover {
        transform: translateY(-2px) !important;
        text-shadow:
            1px 1px 0 var(--accent),
            2px 2px 0 var(--accent),
            4px 4px 10px rgba(0, 0, 0, 0.2) !important;
    }
}

/* About Section Textured Background */
.about {
    background-color: #FAF8F5 !important;
    background-image: url('assets/images/artisan_pattern_light_bg.png') !important;
    background-repeat: repeat !important;
    background-size: 400px !important;
    position: relative;
    z-index: 10;
    isolation: isolate;
    padding-top: 8rem !important;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.specs-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table td:first-child {
    width: 40%;
    color: var(--text-muted);
}

/* Care List */
.care-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.care-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.care-list li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}