/* --- RESET & GLOBAL PREVENT OVERFLOW --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Prevents horizontal scroll bar */
    background-color: #f4f6f9;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- TOP BAR --- */
.top-bar {
    background-color: #111827;
    color: #e5e7eb;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid #374151;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: #f59e0b;
}

.top-links a {
    margin-left: 15px;
    color: #e5e7eb;
    transition: color 0.2s;
}

.top-links a:hover, .top-links .admin-btn {
    color: #f59e0b;
}

/* --- MAIN HEADER --- */
.main-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
	padding-bottom: 20px;
    padding-top: 20px;	
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: #f59e0b;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-menu a {
    font-weight: 600;
    font-size: 15px;
    color: #4b5563;
    transition: color 0.2s;
    padding: 5px 0;
}

.nav-menu a:hover {
    color: #f59e0b;
}

.header-actions {
    display: flex;
    gap: 18px;
    font-size: 18px;
    color: #111827;
    align-items: center;
}

.header-actions i:hover {
    color: #f59e0b;
    cursor: pointer;
}

/* Hamburger Mobile Toggle */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: #111827;
}

/* --- HERO SLIDER / BANNER (RESPONSIVE FIX) --- */
.hero-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}

.hero-slider {
    width: 100%;
}

.hero-slider .slide {
    display: none;
    width: 100%;
}

.hero-slider .slide.active {
    display: block;
}

.hero-slider .slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* --- FEATURES ICONS BAR --- */
.features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-box {
    background: #fff;
    padding: 18px 10px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.feature-box i {
    font-size: 24px;
    color: #f59e0b;
    margin-bottom: 8px;
}

.feature-box h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 3px;
}

.feature-box p {
    font-size: 12px;
    color: #6b7280;
}

/* --- PRODUCT GRID --- */
.section-heading {
    margin-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 20px;
    color: #111827;
    font-weight: bold;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.product-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.img-wrapper {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 6px;
    background: #f9fafb;
    margin-bottom: 10px;
}

.prod-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
}

.price-container {
    font-size: 16px;
    font-weight: bold;
    color: #10b981;
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE STYLES
   ========================================== */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .features-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none; /* Hide top bar on mobile */
    }

    .menu-toggle {
        display: block; /* Hamburger Button Visible */
    }

    /* Mobile Header Layout Adjustments */
    .header-inner {
        padding: 12px 15px;
    }

    /* Mobile Menu Drawer */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 15px 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        gap: 15px;
        align-items: flex-start;
        border-top: 1px solid #eee;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 8px 0;
        border-bottom: 1px solid #f3f4f6;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 products per row in mobile */
        gap: 10px;
    }

    .features-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-bar {
        grid-template-columns: 1fr;
    }
}

/* Dropdown Container */
.nav-menu li.dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 11px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

/* Submenu Styling */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    z-index: 1000;
    border: 1px solid #e5e7eb;
}

