body {
    font-family: Arial, sans-serif;
    padding-top: 128px;
    overflow-x: hidden;
    overflow-y: auto;
}

* {
    max-width: 100%;
}

body {
    margin: 0;
    padding-top: 140px;
    font-family: Arial, Helvetica, sans-serif;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #f8d7da;
    font-size: 14px;
    padding: 6px 0;
    z-index: 1000;
}

.top-bar .container {
    max-width: 92%;
    padding-left: 0;
    padding-right: 0;
}

.main-navbar {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #e40046;
    margin-left: -1rem;
}

.logo img {
    height: 80px;
}

.search-box input {
    border-radius: 30px 0 0 30px;
    padding-left: 20px;
}

.search-box button {
    border-radius: 0 30px 30px 0;
}

.nav-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
}

.nav-icon i,
.nav-icon svg {
    margin-bottom: 3px;
}

.nav-icons {
    gap: 20px;
}

.nav-icons a {
    text-decoration: none;
    color: #000;
    margin-left: 20px;
    font-size: 14px;
}

.download-btn {
    background: #e40046;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 6px;
}

.download-btn:hover {
    background: #c8003c;
}

.category-menu {
    position: fixed;
    top: 136px;
    left: 0;
    right: 0;
    z-index: 998;
    border-bottom: 1px solid #eee;
    background: #fff;
    font-size: 14px;
    padding: 12px 0;
}

.category-menu .container-fluid {
    padding-left: 3rem;
    padding-right: 2rem;
}

.category-menu a {
    text-decoration: none;
    color: #000;
    margin-right: 21px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

#nav-category {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    margin-right: 6px;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1426px;
    }
}

@media (max-width: 991px) {

    .top-bar {
        display: none;
    }

    .main-navbar {
        top: 0px;
        padding: 12px 0;
    }

    .carousel-inner {
        margin-top: 3.6rem !important;
    }

    .category-menu {
        display: none;
    }

    body {
        padding-top: 75px;
    }

    .logo img {
        height: 55px;
    }

    .search-box input {
        font-size: 14px;
        padding: 10px 15px;
    }

    .search-box button {
        padding: 10px 15px;
    }

    .nav-icons {
        gap: 12px;
    }
}

@media (max-width: 576px) {

    body {
        padding-top: 70px;
    }

    .logo img {
        height: 50px;
    }

    .search-box input {
        font-size: 13px;
    }
}

/* box slide */

.steps-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px;
}

.steps-slider::-webkit-scrollbar {
    display: none;
}

.step-card {
    min-width: 320px;
    max-width: 320px;
    height: 140px;
    flex-shrink: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #eae7e3;
    border: 2px solid #ff6a00;
    border-radius: 20px;
    padding: 20px;
    position: relative;
}

.card-content h3 {
    color: #ff6a00;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.card-content p {
    color: #444;
    font-size: 14px;
    margin-top: 5px;
}

.card-icon {
    position: relative;
}

.card-icon img {
    width: 50px;
    height: 80px;
    object-fit: contain;
    z-index: 2;
}

.card-icon::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.arrow-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.left-btn {
    left: -10px;
}

.right-btn {
    right: -10px;
}

/************************************/
.arrow-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%) scale(0.8);
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    
    opacity: 0;
    transition: 0.3s ease;
}

/* Position */
.left-btn { left: -10px; }
.right-btn { right: -10px; }

/* Show arrows when hovering container */
.position-relative:hover .arrow-btn {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* Hover effect like Bootstrap */
.arrow-btn:hover {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    padding: 10px 14px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

/* Optional: smooth icon look */
.arrow-btn::after {
    color: black;
}




.carousel-control-next,
.carousel-control-next-icon,
.carousel-control-prev-icon {
    transition: 0.3s ease;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    opacity: 0;
    transform: scale(0.8);
    filter: brightness(0);
    transition: 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    opacity: 1;
    transform: scale(1);
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);

}

.carousel-control-prev:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {

    #cashkaroSlider .row {
        flex-wrap: nowrap;
    }

    #cashkaroSlider .col-lg-3,
    #cashkaroSlider .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .cashkaro-card {
        height: 120px;
        padding: 15px;
    }

    .card-text h4 {
        font-size: 14px;
    }

    .card-text p {
        font-size: 12px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon img {
        width: 25px;
    }
}

.carousel-item {
    min-height: 10rem;
}

