/* =====================================================
   LANDING PAGE CSS
   PART 1: ROOT + RESET + COMMON + HERO + BANNER + TIMER + CTA
===================================================== */

/* =========================
   ROOT VARIABLES
========================= */
:root{
    --lp-primary:#ff4d00;
    --lp-primary-2:#ff8a00;
    --lp-blue:#0d6efd;
    --lp-green:#16a34a;
    --lp-dark:#111827;
    --lp-text:#334155;
    --lp-muted:#64748b;
    --lp-bg:#fff7f3;
    --lp-soft:#fff7ed;
    --lp-white:#ffffff;
    --lp-border:#ffe1cc;
    --lp-shadow:0 14px 36px rgba(15,23,42,.10);
}

/* =========================
   RESET / BASE
========================= */
*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:'Hind Siliguri', sans-serif;
    background:var(--lp-bg);
    color:var(--lp-dark);
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
}

button,
input,
textarea{
    font-family:'Hind Siliguri', sans-serif;
}

/* =========================
   COMMON WRAPPER
========================= */
.landing-wrapper{
    width:100%;
    overflow:hidden;
    background:var(--lp-bg);
}

.lp-container{
    width:100%;
    max-width:1120px;
    margin:0 auto;
    padding:0 15px;
}

/* =========================
   HERO SECTION
========================= */
.lp-hero{
    background:linear-gradient(135deg,#eef7ff 0%,#fff7ed 55%,#fff3e8 100%);
    padding:48px 0 34px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.lp-hero::before{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,77,0,.08);
    top:-110px;
    left:-80px;
}

.lp-hero::after{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(13,110,253,.08);
    right:-90px;
    bottom:-90px;
}

.lp-hero-content{
    position:relative;
    z-index:2;
    max-width:650px;
    margin:0 auto;
}

/* Logo */
.lp-logo{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}

.lp-logo img{
    max-height:70px;
    width:auto;
    object-fit:contain;
}

/* Offer Badge */
.lp-offer-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:linear-gradient(135deg,var(--lp-primary),var(--lp-primary-2));
    color:#fff;
    padding:9px 18px;
    border-radius:999px;
    font-size:16px;
    font-weight:900;
    box-shadow:0 10px 24px rgba(255,77,0,.28);
    margin-bottom:18px;
}

.lp-offer-badge i{
    font-size:18px;
}

/* Title */
.lp-title{
    margin:0 0 15px;
    font-size:42px;
    line-height:1.23;
    font-weight:900;
    letter-spacing:-.3px;
}

.lp-title span{
    display:block;
}

.lp-title .green-text{
    color:#138a36;
}

.lp-title .dark-text{
    color:var(--lp-dark);
}

/* Subtitle */
.lp-subtitle{
    max-width:620px;
    margin:0 auto 18px;
    color:#475569;
    font-size:18px;
    line-height:1.8;
    font-weight:600;
}

/* Price Row */
.lp-price-row{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
    margin:14px 0 20px;
}

.lp-sale-price{
    color:#dc2626;
    font-size:38px;
    line-height:1;
    font-weight:900;
}

.lp-regular-price{
    color:#64748b;
    font-size:22px;
    font-weight:800;
    text-decoration:line-through;
}

.lp-save-badge{
    background:#ecfdf5;
    color:#15803d;
    border:1px solid #bbf7d0;
    padding:6px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:900;
}

/* Main Button */
.lp-main-btn,
.lp-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border:none;
    outline:none;
    background:linear-gradient(90deg,var(--lp-primary),var(--lp-primary-2));
    color:#fff!important;
    font-weight:900;
    border-radius:999px;
    box-shadow:0 12px 28px rgba(255,77,0,.34);
    animation:lpPulse 2s infinite;
    transition:.25s;
}

.lp-main-btn{
    padding:15px 36px;
    font-size:19px;
}

.lp-main-btn:hover,
.lp-cta-btn:hover{
    color:#fff!important;
    transform:translateY(-2px);
}

/* =========================
   BANNER SECTION
========================= */
.lp-banner-section{
    background:var(--lp-bg);
    padding:22px 0 35px;
}

.lp-banner-card{
    max-width:820px;
    margin:0 auto;
    background:#fff;
    padding:12px;
    border-radius:24px;
    box-shadow:var(--lp-shadow);
    border:1px solid rgba(255,225,204,.75);
}