.dropdown-menu li {
    width: 100%;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Hover Effects */
.nav-menu li.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

.nav-menu li.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu li a:hover {
    background-color: #f3f4f6;
    color: #059669; /* Theme Green Color */
    padding-left: 22px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* Trust Badges Bar */
    .features-bar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        background: #ffffff;
        padding: 25px 20px;
        border-radius: 16px;
        margin: 30px 0 40px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
        border: 1px solid #f1f5f9;
    }

    .feature-box {
        text-align: center;
        padding: 10px;
        transition: transform 0.3s ease;
    }

    .feature-box:hover {
        transform: translateY(-3px);
    }

    .feature-box i {
        font-size: 26px;
        color: #4f46e5;
        margin-bottom: 12px;
        background: #e0e7ff;
        width: 58px;
        height: 58px;
        line-height: 58px;
        border-radius: 50%;
        display: inline-block;
    }

    .feature-box h4 {
        font-size: 15px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 4px;
    }

    .feature-box p {
        font-size: 13px;
        color: #64748b;
        margin: 0;
    }

    /* SECTION HEADINGS & CATEGORY NAMES */
    .section-heading {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        border-bottom: 2px solid #e2e8f0;
        padding-bottom: 12px;
        position: relative;
    }

    .section-title {
        font-size: 24px;
        font-weight: 800;
        color: #1e1b4b; /* Royal Dark Indigo */
        letter-spacing: -0.3px;
        position: relative;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -14px;
        left: 0;
        width: 70px;
        height: 4px;
        background: linear-gradient(90deg, #ff3f6c, #4f46e5);
        border-radius: 4px;
    }

    /* VIEW ALL BUTTON DESIGN */
    .view-more-btn {
        color: #4f46e5;
        font-weight: 700;
        font-size: 13px;
        text-decoration: none;
        padding: 7px 18px;
        border-radius: 30px;
        background: #ffffff;
        border: 2px solid #4f46e5;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 6px rgba(79, 70, 229, 0.1);
    }

    .view-more-btn:hover {
        background: #4f46e5;
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
        transform: translateY(-2px);
    }

    /* NEW BADGE STYLING */
    .badge-new {
        position: absolute;
        top: 12px;
        left: 12px;
        background: linear-gradient(135deg, #ff3f6c 0%, #ff1493 100%);
        color: #ffffff;
        font-size: 11px;
        font-weight: 800;
        padding: 4px 12px;
        border-radius: 20px;
        z-index: 2;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        box-shadow: 0 4px 10px rgba(255, 63, 108, 0.35);
    }

    /* Product Grid & Cards Styling */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 24px;
        margin-bottom: 55px;
    }

    .product-card {
        background: #ffffff;
        border-radius: 14px;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        border: 1px solid #f1f5f9;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        display: flex;
        flex-direction: column;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
        border-color: #cbd5e1;
    }

    .img-wrapper {
        position: relative;
        width: 100%;
        height: 300px;
        overflow: hidden;
        background-color: #f8fafc;
    }

    .product-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-card:hover .product-img {
        transform: scale(1.06);
    }

    .product-card > div:last-child {
        padding: 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-grow: 1;
    }

    .prod-name {
        font-size: 14px;
        font-weight: 600;
        color: #334155;
        line-height: 1.4;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 40px;
    }

    .price-container {
        font-size: 18px;
        font-weight: 800;
        color: #059669;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .old-price {
        font-size: 13px;
        color: #94a3b8;
        text-decoration: line-through;
        font-weight: 500;
    }

    .category-block {
        margin-top: 10px;
    }


<style>
/* 1. CATEGORY CIRCLES SECTION */
.category-circles-bar {
    display: flex;
    justify-content: center;
    gap: 25px;
    overflow-x: auto;
    padding: 25px 10px;
    margin-top: 15px;
    scrollbar-width: none;
}
.category-circles-bar::-webkit-scrollbar {
    display: none;
}
.cat-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #1e293b;
    min-width: 85px;
    transition: transform 0.3s ease;
}
.cat-circle-item:hover {
    transform: translateY(-5px);
}
.cat-circle-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4f46e5;
    padding: 3px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}
.cat-circle-title {
    font-size: 13px;
    font-weight: 700;
    margin-top: 8px;
    text-align: center;
    white-space: nowrap;
}

