/* ================================================================
   SecureShieldX — style.css
   Global Stylesheet for all pages
   ================================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #C8102E;
    --primary-dark: #a00d24;
    --primary-light: #e8192e;
    --dark: #1a1a2e;
    --dark2: #16213e;
    --gray-light: #f8fafc;
    --gray-bg: #f1f5f9;
    --gray: #e2e8f0;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --border: #e2e8f0;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    line-height: 1.5;
}

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

/* ================================================================
   TOP BAR
   ================================================================ */
.top-bar {
    background: var(--dark);
    color: #ffffff;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color .2s;
}

.top-bar a:hover {
    color: var(--primary);
}

.top-bar .phone-num {
    color: #ffffff;
    font-weight: 600;
        font-size: 16px;
}

.top-bar .phone-num i {
    color: #fff;
}

.mega-deals-badge {
    background: var(--primary);
    color: #ffffff;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
}

/* ================================================================
   SITE HEADER
   ================================================================ */
.site-header {
    background: #ffffff;
    padding: 8px 0;
    position: sticky;
    top: 0px;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #f1f5f9;
}

/* Logo */
.logo-wrap {
    background: transparent;
    padding: 2px 0;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-wrap img {
    height: 80px;
    max-width: 220px;
    object-fit: contain;
    display: block;
    transition: transform .2s ease;
}

.logo-wrap:hover img {
    transform: scale(1.02);
}

/* Search bar */
.header-search {
    flex: 1;
    max-width: 460px;
}

.header-search .input-group input {
    border: 1.5px solid #e2e8f0;
    border-right: none;
    border-radius: 8px 0 0 8px !important;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    background: #f8fafc;
    transition: all .2s;
}

.header-search .input-group input:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: none;
}

.header-search .btn-search {
    background: var(--primary);
    border: 1.5px solid var(--primary);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 0 8px 8px 0 !important;
    cursor: pointer;
    transition: background .2s;
}

.header-search .btn-search:hover {
    background: var(--primary-dark);
}

/* Header icons */
.header-icons a {
    color: #1e293b;
    font-size: 20px;
    text-decoration: none;
    position: relative;
    transition: color .2s;
}

.header-icons a:hover {
    color: var(--primary);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -9px;
    background: var(--primary);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ================================================================
   MAIN NAV (Red bar)
   ================================================================ */
.main-nav {
    background: var(--primary);
    padding: 0;
}

.main-nav .container {
    display: flex;
    align-items: center;
}

.nav-toggler {
    display: none;
    background: var(--primary-dark);
    border: none;
    color: #ffffff;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    text-align: left;
    gap: 8px;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 14px;
    padding: 13px 18px;
    display: block;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, color .2s;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.18);
}

.nav-menu>li.has-drop>a::after {
    content: " ▾";
    font-size: 11px;
    opacity: .8;
}

.nav-menu .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    z-index: 999;
    padding: 8px 0;
}

.nav-menu>li:hover .dropdown {
    display: block;
}

.nav-menu .dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all .15s;
}

.nav-menu .dropdown a:hover {
    background: #f8fafc;
    color: var(--primary);
    padding-left: 24px;
}

/* ================================================================
   CART SIDEBAR DRAWER
   ================================================================ */
.cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1999;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    max-width: 95vw;
    height: 100vh;
    background: #ffffff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    box-shadow: -6px 0 35px rgba(0, 0, 0, .2);
    transition: right .3s cubic-bezier(.4, 0, .2, 1);
}

.cart-drawer.open {
    right: 0;
}

.cart-overlay.open {
    display: block;
}

.cart-drawer-header {
    background: var(--dark);
    color: #ffffff;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.cart-close-btn {
    background: rgba(255, 255, 255, .15);
    border: none;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.cart-close-btn:hover {
    background: var(--primary);
}

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}

.cart-empty i {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    align-items: flex-start;
}

.cart-item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: #f8fafc;
    border-radius: 8px;
    padding: 4px;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
    line-height: 1.3;
}

.cart-item-meta {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
}

.cart-item-remove {
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    flex-shrink: 0;
    margin-top: 2px;
    transition: color .2s;
}