.carousel-item img {
    min-height: 10rem;
}



/* most popular brand */
.section-title {
    font-weight: 700;
    font-size: 22px;
}

.brand-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 194px;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.offer-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #ffd6db;
    color: #d1002c;
    font-size: 13px;
    font-weight: 600;
    padding: 6px;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.brand-logo {
    height: 58px;
    width: 12rem;
    margin: 30px 0;
    object-fit: contain;
}

.cashback-btn {
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
}

.view-all {
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

/* 06.03.2026*/

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.top-header h5 {
    font-weight: 600;
    margin: 0;
}

.view-all {
    color: #2d6cff;
    text-decoration: none;
    font-weight: 500;
}

/* CARD */

.deal-card {
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    border: 4px solid #ff7a00;
}

.deal-inner {
    background: #ff7a00;
    border-radius: 12px;
    padding: 16px;
    height: 204px;
    display: flex;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* LEFT CONTENT */

.amazon-badge {
    background: #fff;
    color: #000;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 6px;
}

.deal-title {
    color: #fff;
    font-size: 13px;
    margin-bottom: 2px;
}

.deal-off {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.reward-box {
    margin-top: 6px;
    background: #2d6cff;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.reward-box span {
    background: #1747c7;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

/* BUTTON */

.grab-btn {
    position: absolute;
    bottom: 12px;
    right: 14px;
    background: #fff;
    border: none;
    color: #2d6cff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
}

/* IMAGE */

.deal-img {
    position: absolute;
    right: 10px;
    bottom: 65px;
    height: 120px;
}

.deal-logo {
    width: 94px;
    height: 30px;
}



/* Product */
.section-title {
    font-weight: 600;
    font-size: 18px;
}

/* Slider wrapper */
.slider-wrapper {
    position: relative;
}

/* Slider */
.product-slider {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

/* Hide scrollbar */
.product-slider::-webkit-scrollbar {
    display: none;
}

/* Card */
.product-card {
    flex: 0 0 auto;
    width: 220px;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #eee;
    text-align: center;
}

.product-img {
    height: 130px;
    object-fit: contain;
    margin-bottom: 10px;
}

.brand {
    font-size: 12px;
    color: #777;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
}

.price {
    font-weight: 600;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 13px;
}

.discount {
    color: #1976d2;
    font-size: 13px;
    font-weight: 600;
}

.cashback {
    background: #f3f3f3;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 6px;
}

.best-price {
    font-weight: 700;
    font-size: 18px;
}

/* Arrows */
/* parent container (example: carousel / slider / card) */
.slider-container {
    position: relative;
}

/* arrow button */
.arrow-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: 0.3s ease;
}

/* show arrow when hover */
.arrow-btn:hover {
    opacity: 1;
}

.left-btn {
    left: -20px;
}

.right-btn {
    right: -20px;
}

.arrow-btn:hover {
    background: #f5f5f5;
}

.second-row {
    font-size: 14px;
    color: #aaa;
}

.top-bar-menu {
    display: flex;
    gap: 20px;
}

.top-bar-menu a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.top-bar-menu a svg {
    display: block;
}

.top-bar-menu a .login-icon {
    display: block;
}

/* ------- */
.flash-section {
    padding: 60px 0;
    background: linear-gradient(90deg, #fff4c9, #f8e6ff, #e9f6ff);
}

.flash-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.timer {
    background: #e60023;
    color: white;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
}

/* ROW */
.flash-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.flash-row::-webkit-scrollbar {
    display: none;
}

.flash-row>div {
    scroll-snap-align: start;
}

/* desktop */
.flash-row .col-lg-4 {
    flex: 0 0 32%;
}

/* tablet */
@media(max-width:991px) {
    .flash-row .col-md-6 {
        flex: 0 0 48%;
    }
}

/* mobile */
@media(max-width:576px) {
    .flash-row>div {
        flex: 0 0 100%;
    }
}

/* DEAL CARD */
.deal-box {
    height: 277px;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: linear-gradient(90deg,
            #f6efc6 0%,
            #f5e6d5 30%,
            #f9d6ef 65%,
            #e4f1ff 100%);

    border: 3px solid #f5c7e7;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

/* gradient glow */
.deal-box::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #ffb6e6, transparent 60%);
    top: -80px;
    right: -80px;
    opacity: .6;
}

.deal-box::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #ffdcb3, transparent 60%);
    bottom: -80px;
    left: -80px;
    opacity: .6;
}

.deal-right img {
    width: 140px;
}

.brand-box {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.tagline {
    font-size: 14px;
    margin-bottom: 8px;
}

.offer-title {
    font-weight: 700;
}

.offer-sub {
    font-size: 14px;
}

.divider {
    height: 1px;
    background: #ddd;
    margin: 10px 0;
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cashback {
    font-size: 13px;
    font-weight: 600;
}

.grab-btn {
    background: #0d6efd;
    color: white;
    border-radius: 8px;
    padding: 6px 18px;
    font-weight: 600;
    border: none;
}

.view-btn {
    border: 1px solid #ccc;
    padding: 10px 40px;
    border-radius: 8px;
    background: white;
}

/* left section */

.deal-left {
    width: 60%;
    z-index: 2;
}

.brand-box {
    background: #fff;
    padding: 6px 14px;
    border-radius: 10px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
}

.tagline {
    font-size: 14px;
    margin-bottom: 10px;
}

.offer-title {
    font-weight: 700;
    margin-bottom: 5px;
}

.offer-sub {
    color: #333;
    font-size: 14px;
}

.divider {
    height: 1px;
    background: #cfcfcf;
    margin: 10px 0;
    width: 80%;
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cashback {
    font-weight: 600;
}

.grab-btn {
    background: #1e63ff;
    border: none;
    color: white;
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: 600;
}


/* right image */

.deal-right img {
    height: 160px;
    object-fit: contain;
    z-index: 2;
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .carousel-inner {
        position: relative;
        width: 100%;
        overflow: hidden;
        margin-top: 3.6rem;
    }
}



/*--------Footer--------*/
.footer-section {
    background: #111533;
    color: #cfd3ff;
    padding: 60px 20px 30px;
    border-radius: 20px;
    height: auto;
    min-height: 40rem;
}

/* Newsletter */
.newsletter h3 {
    color: #fff;
    font-weight: 600;
    font-size: 26px;
}

.newsletter p {
    color: #9aa0d3;
    font-size: 14px;
}

.newsletter-box {
    background: #1b1f45;
    border-radius: 50px;
    padding: 5px;
    /* overflow: hidden;
    flex-wrap: wrap; */
}

.newsletter-box input {
    background: transparent;
    border: none;
    color: #fff;
    padding-left: 15px;
    width: 100%;
}

.newsletter-box input:focus {
    box-shadow: none;
}

.btn-gradient {
    border-radius: 50px;
    padding: 10px 20px;
    border: none;
    color: #fff;
    background: linear-gradient(90deg, #a78bfa, #60a5fa);
}

/* Divider */
hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

/* LET'S TALK */
.talk-text {
    font-size: 60px;
    font-weight: 700;
    background: linear-gradient(90deg, #d1d5db, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quote-btn {
    margin-top: 20px;
    background: #1b1f45;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
}

/* Links */
.main-footer h5 {
    color: #fff;
    margin-bottom: 20px;
}

.main-footer ul {
    list-style: none;
    padding: 0;
}

.main-footer ul li {
    margin-bottom: 10px;
}

.main-footer ul li a {
    color: #9aa0d3;
    text-decoration: none;
}

.main-footer ul li a:hover {
    color: #fff;
}

/* Bottom */
.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #9aa0d3;
}

.footer-logo {
    color: #fff;
    font-weight: bold;
    width: 5rem;
}


/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {

    .talk-text {
        font-size: 42px;
        text-align: center;
    }

    .newsletter {
        text-align: center;
    }

    .quote-btn {
        display: block;
        margin: 20px auto 0;
    }
}


/* Mobile */
@media (max-width: 576px) {

    .footer-section {
        padding: 40px 15px 25px;
    }

    .talk-text {
        font-size: 30px;
        text-align: center;
    }

    .newsletter h3 {
        font-size: 20px;
        text-align: center;
    }

    .newsletter p {
        font-size: 13px;
        text-align: center;
    }

    .newsletter-box {
        /* flex-direction: column; */
        border-radius: 20px;
    }

    .newsletter-box input {
        width: 100%;
        margin-bottom: 10px;
        padding: 12px;
    }

    .btn-gradient {
        width: 100%;
        padding: 12px;
    }

    .main-footer {
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-logo {
        margin: auto;
    }
}