:root {
    --bg-white: #ffffff;
    --text-black: #000000;
    --text-grey: #666666;
    --btn-black: #000000;
    --border-color: #eeeeee;
    --bg-light-grey: #f4f4f4;
    --bg-soft-blue: #e0f7fa;
    /* For Mobile Card */
    --bg-soft-pink: #e6c2c2;
    /* For Map Card - matching 'Lighthearted Art' */
    --header-height: 120px;
}

body.single-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.single-page .site-footer {
    display: block;
}


body.single-page .promo-grid {
    flex: 1;
    min-height: calc(100vh - var(--header-height));
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
}


body.single-page .site-header {
    margin-bottom: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-white);
    color: var(--text-black);
}

/* Header */
.site-header {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    background: #fff;
}

.header-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    /* Fab uses bold sans like this */
    letter-spacing: -1px;
}

/* Page Header (Gray Background) */
.page-header {
    background-color: #f8f8f8;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 0;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    color: #666;
    font-family: 'Outfit', sans-serif;
}

/* Header Bottom / Nav */
.header-bottom {
    border-top: 1px solid #eee;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 0;
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 10px 0;
    text-align: left;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #000;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 40px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 0.9rem;
    color: #666;
}

.search-bar i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.user-nav a {
    color: #333;
    text-decoration: none;
    margin-left: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 15px 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
}

.main-nav a.red-text {
    color: #e74c3c;
}

/* Main Grid */
.promo-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
}

/* Base Promo Card */
.promo-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    /* Default layout inside card */
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-text {
    flex: 1;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.card-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-black);
}

.card-text p {
    font-family: 'Playfair Display', serif;
    /* Serif for subhead "Furniture By Fab" style */
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 25px;
    font-style: italic;
}

