/* =====================================================
   LP Modern Checkout v3.1 – With Coupon Field
   ===================================================== */

html {
    scroll-behavior: smooth;
}

/* ============================
   SECTION WRAPPER
   ============================ */
.lp-checkout-section {
    max-width: 1100px;
    margin: 60px auto 40px;
    padding: 0 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                 Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

.lp-checkout-section *,
.lp-checkout-section *::before,
.lp-checkout-section *::after {
    box-sizing: border-box;
}

/* ============================
   HEADER
   ============================ */
.lp-checkout-header {
    text-align: center;
    margin-bottom: 24px;
}

.lp-secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}
.lp-secure-badge svg { flex-shrink: 0; }

.lp-checkout-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.25;
}

.lp-checkout-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0 0 20px;
    line-height: 1.5;
}

/* ============================
   COUNTDOWN TIMER
   ============================ */
.lp-countdown-timer {
    display: flex;
    justify-content: center;
}

.lp-timer-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 24px rgba(231, 76, 60, .35);
    animation: lp-glow 2s ease-in-out infinite;
}

@keyframes lp-glow {
    0%,100% { box-shadow: 0 4px 24px rgba(231,76,60,.35); }
    50%     { box-shadow: 0 4px 36px rgba(231,76,60,.55); }
}

.lp-timer-icon  { font-size: 18px; }
.lp-timer-label { font-weight: 500; white-space: nowrap; }

.lp-timer-digits {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lp-timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,.2);
    padding: 5px 12px;
    border-radius: 8px;
    min-width: 46px;
    backdrop-filter: blur(4px);
}

.lp-timer-number {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
    font-variant-numeric: tabular-nums;
}

.lp-timer-unit {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: .85;
    margin-top: 1px;
}

.lp-timer-sep {
    font-size: 24px;
    font-weight: 800;
    animation: lp-blink 1s step-end infinite;
}

@keyframes lp-blink {
    0%,100% { opacity: 1; }
    50%     { opacity: 0; }
}

/* ============================
   CART PREVIEW BOX
   ============================ */
.lp-cart-preview {
    margin-bottom: 24px;
}

.lp-cart-preview-inner {
    border: 2.5px dashed #c8a97e;
    border-radius: 14px;
    padding: 20px;
    background: #fffdf7;
    transition: all .3s ease;
}

.lp-cart-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 2px dashed #e8dcc8;
}

.lp-cart-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #27ae60;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.lp-cart-badge svg { flex-shrink: 0; }

.lp-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.3);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    line-height: 1;
}

.lp-cart-total {
    font-size: 20px;
    font-weight: 800;
    color: #27ae60;
}

.lp-cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: #fff;
    border-radius: 10px;
    border: 1.5px solid #ece3d4;
    transition: all .3s ease;
    animation: lp-item-in .4s ease;
}

@keyframes lp-item-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lp-cart-item-main {
    border-color: #27ae60;
    background: #f0faf4;
}

.lp-cart-item-bump {
    border-color: #e67e22;
    background: #fef9f2;
    position: relative;
}

.lp-cart-item-bump::before {
    content: "BUMP";
    position: absolute;
    top: -8px;
    right: 10px;
    background: #e67e22;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 1px;
}

.lp-cart-item-image {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e8dcc8;
    background: #fff;
}

.lp-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-cart-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.lp-cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.3;
    flex: 1;
    min-width: 0;
}

.lp-cart-item-qty {
    font-size: 12px;
    color: #888;
    font-weight: 400;
}

.lp-cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: #27ae60;
    white-space: nowrap;
    flex-shrink: 0;
}

.lp-cart-preview-inner.lp-updating {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39,174,96,.15);
}

/* ============================
   COUPON SECTION (inside cart preview)
   ============================ */
.lp-coupon-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px dashed #e8dcc8;
}

/* ── Toggle Button ── */
.lp-coupon-toggle-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0;
    font-family: inherit;
    transition: color .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lp-coupon-toggle-btn:hover {
    color: #555;
}

/* ── Coupon Form ── */
.lp-coupon-form {
    margin-top: 12px;
    animation: lp-coupon-slide .3s ease;
}