.lp-banner-card img{
    display:block;
    width:100%;
    border-radius:18px;
    object-fit:cover;
}

/* =========================
   TIMER SECTION
========================= */
.lp-timer-section{
    background:var(--lp-bg);
    padding:0 0 28px;
}

.lp-timer-box{
    max-width:850px;
    margin:0 auto;
    background:#fff5f5;
    border:2px dashed var(--lp-primary);
    border-radius:20px;
    padding:22px 15px;
    text-align:center;
}

.lp-timer-box h3{
    margin:0 0 14px;
    font-size:24px;
    font-weight:900;
    color:#be123c;
}

.timer-row{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.timer-item{
    width:68px;
    min-height:72px;
    border-radius:14px;
    background:linear-gradient(135deg,var(--lp-primary),var(--lp-primary-2));
    color:#fff;
    padding:9px 6px;
    box-shadow:0 8px 18px rgba(255,77,0,.22);
}

.timer-item span{
    display:block;
    font-size:24px;
    line-height:1.1;
    font-weight:900;
}

.timer-item small{
    display:block;
    margin-top:4px;
    font-size:12px;
    font-weight:800;
}

/* =========================
   CTA STRIP
========================= */
.lp-cta-strip{
    background:var(--lp-bg);
    padding:24px 15px;
    text-align:center;
}

.lp-cta-btn{
    width:100%;
    max-width:540px;
    padding:18px 26px;
    font-size:22px;
    border:5px solid #ffd0b8;
}

/* =========================
   COMMON HEADER
========================= */
.lp-common-header{
    text-align:center;
    margin-bottom:28px;
}

.lp-common-header span{
    display:inline-block;
    padding:7px 16px;
    border-radius:999px;
    background:#fff;
    border:1px solid var(--lp-border);
    color:var(--lp-primary);
    font-weight:900;
    margin-bottom:10px;
}

.lp-common-header h2{
    margin:0 0 8px;
    color:var(--lp-dark);
    font-size:30px;
    font-weight:900;
}

.lp-common-header p{
    margin:0;
    color:var(--lp-muted);
    font-size:15px;
}

/* Section Title Bar */
.lp-section-title{
    background:linear-gradient(90deg,var(--lp-primary),var(--lp-primary-2));
    color:#fff;
    padding:15px 12px;
    text-align:center;
    font-weight:900;
    font-size:24px;
    margin-bottom:22px;
}

/* =========================
   ANIMATION
========================= */
@keyframes lpPulse{
    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(255,77,0,.70);
    }
    70%{
        transform:scale(1.035);
        box-shadow:0 0 0 14px rgba(255,77,0,0);
    }
    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(255,77,0,0);
    }
}

/* =========================
   RESPONSIVE PART 1
========================= */
@media(max-width:991px){
    .lp-hero{
        padding:34px 0 28px;
    }

    .lp-title{
        font-size:34px;
    }

    .lp-subtitle{
        font-size:16px;
    }

    .lp-sale-price{
        font-size:34px;
    }

    .lp-regular-price{
        font-size:20px;
    }

    .lp-common-header h2{
        font-size:26px;
    }
}

@media(max-width:576px){
    .lp-container{
        padding:0 12px;
    }

    .lp-logo img{
        max-height:56px;
    }

    .lp-offer-badge{
        font-size:14px;
        padding:8px 14px;
    }

    .lp-title{
        font-size:28px;
        line-height:1.28;
    }

    .lp-subtitle{
        font-size:15px;
        line-height:1.7;
    }

    .lp-sale-price{
        font-size:31px;
    }

    .lp-regular-price{
        font-size:18px;
    }

    .lp-main-btn{
        width:100%;
        padding:14px 20px;
        font-size:18px;
    }

    .lp-banner-card{
        border-radius:20px;
        padding:9px;
    }

    .lp-banner-card img{
        border-radius:14px;
    }

    .lp-timer-box{
        border-radius:17px;
        padding:18px 10px;
    }

    .lp-timer-box h3{
        font-size:20px;
    }

    .timer-item{
        width:64px;
        min-height:68px;
    }

    .timer-item span{
        font-size:22px;
    }

    .lp-cta-btn{
        font-size:18px;
        padding:15px 18px;
        border-width:4px;
    }

    .lp-section-title{
        font-size:20px;
        padding:14px 10px;
    }

    .lp-common-header h2{
        font-size:23px;
    }
}

