* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-color: #eab308;
    --btn-text-color: #ffffff;
    --secondary-color: #2d3a4b;
    --border: #e2e8f0;
    --badge-color: #fef9e3;

    --gr1: #e76f51;
    --gr2: #f4a261;
    --gr3: #FFD166;

    --primary-bg: #ffffff;
    --table-header-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #475569;
    --accent: #3b82f6;
    --minus-plus-bg: #f1f5f9;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter', 'Hind Siliguri', sans-serif;
    background: linear-gradient(145deg, #f8f9fc 0%, #f0f2f7 100%);
    overflow-x: hidden;
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-container {
    padding: 15px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-area a {
    text-decoration: none;
}

.logo-area img {
    max-height: 50px;
}

.logo-icon {
    background: var(--secondary-color);
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 1.6rem;
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.3px;
    color: var(--secondary-color);
}

.order-now-btn {
    background: var(--main-color);
    color: var(--btn-text-color);
    border: none;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.order-now-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--btn-text-color);
}

.order-now-btn-gr {
    background: linear-gradient(95deg, var(--gr2), var(--gr1));
    border: none;
    padding: 10px 30px;
    font-weight: 700;
    border-radius: 60px;
    transition: all 0.2s;
    color: var(--btn-text-color);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    box-shadow: 0 5px 12px rgba(231, 111, 81, 0.3);
    text-decoration: none;
}

.order-now-btn-gr:hover {
    background: linear-gradient(95deg, var(--gr1), var(--gr2));
    transform: scale(1.02);
    box-shadow: 0 8px 18px rgba(231, 111, 81, 0.4);
    color: var(--btn-text-color);
}

.btn-com-animation {
    animation: smanimation 2s infinite;
}

@keyframes smanimation {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 120, 5, 0.7);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(254, 120, 5, 0);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(254, 120, 5, 0);
        transform: scale(1);
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #fef7e0 0%, #fff1d6 50%, #ffe6c9 100%);
    position: relative;
    overflow: hidden;
    padding: 3rem 1.5rem;
}

@media (min-width: 992px) {
    .hero-section {
        padding: 4rem 2rem;
    }
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 30%, rgba(255, 215, 130, 0.8) 2%, transparent 2.5%);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: #0f1724cc;
    backdrop-filter: blur(4px);
    color: var(--main-color);
    border-radius: 60px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
    border: 1px solid rgba(255, 223, 126, 0.5);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-title span{
    color: var(--main-color);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--secondary-color);
    max-width: 90%;
}

.btn-group-custom {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-order-hero {
    background: var(--main-color);
    color: var(--btn-text-color);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.2s;
    border: none;
}

.btn-order-hero:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: white;
}

.btn-outline-hero {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.2s;
}

.btn-outline-hero:hover {
    background: var(--secondary-color);
    color: var(--btn-text-color);
}

.power-chip {
    background: white;
    border-radius: 60px;
    padding: 6px 14px;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.hero-img-wrapper {
    text-align: center;
    filter: drop-shadow(0 20px 25px -12px rgba(0, 0, 0, 0.2));
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 40px;
    animation: smanimationFloat 4s ease-in-out infinite;
}

@keyframes smanimationFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* feature section styling */
.feature-section {
    padding: 4rem 1rem;
}

.common-title {
    text-align: center;
    margin-bottom: 3rem;
}

.common-title h2 {
    font-weight: 800;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.common-title span{
    color: var(--main-color);
}

.common-title h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--main-color);
    border-radius: 4px;
}

/* product card styling */
.product-hero {
    background: #ffffff;
    border-radius: 48px;
    border: none;
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.bg-sm-badge{
    background: var(--badge-color);
}

.speed-badge {
    background: var(--badge-color);
    border-left: 4px solid var(--main-color);
    transform: translateY(0);
    transition: transform 0.2s ease-in-out;
}

.speed-badge:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transform: translateY(-3px);
}

/* product describe section styling */
.product-describe{
    padding: 4rem 1rem;
}

.describe-card {
    background: #fafcff;
    border-radius: 28px;
    border: 1px solid #e9edf2;
    transform: translateY(0);
    transition: transform 0.2s ease-in-out;
}

.describe-card:hover{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transform: translateY(-3px);
}

/* Swiper Slider Styles - 4 images at a time */
.slider-section {
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 4rem 1rem;
}

.swiper {
    padding: 20px 10px 50px 10px;
}

.swiper-slide {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.swiper-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.25);
}

.slide-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Custom Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    background: var(--main-color);
    width: 48px;
    height: 48px;
    border-radius: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--secondary-color);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--main-color);
    width: 24px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        max-width: 100%;
    }

    .navbar-container {
        padding: 0.7rem 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .order-now-btn {
        padding: 6px 16px;
        font-size: 0.85rem;
    }

    .slide-img {
        height: auto;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
}



/* modern card design  */
.offer-card-modern {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(0px);
    border-radius: 2rem;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25), 0 8px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--main-color);
    overflow: hidden;
    position: relative;
    text-align: center;
}

.offer-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 32px 55px -15px rgba(0, 0, 0, 0.3);
}

