/* ============================================================
   SMATIC — Custom Theme (Navy Blue + Gold)
   Overrides template custom.css color variables
   ============================================================ */

:root {
    --primary-color   : #0D1B2A;   /* Deep Navy Blue  */
    --secondary-color : #F8F8F8;
    --text-color      : #666666;
    --accent-color    : #C9A84C;   /* Gold            */
    --bg-color        : #FFFFFF;
    --white-color     : #FFFFFF;
    --divider-color   : rgba(13,27,42,0.10);
    --dark-divider-color: rgba(255,255,255,0.10);
    --navy-dark       : #071014;
    --gold-light      : #E2C47A;
    --gold-muted      : #a88630;
}

/* ── Google Font override (Poppins + Open Sans) ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    color: #2c2c2c;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand span,
.section-title h2,
.section-title h3 {
    font-family: 'Poppins', sans-serif;
}

/* ── Logo Text ── */
.smatic-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.smatic-logo .logo-mark {
    width: 38px;
    height: 38px;
    background: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--primary-color);
    letter-spacing: -1px;
    flex-shrink: 0;
}
.smatic-logo .logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--primary-color);
    letter-spacing: 3px;
    line-height: 1;
}
.dark-section .smatic-logo .logo-text,
.main-header.sticky .smatic-logo .logo-text { color: var(--white-color); }
.dark-section .smatic-logo .logo-mark { background: var(--accent-color); }
.main-header .smatic-logo .logo-text { color: var(--white-color); }

/* ── Header enhancements ── */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-cart-btn {
    position: relative;
    cursor: pointer;
    color: var(--white-color);
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
}
.header-cart-btn:hover { color: var(--accent-color); }
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}
.header-whatsapp-btn {
    color: #25D366;
    font-size: 20px;
    text-decoration: none;
    line-height: 1;
}
.header-whatsapp-btn:hover { color: #1da851; }

/* ── Scrolling ticker ── */
.our-scrolling-ticker {
    background: var(--accent-color);
    padding: 12px 0;
    overflow: hidden;
}
.scrolling-ticker-box {
    display: flex;
    width: 100%;
    overflow: hidden;
}
.scrolling-content {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 28s linear infinite;
    flex-shrink: 0;
}
.scrolling-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color);
}
.scrolling-content span i {
    font-size: 10px;
    color: var(--primary-color);
    opacity: 0.6;
}
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ── Hero section ── */
.hero { min-height: 100vh; }
.hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 20px;
}
.hero .hero-badge span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
}
.hero-price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 24px;
}
.hero-price-tag .price-main {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
}
.hero-price-tag .price-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}
.hero-trust-row {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}
.hero-trust-item i { color: var(--accent-color); }

/* ── Stat counters row ── */
.smatic-stats-row {
    background: var(--primary-color);
    padding: 50px 0;
}
.smatic-stats-row .stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.smatic-stats-row .stat-item:last-child { border-right: none; }
.smatic-stats-row .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    display: block;
}
.smatic-stats-row .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