/* =====================================================
   LANDING PAGE CSS
   PART 2: TRUST + FEATURES + QUALITY + REVIEWS
===================================================== */

/* =========================
   TRUST SECTION
========================= */
.lp-trust-section{
    background:#fff;
    padding:36px 0;
}

.lp-trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.lp-trust-card{
    background:#fff;
    border:1px solid #edf2f7;
    border-radius:22px;
    padding:24px 16px;
    text-align:center;
    min-height:172px;
    box-shadow:0 10px 28px rgba(15,23,42,.06);
    transition:.25s;
}

.lp-trust-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 34px rgba(15,23,42,.10);
}

.lp-trust-icon{
    width:64px;
    height:64px;
    border-radius:50%;
    margin:0 auto 14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--lp-primary),var(--lp-primary-2));
    color:#fff;
    font-size:27px;
}

.lp-trust-card h6{
    font-size:16px;
    font-weight:900;
    color:var(--lp-dark);
    margin:0 0 7px;
}

.lp-trust-card p{
    font-size:13px;
    line-height:1.6;
    color:var(--lp-muted);
    margin:0;
}

/* =========================
   FEATURE SECTION
========================= */
.lp-feature-section{
    background:var(--lp-bg);
    padding:36px 0;
}

.lp-feature-list{
    list-style:none;
    margin:0;
    padding:22px;
    background:#fff;
    border-radius:20px;
    border:1px solid rgba(255,225,204,.75);
    box-shadow:0 10px 28px rgba(15,23,42,.06);
}

.lp-feature-list li{
    display:flex;
    gap:12px;
    align-items:flex-start;
    color:#475569;
    font-size:17px;
    line-height:1.7;
    font-weight:800;
    margin-bottom:15px;
}

.lp-feature-list li:last-child{
    margin-bottom:0;
}

.lp-feature-list i{
    color:var(--lp-primary);
    font-size:21px;
    margin-top:3px;
    flex-shrink:0;
}

/* =========================
   QUALITY SECTION
========================= */
.lp-quality-section{
    background:var(--lp-bg);
    padding:36px 0;
}

.lp-quality-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.lp-quality-item{
    background:#fff9f0;
    border:1px solid #ffebd0;
    border-radius:16px;
    padding:17px 14px;
    text-align:center;
    color:#374151;
    font-size:15px;
    font-weight:900;
    line-height:1.55;
    min-height:112px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transition:.25s;
}

.lp-quality-item:hover{
    transform:translateY(-4px);
    background:#fff;
    box-shadow:0 10px 25px rgba(15,23,42,.08);
}

.lp-quality-item i{
    color:var(--lp-primary-2);
    font-size:24px;
    margin-bottom:8px;
}

/* =========================
   REVIEW SECTION
========================= */
.lp-review-section{
    background:#fff7ed;
    padding:50px 0;
}

.lp-review-card{
    background:#fff;
    border:1px solid var(--lp-border);
    border-radius:22px;
    padding:22px;
    height:100%;
    box-shadow:0 12px 30px rgba(15,23,42,.07);
}

.lp-stars{
    color:#f59e0b;
    letter-spacing:2px;
    font-size:18px;
    font-weight:900;
    margin-bottom:12px;
}

.lp-review-card p{
    color:#475569;
    font-size:15px;
    line-height:1.8;
    min-height:70px;
    margin:0;
}

.lp-review-user{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:15px;
}

.lp-avatar{
    width:44px;
    height:44px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--lp-primary),var(--lp-primary-2));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    flex-shrink:0;
}

.lp-review-user strong{
    display:block;
    color:var(--lp-dark);
    font-size:14px;
}

.lp-review-user small{
    display:block;
    color:var(--lp-muted);
    font-size:12px;
}

/* Screenshot Reviews */
.lp-review-mobile{
    display:none;
}