/* decorative gradient accent */
.offer-card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--gr1), var(--gr2), var(--gr3));
    z-index: 2;
}

/* badge modern */
/*no need*/
.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #e63946, #d62828);
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 40px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 8px rgba(230, 57, 70, 0.3);
    border: none;
}

.product_price_info{
    border: 1px solid var(--main-color);
    padding: 15px;
    border-radius: 25px;
}

.old-price {
    font-size: 1rem;
    color: #6c757d;
    text-decoration: line-through;
    font-weight: 500;
}

.price-highlight {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(125deg, var(--gr1), var(--gr2));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.badge-success-modern {
    background: #0f7b3a;
    padding: 6px 14px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.75rem;
    box-shadow: 0 2px 6px rgba(15, 123, 58, 0.2);
}

.gift-icon-modern {
    background: #fff3e0;
    padding: 5px 12px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #b85c00;
}

/* countdown timer modern */
.countdown-wrapper {
    display: inline-flex;
    align-items: center;
    border-radius: 1.5rem;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
}

.countdown-box-modern {
    background: #2c3e2f;
    background: linear-gradient(145deg, #1f2a1e, #2a3a27);
    color: #fff3cf;
    border-radius: 1.2rem;
    padding: 0.6rem 0;
    min-width: 70px;
    text-align: center;
    box-shadow: 0 6px 0 #0f1a0e;
    transition: all 0.1s ease;
}

.countdown-box-modern span:first-child {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Inter', monospace;
    letter-spacing: 2px;
    line-height: 1;
}

.countdown-box-modern .small-label {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

@media (max-width: 480px) {
    .countdown-box-modern {
        min-width: 55px;
        padding: 0.4rem 0;
    }

    .countdown-box-modern span:first-child {
        font-size: 1.3rem;
    }

    .price-highlight {
        font-size: 2rem;
    }

    .offer-card-modern {
        border-radius: 1.5rem;
    }
}



/* MEGA Offer CARD */
.call-card {
    
}

.call-number {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: #fff1b5;
    display: inline-block;
    padding: 0.2rem 1.2rem;
    border-radius: 50px;
    color: #1e3a2f;
    text-decoration: none;
    transition: 0.2s;
}

.call-number:hover {
    background: #ffea8a;
    transform: scale(1.02);
    color: #0a2c24;
}

.btn-order-confirm {
    background: linear-gradient(95deg, var(--gr1), var(--gr2));
    border: none;
    padding: 14px 22px;
    font-weight: 800;
    border-radius: 60px;
    transition: all 0.2s;
    color: var(--btn-text-color);
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 14px rgba(231, 111, 81, 0.35);
    width: 100%;
}

.btn-order-confirm:hover {
    background: linear-gradient(95deg, var(--gr2), var(--gr1));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 111, 81, 0.45);
    color: var(--btn-text-color);
}

.cod-badge {
    background: #d9f0ec;
    border-radius: 30px;
    padding: 8px 18px;
    font-weight: 600;
    color: #0f5e50;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


/* ORDER INFO & CHECKOUT */
.order-info-section{
    padding: 4rem 1rem;
}

.main-order-container{
    border: 3px solid #2c3e2f; 
    border-radius: 16px; 
    padding: 20px; 
}

.product-card{
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
  }
  
  .handle-counter button {
    transition: all 0.2s ease;
  }
  
  .handle-counter button:hover {
    background-color: #e9ecef !important;
  }
  
  .handle-counter button:active {
    background-color: #dee2e6 !important;
  }
  
  .product-thumb {
    transition: transform 0.3s ease;
  }
  
  .product-thumb:hover {
    transform: scale(1.05);
  }

.order-card {
    background: #ffffff;
    border-radius: 32px;
    border: none;
    box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.form-control {
    border-radius: 16px;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    transition: 0.2s;
}

.form-control:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.2);
}

.order-summary-box {
    background: #fefce8;
    border-radius: 24px;
    border-left: 4px solid var(--main-color);
}

.cash-badge {
    background: #e6f7e6;
    color: #2e7d32;
    font-weight: 600;
}

@media (max-width: 768px) {
    .order-header {
        padding: 1rem 1.2rem;
    }
}


/* quantity controls exactly like reference: handle-counter with minus/plus and input */
.handle-counter {
    display: inline-flex;
    align-items: center;
    background: var(--minus-plus-bg);
    border-radius: 48px;
    padding: 0.2rem;
    border: 1px solid #e2e8f0;
    background: white;
    box-shadow: var(--shadow-sm);
}

.counter-minus,
.counter-plus {
    background: #f8fafc;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 1.2rem;
    color: var(--text-dark);;
}

.counter-minus:hover,
.counter-plus:hover {
    background: #eef2ff;
    color: #2563eb;
}

.action-input {
    width: 48px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 0;
    outline: none;
    font-family: 'Inter', monospace;
    color: #0f172a;
}


/* for smaller than 480px */
@media screen and (max-width: 480px) {
    .product-thumb {
        width: 55px;
        height: 55px;
    }

    .counter-minus,
    .counter-plus {
        width: 32px;
        height: 32px;
    }

    .action-input {
        width: 42px;
    }
}

footer p{
    margin-bottom: 0px;;
}