.cart-item-remove:hover {
    color: var(--primary);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.cart-item-qty button {
    width: 24px;
    height: 24px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.cart-item-qty button:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.cart-item-qty span {
    font-size: 14px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-footer {
    padding: 16px 20px;
    border-top: 2px solid #f1f5f9;
    background: #f8fafc;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.cart-total span {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

.cart-total strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.btn-checkout {
    background: var(--primary);
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 13px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
}

.btn-checkout:hover {
    background: var(--primary-dark);
}

.btn-view-cart {
    background: var(--dark);
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 11px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background .2s;
}

.btn-view-cart:hover {
    background: #333;
}

/* ================================================================
   TOAST NOTIFICATION
   ================================================================ */
.cart-toast {
    position: fixed;
    bottom: 50px;
    right: 24px;
    background: #198754;
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .35);
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    min-width: 280px;
    transform: translateY(80px);
    opacity: 0;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
}

.cart-toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cart-toast .toast-icon {
    width: 36px;
    height: 36px;
    background: #0dcaf0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.cart-toast .toast-text {
    flex: 1;
}

.cart-toast .toast-text small {
    color: #ffc107;
    display: block;
    font-weight: 400;
    font-size: 12px;
}

/* ================================================================
   SECTION HEADERS
   ================================================================ */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .overline {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--dark);
}

.section-header p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 680px;
    margin: 8px auto 0;
}

/* ================================================================
   CATEGORY TABS
   ================================================================ */
.cat-tabs {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

.cat-tab {
    background: #ffffff;
    border: 1.5px solid var(--border);
    color: var(--text-dark);
    padding: 8px 22px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cat-tab:hover,
.cat-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

/* ================================================================
   PRODUCT CARD
   ================================================================ */
.product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: all .25s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.product-card .disc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 2;
}

.product-card .img-wrap {
    background: #f8fafc;
    padding: 20px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f1f5f9;
}

.product-card .img-wrap img {
    max-height: 245px;
    max-width: 100%;
    object-fit: contain;
    transition: transform .3s;
}

.product-card:hover .img-wrap img {
    transform: scale(1.06);
}

.product-card .card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card .cat-label {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}

.product-card .product-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.4;
}

.product-card .product-name a {
    color: var(--dark);
    text-decoration: none;
    transition: color .2s;
}

.product-card .product-name a:hover {
    color: var(--primary);
}

.product-card .product-meta {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 8px;
}

.product-card .product-meta span {
    margin-right: 10px;
}

.product-card .short-desc {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.product-card .price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.product-card .old-price {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
}

.product-card .card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-cart {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    flex: 1;
    transition: background .2s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
}

.btn-cart:hover {
    background: var(--primary-dark);
    color: #ffffff;
}

.btn-wishlist {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #94a3b8;
    width: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    font-size: 14px;
}

.btn-wishlist:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-detail {
    background: var(--dark);
    color: #ffffff;
    border: none;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background .2s;
    justify-content: center;
    display:none;
}

.btn-detail:hover {
    background: var(--primary);
    color: #ffffff;
}

.btn-hero-primary {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 13px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    color: #ffffff;
}

.btn-cta-white {
    background: #ffffff;
    color: var(--primary);
    border: none;
    padding: 13px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}

.btn-cta-white:hover {
    background: var(--dark);
    color: #ffffff;
}

.btn-cta-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, .6);
    padding: 11px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}

.btn-cta-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, .1);
    color: #ffffff;
}

.btn-add-to-cart-lg {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    text-decoration: none;
}

.btn-add-to-cart-lg:hover {
    background: var(--primary-dark);
    color: #ffffff;
}

/* ================================================================
   HERO BANNER
   ================================================================ */
.hero-section {
    width: 100%;
    line-height: 0;
}

.hero-section img.hero-bg {
    width: 100%;
    height: auto;
    display: block;
    /*max-height: 750px;*/
    /*padding:10px;*/
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 767px) {
    .hero-section img.hero-bg {
        max-height: 250px;
        /*margin-top: 20px;*/
    }
}

@media (max-width: 480px) {
    .hero-section img.hero-bg {
        /* max-height: 180px; */
    }
}

/* ================================================================
   ABOUT US SECTION
   ================================================================ */
.about-section {
    background: linear-gradient(135deg, #101728 0%, #16213e 50%, #1a1a2e 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-tag {
    background: var(--primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-title span {
    color: var(--primary);
}

.about-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 600px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.about-feature-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all .25s ease;
}

.about-feature-box:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(200, 16, 46, 0.5);
    transform: translateY(-2px);
}

.about-feature-icon {
    width: 42px;
    height: 42px;
    background: rgba(200, 16, 46, 0.15);
    border: 1px solid rgba(200, 16, 46, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.about-feature-text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.about-img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform .3s ease;
}

.about-img-wrap:hover {
    transform: translateY(-4px);
}

.about-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ================================================================
   SHOP PAGE SPECIFIC STYLES
   ================================================================ */
.shop-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    padding: 40px 0;
    color: #ffffff;
    margin-bottom: 30px;
}

.shop-banner h1 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 8px;
}

.shop-banner p {
    color: #94a3b8;
    font-size: 15px;
    margin: 0;
}

/* Shop Sidebar */
.shop-sidebar-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 24px;
}

.shop-sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-sidebar-title i {
    color: var(--primary);
}

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

.shop-cat-list li {
    margin-bottom: 6px;
}

