/* ── Variables ── */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #111827;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --border: #e5e7eb;
    --radius: 10px;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --font: "Hind Siliguri", sans-serif;
    --whatsapp: #25d366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--font);
    color: var(--dark);
    background: #fff;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
}

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

/* ── Navbar ── */
.navbar {
    /* background: #fff; */
    background: linear-gradient(135deg, #14213f 0%, #253f99 55%, #2539a0 100%);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}
.navbar .container {
    display: flex;
    align-items: center;
    gap: 16px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.3rem;
    font-weight: 700;
    /* color: var(--primary); */
    color: #fff;
    white-space: nowrap;
}
.navbar-brand i {
    color: var(--secondary);
}

.search-form {
    flex: 1;
    display: flex;
    max-width: 500px;
}
.search-form input {
    flex: 1;
    padding: 10px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius) 0 0 var(--radius);
    font-family: var(--font);
    font-size: 0.95rem;
    outline: none;
}
.search-form input:focus {
    border-color: var(--primary);
}
.search-form button {
    padding: 10px 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}
.btn-icon {
    background: none;
    border: none;
    font-size: 1.2rem;
    /* color: var(--dark); */
    color: #fff;
    cursor: pointer;
    position: relative;
    padding: 4px;
}
.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Cart Sidebar ── */
.cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 200;
}
.cart-overlay.open {
    display: block;
}
.cart-sidebar {
    position: fixed;
    right: -420px;
    top: 0;
    bottom: 0;
    width: 420px;
    max-width: 100vw;
    background: #fff;
    z-index: 201;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}
.cart-sidebar.open {
    right: 0;
}
.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-header h3 {
    font-size: 1.1rem;
}
.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}
.cart-empty {
    text-align: center;
    padding: 40px;
    color: var(--gray);
}
.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}
.cart-item-info {
    flex: 1;
}
.cart-item-name {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4px;
}
.cart-item-price {
    color: var(--primary);
    font-weight: 600;
}
.qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}
.qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-num {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}
.remove-item {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #fecaca;
    border-radius: 50%;
    color: var(--danger);
    cursor: pointer;
    font-size: 0.85rem;
    flex: 0 0 auto;
}
.remove-item:hover {
    background: #fee2e2;
}
.cart-footer {
    padding: 16px;
    border-top: 1px solid var(--border);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.cart-continue {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: var(--gray);
    font-size: 0.9rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-dark);
}
.btn-outline {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}
.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
}
.btn-whatsapp:hover {
    background: #1eb356;
}
.btn-block {
    width: 100%;
    justify-content: center;
}
.btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
}
.btn-sm {
    padding: 7px 14px;
    font-size: 0.85rem;
}
.btn-hero {
    padding: 14px 36px;
    font-size: 1.05rem;
    margin-top: 20px;
}

/* ── Hero Banner ── */
.hero-banner {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 60%, #bfdbfe 100%);
    padding: 60px 0 50px;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef3c7;
    color: #92400e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.hero-banner h1 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}
.hero-banner h1 span {
    color: var(--primary);
}
.hero-banner p {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 20px;
}
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--success);
    font-size: 0.9rem;
}
.hero-badges span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── Flash Sale Bar ── */
.flash-sale-bar {
    background: #fff7ed;
    border-top: 2px solid #fed7aa;
    border-bottom: 2px solid #fed7aa;
    padding: 10px 0;
}
.flash-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.flash-content i {
    color: var(--secondary);
}
.countdown {
    background: var(--danger);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-left: auto;
}