@keyframes lp-coupon-slide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-coupon-input-wrap {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.lp-coupon-input {
    flex: 1;
    padding: 11px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    text-transform: uppercase;
    letter-spacing: .5px;
    min-width: 0;
}

.lp-coupon-input:focus {
    border-color: #4a90d9;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74,144,217,.1);
}

.lp-coupon-input::placeholder {
    text-transform: none;
    letter-spacing: 0;
    color: #bbb;
}

.lp-coupon-apply-btn {
    padding: 11px 22px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, transform .2s;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.lp-coupon-apply-btn:hover {
    background: #2d2d50;
    transform: translateY(-1px);
}

.lp-coupon-apply-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

.lp-coupon-apply-btn.lp-loading {
    position: relative;
    color: transparent;
}

.lp-coupon-apply-btn.lp-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: lp-spin .6s linear infinite;
}

@keyframes lp-spin {
    to { transform: rotate(360deg); }
}

/* ── Coupon Message ── */
.lp-coupon-message {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 0;
    transition: all .3s;
}

.lp-coupon-message.lp-msg-success {
    color: #27ae60;
}

.lp-coupon-message.lp-msg-error {
    color: #e74c3c;
}

/* ── Applied Coupons ── */
.lp-applied-coupons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

.lp-applied-coupons:empty {
    display: none;
}

.lp-applied-coupons:not(:empty) {
    margin-bottom: 12px;
}

.lp-applied-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e8f5e9;
    border: 1.5px solid #a5d6a7;
    border-radius: 10px;
    padding: 10px 14px;
    animation: lp-coupon-applied .4s ease;
}

@keyframes lp-coupon-applied {
    from {
        opacity: 0;
        transform: scale(.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lp-applied-coupon-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.lp-coupon-tag {
    font-size: 13px;
    font-weight: 700;
    color: #2e7d32;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.lp-coupon-discount {
    font-size: 14px;
    font-weight: 800;
    color: #e74c3c;
}

.lp-coupon-remove {
    background: none;
    border: none;
    font-size: 16px;
    color: #999;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    transition: all .2s;
    flex-shrink: 0;
    font-family: inherit;
    line-height: 1;
}

.lp-coupon-remove:hover {
    background: #ffcdd2;
    color: #e74c3c;
}

/* ============================
   SIDE-BY-SIDE LAYOUT
   ============================ */

.lp-checkout-body .woocommerce {
    max-width: 100% !important;
    padding: 0 !important;
}

.lp-checkout-body form.woocommerce-checkout,
.lp-checkout-body .woocommerce-checkout {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    align-items: flex-start !important;
}

.lp-checkout-body #customer_details {
    flex: 1 1 52% !important;
    min-width: 0 !important;
    max-width: none !important;
    width: auto !important;
    background: #fff !important;
    border-radius: 14px !important;
    padding: 28px 24px !important;
    box-shadow: 0 2px 20px rgba(0,0,0,.05) !important;
    border: 1px solid #eaeaea !important;
    order: 1 !important;
}

.lp-checkout-body #customer_details.col2-set { display: block !important; }
.lp-checkout-body #customer_details .col-1 {
    width: 100% !important; float: none !important; padding: 0 !important; margin: 0 !important;
}
.lp-checkout-body #customer_details .col-2 { display: none !important; }

.lp-checkout-body h3#order_review_heading { display: none !important; }

.lp-checkout-body #order_review,
.lp-checkout-body .woocommerce-checkout-review-order {
    flex: 1 1 40% !important;
    min-width: 0 !important;
    max-width: none !important;
    width: auto !important;
    order: 2 !important;
}

.lp-checkout-body #order_review {
    background: #fffdf7 !important;
    border-radius: 14px !important;
    padding: 28px 22px !important;
    border: 3px dashed #c8a97e !important;
    box-shadow: 0 2px 20px rgba(0,0,0,.03) !important;
    position: relative !important;
}

@media (min-width: 769px) {
    .lp-checkout-body #order_review {
        position: sticky !important;
        top: 30px !important;
    }
}

.lp-checkout-body #order_review::before {
    content: "🧾  Order Summary";
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #2d2d2d;
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 2px dashed #c8a97e;
}