.shop-cat-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    transition: all .2s ease;
}

.shop-cat-list li a:hover,
.shop-cat-list li a.active {
    background: #fef2f2;
    color: var(--primary);
    font-weight: 700;
    padding-left: 18px;
}

.shop-cat-list li a .cat-count-badge {
    background: #f1f5f9;
    color: #64748b;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.shop-cat-list li a.active .cat-count-badge {
    background: var(--primary);
    color: #ffffff;
}

.shop-toolbar {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.shop-results-count {
    font-size: 14px;
    color: #64748b;
}

.shop-sort-select {
    width: auto;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    font-size: 13px;
    padding: 7px 14px;
    font-weight: 600;
    color: #334155;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 64px 0;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 16px;
    opacity: .9;
    margin-bottom: 30px;
}

/* ================================================================
   TRUST BADGES
   ================================================================ */
.trust-badges {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 30px 0;
}

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb-wrap {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0;
}

.breadcrumb {
    margin: 0;
    font-size: 13px;
    background: transparent;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #64748b;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #cbd5e1;
}

/* ================================================================
   PAGINATION
   ================================================================ */
.pagination {
    gap: 6px;
}

.pagination .page-link {
    color: var(--text-dark);
    border: 1.5px solid #e2e8f0;
    border-radius: 8px !important;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 14px;
    transition: all .2s;
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(200, 16, 46, .25);
}

.pagination .page-link:hover {
    background: #fef2f2;
    color: var(--primary);
    border-color: var(--primary);
}

/* ================================================================
   PRODUCT DETAIL PAGE
   ================================================================ */
.product-detail-img-wrap {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.product-detail-img-wrap img {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
}

.platform-icons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 18px;
    flex-wrap: wrap;
}

.platform-icon {
    text-align: center;
    font-size: 11px;
    color: #64748b;
}

.platform-icon i {
    display: block;
    font-size: 22px;
    margin-bottom: 4px;
    color: var(--dark);
}

.product-detail-info {
    padding-left: 8px;
}

.product-detail-info .cat-badge {
    background: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.product-detail-info h1 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 10px;
}

.star-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.star-row i {
    color: #FFD700;
    font-size: 14px;
}

.star-row small {
    color: #94a3b8;
    font-size: 12px;
}

.price-detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.price-detail-row .price-big {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
}

.price-detail-row .price-old {
    font-size: 16px;
    color: #94a3b8;
    text-decoration: line-through;
}

.save-badge {
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 14px;
}

.meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.meta-pill {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-pill i {
    color: var(--primary);
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.qty-box {
    display: flex;
    align-items: center;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.qty-box button {
    width: 38px;
    height: 44px;
    background: #f8fafc;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.qty-box button:hover {
    background: var(--primary);
    color: #ffffff;
}

.qty-box input {
    width: 52px;
    height: 44px;
    border: none;
    border-left: 1.5px solid #e2e8f0;
    border-right: 1.5px solid #e2e8f0;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    outline: none;
}

.add-cart-wrap {
    flex: 1;
    min-width: 200px;
}

/* Content tabs */
.content-tabs {
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 28px;
}

.content-tabs .tab-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all .2s;
}

.content-tabs .tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Product content rich text */
.product-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 24px 0 10px;
    border-left: 4px solid var(--primary);
    padding-left: 12px;
}

.product-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin: 20px 0 8px;
}

.product-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 12px;
}

.product-content ul {
    margin: 0 0 14px 20px;
}

.product-content ul li {
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 4px;
}

.product-content strong {
    color: var(--dark);
}

/* ================================================================
   MOBILE RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
    .logo-wrap img {
        height: 65px;
    }

    .header-search {
        max-width: 260px;
    }

    .product-detail-info {
        padding-left: 0;
        margin-top: 24px;
    }

    .about-section {
        padding: 50px 0;
    }

    .about-img-wrap {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .top-bar {
        font-size: 11px;
    }

    /* .logo-wrap img {
        height: 52px;
    } */

    .header-search {
        display: none;
    }

    .header-icons {
        gap: 16px !important;
    }

    .nav-toggler {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--primary-dark);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu>li {
        width: 100%;
    }

    .nav-menu>li>a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .nav-menu>li>a:hover {
        background: rgba(0, 0, 0, .2);
    }

    .nav-menu .dropdown {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: rgba(0, 0, 0, .15);
        display: block !important;
        padding: 0;
    }

    .nav-menu .dropdown a {
        padding: 10px 30px;
        color: rgba(255, 255, 255, .85);
        border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .nav-menu .dropdown a:hover {
        background: rgba(0, 0, 0, .2);
        color: #ffffff;
    }

    .nav-menu>li.has-drop>a::after {
        content: "";
    }

    .cart-toast {
        min-width: 240px;
        right: 12px;
        bottom: 12px;
    }

    .product-detail-img-wrap {
        padding: 20px;
    }

    .price-detail-row .price-big {
        font-size: 26px;
    }

    .qty-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .add-cart-wrap {
        width: 100%;
    }
}

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

