      /* ----- reset / base ----- */
        body {
            background: #f8f9fa;
        }
        /* ----- top navbar (fixed) ----- */
        .navbar-top {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            display: flex;
            align-items: center;
            padding: 0.5rem 1rem;
            min-height: 56px;
            background: #212529;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .navbar-top .container-fluid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        .navbar-top .navbar-brand {
            font-weight: 500;
            font-size: 1.25rem;
            text-decoration: none;
            color: #fff;
            margin-right: 1rem;
        }
        .navbar-top .nav-links {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .navbar-top .nav-links a {
            text-decoration: none;
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
            padding: 0.25rem 0;
        }
        .navbar-top .nav-links a.active {
            color: #fff;
        }
        .navbar-top .search-form {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .navbar-top .search-form input {
            border: 1px solid #444;
            background: #2b3035;
            color: #fff;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.9rem;
            width: 160px;
        }
        .navbar-top .search-form input::placeholder {
            color: #aaa;
        }
        .navbar-top .search-form button {
            background: transparent;
            color: #ced4da;
            padding: 0.2rem 0.9rem;
            border-radius: 0px;
            font-size: 0.85rem;
        }

        /* ----- lower navbar (ticker / promo bar) ----- */
        .navbar-promo {
            position: fixed;
            top: 56px;
            left: 0;
            right: 0;
            z-index: 1020;
            display: flex;
            align-items: center;
            padding: 0.4rem 1rem;
            min-height: 48px;
            background: #0d6efd;
            border-bottom: 1px solid rgba(0,0,0,0.08);
            box-shadow: 0 2px 6px rgba(0,0,0,0.03);
        }
        .navbar-promo .promo-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            flex-wrap: wrap;
        }
        .navbar-promo .promo-left {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .navbar-promo .promo-left .ticker-wrap {
            overflow: hidden;
            white-space: nowrap;
            max-width: 780px;
        }
       .navbar-promo .promo-left .ticker-text {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
    transform: translateX(300%); 
}

/* slide in */
.ticker-slide {
    animation: tickerIn 2s ease forwards;
}

@keyframes tickerIn {
    from {
        transform: translateX(200%);
    }
    to {
        transform: translateX(0);
    }
}

/* slide out */
.ticker-hide {
    animation: tickerOut 2s ease forwards;
}

@keyframes tickerOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
        .navbar-promo .promo-right {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .navbar-promo .promo-right .deal-badge {
            background: #ffc107;
            color: #212529;
            font-weight: 600;
            padding: 0.25rem 0.9rem;
            border-radius: 40px;
            font-size: 0.8rem;
            letter-spacing: 0.3px;
            text-decoration: none;
            display: inline-block;
        }
        .navbar-promo .promo-right .view-link {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            border: 1px solid rgba(255,255,255,0.5);
            padding: 0.2rem 1.1rem;
            border-radius: 30px;
            transition: 0.1s;
        }
        .navbar-promo .promo-right .view-link:hover {
            background: rgba(255,255,255,0.1);
        }
        /* small screens: stack promo elements */
        @media (max-width: 576px) {
            .navbar-promo .promo-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.3rem;
            }
            .navbar-promo .promo-left .ticker-wrap {
                max-width: 100%;
            }
            .navbar-top .search-form input {
                width: 120px;
            }
        }

        /* ----- main content offset for two fixed bars ----- */
        main {
            margin-top: 102px;
            padding: 1rem 0 1rem;
        }
        .cust-container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .footer {
            background: #e9ecef;
            padding: 1rem 0;
            margin-top: 2rem;
        }
        /* just to keep demo cards tidy */
        .card {
            border-radius: 12px;
        }
        .bd-placeholder-img {
            background: #6c757d;
            color: #fff;
            text-anchor: middle;
        }
        .row-cols-1 .col {
            margin-bottom: 1.5rem;
        }
        body {
            margin: 0;
        }
        .cust-mainNav {
            background: linear-gradient(635deg, #0f2862, #091f36, purple);
        }
        .cust-floatNav {
            background: linear-gradient(635deg, #091f36, #4f5f76);
        }
        .cust-bottomNav {
            background: linear-gradient(635deg, purple, #091f36, #0f2862 );
        }
        
        /* Product card styling */
        .card_data {
            background: white;
            overflow: hidden;
            transition: transform 0.2s;
        }
        .card_data:hover {
            transform: translateY(-5px);
        }
        .product-image {
            object-fit: cover;
            width: 100%;
        }
        
        /* Modal styling */
        #imageModal .modal-content {
            background: transparent;
            border: none;
        }
        #imageModal .modal-body {
            padding: 0;
        }
        #imageModal .modal-header {
            border: none;
            padding: 1rem 1rem 0;
        }
        #imageModal .modal-header .btn-close {
            background-color: white;
            opacity: 0.8;
        }
        .modal-image-container {
            position: relative;
            background: rgba(0,0,0,0.9);
            border-radius: 12px;
            padding: 20px;
        }
        .modal-image-container img {
            max-height: 60vh;
            width: 100%;
            object-fit: contain;
        }
        .modal-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            padding: 12px 16px;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.2s;
        }
        .modal-nav-btn:hover {
            background: rgba(255,255,255,0.4);
        }
        .modal-nav-btn.prev {
            left: 10px;
        }
        .modal-nav-btn.next {
            right: 10px;
        }
        
        /* Loader */
        .loader {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #3498db;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 40px auto;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Cart count badge */
        .cart-badge {
            position: relative;
        }
        .cart-badge .badge {
            position: absolute;
            top: -8px;
            right: -8px;
            font-size: 0.6rem;
            padding: 0.25rem 0.4rem;
        }
        
        /* Ticker message animation */
        .ticker-text {
            transition: opacity 0.6s ease;
            
        }
        .ticker-text.show-message {
            opacity: 1;
        }
        .announcement{
            text-decoration: none;
        }
        .cardStyle{
        box-shadow: 0 3px 7px rgba(0,0,0,0.03);
    }
 .product-image-link {
    text-decoration:none;
    outline:none;
}

.product-image-link img {
    display:block;
}
.coin-icon {
    background: linear-gradient(635deg, #0f2862, #091f36, purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
}
 
.btn-coin-icon {
    background: linear-gradient(135deg, #0f2862, #091f36, purple);
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(15,40,98,0.4);
}
.btn-coin-icon:hover {
    color: #ffd700; /* Gold - you can change to any color */
}

.btn-coin-icon2{
    background: none;
    color: darkblue;
    border: linear-gradient(135deg, #0f2862, #091f36, purple);
    box-shadow: 0 4px 12px rgba(15,40,98,0.4);
}
.priceTag{
    color: red;
    font-size: 25px;
    font-weight: bold;
}

.modal-dialog .card {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  border: none;
  border-radius: 20px;
  color: white;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.floating-cart {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: #0f2862;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s;
}

.floating-cart:hover {
    background: #091f36;
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    font-size: 12px;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
    