.lp-screenshot-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.lp-screenshot-grid.mobile-grid{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.lp-screenshot-card{
    background:#fff;
    border-radius:18px;
    padding:8px;
    border:1px solid var(--lp-border);
    box-shadow:0 10px 25px rgba(15,23,42,.08);
}

.lp-screenshot-card img{
    display:block;
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:14px;
}

/* Bootstrap carousel safety */
.lp-review-section .carousel-inner{
    overflow:hidden;
}

.lp-review-section .carousel-item{
    transition:transform .45s ease-in-out;
}

/* =========================
   RESPONSIVE PART 2
========================= */
@media(max-width:991px){
    .lp-trust-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .lp-quality-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .lp-feature-list li{
        font-size:16px;
    }
}

@media(max-width:576px){
    .lp-trust-section{
        padding:28px 0;
    }

    .lp-trust-grid{
        gap:12px;
    }

    .lp-trust-card{
        padding:18px 10px;
        min-height:150px;
        border-radius:18px;
    }

    .lp-trust-icon{
        width:54px;
        height:54px;
        font-size:23px;
        margin-bottom:10px;
    }

    .lp-trust-card h6{
        font-size:14px;
    }

    .lp-trust-card p{
        font-size:12px;
    }

    .lp-feature-section,
    .lp-quality-section{
        padding:30px 0;
    }

    .lp-feature-list{
        padding:17px;
        border-radius:17px;
    }

    .lp-feature-list li{
        font-size:15px;
        gap:10px;
        line-height:1.65;
    }

    .lp-quality-grid{
        grid-template-columns:1fr;
    }

    .lp-quality-item{
        min-height:auto;
        padding:15px 12px;
    }

    .lp-review-section{
        padding:36px 0;
    }

    .lp-review-card{
        padding:18px;
        border-radius:18px;
    }

    .lp-review-card p{
        min-height:auto;
        font-size:14px;
    }

    .lp-review-desktop{
        display:none;
    }

    .lp-review-mobile{
        display:block;
    }

    .lp-screenshot-card{
        padding:6px;
        border-radius:14px;
    }

    .lp-screenshot-card img{
        height:220px;
        border-radius:11px;
    }
}
/* =====================================================
   LANDING PAGE CSS
   PART 3: ORDER + PRODUCT SUMMARY + UPSELL + FORM + DELIVERY
===================================================== */

/* =========================
   ORDER SECTION
========================= */
.lp-order-section{
    background:var(--lp-bg);
    padding:48px 0;
}

.lp-order-grid{
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:22px;
    align-items:start;
}

/* =========================
   CARD COMMON
========================= */
.lp-card{
    background:#fff;
    border-radius:22px;
    border:1px solid rgba(255,225,204,.78);
    box-shadow:0 12px 34px rgba(15,23,42,.08);
    overflow:hidden;
}

.lp-card-title{
    background:#111827;
    color:#fff;
    padding:16px 20px;
    font-size:23px;
    font-weight:900;
    display:flex;
    align-items:center;
    gap:10px;
}

.lp-card-title.blue{
    background:linear-gradient(135deg,var(--lp-blue),#0aa2ff);
}

.lp-card-body{
    padding:22px;
}

/* =========================
   PRODUCT SUMMARY
========================= */
.lp-product-box{
    display:flex;
    align-items:center;
    gap:14px;
    padding:15px;
    border:1px solid #e5e7eb;
    background:#f8fafc;
    border-radius:16px;
    margin-bottom:16px;
}

.lp-product-box img{
    width:88px;
    height:88px;
    object-fit:cover;
    border-radius:14px;
    border:1px solid #e5e7eb;
    background:#fff;
    flex-shrink:0;
}

.lp-product-info{
    flex:1;
    min-width:0;
}

.lp-product-info h4{
    margin:0 0 8px;
    font-size:16px;
    line-height:1.45;
    font-weight:900;
    color:var(--lp-dark);
    word-break:break-word;
}

.lp-mini-price{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:9px;
}

.lp-mini-price span{
    font-size:23px;
    color:#dc2626;
    font-weight:900;
}

.lp-mini-price del{
    color:#64748b;
    font-size:16px;
    font-weight:800;
}

/* Quantity */
.lp-qty-box{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:999px;
    padding:4px;
}

.lp-qty-box button{
    width:32px;
    height:32px;
    border:none;
    border-radius:50%;
    background:#eef6ff;
    color:var(--lp-blue);
    font-size:18px;
    font-weight:900;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.lp-qty-box input{
    width:38px;
    height:32px;
    border:none;
    background:transparent;
    text-align:center;
    font-size:15px;
    font-weight:900;
    color:#111827;
}

/* =========================
   UPSELL
========================= */
.lp-upsell-box{
    margin:16px 0;
    padding:14px;
    border-radius:18px;
    background:#fff7ed;
    border:1px dashed var(--lp-primary);
}

.lp-upsell-item{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    border:1px solid #ffd6bf;
    border-radius:16px;
    padding:11px;
    cursor:pointer;
    margin-bottom:10px;
    transition:.2s;
}

.lp-upsell-item:last-child{
    margin-bottom:0;
}

.lp-upsell-item:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(15,23,42,.08);
}

.lp-upsell-item input{
    width:18px;
    height:18px;
    accent-color:var(--lp-primary);
    flex-shrink:0;
}

.lp-upsell-item img{
    width:58px;
    height:58px;
    object-fit:cover;
    border-radius:12px;
    border:1px solid #eee;
    background:#fff;
    flex-shrink:0;
}

.lp-upsell-item div{
    flex:1;
    min-width:0;
}

.lp-upsell-title{
    display:inline-block;
    background:linear-gradient(90deg,var(--lp-primary),var(--lp-primary-2));
    color:#fff;
    padding:4px 9px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    margin-bottom:5px;
}

.lp-upsell-item strong{
    display:block;
    font-size:14px;
    color:#111827;
    line-height:1.35;
    font-weight:900;
}

.lp-upsell-item small{
    display:block;
    color:#e63946;
    font-size:14px;
    font-weight:900;
    margin-top:2px;
}

/* =========================
   SUMMARY TOTAL
========================= */
.lp-summary-line{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:12px 0;
    border-bottom:1px solid #e5e7eb;
    color:#334155;
    font-size:16px;
    font-weight:800;
}

.lp-summary-line strong{
    color:#111827;
    font-weight:900;
    white-space:nowrap;
}

.lp-summary-total{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding-top:15px;
    color:#dc2626;
    font-size:24px;
    font-weight:900;
}

.lp-summary-total strong{
    color:#dc2626;
    white-space:nowrap;
}

/* =========================
   CHECKOUT FORM
========================= */
.lp-checkout-card{
    position:sticky;
    top:18px;
}

.lp-input-group{
    position:relative;
    margin-bottom:13px;
}

.lp-input-group i{
    position:absolute;
    left:14px;
    top:26px;
    transform:translateY(-50%);
    color:#16a34a;
    font-size:17px;
    z-index:2;
}

.lp-input-group.textarea-group i{
    top:24px;
    transform:none;
}

.lp-input-group input,
.lp-input-group textarea{
    width:100%;
    border:1px solid #74d99a;
    background:#f8fffb;
    border-radius:13px;
    outline:none;
    padding:13px 14px 13px 45px;
    font-size:15px;
    font-weight:700;
    color:#111827;
    min-height:54px;
    transition:.2s;
}

.lp-input-group textarea{
    min-height:92px;
    resize:none;
    line-height:1.6;
    padding-top:14px;
}

.lp-input-group input:focus,
.lp-input-group textarea:focus{
    border-color:#22c55e;
    background:#fff;
    box-shadow:0 0 0 4px rgba(34,197,94,.12);
}

.lp-input-group input::placeholder,
.lp-input-group textarea::placeholder{
    color:#94a3b8;
    font-weight:600;
}

/* Error */
.field-error{
    display:none;
    color:#dc3545;
    font-size:13px;
    font-weight:800;
    margin-top:6px;
}

/* =========================
   DELIVERY OPTIONS
========================= */
.lp-delivery-box{
    margin-top:6px;
}

.lp-delivery-box h5{
    margin:0 0 9px;
    font-size:16px;
    font-weight:900;
    color:#15803d;
}

.lp-delivery-options{
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
}

.lp-delivery-option{
    position:relative;
}

.lp-delivery-option input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}

.lp-delivery-option label{
    width:100%;
    min-height:54px;
    border:1px solid #86efac;
    background:#f8fffb;
    border-radius:12px;
    padding:11px 13px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    cursor:pointer;
    font-weight:900;
    color:#111827;
    transition:.2s;
}

.lp-delivery-option label span{
    font-size:15px;
}

.lp-delivery-option label strong{
    font-size:15px;
    color:#15803d;
    white-space:nowrap;
}

.lp-delivery-option input:checked + label{
    border-color:#22c55e;
    background:#ecfdf5;
    color:#15803d;
    box-shadow:0 0 0 3px rgba(34,197,94,.10);
}

.lp-delivery-option input:checked + label::after{
    content:'✓';
    width:21px;
    height:21px;
    border-radius:50%;
    background:var(--lp-primary);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:900;
    flex-shrink:0;
}

/* =========================
   SUBMIT BUTTON
========================= */
.lp-submit-btn{
    width:100%;
    border:none;
    outline:none;
    border-radius:16px;
    padding:15px 18px;
    margin-top:17px;
    background:linear-gradient(90deg,#ff4b2b,#ff416c);
    color:#fff;
    font-size:21px;
    font-weight:900;
    box-shadow:0 12px 28px rgba(255,75,43,.28);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    cursor:pointer;
    transition:.25s;
}

.lp-submit-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 34px rgba(255,75,43,.34);
}

/* =========================
   RESPONSIVE PART 3
========================= */
@media(max-width:991px){
    .lp-order-section{
        padding:40px 0;
    }

    .lp-order-grid{
        grid-template-columns:1fr;
    }

    .lp-checkout-card{
        position:static;
    }

    .lp-card-title{
        font-size:21px;
    }
}

@media(max-width:576px){
    .lp-order-section{
        padding:34px 0;
    }

    .lp-card{
        border-radius:18px;
    }

    .lp-card-title{
        font-size:19px;
        padding:14px 16px;
    }

    .lp-card-body{
        padding:16px;
    }

    .lp-product-box{
        padding:12px;
        gap:11px;
        align-items:flex-start;
    }

    .lp-product-box img{
        width:72px;
        height:72px;
        border-radius:12px;
    }

    .lp-product-info h4{
        font-size:14px;
    }

    .lp-mini-price span{
        font-size:20px;
    }

    .lp-mini-price del{
        font-size:14px;
    }

    .lp-qty-box button{
        width:29px;
        height:29px;
    }

    .lp-qty-box input{
        width:34px;
        height:29px;
    }

    .lp-upsell-box{
        padding:10px;
        border-radius:15px;
    }

    .lp-upsell-item{
        gap:9px;
        padding:9px;
        border-radius:13px;
    }

    .lp-upsell-item img{
        width:50px;
        height:50px;
    }

    .lp-upsell-title{
        font-size:11px;
    }

    .lp-upsell-item strong{
        font-size:13px;
    }

    .lp-upsell-item small{
        font-size:13px;
    }

    .lp-summary-line{
        font-size:14px;
    }

    .lp-summary-total{
        font-size:21px;
    }

    .lp-input-group input,
    .lp-input-group textarea{
        min-height:50px;
        font-size:14px;
        padding-left:42px;
        border-radius:11px;
    }

    .lp-input-group textarea{
        min-height:84px;
    }

    .lp-input-group i{
        left:13px;
        top:25px;
    }

    .lp-delivery-box h5{
        font-size:15px;
    }

    .lp-delivery-option label{
        min-height:52px;
        padding:10px 12px;
        border-radius:10px;
    }

    .lp-delivery-option label span,
    .lp-delivery-option label strong{
        font-size:14px;
    }

    .lp-submit-btn{
        font-size:18px;
        padding:14px 16px;
        border-radius:14px;
    }
}
/* =====================================================
   LANDING PAGE CSS
   PART 4 : FOOTER + SOCIAL + FLOAT BUTTON + ANIMATION
=====================================================*/

/* =========================
   FOOTER
========================= */

.lp-footer{
    background:#ffffff;
    padding:55px 15px;
    margin-top:50px;
}

.lp-footer-card{
    max-width:850px;
    margin:auto;
    text-align:center;
    background:#fff;
    border-radius:22px;
    padding:35px;
    border:1px solid #ececec;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.lp-footer-card h4{
    font-size:28px;
    font-weight:900;
    color:#111827;
    margin-bottom:10px;
}

.lp-footer-card p{
    color:#64748b;
    font-size:16px;
    margin-bottom:28px;
}

.lp-coupon-box{
    margin:14px 0;
    padding:12px;
    background:#f8fafc;
    border:1px dashed #cbd5e1;
    border-radius:14px;
}
.lp-coupon-row{
    display:flex;
    gap:8px;
}
.lp-coupon-row input{
    flex:1;
    min-height:44px;
    border:1px solid #dbe3ef;
    border-radius:12px;
    padding:0 12px;
    font-weight:800;
}
.lp-coupon-row button{
    border:0;
    border-radius:12px;
    background:#16a34a;
    color:#fff;
    padding:0 16px;
    font-weight:900;
}
.lp-coupon-message{
    margin-top:8px;
    font-size:13px;
    font-weight:800;
}
@media(max-width:576px){
    .lp-coupon-row{flex-direction:column;}
    .lp-coupon-row button{min-height:44px;}
}

/* =========================
   FOOTER BUTTONS
========================= */

.lp-footer-actions{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.lp-footer-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    min-width:220px;

    padding:15px 26px;

    border-radius:999px;

    font-size:18px;
    font-weight:900;

    color:#fff!important;

    transition:.30s;
}

.lp-footer-btn.call{

    background:#0d6efd;
}

.lp-footer-btn.whatsapp{

    background:#16a34a;
}

.lp-footer-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 28px rgba(0,0,0,.18);
}