@media (max-width: 480px) {
    /* .logo-wrap img {
        height: 46px;
    } */

    .top-bar .d-sm-none {
        display: none !important;
    }

    .product-card .img-wrap {
        height: 165px;
    }
}

/* ================================================================
   ABOUT US PAGE STYLES
   ================================================================ */
.about-page-wrapper {
    background: #ffffff;
    padding: 50px 0 70px;
}

.about-block {
    margin-bottom: 50px;
}

.about-block:last-child {
    margin-bottom: 0;
}

.about-sec-title {
    font-size: 26px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 12px;
}

.about-sec-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.about-sec-title.no-line::after {
    display: none;
}

.about-text {
    font-size: 15px;
    line-height: 1.85;
    color: #475569;
    margin-bottom: 16px;
}

.about-text strong {
    color: #0f172a;
    font-weight: 700;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* About Intro Showcase Box */
.about-showcase-box {
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    /* padding: 30px; */
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.about-showcase-box img {
    /* max-height: 320px; */
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
    transition: transform .3s ease;
}

.about-showcase-box:hover img {
    transform: scale(1.04);
}

.about-showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.about-showcase-badge i {
    color: var(--primary);
}

/* Mission & Vision Cards */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mv-card {
    background-image: url('image/bg-img.png');
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 28px;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mv-card:hover {
    border-color: rgba(200, 16, 46, 0.4);
    box-shadow: 0 12px 32px rgba(200, 16, 46, 0.08);
    transform: translateY(-3px);
}

.mv-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.mv-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgb(255 255 255);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.mv-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}
.mv-card .about-text,.mv-card .about-text strong{
    color:#fff;
}
/* Feature / Tech List */
.feature-item-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px 0;
}

.feature-item-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

.feature-item-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-size: 16px;
}

.feature-item-list li strong {
    color: #0f172a;
    font-weight: 700;
}

/* Security Pill Badges */
.threat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.threat-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: #334155;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .2s ease;
}

.threat-pill i {
    color: var(--primary);
}

.threat-pill:hover {
    background: #fef2f2;
    border-color: var(--primary);
    color: var(--primary);
}

/* About Support Banner Callout */
.about-support-callout {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 36px 40px;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin-top: 50px;
}

@media (max-width: 991px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .about-support-callout {
        padding: 30px 24px;
    }
}

/* ================================================================
   ANTIVIRUS SERVICES PAGE STYLES
   ================================================================ */
.services-page-wrapper {
    background: #ffffff;
    padding: 50px 0 70px;
}

.as-block {
    margin-bottom: 50px;
}

.as-block:last-child {
    margin-bottom: 0;
}

.as-sec-title {
    font-size: 26px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 12px;
}

.as-sec-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.as-sec-title.no-line::after {
    display: none;
}

.as-text {
    font-size: 15px;
    line-height: 1.85;
    color: #475569;
    margin-bottom: 16px;
}

.as-text strong {
    color: #0f172a;
    font-weight: 700;
}

.as-text:last-child {
    margin-bottom: 0;
}

/* Showcase Box */
.as-showcase-box {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    border: 1.5px solid #334155;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    text-align: center;
    position: relative;
}

.as-showcase-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.as-showcase-box:hover img {
    transform: scale(1.03);
}

/* 2-Column Cards */
.as-cards-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.as-card-item {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 28px;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.as-card-item:hover {
    border-color: rgba(200, 16, 46, 0.4);
    box-shadow: 0 12px 30px rgba(200, 16, 46, 0.08);
    transform: translateY(-3px);
}

.as-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.as-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(200, 16, 46, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.as-card-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

/* Features Container Box (6 Cards) */
.as-features-container {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 36px;
    margin-bottom: 50px;
}

.as-features-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.as-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.as-feature-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 22px;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.as-feature-card:hover {
    border-color: rgba(200, 16, 46, 0.45);
    box-shadow: 0 10px 24px rgba(200, 16, 46, 0.08);
    transform: translateY(-3px);
}

.as-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(200, 16, 46, 0.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    transition: all .25s ease;
}

.as-feature-card:hover .as-feature-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.08);
}

.as-feature-card h4 {
    font-size: 16.5px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid #f1f5f9;
}

.as-feature-card p {
    font-size: 13.5px;
    line-height: 1.75;
    color: #475569;
    margin: 0;
}

