/* ===================================
   AmazHub - Listee Template Style
   =================================== */

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

/* ===================================
   Reset & Global
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6B35;
    --secondary: #004E89;
    --dark: #1A1A2E;
    --text: #4A4A4A;
    --light-bg: #F7F9FC;
    --border: #E8ECF4;
    --white: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
}

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

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===================================
   Header Navigation
   =================================== */
.main-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
}

@media (max-width: 768px) {
    .main-header {
        padding: 10px 0;
    }

    .logo-text {
        font-size: 22px;
    }

    .btn-header {
        padding: 8px 16px;
        font-size: 13px;
    }

    .header-wrapper {
        padding: 0 15px;
    }

    .main-header .container {
        padding: 0;
    }

    /* Hide Contact Us button on mobile header */
    .btn-header {
        display: none;
    }
}

.main-header .container {
    max-width: 100%;
    padding: 0 40px;
}

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

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
}

.logo-accent {
    color: var(--primary);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

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

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    /* Expanded Width */
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    list-style: none;
    z-index: 1001;
    /* Ensure on top */
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    /* More padding */
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 28px;
    /* Slide effect */
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-header {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-header:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

.mobile-menu-close {
    display: none;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.hero-search {
    max-width: 650px;
    margin: 0 auto;
}

.search-wrapper {
    display: flex;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.search-icon {
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: var(--text);
    font-size: 18px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 10px;
    font-size: 15px;
}

.search-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 16px 35px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #e55a2b;
}

/* Responsive Search */
@media (max-width: 768px) {
    .search-wrapper {
        flex-direction: column;
        border-radius: 12px;
    }

    .search-icon {
        display: none;
    }

    .search-input {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .search-btn {
        width: 100%;
        padding: 12px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

.section-padding {
    padding: 60px 0;
}

.bg-light {
    background: var(--light-bg);
}

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

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text);
}

/* ===================================
   Category Grid
   =================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--primary), #ff8c5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
}

.category-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.category-count {
    font-size: 13px;
    color: var(--text);
}

/* ===================================
   Product Grid
   =================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper {
    position: relative;
    height: 200px;
    background: var(--light-bg);
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-category-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.product-info {
    padding: 18px;
}

.product-brand {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 44px;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
}

.product-price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.product-btn {
    display: block;
    width: 100%;
    padding: 11px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.product-btn:hover {
    background: #e55a2b;
}

/* ===================================
   Brand Grid
   =================================== */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 18px;
}

.brand-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    transition: all 0.3s;
}

.brand-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.brand-logo {
    max-width: 100%;
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.brand-card:hover .brand-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary), #0066b3);
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--secondary);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===================================
   SEO Content
   =================================== */
.seo-content-box {
    background: var(--white);
    border-radius: 10px;
    padding: 35px;
    border: 1px solid var(--border);
}

.seo-content-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 18px;
}

.seo-text {
    color: var(--text);
    line-height: 1.8;
}

.seo-text p {
    margin-bottom: 15px;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 80px 20px 20px;
        /* Top padding for close button space */
        z-index: 1002;
        overflow-y: auto;
    }

    .main-nav.active {
        left: 0 !important;
    }

    /* Backdrop */
    .main-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        pointer-events: none;
    }

    .main-nav.active::before {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        left: 280px;
        /* Offset by menu width so click closes it */
    }

    /* Close Button for Mobile Menu */
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        background: none;
        border: none;
        color: var(--dark);
        cursor: pointer;
        cursor: pointer;
        display: block;
        z-index: 2000;
        /* Ensure on top */
    }

    /* Hide border for the close button list item */
    .nav-menu li:first-child {
        border-bottom: none;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border);
        padding: 0;
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
    }

    .mobile-toggle {
        display: block;
        position: relative;
        z-index: 10001;
        /* Ensure above all other elements */
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 15px;
        background: #f9f9f9;
        display: none;
        /* Hidden by default on mobile */
        border: none;
    }

    .has-dropdown.active .dropdown-menu {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

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

    .product-grid {
        grid-template-columns: 1fr;
    }

    /* Limit logo size and layout on mobile */
    .logo {
        margin-left: 5px;
        /* Small left margin request */
    }

    /* Smaller User Logo on Mobile */
    .site-logo-img {
        max-height: 30px;
        /* Further reduced */
        width: auto;
    }

    /* Smaller text logo */
    .logo-text {
        font-size: 18px;
    }
}

/* ===================================
   Container Wide
   =================================== */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================
   Footer Redesign
   =================================== */
.site-footer {
    background: #1a1d2e;
    color: #b8bcc8;
    margin-top: 80px;
}