/* ── Featured Bundle ── */
.featured-bundle {
    padding: 20px 0;
}
.bundle-card {
    background: #1e3a8a;
    color: #fff;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}
.bundle-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--secondary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}
.bundle-content {
    display: flex;
    gap: 24px;
    align-items: center;
}
.bundle-info h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.bundle-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.bundle-price .price-new {
    font-size: 1.8rem;
    font-weight: 700;
}
.bundle-price .price-old {
    text-decoration: line-through;
    opacity: 0.6;
}
.bundle-offer-card {
    background: linear-gradient(135deg, #14213f 0%, #253f99 55%, #2539a0 100%);
    color: #fff;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 18px 40px rgba(37, 63, 153, 0.22);
    overflow: hidden;
    position: relative;
}
.bundle-offer-card::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}
.bundle-offer-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.95fr 1.45fr;
    gap: 28px;
    align-items: center;
}
.bundle-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ff2f45;
    color: #fff;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.bundle-offer-copy h2 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin-bottom: 12px;
}
.bundle-offer-copy p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 16px;
}
.bundle-mini-countdown {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(248, 113, 113, 0.5);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.86rem;
    margin-bottom: 16px;
}
.bundle-mini-countdown strong {
    letter-spacing: 1px;
    color: #fff;
}
.bundle-offer-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
}
.bundle-offer-price strong {
    font-size: 2rem;
    color: #facc15;
}
.bundle-old-price {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: line-through;
}
.bundle-offer-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.bundle-offer-actions .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}
.bundle-offer-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.bundle-offer-product {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
}
.bundle-offer-product:hover {
    background: rgba(255, 255, 255, 0.14);
}
.bundle-offer-product img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    flex: 0 0 auto;
}
.bundle-offer-product strong {
    display: block;
    font-size: 0.92rem;
    line-height: 1.35;
}
.bundle-offer-product small {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    margin-top: 2px;
}

/* ── Products Section ── */
.products-section {
    padding: 40px 0;
}
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.category-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.filter-btn {
    padding: 8px 18px;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.product-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s;
    position: relative;
}
.product-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 1;
}
.badge-hot {
    background: var(--danger);
    color: #fff;
}
.badge-new {
    background: var(--success);
    color: #fff;
}
.badge-sale {
    background: var(--secondary);
    color: #fff;
}
.product-discount {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--danger);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}
.product-img {
    width: 100%;
    /* height: 160px; */
    object-fit: cover;
    display: block;
}
.product-info {
    padding: 12px;
}
.product-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}
.product-name a {
    color: var(--dark);
}
.product-name a:hover {
    color: var(--primary);
}
.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.price-current {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}
.price-strike {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: var(--gray);
}
.product-actions {
    display: flex;
    gap: 6px;
}
.product-actions .btn {
    flex: 1;
    font-size: 0.8rem;
    padding: 8px 6px;
}

/* ── Product Detail ── */
.product-detail-section {
    padding: 30px 0 60px;
}
.breadcrumb {
    margin-bottom: 20px;
}
.breadcrumb a {
    color: var(--primary);
    font-size: 0.9rem;
}
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.product-detail-image img {
    width: 100%;
    border-radius: var(--radius);
}
.product-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.tag-new {
    background: #d1fae5;
    color: #065f46;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}
.tag-limited {
    background: #fee2e2;
    color: #991b1b;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}
.product-detail-info h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.product-tagline {
    color: var(--gray);
    margin-bottom: 20px;
}
.detail-price {
    margin-bottom: 24px;
}
.price-big {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}
.price-old {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: var(--gray);
    margin-left: 12px;
}
.save-badge {
    display: block;
    color: var(--success);
    font-size: 0.9rem;
    margin-top: 4px;
}
.detail-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.trust-badges {
    display: flex;
    gap: 16px;
    color: var(--gray);
    font-size: 0.85rem;
}

.features-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}
.features-left,
.features-right {
    padding: 24px;
    border-radius: var(--radius);
}
.features-left {
    background: var(--gray-light);
}
.features-right.dark-card {
    background: var(--dark);
    color: #fff;
}
.features-list {
    list-style: none;
}
.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
}
.features-list li i {
    color: var(--success);
    margin-top: 2px;
}
.features-list.light li i {
    color: #4ade80;
}

.faq-section {
    margin-bottom: 40px;
}
.faq-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
}
.faq-question {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}
.faq-answer {
    display: none;
    padding: 0 20px 16px;
    color: var(--gray);
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .faq-question {
    color: var(--primary);
}

/* ── Checkout ── */
.checkout-section {
    padding: 30px 0 60px;
}
.page-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}
.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
}
.form-card,
.summary-card,
.upsell-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
}
.form-card h3,
.summary-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}
.req {
    color: var(--danger);
}
.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.95rem;
    outline: none;
}
.form-group input:focus {
    border-color: var(--primary);
}
.form-group small {
    display: block;
    color: var(--gray);
    font-size: 0.82rem;
    margin-top: 4px;
}
.error {
    color: var(--danger);
    font-size: 0.82rem;
}