/* Cyber Theme Why Choose Support Banner */
.as-cyber-banner {
    background: url('image/bg-img.png');
    border: 1.5px solid rgba(200, 16, 46, 0.3);
    border-radius: 20px;
    padding: 40px 44px;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.as-cyber-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.as-cyber-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.as-cyber-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.as-cyber-list li {
    font-size: 14.5px;
    color: #e2e8f0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.as-cyber-list li i {
    color: #ff334b;
    font-size: 14px;
}

.as-cyber-note {
    font-size: 13.5px;
    line-height: 1.7;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    margin: 0;
}

.as-cyber-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.as-lock-glow-box {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.25) 0%, rgba(15, 23, 42, 0.1) 70%);
    border: 2px solid rgba(200, 16, 46, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(200, 16, 46, 0.3), inset 0 0 20px rgba(200, 16, 46, 0.2);
    text-align: center;
    padding: 20px;
    animation: pulseLock 3s infinite ease-in-out;
}

@keyframes pulseLock {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(200, 16, 46, 0.3), inset 0 0 20px rgba(200, 16, 46, 0.2); }
    50% { transform: scale(1.04); box-shadow: 0 0 60px rgba(200, 16, 46, 0.5), inset 0 0 30px rgba(200, 16, 46, 0.35); }
}

.as-lock-glow-box i {
    font-size: 54px;
    color: #ff334b;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 10px rgba(255, 51, 75, 0.6));
}

.as-lock-glow-box span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

/* Contact Guidance Checklist */
.as-checklist {
    list-style: none;
    padding: 0;
    margin: 18px 0 22px 0;
}

.as-checklist li {
    font-size: 14.5px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 10px;
    position: relative;
    padding-left: 26px;
}

.as-checklist li::before {
    content: "●";
    position: absolute;
    left: 4px;
    top: 0px;
    color: var(--primary);
    font-size: 16px;
}

.as-checklist li strong {
    color: #0f172a;
    font-weight: 700;
}

.as-phone-link {
    color: var(--primary);
    text-decoration: none;
    transition: color .2s;
}

.as-phone-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .as-cards-2col {
        grid-template-columns: 1fr;
    }
    .as-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .as-cyber-banner {
        padding: 32px 24px;
    }
    .as-cyber-visual {
        margin-top: 24px;
    }
}

@media (max-width: 576px) {
    .as-features-grid {
        grid-template-columns: 1fr;
    }
    .as-features-container {
        padding: 28px 18px;
    }
    .as-sec-title {
        font-size: 22px;
    }
    .as-card-item {
        padding: 22px 18px;
    }
}

/* ================================================================
   CONTACT US PAGE STYLES
   ================================================================ */
.contact-page-wrapper {
    background: #ffffff;
    padding: 50px 0 70px;
}

.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.contact-channel-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 26px 20px;
    text-align: center;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.contact-channel-card:hover {
    border-color: rgba(200, 16, 46, 0.45);
    box-shadow: 0 12px 30px rgba(200, 16, 46, 0.08);
    transform: translateY(-4px);
}

.contact-channel-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(200, 16, 46, 0.09);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    transition: all .25s ease;
}

.contact-channel-card:hover .contact-channel-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.08);
}

.contact-channel-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.contact-channel-card p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-channel-card .contact-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    transition: color .2s;
    word-break: break-all;
}

.contact-channel-card .contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
}

.contact-form-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.contact-form-card .form-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.contact-form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.contact-form-group label span {
    color: var(--primary);
}

.contact-form-control {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 11px 16px;
    font-size: 14px;
    font-family: inherit;
    color: #1e293b;
    background: #f8fafc;
    outline: none;
    transition: all .2s ease;
}

.contact-form-control:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3.5px rgba(200, 16, 46, 0.12);
}

textarea.contact-form-control {
    resize: vertical;
    min-height: 110px;
}

/* Contact Support Box (Right Column) */
.contact-support-showcase {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-support-img-wrap {
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

.contact-support-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .35s ease;
}

.contact-support-showcase:hover .contact-support-img-wrap img {
    transform: scale(1.03);
}

.contact-support-body {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-pillar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 14px;
}

.contact-pillar-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .2s ease;
}

.contact-pillar-item:hover {
    background: #fef2f2;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.contact-pillar-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(200, 16, 46, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-pillar-info h6 {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.contact-pillar-info small {
    font-size: 11px;
    color: #64748b;
    display: block;
    line-height: 1.3;
}

/* Contact FAQ Section */
.contact-faq-wrapper {
    margin-top: 55px;
}

.faq-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all .2s ease;
}

.faq-card:hover {
    border-color: rgba(200, 16, 46, 0.35);
}

.faq-header-btn {
    width: 100%;
    text-align: left;
    background: #ffffff;
    border: none;
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    outline: none;
    transition: background .2s, color .2s;
}

.faq-header-btn:hover {
    color: var(--primary);
}