/* =========================
   SOCIAL ICON
========================= */

.lp-social-icons{

    display:flex;

    justify-content:center;

    gap:12px;

    flex-wrap:wrap;
}

.lp-social-icons a{

    width:46px;

    height:46px;

    border-radius:50%;

    background:#f3f4f6;

    color:#111827;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:19px;

    transition:.25s;
}

.lp-social-icons a:hover{

    background:var(--lp-primary);

    color:#fff;

    transform:translateY(-3px);
}

/* =========================
   WHATSAPP FLOAT
========================= */

.lp-whatsapp{

    position:fixed;

    right:20px;

    bottom:20px;

    width:62px;

    height:62px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#16a34a;

    color:#fff;

    font-size:32px;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    z-index:999;

    animation:whatsappPulse 2s infinite;
}

.lp-whatsapp:hover{

    color:#fff;

    transform:scale(1.08);
}

/* =========================
   BUTTON SHINE
========================= */

.lp-main-btn,
.lp-cta-btn,
.lp-submit-btn,
.lp-footer-btn{

    position:relative;

    overflow:hidden;
}

.lp-main-btn::before,
.lp-cta-btn::before,
.lp-submit-btn::before,
.lp-footer-btn::before{

    content:"";

    position:absolute;

    left:-80%;

    top:0;

    width:60%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.35),

        transparent

    );

    transform:skewX(-25deg);
}