.lp-checkout-body .woocommerce-notices-wrapper,
.lp-checkout-body .woocommerce-NoticeGroup,
.lp-checkout-body .woocommerce-error,
.lp-checkout-body .woocommerce-message,
.lp-checkout-body .woocommerce-info {
    flex: 0 0 100% !important;
    order: 0 !important;
    border-radius: 10px !important;
}

/* ============================
   BILLING FIELDS
   ============================ */

.lp-checkout-body .woocommerce-billing-fields > h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin: 0 0 20px !important;
    padding-bottom: 14px !important;
    border-bottom: 2px solid #f0f0f0 !important;
}

.lp-checkout-body .woocommerce-billing-fields__field-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.lp-checkout-body .woocommerce-billing-fields__field-wrapper .form-row,
.lp-checkout-body .woocommerce-billing-fields__field-wrapper .form-row-first,
.lp-checkout-body .woocommerce-billing-fields__field-wrapper .form-row-last,
.lp-checkout-body .woocommerce-billing-fields__field-wrapper .form-row-wide {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    clear: both !important;
}

.lp-checkout-body .form-row label {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #444 !important;
    margin-bottom: 5px !important;
    display: block !important;
    text-transform: uppercase !important;
    letter-spacing: .5px !important;
}
.lp-checkout-body .form-row label .required { color: #e74c3c !important; }
.lp-checkout-body .form-row label .optional {
    font-weight: 400 !important; color: #aaa !important; font-size: 10px !important; text-transform: none !important;
}

.lp-checkout-body .form-row input[type="text"],
.lp-checkout-body .form-row input[type="email"],
.lp-checkout-body .form-row input[type="tel"],
.lp-checkout-body .form-row input[type="number"],
.lp-checkout-body .form-row input[type="password"],
.lp-checkout-body .form-row textarea,
.lp-checkout-body .form-row select,
.lp-checkout-body .form-row .input-text,
.lp-checkout-body .form-row .select2-container .select2-selection--single {
    width: 100% !important;
    padding: 14px 16px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    color: #333 !important;
    background: #fafafa !important;
    transition: border-color .25s, box-shadow .25s, background .25s !important;
    box-sizing: border-box !important;
    height: auto !important;
    line-height: 1.5 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.lp-checkout-body .form-row input:focus,
.lp-checkout-body .form-row textarea:focus,
.lp-checkout-body .form-row select:focus {
    border-color: #4a90d9 !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(74,144,217,.12) !important;
    outline: none !important;
}

.lp-checkout-body .form-row input::placeholder,
.lp-checkout-body .form-row textarea::placeholder {
    color: #b0b0b0 !important;
    font-weight: 400 !important;
}

/* ============================
   ORDER TABLE
   ============================ */
.lp-checkout-body .woocommerce-checkout-review-order-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 16px !important;
    border: none !important;
}

.lp-checkout-body .woocommerce-checkout-review-order-table thead th {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #999 !important;
    font-weight: 600 !important;
    padding: 8px 0 !important;
    border-bottom: 1px dashed #d4c5a9 !important;
    background: transparent !important;
}

.lp-checkout-body .woocommerce-checkout-review-order-table td,
.lp-checkout-body .woocommerce-checkout-review-order-table th {
    padding: 12px 4px !important;
    border-bottom: 1px dashed #e8dcc8 !important;
    font-size: 14px !important;
    color: #555 !important;
    background: transparent !important;
    vertical-align: middle !important;
}

.lp-checkout-body .woocommerce-checkout-review-order-table .order-total td,
.lp-checkout-body .woocommerce-checkout-review-order-table .order-total th {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #1a1a2e !important;
    border-top: 2px dashed #c8a97e !important;
    border-bottom: 2px dashed #c8a97e !important;
    padding: 16px 4px !important;
}

.lp-checkout-body .order-total .woocommerce-Price-amount {
    color: #27ae60 !important;
}

/* Style WC's discount row in order review table */
.lp-checkout-body .woocommerce-checkout-review-order-table .cart-discount td {
    color: #e74c3c !important;
    font-weight: 600 !important;
}

.lp-checkout-body .woocommerce-checkout-review-order-table .cart-discount th {
    color: #888 !important;
}

.lp-checkout-body .woocommerce-checkout-review-order-table .cart-discount .woocommerce-remove-coupon {
    color: #e74c3c !important;
    font-size: 12px !important;
    margin-left: 6px !important;
}

/* ============================
   PAYMENT METHODS
   ============================ */
.lp-checkout-body #payment {
    background: transparent !important;
    padding: 0 !important;
    margin-top: 20px !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.lp-checkout-body #payment::before {
    content: "💳  Payment Method";
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.lp-checkout-body #payment ul.payment_methods {
    padding: 0 !important;
    border: none !important;
    list-style: none !important;
    margin: 0 0 16px !important;
    background: transparent !important;
}