.upsell-support {
    background: #eff6ff;
    border: 1.5px solid #bfdbfe;
    border-radius: var(--radius);
    padding: 14px;
    margin-bottom: 20px;
}
.upsell-label {
    display: flex;
    gap: 12px;
    cursor: pointer;
}
.upsell-label input[type="checkbox"] {
    margin-top: 4px;
}
.special-offer-badge {
    display: inline-block;
    background: var(--danger);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.price-highlight {
    color: var(--danger);
}

.payment-methods {
    text-align: center;
    margin: 16px 0;
}
.ssl-badge {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 10px;
}
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.divider {
    text-align: center;
    position: relative;
    margin: 16px 0;
}
.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}
.divider span {
    background: #fff;
    padding: 0 12px;
    position: relative;
    color: var(--gray);
    font-size: 0.9rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.summary-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.item-name {
    font-size: 0.9rem;
}
.item-qty-control {
    display: flex;
    align-items: center;
    gap: 6px;
}
.summary-subtotal {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--gray);
}
.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 2px solid var(--border);
    font-size: 1.1rem;
}
.total-price {
    color: var(--primary);
}
.checkout-remove-item {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fecaca;
    border-radius: 50%;
    background: #fff;
    color: var(--danger);
    cursor: pointer;
    flex: 0 0 auto;
}
.checkout-remove-item:hover {
    background: #fee2e2;
}

.upsell-card h4 {
    font-size: 0.95rem;
    margin-bottom: 14px;
}
.upsell-product {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.upsell-product img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}
.upsell-info {
    flex: 1;
    font-size: 0.85rem;
}
.up-price {
    color: var(--primary);
    font-weight: 700;
}
.up-original {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 0.8rem;
    margin-left: 4px;
}

/* ── Success ── */
.success-section {
    padding: 60px 0;
}
.success-card {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 16px;
}
.success-icon i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 16px;
}
.success-card h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.success-card p {
    color: var(--gray);
    margin-bottom: 8px;
}
.order-details {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 20px;
    margin: 24px 0;
    text-align: left;
}
.order-details h3 {
    margin-bottom: 12px;
}
.order-item-row,
.order-total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}
.order-total-row {
    border: none;
    margin-top: 8px;
    font-size: 1.1rem;
}
.success-card .btn {
    margin: 6px 4px;
}

