* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-color: #eab308;
    --secondary-color: #2d3a4b;
    --btn-text-color: #ffffff;
    --badge-color: #fef9e3;

    --gr1: #e76f51;
    --gr2: #f4a261;
    --gr3: #FFD166;

    --text-dark: #1e293b;

    --minus-plus-bg: #f1f5f9;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);

    --gr_h1: #fef7e0;
    --gr_h2: #fff1d6;
    --gr_h3: #ffe6c9;
    --dot_color: #FFD782;

    --main-rgb: 231, 111, 81;
}

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: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-area a {
    text-decoration: none;
}

.logo-area img {
    max-height: 50px;
    width: auto;
}

.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: 13px 30px;
    font-weight: 700;
    border-radius: 60px;
    transition: all 0.2s;
    color: var(--btn-text-color);
    font-size: 16px;
    letter-spacing: 0.3px;
    box-shadow: 0 5px 12px rgba(var(--main-rgb), 0.3);
    text-decoration: none;
    flex-shrink: 0;
    white-space: nowrap;
}

.order-now-btn-gr:hover {
    background: linear-gradient(95deg, var(--gr1), var(--gr2));
    transform: scale(1.02);
    box-shadow: 0 8px 18px rgba(var(--main-rgb), 0.4);
    color: var(--btn-text-color);
}

.btn-com-animation {
    animation: smanimation 2s infinite;
}

@keyframes smanimation {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--main-rgb), 0.7);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(var(--main-rgb), 0);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(var(--main-rgb), 0);
        transform: scale(1);
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--gr_h1) 0%, var(--gr_h2) 50%, var(--gr_h3) 100%);
    position: relative;
    overflow: hidden;
    padding: 3rem 1.5rem;
    mix-blend-mode: multiply;
}

@media (min-width: 992px) {
    .hero-section {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 10px 15px;
    }

    .logo-area img {
        max-height: 40px;
    }

    .order-now-btn-gr {
        font-size: 18px;
        padding: 10px 16px;
        line-height: 18px;
    }
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 30%, var(--dot_color) 2%, transparent 2.5%);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    background: #1c1c20eb;
    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: 24px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

.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;
    justify-content: center;
    align-items: center;
}

.btn-order-hero {
    background: linear-gradient(95deg, var(--gr2), var(--gr1));
    color: var(--btn-text-color);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

.btn-order-hero:hover {
    background: linear-gradient(95deg, var(--gr1), var(--gr2));
    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;
    text-decoration: none;
}

.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: 3px solid var(--main-color);
    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: 18px;
    }

    .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_section{
    padding: 1rem 1rem;
}
.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;
    }

    .describe-card h3{
        font-size: 18px;
    }
    .describe-card h5{
        font-size: 14px;
        line-height: 1.3;
    }
}



/* MEGA Offer CARD */
.mega_offer{
    padding: 3rem 1rem;
}
@media (max-width: 480px) {
    .feature-section {
        padding: 3rem 1rem;
    }
    .product-describe {
        padding: 3rem 1rem;
    }

    .mega_offer{
        padding: 1rem 1rem;
    }
}
.call-card {

}

.call-number {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: var(--gr3);
    display: inline-block;
    padding: 0.2rem 1.2rem;
    border-radius: 50px;
    color: #1e3a2f;
    text-decoration: none;
    transition: 0.2s;
    min-width: 70%;
}

.call-number:hover {
    background: var(--gr2);
    transform: scale(1.02);
    color: #0a2c24;
}

.wp_bt{
    background-color: #25d366;
    color: #fff;
}
.wp_bt:hover{
    background: #25d366;
    color: #fff;
}
.m_bt{
    background-color: #0866ff;
    color: #fff;
}
.m_bt:hover{
    background: #0866ff;
    color: #fff;
}

.imo_bt{
    background-color: #4670BA;
    color: #fff;
}
.imo_bt:hover{
    background: #4670BA;
    color: #fff;
}

.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(var(--main-rgb), 0.35);
    width: 100%;
    text-decoration: none;
}

.btn-order-confirm:hover {
    background: linear-gradient(95deg, var(--gr2), var(--gr1));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--main-rgb), 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: 10px;
}

.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;
}

.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;
    margin-bottom: 15px;
}

.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(var(--main-rgb), 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;
    }

    .call-number {
        font-size: 16px;
        min-width: 85%;
        padding: 8px 10px;
    }

    .main-order-container{
        padding: 20px 5px;
    }
}


/* 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: var(--minus-plus-bg);
    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(--btn-text-color);
}

.counter-minus:hover,
.counter-plus:hover {
    background: #eef2ff;
    color: #2563eb;
}
.counter-minus:hover{
    background: #d24205 !important;
    color: #fff;
}
.counter-plus:hover{
    background: #1a9311 !important;
    color: #fff;
}

.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;
    }

    .order-info-section {
        padding: 2rem 8px;
    }
}



/* Quantity Selector */
.quantity-selector {
    display: inline-flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 40px;
    padding: 3px;
}

.qty-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--main-color, #eab308);
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.qty-btn:hover {
    background: var(--main-color, #eab308);
    color: white;
    transform: scale(1.05);
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 16px;
    color: #1e293b;
}

/* Selected Product Card Animation */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card.border-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(95deg, var(--gr1), var(--gr2));
}

/* Checkmark for selected product */
.product-card.border-secondary .form-check::after {
    content: '✓';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 20px;
    height: 20px;
    background: var(--gr1, var(--gr2));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.product-card {
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

@media screen and (max-width: 480px) {
    .qty-input {
        width: 40px;
    }

    .product-card h6{
        font-size: 13px;
    }
    .p-name h6{
        font-size: 16px !important;
    }
    .product-card h5{
        font-size: 14px;
    }
}

footer p{
    margin-bottom: 0px;;
}

/*=========== Thank you page style ===========*/
.thankyou-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.thankyou-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.success-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    padding: 40px;
    text-align: center;
    color: white;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon i {
    font-size: 50px;
    color: #28a745;
}

.order-id-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
}

.order-id-box h5 {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

.order-id-box h3 {
    margin: 5px 0 0;
    color: var(--main-color);
    font-weight: bold;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #495057;
}

.info-value {
    color: #212529;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.product-item:last-child {
    border-bottom: none;
}

.product-info {
    flex: 1;
}

.product-name {
    font-weight: 600;
    color: #212529;
    margin-bottom: 5px;
}

.product-meta {
    font-size: 13px;
    color: #6c757d;
}

.product-price {
    text-align: right;
}

.total-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 16px;
}

.grand-total {
    font-size: 20px;
    font-weight: bold;
    color: #28a745;
    border-top: 2px solid #dee2e6;
    margin-top: 10px;
    padding-top: 15px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-custom {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--gr2) 0%, var(--gr1) 100%);
    color: var(--btn-text-color);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102,126,234,0.4);
    color: white;
}

.delivery-info {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .thankyou-container {
        padding: 30px 15px;
    }

    .success-header {
        padding: 30px 20px;
    }

    .action-buttons {
        flex-direction: column;
    }
}



.video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.video-container iframe,
.video-container video {
    display: block;
    border-radius: 10px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .video-container iframe,
    .video-container video {
        height: 250px !important;
    }
}