.lp-checkout-body #payment ul.payment_methods li {
    padding: 12px 14px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 10px !important;
    margin-bottom: 8px !important;
    background: #fff !important;
    transition: border-color .25s, background .25s !important;
    list-style: none !important;
}

.lp-checkout-body #payment ul.payment_methods li:hover {
    border-color: #4a90d9 !important;
    background: #f6faff !important;
}

.lp-checkout-body #payment .payment_methods label {
    font-weight: 600 !important;
    cursor: pointer !important;
    font-size: 14px !important;
}

.lp-checkout-body #payment div.payment_box {
    background: #f8f8f8 !important;
    border-radius: 8px !important;
    padding: 12px 14px !important;
    margin-top: 8px !important;
    font-size: 13px !important;
    color: #666 !important;
    border: none !important;
    box-shadow: none !important;
}
.lp-checkout-body #payment div.payment_box::before {
    display: none !important;
}

/* ============================
   PLACE ORDER BUTTON
   ============================ */
.lp-checkout-body #place_order {
    width: 100% !important;
    padding: 16px 28px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 18px rgba(39,174,96,.4) !important;
    transition: transform .25s, box-shadow .25s !important;
    margin-top: 6px !important;
    line-height: 1.4 !important;
}

.lp-checkout-body #place_order:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 28px rgba(39,174,96,.5) !important;
}
.lp-checkout-body #place_order:active {
    transform: translateY(0) !important;
}

.lp-checkout-body #payment .place-order::after {
    content: "🔒 100% Secure & Encrypted";
    display: block;
    text-align: center;
    font-size: 11px;
    color: #999;
    margin-top: 12px;
    font-weight: 500;
}

/* ============================
   WHATSAPP SECTION
   ============================ */
.lp-whatsapp-section {
    max-width: 600px;
    margin: 32px auto 0;
    text-align: center;
}

.lp-wa-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.lp-wa-divider-line {
    flex: 1;
    height: 1px;
    background: #ddd;
}

.lp-wa-divider-text {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.lp-wa-desc {
    font-size: 14px;
    color: #666;
    margin: 0 0 16px;
    line-height: 1.5;
}

.lp-wa-desc strong { color: #444; }

.lp-wa-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 14px;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(37,211,102,.35);
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
}

.lp-wa-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(37,211,102,.5);
    color: #fff !important;
    text-decoration: none !important;
}

.lp-wa-button svg { flex-shrink: 0; }

.lp-wa-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1.2;
}

.lp-wa-btn-text strong { font-size: 16px; font-weight: 700; }
.lp-wa-btn-text small { font-size: 11px; opacity: .85; font-weight: 400; }

/* ============================
   TRUST BADGES
   ============================ */
