* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "Noto Serif Bengali";
    src: url("../../fonts/Noto/NotoSerifBengali-Regular.ttf");
}

:root {
    --mango-gold: #FFA000;
    --mango-gold-light: #FFD54F;
    --mango-orange: #FF5722;
    --mango-orange-hover: #E64A19;
    --mango-green: #2E7D32;
    --mango-green-hover: #1B5E20;
    --mango-cream-bg: #FFFDF6;
    --mango-cream-soft: #FFF9E6;
    --text-dark: #2C1E12;
    --text-muted: #5D5447;
    --card-shadow: 0 8px 30px rgba(44, 30, 18, 0.05);
    --card-shadow-hover: 0 16px 40px rgba(44, 30, 18, 0.12);
}

body {
    font-family: "Hind Siliguri", sans-serif;
    background-color: var(--mango-cream-bg);
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.font-baloo {
    font-family: "Baloo Da 2", cursive;
}

.font-outfit {
    font-family: "Outfit", sans-serif;
}

/* ── Floating Notice Bar ── */
.top-notice-bar {
    background: linear-gradient(135deg, var(--mango-gold) 0%, var(--mango-orange) 100%);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.15);
    border-bottom: 3px solid rgba(255, 255, 255, 0.25);
    position: relative;
    z-index: 10;
}

.notice-badge {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 99px;
    padding: 4px 12px;
    font-size: 14px;
}

.notice-title {
    font-size: clamp(16px, 3.5vw, 24px);
    line-height: 1.4;
    letter-spacing: 0.2px;
}

/* ── Hero Section ── */
.hero-section {
    padding: 4rem 0 2.5rem;
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(255, 213, 79, 0.15) 0%, transparent 45%);
}

.hero-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 213, 79, 0.3);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--mango-cream-soft);
    border: 1.5px solid var(--mango-gold);
    color: var(--mango-green);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 15px;
    font-weight: 700;
}

.hero-title {
    font-size: clamp(28px, 4.5vw, 45px);
    line-height: 1.25;
    color: var(--text-dark);
}

.hero-highlight {
    color: var(--mango-orange);
    background: linear-gradient(120deg, rgba(255, 87, 34, 0.1) 0%, rgba(255, 160, 0, 0.15) 100%);
    padding: 2px 10px;
    border-radius: 8px;
}

.hero-img-container {
    position: relative;
    z-index: 2;
}

.hero-img-container img {
    border-radius: 1.5rem;
    box-shadow: 0 15px 35px rgba(44, 30, 18, 0.1);
    transition: transform 0.3s ease;
}

.hero-img-container:hover img {
    transform: scale(1.02);
}

.hero-img-bg {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--mango-gold) 0%, var(--mango-green) 100%);
    border-radius: 1.5rem;
    opacity: 0.15;
    z-index: -1;
    transform: rotate(-2deg);
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    font-size: 14px;
    border: 1px solid var(--mango-gold-light);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ── Media Section & Video Mockup ── */
.video-mockup {
    border: 6px solid white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    aspect-ratio: 16/9;
    background-color: black;
    position: relative;
}

.video-mockup iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Section Titles ── */
.section-header {
    margin-bottom: 2.5rem;
    position: relative;
}

.section-tag {
    color: var(--mango-green);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--mango-gold), var(--mango-orange));
    border-radius: 2px;
}

/* ── Pricing & Packages Redesign ── */
.pricing-section {
    background: radial-gradient(circle at 90% 80%, rgba(46, 125, 50, 0.08) 0%, transparent 40%);
    padding: 3rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.price-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--mango-gold);
}

.price-card.featured {
    border-color: var(--mango-orange);
    background: linear-gradient(180deg, #FFFFFF 0%, var(--mango-cream-soft) 100%);
}

.price-card.featured::before {
    content: "সেরা অফার";
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--mango-orange);
    color: white;
    padding: 4px 30px;
    font-size: 11px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pkg-badge {
    background-color: var(--mango-cream-soft);
    color: var(--text-dark);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 13px;
    align-self: flex-start;
    border: 1px solid var(--mango-gold-light);
    margin-bottom: 1rem;
}

.price-card.featured .pkg-badge {
    background-color: var(--mango-orange);
    color: white;
    border-color: var(--mango-orange);
}

.pkg-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.35;
}

.pkg-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.price-wrapper {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--mango-cream-bg);
    border-radius: 12px;
    border-left: 4px solid var(--mango-orange);
}

.price-original-wrap {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.strike-price {
    text-decoration: line-through;
    text-decoration-color: #d32f2f;
    text-decoration-thickness: 2px;
    opacity: 0.8;
    margin-right: 4px;
}

.pkg-price-offer {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--mango-green);
}

/* ── Premium Buttons ── */
.btn-mango-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mango-orange) 0%, #D84315 100%);
    color: white !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 99px;
    border: none;
    box-shadow: 0 8px 20px var(--mango-orange-glow);
    transition: all 0.25s ease;
    text-decoration: none;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-mango-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(230, 74, 25, 0.4);
    background: linear-gradient(135deg, #FF6F00 0%, var(--mango-orange-hover) 100%);
}