/* 2. PROMO BANNERS GRID */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}
.promo-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 180px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}
.promo-card:hover {
    transform: scale(1.02);
}
.promo-banner-1 {
    background: linear-gradient(135deg, #4f46e5 0%, #312e81 100%);
    color: #ffffff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.promo-banner-2 {
    background: linear-gradient(135deg, #ff3f6c 0%, #be123c 100%);
    color: #ffffff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.promo-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 5px 0;
}
.promo-card p {
    font-size: 14px;
    margin: 0 0 15px 0;
    opacity: 0.9;
}
.promo-btn {
    align-self: flex-start;
    background: #ffffff;
    color: #0f172a;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

:root {
    --dkch-bg-dark: #0a0a0c;
    --dkch-bg-card: #141419;
    --dkch-text-main: #f0f0f5;
    --dkch-text-muted: #8e8e93;
    --dkch-accent-purple: #7000ff;
    --dkch-accent-cyan: #00f0ff;
    --dkch-radius: 12px;
  }

  /* SECTION: TRUST & SATISFACTION BANNER */
  .dkch-trust-section {
    max-width: 1200px;
    margin: 0 auto 90px auto;
    padding: 0 20px;
  }

  .dkch-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--dkch-bg-card);
    padding: 35px 25px;
    border-radius: var(--dkch-radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .dkch-trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .dkch-trust-item:last-child {
    border-right: none;
  }

  .dkch-trust-icon {
    font-size: 2.2rem;
    line-height: 1;
    flex-shrink: 0;
  }

  .dkch-trust-info h4 {
    color: var(--dkch-text-main);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .dkch-trust-info p {
    color: var(--dkch-text-muted);
    font-size: 0.85rem;
    line-height: 1.3;
  }

  /* RESPONSIVE DESIGN */
  @media (max-width: 992px) {
    .dkch-trust-row {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
    .dkch-trust-item {
      border-right: none;
    }
  }

  @media (max-width: 576px) {
    .dkch-trust-row {
      grid-template-columns: 1fr;
      gap: 25px;
    }
  }
.header-actions {
            position: relative;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        /* Fixed Inline Search Box */
        .inline-search-box {
            display: none;
            position: absolute;
            right: 60px;
            top: 50%;
            transform: translateY(-50%);
            background: #ffffff;
            border: 2px solid #059669;
            border-radius: 20px;
            padding: 2px 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 9999;
        }
        .inline-search-box.show {
            display: flex !important;
            align-items: center;
        }
        .inline-search-box input {
            border: none !important;
            outline: none !important;
            padding: 6px 10px;
            font-size: 14px;
            width: 180px;
            background: transparent;
        }
        .inline-search-box button {
            background: none;
            border: none;
            color: #059669;
            cursor: pointer;
            padding: 4px 8px;
        }
        .search-btn-icon {
            cursor: pointer;
            padding: 5px;
        }

footer { background: #111827; color: #9ca3af; padding: 50px 0 20px 0; font-size: 14px; margin-top: 60px; border-top: 4px solid #f59e0b; }
        .footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
        .footer-col h3 { color: #ffffff; font-size: 18px; margin-bottom: 20px; font-weight: 700; }
        .footer-col p { line-height: 1.6; margin-bottom: 15px; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a:hover { color: #f59e0b; }
        .footer-socials a { font-size: 18px; margin-right: 15px; color: #e5e7eb; transition: color 0.2s; }
        .footer-socials a:hover { color: #f59e0b; }
        .footer-bottom { text-align: center; border-top: 1px solid #374151; padding-top: 20px; font-size: 13px; color: #6b7280; }
        @media (max-width: 1024px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; } }

.details-wrapper { padding: 50px 0; }
    .details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); border: 1px solid #e5e7eb; }
    
    .gallery-container { display: flex; flex-direction: column; gap: 15px; }
    .details-img-box { background: #f9fafb; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; height: 450px; border: 1px solid #e5e7eb; position: relative; }
    .details-img-box img, .details-img-box iframe { max-width: 100%; max-height: 100%; object-fit: contain; width: 100%; height: 100%; border: none; }
    
    .thumbnail-row { display: flex; gap: 10px; flex-wrap: wrap; }
    .thumb-img { width: 70px; height: 70px; border: 2px solid #e5e7eb; border-radius: 6px; cursor: pointer; object-fit: cover; background: #fff; transition: border 0.2s; }
    .thumb-img:hover, .thumb-img.active { border-color: #f59e0b; }
    .thumb-video-btn { width: 70px; height: 70px; border: 2px solid #e5e7eb; border-radius: 6px; cursor: pointer; background: #111827; color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 11px; font-weight: bold; }
    .thumb-video-btn i { font-size: 20px; color: #ef4444; margin-bottom: 2px; }
    
    .details-info h1 { font-size: 28px; color: #111827; margin-bottom: 10px; font-weight: 700; }
    .category-badge { display: inline-block; background: #e5e7eb; color: #4b5563; font-size: 12px; padding: 4px 10px; border-radius: 4px; font-weight: 600; margin-bottom: 20px; }
    .details-price { font-size: 26px; font-weight: bold; color: #10b981; margin-bottom: 20px; display: flex; align-items: center; gap: 15px; }
    .details-price .old-price { text-decoration: line-through; color: #9ca3af; font-size: 18px; font-weight: normal; }
    
    .desc-box { margin-bottom: 25px; border-top: 1px solid #e5e7eb; padding-top: 20px; }
    .desc-box h3 { font-size: 16px; color: #111827; margin-bottom: 8px; font-weight: 600; }
    .desc-box p { font-size: 15px; color: #4b5563; line-height: 1.6; }
    
    .attribute-section { margin-bottom: 20px; }
    .attribute-title { font-size: 14px; font-weight: 600; color: #4b5563; margin-bottom: 8px; }
    .attribute-chips { display: flex; flex-wrap: wrap; gap: 8px; }
    .chip { background: #f3f4f6; border: 1px solid #d1d5db; padding: 6px 14px; border-radius: 4px; font-size: 14px; }
    
    /* Make a Payment button styling */
    .btn-payment { background: #10b981; color: white; border: none; padding: 14px 35px; font-size: 16px; font-weight: bold; border-radius: 6px; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; margin-top: 15px; box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2); transition: all 0.2s; }
    .btn-payment:hover { background: #059669; transform: translateY(-1px); }

    /* Payment Modal Popup Layout Styling */
    .payment-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.5); backdrop-filter: blur(4px); }
    .modal-content { background-color: #fcfcfc; margin: 3% auto; padding: 30px; border: 1px solid #e5e7eb; width: 90%; max-width: 650px; border-radius: 16px; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); position: relative; animation: slideDown 0.3s ease-out; }
    @keyframes slideDown { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
    .close-modal { color: #9ca3af; float: right; font-size: 28px; font-weight: bold; cursor: pointer; position: absolute; right: 20px; top: 15px; transition: color 0.2s; }
    .close-modal:hover { color: #111827; }
    
    /* Information Form Styles */
    .form-group { margin-bottom: 15px; text-align: left; }
    .form-group label { display: block; font-size: 14px; font-weight: 600; color: #374151; margin-bottom: 5px; }
    .form-group input, .form-group textarea { width: 100%; padding: 10px 12px; border: 1px solid #d1d5db; border-radius: 6px; font-size: 14px; color: #1f2937; outline: none; transition: border-color 0.2s; }
    .form-group input:focus, .form-group textarea:focus { border-color: #10b981; box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1); }
    
    .payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 20px; }
    .payment-box { border: 1px solid #e5e7eb; border-radius: 10px; padding: 20px; background: #fff; text-align: center; }
    .payment-box h4 { margin-bottom: 15px; font-size: 16px; font-weight: 600; color: #111827; border-bottom: 1px solid #f3f4f6; padding-bottom: 8px; }
    .qr-container img { width: 140px; height: 140px; object-fit: contain; margin: 0 auto 10px; border: 1px solid #e5e7eb; padding: 5px; border-radius: 8px; }
    .upi-id { background: #f3f4f6; padding: 6px 10px; font-size: 13px; font-weight: 600; border-radius: 4px; color: #374151; word-break: break-all; }
    
    .bank-details { text-align: left; font-size: 14px; color: #4b5563; line-height: 1.8; }
    .bank-details strong { color: #111827; }
    
    .helpdesk-section { margin-top: 20px; padding: 15px; background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 10px; display: flex; align-items: center; gap: 15px; }
    .helpdesk-section i { font-size: 24px; color: #2563eb; }
    .helpdesk-text h5 { margin: 0; font-size: 14px; font-weight: 600; color: #1e3a8a; }
    .helpdesk-text p { margin: 2px 0 0; font-size: 13px; color: #1e40af; }

    /* Buttons inside Modal */
    .btn-submit-info { background: #10b981; color: white; border: none; padding: 12px 25px; font-size: 15px; font-weight: bold; border-radius: 6px; cursor: pointer; width: 100%; transition: background 0.2s; margin-top: 10px; }
    .btn-submit-info:hover { background: #059669; }
    .btn-download-pdf { background: #2563eb; color: white; border: none; padding: 10px 18px; font-size: 14px; font-weight: bold; border-radius: 6px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; margin-top: 15px; transition: background 0.2s; }
    .btn-download-pdf:hover { background: #1d4ed8; }
    
    /* WhatsApp Direct Share Button Styling */
    .btn-whatsapp-direct { background: #25d366; color: white; border: none; padding: 10px 18px; font-size: 14px; font-weight: bold; border-radius: 6px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; margin-top: 15px; text-decoration: none; transition: background 0.2s; }
    .btn-whatsapp-direct:hover { background: #128c7e; color: white; }

    @media (max-width: 768px) { 
        .details-grid { grid-template-columns: 1fr; } 
        .details-img-box { height: 300px; } 
        .payment-grid { grid-template-columns: 1fr; gap: 15px; }
        .modal-content { margin: 10% auto; padding: 20px; }
    }

:root {
        --primary-color: #2563eb;
        --secondary-color: #1e293b;
        --accent-color: #ef4444;
        --bg-light: #f8fafc;
        --text-dark: #0f172a;
        --text-muted: #64748b;
        --card-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.05);
        --hover-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    }

    body {
        background-color: var(--bg-light);
        color: var(--text-dark);
    }

    /* 1. HERO SLIDER (PURANA WALA RESTORED) */
    .hero-slider-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
    }
    .hero-slider {
        position: relative;
        width: 100%;
    }
    .hero-slider .slide img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* 2. TOP QUICK CATEGORY CHIPS (NEW SECTION) */
    .category-quick-nav {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 15px 0;
        margin-bottom: 20px;
        scrollbar-width: none; /* Firefox */
    }
    .category-quick-nav::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    .cat-chip {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #ffffff;
        padding: 8px 16px;
        border-radius: 50px;
        border: 1px solid #e2e8f0;
        white-space: nowrap;
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 600;
        font-size: 13px;
        box-shadow: var(--card-shadow);
        transition: all 0.2s ease;
    }
    .cat-chip:hover {
        background: var(--primary-color);
        color: #fff;
        border-color: var(--primary-color);
    }

    /* 3. TRUST FEATURES BAR */
    .features-bar {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        background: #ffffff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: var(--card-shadow);
        margin-bottom: 30px;
        border: 1px solid #f1f5f9;
    }
    .feature-box {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .feature-box i {
        font-size: 22px;
        color: var(--primary-color);
        background: #eff6ff;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        flex-shrink: 0;
    }
    .feature-box h4 {
        font-size: 14px;
        font-weight: 700;
        margin: 0;
    }
    .feature-box p {
        font-size: 11px;
        color: var(--text-muted);
        margin: 0;
    }

    /* 4. SECTION HEADINGS */
    .section-heading-custom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        border-bottom: 2px solid #e2e8f0;
        padding-bottom: 10px;
    }
    .section-heading-custom .title {
        font-size: 20px;
        font-weight: 800;
        color: var(--text-dark);
        position: relative;
    }
    .section-heading-custom .title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 2px;
    }
    .view-more-btn {
        color: var(--primary-color);
        font-weight: 600;
        text-decoration: none;
        font-size: 13px;
    }

    /* 5. PRODUCT GRID (STRICTLY 4 COLUMNS DESKTOP / 2 COLUMNS MOBILE) */
    .product-grid-custom {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* Fixed 4 products max */
        gap: 20px;
        margin-bottom: 35px;
    }
    .product-card-custom {
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #e2e8f0;
        box-shadow: var(--card-shadow);
        transition: all 0.3s ease;
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        position: relative;
    }
    .product-card-custom:hover {
        transform: translateY(-4px);
        box-shadow: var(--hover-shadow);
    }
    .badge-discount {
        position: absolute;
        top: 10px;
        left: 10px;
        background: var(--accent-color);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        padding: 3px 6px;
        border-radius: 4px;
        z-index: 2;
    }
    .img-wrapper-custom {
        position: relative;
        width: 100%;
        height: 200px;
        background: #ffffff;
        overflow: hidden;
    }
    .img-wrapper-custom img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 10px;
        transition: transform 0.3s ease;
    }
    .product-card-custom:hover .img-wrapper-custom img {
        transform: scale(1.05);
    }
    .card-body-custom {
        padding: 12px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        justify-content: space-between;
    }
    .prod-title {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.3;
    }
    .price-wrapper {
        display: flex;
        align-items: baseline;
        gap: 6px;
        margin-top: 4px;
    }
    .current-price {
        font-size: 16px;
        font-weight: 800;
        color: var(--text-dark);
    }
    .old-price {
        font-size: 12px;
        color: var(--text-muted);
        text-decoration: line-through;
    }

    /* 6. SPECIAL OFFER BANNER (NEW SECTION) */
    .promo-banner {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        border-radius: 12px;
        padding: 25px;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 35px;
    }
    .promo-content h3 { font-size: 22px; margin: 0 0 5px 0; font-weight: 800; }
    .promo-content p { margin: 0; opacity: 0.9; font-size: 14px; }
    .promo-btn {
        background: #ffffff;
        color: var(--primary-color);
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 700;
        font-size: 13px;
    }

    /* 7. DKCH TRUST BANNER */
    .dkch-trust-section {
        background: #1e293b;
        color: #ffffff;
        border-radius: 12px;
        padding: 20px;
        margin: 30px 0;
    }
    .dkch-trust-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    .dkch-trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .dkch-trust-icon {
        font-size: 20px;
        background: rgba(255,255,255,0.1);
        width: 40px;
        height: 40px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .dkch-trust-info h4 { font-size: 13px; font-weight: 700; margin: 0; }
    .dkch-trust-info p { font-size: 10px; color: #94a3b8; margin: 0; }

    /* 📱 MOBILE RESPONSIVENESS */
    @media (max-width: 768px) {
        .product-grid-custom {
            grid-template-columns: repeat(2, 1fr) !important; /* Max 2 items in mobile */
            gap: 10px;
        }
        .features-bar, .dkch-trust-row {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .img-wrapper-custom { height: 140px; }
        .prod-title { font-size: 12px; }
        .current-price { font-size: 14px; }
        .promo-banner { flex-direction: column; text-align: center; gap: 15px; }
    }

</style>