.lp-trust-badges {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999;
    font-size: 12px;
    font-weight: 500;
}
.lp-trust-item svg { color: #27ae60; flex-shrink: 0; }

/* ============================
   HIDE STUFF
   ============================ */
.lp-checkout-body .woocommerce-additional-fields,
.lp-checkout-body #ship-to-different-address,
.lp-checkout-body .woocommerce-shipping-fields,
.lp-checkout-body .woocommerce-account-fields,
.lp-checkout-body .woocommerce-form-login-toggle,
.lp-checkout-body .woocommerce-form-login,
.lp-checkout-body .woocommerce-form-coupon-toggle,
.lp-checkout-body .checkout_coupon {
    display: none !important;
}

/* LOADING */
.lp-checkout-body .blockOverlay {
    background: rgba(255,255,255,.75) !important;
    border-radius: 14px;
}
.lp-checkout-body .woocommerce-checkout.processing {
    opacity: .6;
    pointer-events: none;
}

/* ====================================================================
   RESPONSIVE
   ==================================================================== */

@media screen and (max-width: 768px) {

    .lp-checkout-section {
        max-width: 100vw !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        margin-top: 24px !important;
        margin-bottom: 16px !important;
        padding: 0 8px !important;
    }

    .lp-checkout-header { padding: 0 4px !important; margin-bottom: 16px !important; }
    .lp-checkout-title { font-size: 24px !important; }
    .lp-checkout-subtitle { font-size: 13px !important; margin-bottom: 14px !important; }
    .lp-secure-badge { font-size: 11px !important; padding: 5px 12px !important; margin-bottom: 10px !important; }

    .lp-countdown-timer { display: block !important; }
    .lp-timer-badge {
        width: 100% !important; justify-content: center !important; flex-wrap: wrap !important;
        gap: 8px !important; padding: 10px 12px !important; border-radius: 12px !important; font-size: 12px !important;
    }
    .lp-timer-number { font-size: 20px !important; }
    .lp-timer-sep { font-size: 20px !important; }
    .lp-timer-block { min-width: 40px !important; padding: 4px 10px !important; }

    .lp-cart-preview { margin-bottom: 14px !important; }
    .lp-cart-preview-inner { padding: 14px 10px !important; border-radius: 10px !important; }
    .lp-cart-preview-header { margin-bottom: 12px !important; padding-bottom: 10px !important; }
    .lp-cart-badge { font-size: 11px !important; padding: 4px 10px !important; }
    .lp-cart-total { font-size: 17px !important; }
    .lp-cart-items { gap: 8px !important; }
    .lp-cart-item { padding: 10px !important; gap: 10px !important; }
    .lp-cart-item-image { width: 46px !important; height: 46px !important; border-radius: 6px !important; }
    .lp-cart-item-name { font-size: 13px !important; }
    .lp-cart-item-price { font-size: 14px !important; }
    .lp-cart-item-bump::before { font-size: 8px !important; top: -6px !important; right: 6px !important; padding: 2px 6px !important; }

    /* Coupon on mobile */
    .lp-coupon-section { margin-top: 12px !important; padding-top: 12px !important; }
    .lp-coupon-toggle-btn { font-size: 12px !important; }
    .lp-coupon-input { padding: 10px 12px !important; font-size: 14px !important; }
    .lp-coupon-apply-btn { padding: 10px 16px !important; font-size: 12px !important; }
    .lp-applied-coupon { padding: 8px 10px !important; }
    .lp-coupon-tag { font-size: 11px !important; }
    .lp-coupon-discount { font-size: 13px !important; }

    .lp-checkout-body form.woocommerce-checkout,
    .lp-checkout-body .woocommerce-checkout { flex-direction: column !important; gap: 12px !important; }
    .lp-checkout-body .woocommerce { width: 100% !important; max-width: 100% !important; padding: 0 !important; margin: 0 !important; }

    .lp-checkout-body #customer_details {
        flex: 1 1 100% !important; width: 100% !important; max-width: 100% !important;
        min-width: 0 !important; padding: 20px 12px !important; margin: 0 !important; border-radius: 10px !important;
    }

    .lp-checkout-body .woocommerce-billing-fields > h3 { font-size: 16px !important; margin-bottom: 14px !important; padding-bottom: 10px !important; }
    .lp-checkout-body .woocommerce-billing-fields__field-wrapper { gap: 12px !important; }

    .lp-checkout-body .form-row input[type="text"],
    .lp-checkout-body .form-row input[type="email"],
    .lp-checkout-body .form-row input[type="tel"],
    .lp-checkout-body .form-row input[type="number"],
    .lp-checkout-body .form-row input[type="password"],
    .lp-checkout-body .form-row textarea,
    .lp-checkout-body .form-row select,
    .lp-checkout-body .form-row .input-text {
        padding: 13px 12px !important; font-size: 16px !important; border-radius: 8px !important;
    }

    .lp-checkout-body .form-row label { font-size: 11px !important; margin-bottom: 4px !important; }

    .lp-checkout-body #order_review,
    .lp-checkout-body .woocommerce-checkout-review-order {
        flex: 1 1 100% !important; width: 100% !important; max-width: 100% !important; min-width: 0 !important;
    }

    .lp-checkout-body #order_review { padding: 20px 12px !important; margin: 0 !important; border-radius: 10px !important; }
    .lp-checkout-body #order_review::before { font-size: 16px !important; margin-bottom: 12px !important; padding-bottom: 10px !important; }

    .lp-checkout-body #payment::before { font-size: 14px !important; }
    .lp-checkout-body #payment ul.payment_methods li { padding: 10px 10px !important; border-radius: 8px !important; }
    .lp-checkout-body #place_order { padding: 16px 20px !important; font-size: 16px !important; border-radius: 10px !important; }

    .lp-checkout-body .woocommerce-checkout-review-order-table .order-total td,
    .lp-checkout-body .woocommerce-checkout-review-order-table .order-total th { font-size: 18px !important; padding: 14px 4px !important; }

    .lp-whatsapp-section { max-width: 100% !important; padding: 0 4px !important; margin-top: 24px !important; }
    .lp-wa-desc { font-size: 13px !important; }
    .lp-wa-button { width: 100% !important; justify-content: center !important; padding: 14px 20px !important; border-radius: 10px !important; }

    .lp-trust-badges { flex-direction: column !important; align-items: center !important; gap: 10px !important; padding: 16px 8px 0 !important; margin-top: 20px !important; }
    .lp-checkout-body .woocommerce-notices-wrapper, .lp-checkout-body .woocommerce-NoticeGroup { padding: 0 !important; }
}