.faq-header-btn[aria-expanded="true"] {
    color: var(--primary);
    background: #fdf2f4;
    border-bottom: 1px solid #fee2e2;
}

.faq-header-btn i {
    font-size: 14px;
    color: var(--primary);
    transition: transform .2s ease;
}

.faq-header-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-body-content {
    padding: 18px 22px;
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
    background: #ffffff;
}

/* Contact Location Map Card */
.contact-map-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.contact-map-card iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

/* Responsive Media Queries for Contact */
@media (max-width: 991px) {
    .contact-channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-channels-grid {
        grid-template-columns: 1fr;
    }
    .contact-pillar-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 26px 18px;
    }
}

/* ================================================================
   CART & CHECKOUT PAGE STYLES
   ================================================================ */
.cart-page-wrapper,
.checkout-page-wrapper {
    background: #ffffff;
    padding: 40px 0 80px;
    min-height: 60vh;
}

.cart-page-title,
.checkout-title {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 28px;
    font-family: inherit;
}

/* Cart Table Layout */
.cart-table-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.cart-table-header {
    display: flex;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1.5px solid #e2e8f0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #0f172a;
    text-transform: uppercase;
    background: #ffffff;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    border-bottom: 1px solid #f1f5f9;
    gap: 20px;
    transition: background .2s;
}

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

.cart-item-left {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
}

.cart-item-thumb {
    width: 72px;
    height: 72px;
    object-fit: contain;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 4px;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-details .item-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    line-height: 1.35;
}

.cart-item-details .item-title a {
    color: inherit;
    text-decoration: none;
}

.cart-item-details .item-title a:hover {
    color: var(--primary);
}

.cart-item-details .item-price-wrap {
    font-size: 13.5px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.cart-item-details .item-price-wrap del {
    color: #94a3b8;
}

.cart-item-details .item-price-wrap strong {
    color: #0f172a;
    font-weight: 700;
}

.cart-item-details .save-pill {
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.cart-item-details .item-meta {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 3px;
}

.cart-item-details .item-details-link {
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 8px;
}

.cart-item-details .item-desc {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 10px;
}

.cart-item-details .item-qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-counter {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
}

.qty-counter button {
    width: 28px;
    height: 30px;
    border: none;
    background: #f8fafc;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}

.qty-counter button:hover {
    background: #e2e8f0;
}

.qty-counter span {
    min-width: 32px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.btn-item-trash {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    transition: color .2s;
}

.btn-item-trash:hover {
    color: var(--primary);
}

.cart-item-total-col {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    text-align: right;
    min-width: 80px;
}

/* Cart Totals Sidebar */
.cart-totals-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    position: sticky;
    top: 90px;
}

.cart-totals-card h4 {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.coupon-toggle-wrap {
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 0;
    margin-bottom: 16px;
}

.coupon-btn {
    background: none;
    border: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.coupon-input-group {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.coupon-input {
    flex: 1;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    outline: none;
}

.btn-coupon-apply {
    background: #0f172a;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.cart-estimated-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.cart-estimated-row span {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.cart-estimated-row strong {
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
}

.btn-proceed-checkout {
    background: #ffb800;
    color: #000000;
    border: none;
    width: 100%;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    display: block;
    text-decoration: none;
    transition: all .2s ease;
    cursor: pointer;
}

.btn-proceed-checkout:hover {
    background: #e6a600;
    color: #000000;
    box-shadow: 0 6px 18px rgba(255, 184, 0, 0.35);
}

/* Empty Cart View */
.cart-empty-view {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty-view i {
    font-size: 56px;
    color: #cbd5e1;
    margin-bottom: 16px;
    display: block;
}

/* ================================================================
   CHECKOUT PAGE SPECIFIC STYLES
   ================================================================ */
.checkout-section-block {
    margin-bottom: 32px;
}

.checkout-section-block h4 {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.checkout-control {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 11px 16px;
    font-size: 14px;
    font-family: inherit;
    color: #1e293b;
    background: #ffffff;
    outline: none;
    transition: all .2s ease;
    margin-bottom: 14px;
}

.checkout-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}

.checkout-hint {
    font-size: 12.5px;
    color: #64748b;
    margin-top: -6px;
    margin-bottom: 12px;
}

.checkout-check-label {
    font-size: 13.5px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 14px;
}

/* Order Summary Card */
.order-summary-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    position: sticky;
    top: 90px;
}

.order-summary-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
}

.summary-items-list {
    margin-bottom: 18px;
}

.summary-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.summary-thumb-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.summary-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 3px;
}

.summary-qty-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #64748b;
    color: #ffffff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.summary-item-info {
    flex: 1;
    min-width: 0;
}

.summary-item-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 3px;
}

.summary-item-price-col {
    text-align: right;
    flex-shrink: 0;
}

.summary-item-price-col strong {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    display: block;
}

.summary-item-price-col .save-badge-sm {
    background: #f1f5f9;
    color: #475569;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-top: 3px;
}

.summary-totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #64748b;
}

.summary-totals-row strong {
    color: #0f172a;
}

.summary-final-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1.5px solid #e2e8f0;
}