.lp-main-btn:hover::before,
.lp-cta-btn:hover::before,
.lp-submit-btn:hover::before,
.lp-footer-btn:hover::before{

    animation:shine .9s;
}

/* =========================
   KEYFRAME
========================= */

@keyframes shine{

    100%{

        left:140%;
    }
}

@keyframes whatsappPulse{

    0%{

        transform:scale(1);
    }

    50%{

        transform:scale(1.08);
    }

    100%{

        transform:scale(1);
    }
}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{

    width:8px;
}

::-webkit-scrollbar-thumb{

    background:var(--lp-primary);

    border-radius:999px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.lp-footer{

    padding:40px 12px;
}

.lp-footer-card{

    padding:25px 18px;

    border-radius:18px;
}

.lp-footer-card h4{

    font-size:22px;
}

.lp-footer-card p{

    font-size:14px;
}

.lp-footer-actions{

    flex-direction:column;
}

.lp-footer-btn{

    width:100%;

    min-width:unset;

    font-size:16px;
}

.lp-social-icons a{

    width:42px;

    height:42px;

    font-size:17px;
}

.lp-whatsapp{

    width:56px;

    height:56px;

    right:14px;

    bottom:14px;

    font-size:28px;
}

}
.lp-footer-btn.whatsapp{
    background:linear-gradient(135deg,#16a34a,#22c55e);
    border-color:#16a34a;
    color:#fff;
    box-shadow:0 8px 20px rgba(34,197,94,.25);
}

.lp-footer-btn.whatsapp:hover{
    background:linear-gradient(135deg,#15803d,#16a34a);
    color:#fff;
    transform:translateY(-2px);
}

/* =====================================================
   END OF LANDING PAGE CSS
=====================================================*/