/* ── Comparison table ── */
.comparison-section { padding: 90px 0; background: var(--secondary-color); }
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(13,27,42,0.10);
}
.comparison-table thead th {
    padding: 20px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.comparison-table thead th:first-child {
    background: #f0f0f0;
    color: #999;
}
.comparison-table thead th.smatic-col {
    background: var(--primary-color);
    color: var(--accent-color);
    text-align: center;
}
.comparison-table thead th.traditional-col {
    background: #e8e8e8;
    color: #888;
    text-align: center;
}
.comparison-table tbody tr:nth-child(even) td { background: #fafafa; }
.comparison-table tbody tr:nth-child(odd)  td { background: #fff; }
.comparison-table tbody td {
    padding: 16px 24px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #eee;
}
.comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--primary-color);
}
.comparison-table tbody td.smatic-val {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
}
.comparison-table tbody td.traditional-val {
    text-align: center;
    color: #999;
}
.comparison-table .check-icon { color: #27ae60; font-size: 18px; }
.comparison-table .cross-icon { color: #e74c3c; font-size: 18px; }

/* ── Product card (single product hero) ── */
.product-hero-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 50px rgba(13,27,42,0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.product-hero-card .product-image-area {
    background: var(--secondary-color);
    padding: 40px;
    text-align: center;
    position: relative;
}
.product-hero-card .product-image-area img {
    max-height: 280px;
    object-fit: contain;
}
.product-hero-card .product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
}
.product-hero-card .product-card-body {
    padding: 28px 32px 32px;
}
.product-hero-card .product-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.product-hero-card .product-rating-row .stars { color: var(--accent-color); font-size: 14px; }
.product-hero-card .product-rating-row .review-count { font-size: 13px; color: #999; }
.product-hero-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.product-hero-card .product-tagline {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}
.product-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.product-price-row .current-price {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
}
.product-price-row .original-price {
    font-size: 16px;
    color: #aaa;
    text-decoration: line-through;
}
.product-price-row .savings-badge {
    background: #e8f5e9;
    color: #27ae60;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
}
.btn-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-add-to-cart:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,27,42,0.2);
}

/* ── Science validation block ── */
.science-block {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 48px;
    color: #fff;
}
.science-block .science-stat {
    text-align: center;
    padding: 16px;
}
.science-block .science-stat .big-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    display: block;
}
.science-block .science-stat p { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 6px; }

/* ── Timeline / How it works steps ── */
.smatic-timeline { position: relative; padding-left: 0; }
.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 52px;
    bottom: -16px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color), rgba(201,168,76,0.1));
}
.timeline-step {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.timeline-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}
.timeline-content p { font-size: 14px; color: #777; margin: 0; }
.timeline-time-badge {
    display: inline-block;
    background: rgba(201,168,76,0.12);
    color: var(--gold-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 2px 10px;
    border-radius: 4px;
    margin-bottom: 4px;
}

/* ── Slide-out cart drawer ── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,27,42,0.5);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(13,27,42,0.15);
}
.cart-drawer.active { transform: translateX(0); }
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}
.cart-drawer-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}
.cart-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #888;
    transition: all 0.2s;
}
.cart-close-btn:hover { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}
.cart-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}
.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: #f8f8f8;
    overflow: hidden;
    flex-shrink: 0;
}
.cart-item-image img { width: 100%; height: 100%; object-fit: contain; }
.cart-item-info { flex: 1; }
.cart-item-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}
.cart-item-info .cart-item-price {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-color);
}
.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 8px;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}
.qty-control button {
    width: 30px;
    height: 30px;
    border: none;
    background: #f8f8f8;
    cursor: pointer;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
    transition: background 0.2s;
}
.qty-control button:hover { background: var(--accent-color); color: var(--primary-color); }
.qty-control .qty-value {
    width: 36px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    border: none;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    background: #fff;
}
.cart-item-remove {
    font-size: 13px;
    color: #ccc;
    cursor: pointer;
    padding: 2px;
    transition: color 0.2s;
    align-self: flex-start;
}
.cart-item-remove:hover { color: #e74c3c; }
.cart-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid #eee;
    background: #fff;
}
.cart-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}
.cart-summary-line.total {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    border-top: 1px solid #eee;
    padding-top: 12px;
    margin-top: 8px;
}
.cart-summary-line.total .total-price { color: var(--accent-color); }
.cart-delivery-info {
    font-size: 12px;
    color: #27ae60;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-checkout {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 10px;
}
.btn-checkout:hover { background: var(--accent-color); color: var(--primary-color); }
.btn-continue-shopping {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-continue-shopping:hover { border-color: var(--primary-color); color: var(--primary-color); }
.cart-empty-state {
    text-align: center;
    padding: 60px 20px;
}
.cart-empty-state i { font-size: 50px; color: #ddd; margin-bottom: 16px; }
.cart-empty-state h4 { font-family: 'Poppins', sans-serif; font-size: 18px; color: var(--primary-color); }
.cart-empty-state p { font-size: 14px; color: #aaa; }

/* ── Inner pages (Swiggy-style) ── */
.inner-layout { display: flex; min-height: 100vh; background: #f5f6fa; }
.inner-sidebar {
    width: 260px;
    background: #fff;
    border-right: 1px solid #e8e8e8;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    padding: 24px 0;
}
.inner-sidebar .sidebar-user-info {
    padding: 0 20px 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 10px;
}
.inner-sidebar .sidebar-user-info .user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.inner-sidebar .sidebar-user-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 2px;
}
.inner-sidebar .sidebar-user-info p {
    font-size: 12px;
    color: #aaa;
    margin: 0;
}
.inner-sidebar nav ul { list-style: none; padding: 0; margin: 0; }
.inner-sidebar nav ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}
.inner-sidebar nav ul li a i {
    width: 18px;
    text-align: center;
    color: #bbb;
}
.inner-sidebar nav ul li a:hover {
    background: #f8f9ff;
    color: var(--primary-color);
    border-left-color: var(--accent-color);
}
.inner-sidebar nav ul li a:hover i { color: var(--accent-color); }
.inner-sidebar nav ul li.active a {
    background: rgba(13,27,42,0.05);
    color: var(--primary-color);
    font-weight: 600;
    border-left-color: var(--primary-color);
}
.inner-sidebar nav ul li.active a i { color: var(--primary-color); }
.inner-sidebar .sidebar-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #bbb;
    padding: 16px 20px 6px;
}
.inner-content { flex: 1; padding: 32px; max-width: calc(100% - 260px); }
.inner-page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}
.inner-page-subtitle { font-size: 14px; color: #aaa; margin-bottom: 28px; }
.inner-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    overflow: hidden;
}
.inner-card-header {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner-card-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}
.inner-card-body { padding: 24px; }