.btn-mango-primary:active {
    transform: translateY(-1px);
}

.btn-mango-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -50%;
    }

    100% {
        left: 150%;
    }
}

.btn-mango-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--mango-green) !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 99px;
    border: 2px solid var(--mango-green);
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-mango-secondary:hover {
    background-color: var(--mango-green);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 125, 80, 0.15);
}

/* ── Benefits & Trust Lists ── */
.card-list-section {
    padding: 4rem 0;
}

.feature-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--mango-gold-light);
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 1.25rem;
}

.icon-circle.green {
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--mango-green);
}

.icon-circle.gold {
    background-color: rgba(255, 160, 0, 0.1);
    color: var(--mango-gold);
}

.feature-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.45;
    margin-bottom: 0;
}

/* ── Urgency Alert Panel ── */
.urgency-alert {
    background: linear-gradient(135deg, var(--mango-green) 0%, var(--mango-green-hover) 100%);
    border-radius: 1.5rem;
    padding: 2.5rem;
    color: white;
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.2);
    position: relative;
    overflow: hidden;
}

.urgency-alert::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.stock-countdown {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

/* ── High-End Checkout Layout ── */
.checkout-section {
    padding: 4rem 0;
    background: radial-gradient(circle at 10% 90%, rgba(255, 87, 34, 0.06) 0%, transparent 40%);
}

.checkout-card {
    background: white;
    border-radius: 1.5rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: 0 15px 45px rgba(44, 30, 18, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-top: 6px solid var(--mango-orange);
    position: relative;
    overflow: hidden;
}

.form-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--mango-green);
    border-bottom: 2px solid var(--mango-cream-soft);
    padding-bottom: 8px;
    margin-bottom: 1.25rem;
}

.form-floating-custom {
    margin-bottom: 1.25rem;
}

.form-floating-custom label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: block;
}

.form-floating-custom input,
.form-floating-custom textarea {
    border: 1.5px solid var(--border-color);
    background-color: var(--mango-cream-bg);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.25s ease;
    width: 100%;
}

.form-floating-custom input:focus,
.form-floating-custom textarea:focus {
    outline: none;
    border-color: var(--mango-gold);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(255, 160, 0, 0.15);
    transform: scale(1.005);
}

/* Interactive Radio Card Selectors */
.product-radio-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-radio-card {
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-radio-card:hover {
    border-color: var(--mango-gold-light);
    background-color: var(--mango-cream-soft);
}

.product-radio-card.active {
    border-color: var(--mango-green);
    background-color: rgba(46, 125, 50, 0.03);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.08);
}

.radio-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.radio-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    background: white;
}

.product-radio-card.active .radio-check {
    border-color: var(--mango-green);
    background-color: var(--mango-green);
}

.radio-check::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.2s ease;
}

.product-radio-card.active .radio-check::after {
    transform: scale(1);
}

.radio-info {
    display: flex;
    flex-direction: column;
}

.radio-prod-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.qty-adjuster {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 8px;
    overflow: hidden;
    padding: 2px;
    margin-top: 4px;
}

.qty-adjuster button {
    border: none;
    background: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.2s;
}

.qty-adjuster button:hover {
    background-color: var(--mango-cream-soft);
    color: var(--text-dark);
}

.qty-adjuster .qty-display {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
}

.radio-right {
    text-align: right;
}

.radio-price-tag {
    font-size: 17px;
    font-weight: 800;
    color: var(--mango-green);
}

/* ── E-Commerce Invoice Receipt ── */
.invoice-card {
    background-color: #fafaf9;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    position: relative;
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 15px;
}

.invoice-row.total {
    border-bottom: none;
    padding-top: 15px;
    margin-top: 5px;
    border-top: 2px dashed rgba(0, 0, 0, 0.15);
}

.invoice-label {
    color: var(--text-muted);
    font-weight: 600;
}

.invoice-val {
    color: var(--text-dark);
    font-weight: 700;
}

.invoice-val.total-price {
    font-size: 20px;
    color: var(--mango-orange);
    font-weight: 800;
}

.btn-confirm-checkout {
    background: linear-gradient(135deg, var(--mango-green) 0%, var(--mango-green-hover) 100%);
    color: white;
    font-size: 18px;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.btn-confirm-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(46, 125, 50, 0.3);
    background: linear-gradient(135deg, var(--mango-green-hover) 0%, #113A14 100%);
}

/* ── Footer ── */
.footer {
    background-color: #2C1E12;
    color: rgba(255, 255, 255, 0.6);
    padding: 2.5rem 0;
    font-size: 14px;
}

.footer a {
    color: var(--mango-gold-light);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* ── Screen Responsive Tweak ── */
@media (max-width: 768px) {
    .hero-card {
        padding: 1.5rem;
    }

    .hero-badge {
        font-size: 13px;
        padding: 4px 12px;
    }
}