.summary-final-total span {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.summary-final-total strong {
    font-size: 24px;
    font-weight: 900;
    color: #0f172a;
}

.btn-place-order {
    background: #334155;
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 15px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s ease;
    margin-top: 20px;
}

.btn-place-order:hover {
    background: #0f172a;
}

@media (max-width: 991px) {
    .cart-item-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart-item-total-col {
        text-align: left;
        margin-top: 10px;
    }
    .cart-totals-card,
    .order-summary-card {
        margin-top: 30px;
        position: static;
    }
}

/* ================================================================
   THANK YOU PAGE STYLES
   ================================================================ */
.thankyou-page-wrapper {
    background: #ffffff;
    padding: 50px 0 80px;
    min-height: 70vh;
}

.thankyou-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 44px 36px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.thankyou-header {
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1.5px solid #f1f5f9;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.18);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.thankyou-title {
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.thankyou-subtitle {
    font-size: 15px;
    color: #64748b;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* License Key Box */
.license-key-box {
    background: linear-gradient(135deg, #090d16 0%, #0f172a 45%, #1e1b4b 100%);
    border: 1.5px solid rgba(200, 16, 46, 0.35);
    border-radius: 16px;
    padding: 26px 28px;
    color: #ffffff;
    margin-bottom: 32px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.license-key-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 8px;
}

.license-key-header h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.license-key-header .badge-active {
    background: #16a34a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.license-display-row {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px dashed rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 12px;
    flex-wrap: wrap;
}

.license-code-text {
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ff334b;
    user-select: all;
    word-break: break-all;
}

.btn-copy-key {
    background: #ffffff;
    color: #0f172a;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .2s;
}

.btn-copy-key:hover {
    background: var(--primary);
    color: #ffffff;
}

.license-quick-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.license-step-item {
    font-size: 12.5px;
    color: #cbd5e1;
    line-height: 1.5;
}

.license-step-item strong {
    color: #ffffff;
    display: block;
    margin-bottom: 2px;
}

/* Order Summary Table on Thankyou */
.thankyou-table-wrap {
    margin-bottom: 32px;
}

.thankyou-table {
    width: 100%;
    border-collapse: collapse;
}

.thankyou-table th {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    padding: 12px 16px;
    border-bottom: 2px solid #e2e8f0;
    background: #f8fafc;
}

.thankyou-table td {
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #334155;
    vertical-align: middle;
}

.thankyou-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.thankyou-info-box {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px 20px;
}

.thankyou-info-box h5 {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.thankyou-info-box p {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .license-quick-steps {
        grid-template-columns: 1fr;
    }
    .thankyou-info-grid {
        grid-template-columns: 1fr;
    }
    .thankyou-card {
        padding: 26px 18px;
    }
    .top-bar.top-fixed{
        display: block !important;
        position: fixed;
        top:0px;
        width: 100%;
        z-index: 9999;
        padding:15px 0px;
        background: #C8102E;
    }
    .top-bar.bottom-fixed{
        display: block !important;
        position: fixed;
        bottom: -1px;
        width: 100%;
         z-index: 9999;
         padding:15px 0px;
         background: #C8102E;
    }
    .site-header{
        top:45px;
    }
    .product-card .card-actions {
    flex-direction: column-reverse;
    }
}

/* ================================================================
   PRIVACY POLICY PAGE STYLES
   ================================================================ */
.policy-page-wrapper {
    background: #f8fafc;
    padding: 40px 0 80px;
    min-height: 70vh;
}

.policy-hero {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 36px 32px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.policy-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(200, 16, 46, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.policy-hero h1 {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.policy-hero p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

.policy-toc-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px;
    position: sticky;
    top: 90px;
}

.policy-toc-card h5 {
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #f1f5f9;
}

.policy-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 70vh;
    overflow-y: auto;
}

.policy-toc-list li {
    margin-bottom: 4px;
}

.policy-toc-list a {
    color: #64748b;
    font-size: 12.5px;
    text-decoration: none;
    display: block;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all .15s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.policy-toc-list a:hover {
    color: var(--primary);
    background: rgba(200, 16, 46, 0.06);
    font-weight: 600;
    padding-left: 14px;
}

.policy-section-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    scroll-margin-top: 100px;
}

.policy-section-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-section-card h3 .sec-num {
    background: #0f172a;
    color: #ffffff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.policy-section-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 16px;
    margin-bottom: 10px;
}

.policy-section-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 12px;
}

.policy-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 16px;
}

.policy-list li {
    font-size: 13.5px;
    color: #334155;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.policy-list li i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 12px;
    flex-shrink: 0;
}

.policy-highlight-box {
    background: #f8fafc;
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin: 16px 0;
    font-size: 13.5px;
    color: #334155;
    line-height: 1.65;
}

.policy-contact-card {
    background: linear-gradient(135deg, #090d16 0%, #0f172a 50%, #1e1b4b 100%);
    border: 1.5px solid rgba(200, 16, 46, 0.35);
    border-radius: 16px;
    padding: 30px;
    color: #ffffff;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .policy-toc-card {
        display: none;
    }
}

/* ================================================================
   MY ACCOUNT & AUTHENTICATION STYLES
   ================================================================ */
.account-page-wrap {
    padding: 50px 0 80px;
    background: #f8fafc;
    min-height: 70vh;
}

.auth-box-container {
    max-width: 580px;
    margin: 0 auto;
}

.auth-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 38px 34px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
}

.auth-card-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid #e2e8f0;
}

.auth-tab-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #94a3b8;
    padding: 10px 18px;
    cursor: pointer;
    transition: all .2s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.auth-tab-btn.active {
    color: #0f172a;
    border-bottom-color: #f58220;
}

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

.auth-form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.auth-form-group label span.req {
    color: #e11d48;
}

.auth-input {
    width: 100%;
    height: 46px;
    border: 1.5px solid #cbd5e1;
    border-radius: 6px;
    padding: 0 14px;
    font-size: 14px;
    color: #1e293b;
    background: #ffffff;
    transition: all .15s ease;
    outline: none;
}

.auth-input:focus {
    border-color: #f58220;
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.15);
}

.password-input-wrap {
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 15px;
    padding: 4px;
}

.password-toggle-btn:hover {
    color: #475569;
}

.btn-auth-submit {
    background: #f58220;
    color: #ffffff;
    font-weight: 700;
    font-size: 14.5px;
    padding: 10px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background .15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-auth-submit:hover {
    background: #e07010;
    color: #ffffff;
}

.auth-links {
    margin-top: 16px;
}

.auth-links a {
    color: #f58220;
    text-decoration: underline;
    font-size: 13.5px;
    font-weight: 500;
}

.auth-links a:hover {
    color: #d06509;
}

/* Customer Dashboard */
.account-user-banner {
    background: linear-gradient(135deg, #090d16 0%, #0f172a 60%, #1e1b4b 100%);
    border-radius: 16px;
    padding: 30px 32px;
    color: #ffffff;
    margin-bottom: 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
}

.account-sidebar-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px;
}

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

.account-nav-item {
    margin-bottom: 6px;
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .15s ease;
}

.account-nav-link.active,
.account-nav-link:hover {
    background: #f8fafc;
    color: #f58220;
    font-weight: 700;
}

.account-content-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.stat-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.stat-box {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 20px;
}

.stat-box .num {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
}

.stat-box .label {
    font-size: 12.5px;
    color: #64748b;
    font-weight: 600;
    margin-top: 2px;
}

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

/* ================================================================
   HERO BANNER SLIDER
   ================================================================ */
.hero-slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #090d16;
}

.hero-slider-item {
    position: relative;
    width: 100%;
}

.hero-slider-link {
    display: block;
    position: relative;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
}

.hero-slider-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}