@media screen and (max-width: 400px) {
    .lp-checkout-section { padding: 0 6px !important; }
    .lp-checkout-title { font-size: 21px !important; }
    .lp-checkout-body #customer_details { padding: 16px 10px !important; }
    .lp-checkout-body #order_review { padding: 16px 10px !important; }
    .lp-cart-preview-inner { padding: 10px 8px !important; }
    .lp-cart-item { padding: 8px !important; gap: 8px !important; }
    .lp-cart-item-image { width: 40px !important; height: 40px !important; }
    .lp-cart-item-name { font-size: 12px !important; }
    .lp-cart-item-price { font-size: 13px !important; }
    .lp-checkout-body .form-row input[type="text"],
    .lp-checkout-body .form-row input[type="email"],
    .lp-checkout-body .form-row input[type="tel"],
    .lp-checkout-body .form-row input[type="number"],
    .lp-checkout-body .form-row input[type="password"],
    .lp-checkout-body .form-row textarea,
    .lp-checkout-body .form-row select,
    .lp-checkout-body .form-row .input-text { padding: 12px 10px !important; }
    .lp-checkout-body #place_order { padding: 14px 16px !important; font-size: 15px !important; }

    .lp-coupon-input { padding: 9px 10px !important; font-size: 13px !important; }
    .lp-coupon-apply-btn { padding: 9px 12px !important; font-size: 11px !important; }
}

/* ── ELEMENTOR OVERRIDES ── */
@media screen and (max-width: 768px) {
    .elementor-widget-shortcode:has(.lp-checkout-section) .elementor-widget-container,
    .elementor-widget-text-editor:has(.lp-checkout-section) .elementor-widget-container {
        padding-left: 0 !important; padding-right: 0 !important; margin-left: 0 !important; margin-right: 0 !important; overflow: visible !important;
    }
    .elementor-section:has(.lp-checkout-section),
    .elementor-container:has(.lp-checkout-section),
    .elementor-column:has(.lp-checkout-section),
    .elementor-column-wrap:has(.lp-checkout-section),
    .elementor-widget-wrap:has(.lp-checkout-section),
    .e-con:has(.lp-checkout-section),
    .e-con-inner:has(.lp-checkout-section) {
        padding-left: 0 !important; padding-right: 0 !important; overflow: visible !important;
    }
}