.footer-main {
    padding: 70px 0 50px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-col-large {
    padding-right: 30px;
}

.footer-brand .footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand .footer-logo span {
    color: var(--primary);
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #b8bcc8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 14px;
}

.footer-menu a {
    color: #b8bcc8;
    font-size: 15px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-menu a i {
    font-size: 10px;
    color: var(--primary);
}

.footer-menu a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-info i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-info strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-info span {
    display: block;
    font-size: 14px;
    color: #b8bcc8;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    margin: 0;
    color: #b8bcc8;
}

.footer-copyright strong {
    color: var(--white);
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 14px;
    color: #b8bcc8;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-col-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-col-large {
        grid-column: span 1;
        padding-right: 0;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .container-wide {
        padding: 0 20px;
    }
}

/* ===================================
   Product Detail Page (JustDial Style)
   =================================== */
.breadcrumb-bar {
    background: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}

.breadcrumb-nav a {
    color: var(--text);
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--primary);
}

.breadcrumb-nav i {
    font-size: 10px;
    color: #ccc;
}

.product-detail-page {
    padding: 30px 0 60px;
    background: #f8f9fa;
}

.product-layout {
    display: grid;
    grid-template-columns: 400px 1fr 350px;
    gap: 25px;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.main-image img {
    width: 100%;
    border-radius: 8px;
}

/* Product Info Main */
.product-info-main {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.brand-badge {
    display: inline-block;
    background: #e8f4ff;
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-subtitle {
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
}

.section-heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

/* Key Features */
.key-features {
    margin-bottom: 35px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: var(--text);
}

.features-list i {
    color: var(--primary);
    margin-right: 10px;
}

/* Specifications */
.specifications-section {
    margin-bottom: 35px;
}

.specs-table {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.spec-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid var(--border);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    background: #f8f9fa;
    padding: 14px 18px;
    font-weight: 500;
    color: var(--text);
    font-size: 14px;
}

.spec-value {
    padding: 14px 18px;
    color: var(--dark);
    font-size: 14px;
}

/* Description */
.description-section {
    margin-bottom: 20px;
}

.description-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
}

/* Buy Box (Sticky Sidebar) */
.product-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.buy-box {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary);
}

.price-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.current-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.price-details {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

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

.discount-badge {
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.savings-text {
    font-size: 14px;
    color: var(--success-color, #10B981);
    font-weight: 600;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.btn-primary-large {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary-large:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
}

/* Seller Info */
.seller-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.seller-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seller-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 4px;
}

.seller-location {
    font-size: 13px;
    color: var(--text);
}

.seller-location i {
    color: var(--primary);
    margin-right: 5px;
}

.btn-contact-seller {
    background: var(--white);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-contact-seller:hover {
    background: var(--primary);
    color: var(--white);
}

.view-all-sellers {
    display: block;
    text-align: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
}

/* Inquiry Modal */
.inquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.modal-box {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header-custom {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header-custom h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text);
    cursor: pointer;
    line-height: 1;
}

.inquiry-form {
    padding: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-submit-inquiry {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-inquiry:hover {
    background: #e55a2b;
}

/* Responsive */
@media (max-width: 1200px) {
    .product-layout {
        grid-template-columns: 350px 1fr 320px;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-gallery {
        position: static;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Move Sidebar below content */
    .product-sidebar {
        position: static;
        order: 1;
        /* Make it appear after gallery */
    }

    .product-info-main {
        order: 2;
    }
}

@media (max-width: 768px) {
    .product-gallery {
        max-width: 100%;
    }

    .spec-row {
        grid-template-columns: 1fr;
    }

    .spec-label {
        border-bottom: none;
        background: #f1f3f5;
        padding-bottom: 5px;
    }

    .spec-value {
        padding-top: 5px;
    }

    .product-title {
        font-size: 24px;
    }

    .current-price {
        font-size: 28px;
    }

    /* Responsive Modal */
    .modal-box {
        width: 95%;
        margin: 10px;
        max-height: 90vh;
    }
}

/* ===================================
   Category Page
   =================================== */
.category-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 0;
    color: var(--white);
}

.category-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-description {
    font-size: 16px;
    opacity: 0.9;
}

.category-page {
    padding: 40px 0;
    background: #f8f9fa;
}

.category-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.category-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-box {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.filter-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--text);
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s;
}

.filter-item:hover,
.filter-item.active {
    color: var(--primary);
    font-weight: 600;
}

.filter-count {
    background: #f0f0f0;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 13px;
    color: var(--text);
}

.products-header {
    margin-bottom: 25px;
}

.results-info {
    font-size: 15px;
    color: var(--text);
}

/* ===================================
   Search Page
   =================================== */
.search-header {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.search-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.search-form-inline {
    display: flex;
    max-width: 600px;
    gap: 10px;
}

.search-input-inline {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
}

.search-btn-inline {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn-inline:hover {
    background: #e55a2b;
}

.search-page {
    padding: 40px 0;
    background: #f8f9fa;
}

.search-results-header {
    margin-bottom: 25px;
}

.results-count {
    font-size: 16px;
    color: var(--text);
}

/* ===================================
   Dealers Page
   =================================== */
.dealers-header {
    background: linear-gradient(135deg, var(--secondary), #0066b3);
    padding: 50px 0;
    color: var(--white);
    text-align: center;
}

.dealers-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}

.dealers-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.dealers-page {
    padding: 40px 0;
    background: #f8f9fa;
}

.dealers-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-card i {
    font-size: 40px;
    color: var(--primary);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
}

.stat-label {
    font-size: 14px;
    color: var(--text);
}

.dealers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.dealer-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.dealer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.dealer-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dealer-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}

.dealer-badge {
    background: var(--success-color, #10B981);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.dealer-body {
    padding: 20px;
}

.dealer-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.dealer-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dealer-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}

.dealer-detail-item i {
    color: var(--primary);
    margin-top: 2px;
}

.dealer-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    display: flex;
    gap: 10px;
}

.dealer-btn {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.dealer-btn-call {
    background: var(--primary);
    color: var(--white);
}

.dealer-btn-call:hover {
    background: #e55a2b;
}

.dealer-btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.dealer-btn-whatsapp:hover {
    background: #1fb855;
}

/* ===================================
   Empty State
   =================================== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 992px) {
    .category-layout {
        grid-template-columns: 1fr;
    }

    .category-sidebar {
        position: static;
    }

    .dealers-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dealers-grid {
        grid-template-columns: 1fr;
    }

    .search-form-inline {
        flex-direction: column;
    }
}

/* ===================================
   Brand Page
   =================================== */
.brand-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: var(--white);
}

.brand-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.brand-logo-large {
    margin-bottom: 25px;
}

.brand-logo-large img {
    max-height: 100px;
    filter: brightness(0) invert(1);
    margin: 0 auto;
}

.brand-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.brand-description {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.brand-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.brand-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.brand-page {
    padding: 60px 0;
    background: #f8f9fa;
}

/* ===================================
   Improved Inquiry Modal (Minimalistic & Elegant)
   =================================== */
.inquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-box {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header-custom {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.modal-header-custom h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    padding-right: 30px;
    line-height: 1.4;
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #f0f0f0;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.inquiry-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit-inquiry {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit-inquiry:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn-submit-inquiry:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 32px;
    }

    .modal-box {
        max-width: 100%;
        margin: 0 15px;
    }

    .modal-header-custom,
    .inquiry-form {
        padding: 25px 20px;
    }
}

/* Breadcrumb in Banner */
.breadcrumb-nav-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.breadcrumb-nav-inline a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
}

.breadcrumb-nav-inline a:hover {
    color: var(--white);
}

.breadcrumb-nav-inline i {
    font-size: 10px;
}

.breadcrumb-nav-inline span {
    color: var(--white);
    font-weight: 500;
}

/* Product Page Header */
.product-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px 0;
}

/* Search Header - Breadcrumb in Banner */
.search-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 0;
    border-bottom: none;
    color: var(--white);
}

.search-title {
    color: var(--white);
    margin-bottom: 25px;
}

.search-form-inline {
    max-width: 600px;
}

.search-form-inline input {
    background: var(--white);
}

.search-form-inline button {
    background: var(--primary);
}

/* Dealers Header - Update to Purple Gradient */
.dealers-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}

/* Dealers Page - Remove Blue, Use Site Colors */
.dealers-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* Update any blue secondary colors to primary orange */
.product-category-badge {
    color: var(--primary) !important;
}

.spec-value {
    color: var(--dark) !important;
}

.product-price {
    color: var(--primary) !important;
}

/* ===================================
   Redesigned Inquiry Modal
   =================================== */
.inquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 29, 46, 0.7);
    backdrop-filter: blur(5px);
}

.modal-box {
    position: relative;
    background: #fff;
    width: 90%;
    /* Responsive width */
    max-width: 400px;
    /* Smaller width as requested */
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: translateY(0);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin: auto;
    /* Ensure centering */
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header-custom {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
}

.modal-header-custom h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: #dc3545;
}

.inquiry-form {
    padding: 20px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.2s;
    background: #fdfdfd;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.btn-submit-inquiry {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit-inquiry:hover {
    background: #e55a2b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 90, 43, 0.2);
}

/* ===================================
   Static Pages Redesign
   =================================== */
.static-page {
    padding: 60px 0;
    background: #fff;
}

.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin-bottom: 0;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 15px;
}

.breadcrumb-nav-inline {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.breadcrumb-nav-inline a {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumb-nav-inline span {
    color: #999;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

.page-content h1,
.page-content h2,
.page-content h3 {
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
}

/* ===================================
   Logo Sizing
   =================================== */
.site-logo-img {
    max-width: 200px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ===================================
   Toast Notification
   =================================== */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #fff;
    border-left: 5px solid var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 20px 25px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-width: 400px;
}

.toast-notification.active {
    transform: translateX(0);
}

.toast-icon {
    color: var(--primary);
    font-size: 24px;
}

.toast-content h4 {
    margin: 0 0 5px;
    font-size: 16px;
    color: var(--dark);
}

.toast-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.toast-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 14px;
}

/* ===================================
   Hero Section Enhancements
   =================================== */
.hero-section {
    position: relative;
    min-height: 500px;
    /* Increased Height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Maintain old gradient as fallback or overlay base if needed, 
       but if an image/video is present, we want to see it. 
       We'll use an overlay div for contrast. */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay for text readability */
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}