.btn-black {
    display: inline-block;
    background: #000;
    color: #fff !important;
    /* Force white text */
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-black:hover {
    background: #333;
    color: #fff !important;
}

.btn-wapp {
    display: inline-block;
    background: #25D366;
    color: #fff !important;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-wapp:hover {
    background: #128C7E;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}


.btn-white {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #000;
}

.card-visual {
    flex: 1.2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-visual img {
    max-width: 85%;
    max-height: 280px;
    height: auto;
    object-fit: contain;
    transform: rotate(-5deg);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.promo-card:hover .card-visual img {
    transform: rotate(0deg) scale(1.05);
}

/* Specific Card Styles */

/* Tile 1: Sofa (Gray BG) */
.card-sofa {
    background-color: var(--bg-light-grey);
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

/* Tile 2: Mobile (Soft Blue/Green tint like Nordic Collection) */
.card-mobile {
    background-color: #dcedc8;
    /* Light greenish tint */
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.card-mobile .card-visual img {
    max-width: 80%;
    transform: rotate(8deg);
}

/* Tile 3: Appliances (Simple White/Gray or Image BG styling) */
.card-appliance {
    background-color: #fce4ec;
    /* Light pinkish bg */
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.card-appliance .card-visual img {
    max-width: 100%;
}

/* Tile 4: Map (Full fill) */
.card-map {
    background-color: var(--bg-soft-pink);
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    padding: 0;
    /* Remove padding for map to fill */
    position: relative;
}

.card-map .card-text.overlay-text {
    position: absolute;
    top: auto;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    width: auto;
    max-width: 300px;
    pointer-events: auto;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
    }

    .header-top {
        flex-direction: column;
        gap: 15px;
    }

    .search-bar {
        width: 100%;
        margin: 0;
    }
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown a {
    margin-left: 0 !important;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 280px;
    /* Increased length/width as requested */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 100;
    top: 100%;
    left: 0;
    border: 1px solid #eee;
    padding: 10px 0;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    margin-left: 0;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: #000;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.nav-dropdown:hover {
    color: #000;
}

/* Category Page Grid */
.product-grid {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.product-item {
    text-align: center;
    border: 1px solid #eee;
    padding: 20px;
    transition: 0.3s;
}

.product-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.product-item img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.product-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.product-item p.price {
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.page-header {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Filter Tabs */
.category-tabs {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.tab-btn {
    padding: 10px 25px;
    border: 2px solid #ccc;
    background: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Shop Sidebar Layout */
.shop-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    padding: 20px;
    gap: 40px;
}

.shop-sidebar {
    flex: 0 0 250px;
    border-right: 1px solid #eee;
    padding-right: 20px;
}

.product-grid-refined {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    align-content: start;
}

.sidebar-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    display: inline-block;
}

.accordion-item {
    list-style: none;
    border-bottom: 1px solid #f0f0f0;
}

.accordion-header {
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

.accordion-header:hover {
    color: #000;
}

.accordion-body {
    display: none;
    list-style: none;
    padding-left: 10px;
    padding-bottom: 15px;
}

.accordion-body li {
    cursor: pointer;
    padding: 5px 0;
    color: #666;
    font-size: 0.9rem;
    transition: 0.2s;
}

.accordion-body li:hover {
    color: #000;
    transform: translateX(5px);
}

/* Contact Page Styles */
.contact-page-container {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    min-height: 600px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.contact-info {
    flex: 1;
    background: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map {
    flex: 1.5;
    background: #eee;
}

.elegant-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #000;
}

.elegant-subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #666;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 10px;
}

.info-block p {
    font-size: 1.2rem;
    color: #333;
}

.phone-link {
    font-size: 1.5rem;
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.phone-link:hover {
    border-bottom-color: #000;
}

.text-link {
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
}

.text-link:hover {
    text-decoration: underline;
}

.social-links a {
    font-size: 1.5rem;
    color: #000;
    margin-right: 20px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #666;
    transform: translateY(-3px);
    display: inline-block;
}

@media (max-width: 768px) {
    .contact-page-container {
        flex-direction: column;
    }

    .elegant-title {
        font-size: 2.5rem;
    }
}

/* Catalog Page Styles */
.catalog-container {
    max-width: 1000px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.catalog-controls {
    background: #f9f9f9;
    padding: 40px;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 50px;
}

.filter-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    user-select: none;
}

.checkbox-container input {
    margin-right: 10px;
    transform: scale(1.5);
    accent-color: black;
}

.catalog-print-area {
    width: 100%;
    border: 1px solid #eee;
    padding: 60px;
    background: white;
}

.print-header {
    text-align: center;
    margin-bottom: 50px;
    display: none;
}

.section-title {
    font-size: 1.5rem;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.catalog-item {
    text-align: center;
}

.catalog-item img {
    width: 100%;
    max-width: 150px;
    margin-bottom: 10px;
}

.print-footer {
    margin-top: 60px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #ccc;
    padding-top: 20px;
    display: none;
}

/* Layout Update: Catalog Builder */
.catalog-builder {
    display: flex;
    flex: 1;
    /* Fill remaining space */
    height: auto;
    max-height: none;
    overflow: hidden;
    background: #f0f2f5;
}

.builder-sidebar {
    flex: 0 0 300px;
    background: #fff;
    padding: 30px;
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    overflow-y: auto;
    max-height: 100%;
}

.builder-preview {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100%;
}

.sidebar-header h2 {
    font-family: 'Playfair Display';
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.control-group {
    margin-top: 40px;
}

.control-group h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 20px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox input {
    display: none;
}

.custom-checkbox .box {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: 0.2s;
    color: white;
}

.custom-checkbox input:checked+.box {
    background: black;
    border-color: black;
}

.control-actions {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.full-width {
    width: 100%;
    border-radius: 8px;
    justify-content: center;
}

.catalog-paper {
    width: 210mm;
    min-height: 297mm;
    background: white;
    padding: 20mm;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.preview-label {
    margin-bottom: 10px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* About Page Styles */
.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 20px;
}

.story-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding-bottom: 10px;
}

.about-content {
    text-align: left;
}

.story-block p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.drop-cap {
    float: left;
    font-size: 5rem;
    line-height: 0.8;
    margin-right: 15px;
    margin-top: 5px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.story-quote {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-style: italic;
    color: #000;
    margin: 50px 0;
    text-align: center;
    border-left: 3px solid #000;
    padding-left: 20px;
    padding: 20px;
    background: #f9f9f9;
}

.about-signature {
    margin-top: 60px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

/* Blog Page Styles */
.blog-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    border: 1px solid #eee;
    transition: 0.3s;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-img {
    height: 250px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-img img {
    max-width: 80%;
    height: auto;
    transition: 0.3s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-cat {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 15px;
    display: block;
}

.blog-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.blog-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.read-more {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
}

.check-price {
    text-decoration: none;
    color: #e67e22;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Nav Hover Effects */
.main-nav a {
    position: relative;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #000;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Reset for Dropdown Links */
.main-nav .dropdown-content a {
    display: block;
    /* Force vertical stacking */
    width: 100%;
}

.main-nav .dropdown-content a::after {
    display: none;
    /* Remove underline effect for dropdown items */
}

.main-nav .dropdown-content a:hover {
    background-color: #f9f9f9;
    color: #000;
}

/* Single Page About Us Styles */
body.about-page {
    height: auto;
    overflow: visible;
    display: block;
}

body.about-page .site-header {
    margin-bottom: 0;
    flex: 0 0 auto;
}

.about-split-layout {
    display: flex;
    min-height: 80vh;
}

.about-text-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    position: relative;
}

.about-scroll-wrapper {
    overflow-y: auto;
    padding-right: 20px;
    max-height: calc(100vh - 200px);
    scrollbar-width: thin;
}

.about-visual-section {
    flex: 1;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-hero-img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.about-visual-section:hover .about-hero-img {
    transform: rotate(0deg) scale(1.05);
}

.about-story-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: left;
}

/* Frosty Green Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(192, 233, 59, 0.3);
    border-radius: 50%;
    border-top-color: #C0E93B;
    animation: spin 1s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(192, 233, 59, 0.5);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================
   SHOP PAGE STYLES (Mobiles, etc.)
   ========================================= */
.shop-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    min-height: 80vh;
}

.shop-sidebar {
    flex: 0 0 250px;
    /* Fixed width sidebar */
    position: sticky;
    top: 20px;
    height: fit-content;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #000;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: #666;
}

.accordion-body {
    display: none;
    /* Hidden by default */
    list-style: none;
    padding-bottom: 15px;
}

.accordion-body li {
    padding: 8px 0;
    color: #666;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.95rem;
}

.accordion-body li:hover {
    color: #000;
    padding-left: 5px;
}

/* Refined Product Grid */
.product-grid-refined {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-item {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.product-item:hover img {
    transform: scale(1.05);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.product-item h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.product-item .price {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: block;
}

.product-item .btn-black {
    width: 100%;
    text-align: center;
}

/* New Arrivals Specific */
/* Marquee / Slider Styles */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.slide-item {
    flex: 0 0 280px;
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.slide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.slide-item img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.slide-item h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.view-all-link {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.view-all-link:hover {
    border-bottom: 2px solid #000;
}

/* Fix product grid selector to work in latest-section too */
.new-arrivals .product-grid-refined,
.latest-section .product-grid-refined {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px;
    width: 100%;
}

.new-arrivals .product-grid-refined {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px;
    width: 100%;
}

@media (max-width: 1200px) {
    .new-arrivals .product-grid-refined {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .new-arrivals .product-grid-refined {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .new-arrivals .product-grid-refined {
        grid-template-columns: 1fr;
    }
}

/* MEGA FOOTER */
.site-footer {
    background-color: #0c0c0c;
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: 60px !important;
    font-size: 0.8rem;
    border-top: 4px solid #000;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 15px;
}

.footer-column {
    flex: 1;
    min-width: 120px;
}

.footer-column.brand-col {
    flex: 1.8;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
    color: #fff;
}

.footer-logo {
    height: 50px !important;
    width: auto !important;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-brand:hover .footer-logo {
    transform: scale(1.1);
}

.footer-brand span {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-column p {
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.footer-column h4 {
    color: #fff;
    font-size: 0.85rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 4px;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.8rem;
}

.footer-column ul li a:hover {
    color: #fff;
    padding-left: 8px;
    text-decoration: underline;
}

.contact-col p i {
    margin-right: 10px;
    color: #fff;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #222;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: #fff;
    color: #000;
}

.footer-bottom {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #222;
    text-align: center;
    color: #666;
    font-size: 0.75rem;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Specific Page adjustments */
.about-footer {
    padding: 40px 0 20px;
    background: #f9f9f9;
    color: #333;
    border-top: 1px solid #eee;
}

.about-footer .footer-logo {
    filter: none;
}

.about-footer .footer-column h4,
.about-footer p,
.about-footer a {
    color: #333;
}

.about-footer .footer-bottom {
    border-color: #ddd;
    color: #666;
}