/* ── Stats ── */
.stats-section {
    background: #f8faff;
    padding: 40px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-item {
    text-align: center;
    padding: 20px;
}
.stat-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ── Why Us ── */
.why-us-section {
    padding: 50px 0;
}
.why-us-section .section-title {
    text-align: center;
    margin-bottom: 30px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
}
.why-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 14px;
}
.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.why-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── Footer ── */
.footer {
    /* background: #fff; */
    background: linear-gradient(135deg, #14213f 0%, #253f99 55%, #2539a0 100%);
    border-top: 1px solid var(--border);
    padding: 40px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}
.footer-brand .brand-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}
.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer h4 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}
.footer ul {
    list-style: none;
}
.footer ul li {
    margin-bottom: 8px;
}
.footer ul a {
    /* color: var(--gray); */
    color: #fff;
    font-size: 0.9rem;
}
.footer ul a:hover {
    color: var(--primary);
}
.footer p {
    /* color: var(--gray); */
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 6px;
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--whatsapp);
    color: #fff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ── Alerts ── */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 16px;
}
.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ── Pagination ── */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 30px;
}
.page-link {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--dark);
}
.page-item.active .page-link {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .bundle-offer-main {
        grid-template-columns: 1fr;
    }
    .bundle-offer-products {
        grid-template-columns: 1fr;
    }
    .bundle-offer-copy h2 {
        font-size: 1.45rem;
    }
    .bundle-offer-price strong {
        font-size: 1.65rem;
    }
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    .features-section {
        grid-template-columns: 1fr;
    }
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-banner h1 {
        font-size: 1.6rem;
    }
    .search-form {
        display: none;
    }
    .detail-actions {
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════
   FLASH SALE NEW DESIGN
══════════════════════════════════════════════════════ */
.flash-sale-new {
    background: #fff5f5;
    border-top: 1.5px solid #fecaca;
    border-bottom: 1.5px solid #fecaca;
    padding: 14px 0;
}
.flash-sale-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.flash-sale-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.flash-icon-wrap {
    width: 38px;
    height: 38px;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 1rem;
    flex-shrink: 0;
}
.flash-text strong {
    display: block;
    color: #ef4444;
    font-size: 1rem;
    font-weight: 700;
}
.flash-text span {
    color: #64748b;
    font-size: 0.85rem;
}
.flash-timer-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}
.flash-timer-box {
    background: #fff;
    border: 1.5px solid #fca5a5;
    border-radius: 8px;
    min-width: 52px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.flash-timer-box span {
    font-size: 1.3rem;
    font-weight: 800;
    color: #dc2626;
    font-variant-numeric: tabular-nums;
}
.flash-timer-sep {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ef4444;
    padding: 0 2px;
}

/* ══════════════════════════════════════════════════════
   BUNDLE OUTLINE-LIGHT BUTTON
══════════════════════════════════════════════════════ */
.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 12px 20px;
    border-radius: 10px;
    font-family: var(--font, "Hind Siliguri", sans-serif);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

/* ══════════════════════════════════════════════════════
   PAGINATION WRAP
══════════════════════════════════════════════════════ */
.pagination-wrap {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

@media (max-width: 600px) {
    .flash-sale-inner {
        flex-direction: column;
        text-align: center;
    }
    .flash-timer-box {
        min-width: 44px;
        height: 38px;
    }
    .flash-timer-box span {
        font-size: 1.1rem;
    }
}

/* ══════════════════════════════════════════════════════
   FLASH SALE — CARD DESIGN (inside container)
══════════════════════════════════════════════════════ */

/* Outer wrapper — just adds vertical spacing, NO full-width bg/border */
.flash-sale-new {
    padding: 16px 0 0;
    background: transparent;
    border: none;
}

/* The actual card — sits inside .container */
.flash-sale-card {
    background: #fff5f5;
    border: 1.5px solid #fecaca;
    border-radius: 14px;
    padding: 14px 22px;
    box-shadow: 0 2px 10px rgba(239,68,68,.08);
}

.flash-sale-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.flash-sale-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.flash-icon-wrap {
    width: 38px; height: 38px;
    background: #fee2e2;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #ef4444; font-size: 1rem; flex-shrink: 0;
}
.flash-text strong {
    display: block; color: #ef4444;
    font-size: 1rem; font-weight: 700;
}
.flash-text span { color: #64748b; font-size: .85rem; }

/* Timer */
.flash-timer-wrap { display: flex; align-items: center; gap: 4px; }
.flash-timer-box {
    background: #fff; border: 1.5px solid #fca5a5;
    border-radius: 8px; min-width: 52px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.flash-timer-box span {
    font-size: 1.3rem; font-weight: 800;
    color: #dc2626; font-variant-numeric: tabular-nums;
}
.flash-timer-sep { font-size: 1.3rem; font-weight: 800; color: #ef4444; padding: 0 2px; }

/* ── Other utilities ─────────────────────────────── */
.btn-outline-light {
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,.7);
    padding: 12px 20px; border-radius: 10px;
    font-family: var(--font, 'Hind Siliguri', sans-serif);
    font-size: .95rem; font-weight: 600; cursor: pointer;
    transition: all .2s; display: inline-flex; align-items: center; gap: 6px;
    text-decoration: none;
}
.btn-outline-light:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }

.pagination-wrap { margin-top: 24px; display: flex; justify-content: center; }

@media (max-width: 600px) {
    .flash-sale-inner { flex-direction: column; text-align: center; }
    .flash-timer-box { min-width: 44px; height: 38px; }
    .flash-timer-box span { font-size: 1.1rem; }
    .flash-sale-card { padding: 12px 14px; }
}


/* ══════════════════════════════════════════════════════
   HOME PAGE REVIEWS SECTION
══════════════════════════════════════════════════════ */
.home-reviews-section {
    padding: 60px 0 70px;
    background: #f8fafc;
}
.section-header-center {
    text-align: center;
    margin-bottom: 36px;
}
.section-header-center h2 { margin-bottom: 8px; }
.section-header-center p  { color: #64748b; font-size: .95rem; }

.home-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home-review-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    transition: transform .2s, box-shadow .2s;
}
.home-review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.09);
}

/* Stars */
.hrc-stars { display: flex; gap: 3px; color: #f59e0b; font-size: 1rem; }

/* Title */
.hrc-title {
    font-size: .95rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin: 0;
}

/* Body */
.hrc-body {
    color: #475569;
    font-size: .88rem;
    line-height: 1.7;
    flex: 1;
    margin: 0;
}

/* Product badge */
.hrc-product {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: .78rem;
    color: #475569;
    font-weight: 500;
}
.hrc-product img {
    width: 28px; height: 28px;
    object-fit: cover; border-radius: 5px;
    flex-shrink: 0;
}

/* User row */
.hrc-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}
.hrc-avatar {
    width: 38px; height: 38px;
    border-radius: 50%; object-fit: cover;
    border: 2px solid #e5e7eb;
    flex-shrink: 0;
}
.hrc-avatar-txt {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .88rem;
    flex-shrink: 0;
}
.hrc-name { font-weight: 700; font-size: .88rem; color: #1e293b; }
.hrc-date { color: #94a3b8; font-size: .74rem; margin-top: 1px; }
.hrc-verified {
    margin-left: auto;
    color: #10b981;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .home-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .home-reviews-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   REVIEW SLIDER
═══════════════════════════════════════════════════════════ */
.home-reviews-section { padding: 60px 0 70px; background: #f8fafc; }
.section-header-center { text-align: center; margin-bottom: 36px; }
.section-header-center h2 { margin-bottom: 8px; }
.section-header-center p  { color: #64748b; font-size: .95rem; }

/* Slider wrapper */
.review-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Arrow buttons */
.slider-arrow {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: .9rem;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    transition: all .2s;
    z-index: 2;
}
.slider-arrow:hover {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
    box-shadow: 0 4px 14px rgba(99,102,241,.35);
}
.slider-arrow:disabled { opacity: .35; cursor: default; }
.slider-arrow:disabled:hover { background: #fff; color: #374151; border-color: #e5e7eb; box-shadow: none; }

/* Viewport — clips overflow */
.review-slider-viewport {
    overflow: hidden;
    flex: 1;
}

/* Track — moves left/right */
.review-slider-track {
    display: flex;
    gap: 18px;
    transition: transform .4s cubic-bezier(.25,.8,.25,1);
    will-change: transform;
}

/* Each slide */
.review-slide {
    flex-shrink: 0;
    /* width set by JS based on screen */
}

/* Card inside slide */
.home-review-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    height: 100%;
    box-sizing: border-box;
}

.hrc-stars { display: flex; gap: 3px; color: #f59e0b; font-size: 1rem; }
.hrc-title { font-size: .95rem; font-weight: 700; color: #1e293b; line-height: 1.4; margin: 0; }
.hrc-body  { color: #475569; font-size: .88rem; line-height: 1.7; flex: 1; margin: 0; }

.hrc-product {
    display: flex; align-items: center; gap: 8px;
    background: #f1f5f9; border-radius: 8px;
    padding: 7px 10px; font-size: .78rem; color: #475569; font-weight: 500;
}
.hrc-product img { width: 28px; height: 28px; object-fit: cover; border-radius: 5px; flex-shrink: 0; }

.hrc-user {
    display: flex; align-items: center; gap: 10px;
    padding-top: 12px; border-top: 1px solid #f1f5f9;
    margin-top: auto;
}
.hrc-avatar     { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid #e5e7eb; flex-shrink: 0; }
.hrc-avatar-txt {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .88rem; flex-shrink: 0;
}
.hrc-name    { font-weight: 700; font-size: .88rem; color: #1e293b; }
.hrc-date    { color: #94a3b8; font-size: .74rem; margin-top: 1px; }
.hrc-verified { margin-left: auto; color: #10b981; font-size: 1rem; }

/* Dots */
.slider-dots {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 22px;
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #e5e7eb;
    border: none; cursor: pointer;
    transition: all .2s; padding: 0;
}
.slider-dot.active {
    background: #6366f1;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .slider-arrow { width: 36px; height: 36px; font-size: .8rem; }
}
@media (max-width: 480px) {
    .review-slider-wrap { gap: 6px; }
    .slider-arrow { width: 30px; height: 30px; font-size: .72rem; }
}