.hero-slider-link:hover .hero-slider-img {
    transform: scale(1.008);
}

.hero-slider-control {
    width: 48px;
    height: 48px;
    background: rgba(15, 23, 42, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
    transition: all .25s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-control:hover {
    background: var(--primary);
    opacity: 1;
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
}

.hero-slider-control.carousel-control-prev {
    left: 20px;
}

.hero-slider-control.carousel-control-next {
    right: 20px;
}

.hero-slider-control i {
    font-size: 18px;
    color: #ffffff;
}

.hero-slider-indicators {
    margin-bottom: 16px;
    gap: 8px;
    z-index: 10;
}

.hero-slider-indicators [data-bs-target] {
    width: 28px;
    height: 6px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.45);
    border: none;
    transition: all .3s ease;
    cursor: pointer;
}

.hero-slider-indicators .active {
    width: 44px;
    background-color: var(--primary);
}

@media (max-width: 768px) {
    .hero-slider-control {
        width: 36px;
        height: 36px;
    }
    .hero-slider-control i {
        font-size: 14px;
    }
    .hero-slider-control.carousel-control-prev { left: 8px; }
    .hero-slider-control.carousel-control-next { right: 8px; }
    .hero-slider-indicators { margin-bottom: 8px; }
    .hero-slider-indicators [data-bs-target] { width: 20px; height: 4px; }
    .hero-slider-indicators .active { width: 32px; }
}