/* ── Status badges ── */
.badge-status {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}
.badge-placed    { background: #e3f2fd; color: #1565c0; }
.badge-confirmed { background: #f3e5f5; color: #6a1b9a; }
.badge-shipped   { background: #fff8e1; color: #f57f17; }
.badge-delivered { background: #e8f5e9; color: #2e7d32; }
.badge-cancelled { background: #fce4ec; color: #c62828; }
.badge-pending   { background: #fff3e0; color: #e65100; }

/* ── Data tables (inner pages) ── */
.smatic-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.smatic-table thead th {
    text-align: left;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
}
.smatic-table tbody td {
    padding: 14px 16px;
    color: #555;
    border-bottom: 1px solid #f8f8f8;
    vertical-align: middle;
}
.smatic-table tbody tr:hover td { background: #fafcff; }
.smatic-table tbody tr:last-child td { border-bottom: none; }

/* ── Forms (inner pages) ── */
.smatic-form .form-group { margin-bottom: 20px; }
.smatic-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 6px;
}
.smatic-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    color: #333;
    width: 100%;
    transition: border-color 0.2s;
    background: #fff;
}
.smatic-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13,27,42,0.06);
    outline: none;
}
.smatic-form select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23999'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.btn-smatic-primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 11px 28px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-smatic-primary:hover { background: var(--accent-color); color: var(--primary-color); }
.btn-smatic-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-smatic-outline:hover { background: var(--primary-color); color: #fff; }

/* ── Tracking timeline (inner) ── */
.tracking-timeline { position: relative; padding-left: 28px; }
.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #eee;
}
.tracking-event {
    position: relative;
    padding-bottom: 28px;
}
.tracking-event:last-child { padding-bottom: 0; }
.tracking-event::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #fff;
}
.tracking-event.done::before {
    background: var(--accent-color);
    border-color: var(--accent-color);
}
.tracking-event.active::before {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(13,27,42,0.1);
}
.tracking-event .event-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}
.tracking-event.pending .event-label { color: #bbb; }
.tracking-event .event-time {
    font-size: 12px;
    color: #aaa;
    margin-top: 2px;
}
.tracking-event .event-detail {
    font-size: 13px;
    color: #777;
    margin-top: 4px;
}

/* ── Footer enhancements ── */
.footer-newsletter-mini {
    display: flex;
    gap: 0;
    margin-top: 16px;
}
.footer-newsletter-mini input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: #fff;
    border-radius: 6px 0 0 6px;
    font-size: 13px;
    outline: none;
}
.footer-newsletter-mini input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter-mini button {
    padding: 10px 18px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 0 6px 6px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
.footer-newsletter-mini button:hover { background: var(--gold-light); }
.footer-tagline {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.8;
}
.footer-trust-badges {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
}
.trust-badge i { color: var(--accent-color); font-size: 13px; }

/* ── WhatsApp floating button ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .inner-sidebar { display: none; }
    .inner-content { max-width: 100%; padding: 20px 16px; }
    .cart-drawer { width: 100%; }
    .smatic-stats-row .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 767px) {
    .hero-price-tag .price-main { font-size: 28px; }
    .comparison-section { overflow-x: auto; }
    .comparison-table { min-width: 560px; }
    .science-block { padding: 30px 20px; }
    .science-block .big-number { font-size: 36px; }
    .inner-content { padding: 16px; }
}
