 /*
Theme Name: Single Product Landing
Description: Independent WooCommerce single-product landing page.
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: single-product-landing
*/


/* =========================================================
   GLOBAL
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
select {
    font: inherit;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.spl-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.spl-header {
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.spl-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spl-logo img {
    max-height: 56px;
    width: auto;
    display: block;
}

.spl-logo-text {
    font-size: 24px;
    font-weight: 700;
}


/* =========================================================
   PRODUCT
   ========================================================= */

.spl-product {
    padding: 45px 0 70px;
}

.spl-product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: start;
}

.spl-gallery {
    position: sticky;
    top: 20px;
}


/* =========================================================
   MAIN IMAGE
   ========================================================= */

.spl-main-image {
    overflow: hidden;
    border-radius: 14px;
    background: #f7f7f7;
}

.spl-main-image img {
    width: 100%;
    display: block;
}


/* =========================================================
   THUMBNAILS
   ========================================================= */

.spl-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
}

.spl-thumb {
    flex: 0 0 76px;

    width: 76px;
    height: 76px;

    padding: 0;

    border: 1px solid #ddd;
    border-radius: 7px;

    background: #fff;

    overflow: hidden;

    cursor: pointer;
}

.spl-thumb.active {
    border: 2px solid #111;
}

.spl-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   RATING
   ========================================================= */

.spl-rating {
    margin-bottom: 12px;
    font-size: 14px;
}

.spl-stars {
    letter-spacing: 2px;
}


/* =========================================================
   TITLE
   ========================================================= */

.spl-title {
    margin: 0 0 18px;

    font-size: 42px;

    line-height: 1.12;
}


/* =========================================================
   PRICE
   ========================================================= */

.spl-price {
    margin-bottom: 22px;

    font-size: 32px;
    font-weight: 700;
}

.spl-price del {
    margin-right: 8px;

    color: #999;

    font-size: 19px;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.spl-benefits {
    margin: 20px 0 25px;
}

.spl-benefit {
    margin: 8px 0;

    font-size: 15px;
}


/* =========================================================
   COUNTDOWN
   ========================================================= */

.spl-countdown-wrap {
    margin: 22px 0;
}

.spl-countdown-title {
    margin-bottom: 10px;

    font-weight: 700;
}

.spl-countdown {
    display: flex;

    gap: 8px;
}

.spl-countdown-box {
    min-width: 58px;

    padding: 9px 8px;

    border-radius: 6px;

    background: #111;
    color: #fff;

    text-align: center;
}

.spl-countdown-number {
    display: block;

    font-size: 21px;
    font-weight: 700;
}

.spl-countdown-label {
    display: block;

    margin-top: 4px;

    font-size: 9px;

    opacity: .7;
}


/* =========================================================
   BUY BOX
   ========================================================= */

.spl-buy-box {
    padding: 22px;

    border: 1px solid #e2e2e2;

    border-radius: 12px;
}


/* =========================================================
   VARIATIONS
   ========================================================= */

.spl-buy-box .variations {
    width: 100%;

    margin-bottom: 15px;

    border-collapse: collapse;
}

.spl-buy-box .variations td,
.spl-buy-box .variations th {
    padding: 8px 0;

    text-align: left;

    vertical-align: middle;
}

.spl-buy-box .variations select {
    width: 100%;

    min-height: 46px;

    padding: 0 12px;

    border: 1px solid #ccc;

    border-radius: 6px;

    background: #fff;
}

.spl-buy-box .single_variation_wrap {
    margin-top: 12px;
}


/* =========================================================
   VARIATION PRICE
   ========================================================= */

.spl-buy-box .woocommerce-variation-price {
    margin: 10px 0 15px;

    font-size: 25px;

    font-weight: 700;
}


/* =========================================================
   CART
   ========================================================= */

.spl-buy-box form.cart {
    margin: 0;
}


/* =========================================================
   IMPORTANT:
   HIDE / RESET DEFAULT WOOCOMMERCE QUANTITY STYLING
   ========================================================= */

.spl-buy-box .quantity {
    margin: 0 !important;
}


/* =========================================================
   CUSTOM QUANTITY CONTROL

   HTML STRUCTURE:

   .spl-qty-controls
       .spl-qty-minus
       .quantity
           input.qty
       .spl-qty-plus
   ========================================================= */

.spl-qty-controls {

    display: flex !important;

    align-items: stretch !important;

    width: max-content !important;

    max-width: 100% !important;

    height: 48px !important;

    margin: 0 0 15px !important;

    padding: 0 !important;

    gap: 0 !important;

    line-height: 1 !important;
}


/* =========================================================
   MINUS BUTTON
   ========================================================= */

.spl-qty-controls > .spl-qty-minus {

    flex: 0 0 48px !important;

    width: 48px !important;

    min-width: 48px !important;

    max-width: 48px !important;

    height: 48px !important;

    min-height: 48px !important;

    max-height: 48px !important;

    margin: 0 !important;

    padding: 0 !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    border: 1px solid #ccc !important;

    border-radius: 7px 0 0 7px !important;

    background: #fff !important;

    color: #111 !important;

    font-size: 20px !important;

    font-weight: 400 !important;

    line-height: 1 !important;

    text-align: center !important;

    box-shadow: none !important;

    outline: none !important;

    cursor: pointer !important;

    appearance: none !important;

    -webkit-appearance: none !important;

    box-sizing: border-box !important;
}


/* =========================================================
   PLUS BUTTON
   ========================================================= */

.spl-qty-controls > .spl-qty-plus {

    flex: 0 0 48px !important;

    width: 48px !important;

    min-width: 48px !important;

    max-width: 48px !important;

    height: 48px !important;

    min-height: 48px !important;

    max-height: 48px !important;

    margin: 0 !important;

    padding: 0 !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    border: 1px solid #ccc !important;

    border-radius: 0 7px 7px 0 !important;

    background: #fff !important;

    color: #111 !important;

    font-size: 20px !important;

    font-weight: 400 !important;

    line-height: 1 !important;

    text-align: center !important;

    box-shadow: none !important;

    outline: none !important;

    cursor: pointer !important;

    appearance: none !important;

    -webkit-appearance: none !important;

    box-sizing: border-box !important;
}


/* =========================================================
   WOOCOMMERCE QUANTITY WRAPPER
   ========================================================= */

.spl-qty-controls > .quantity {

    flex: 0 0 70px !important;

    width: 70px !important;

    min-width: 70px !important;

    max-width: 70px !important;

    height: 48px !important;

    min-height: 48px !important;

    max-height: 48px !important;

    margin: 0 !important;

    padding: 0 !important;

    display: block !important;

    line-height: 1 !important;

    box-sizing: border-box !important;
}


/* =========================================================
   QUANTITY INPUT
   ========================================================= */

.spl-qty-controls > .quantity > input.qty {

    display: block !important;

    width: 70px !important;

    min-width: 70px !important;

    max-width: 70px !important;

    height: 48px !important;

    min-height: 48px !important;

    max-height: 48px !important;

    margin: 0 !important;

    padding: 0 !important;

    border: 1px solid #ccc !important;

    border-left: 0 !important;

    border-right: 0 !important;

    border-radius: 0 !important;

    background: #fff !important;

    color: #111 !important;

    text-align: center !important;

    font-size: 16px !important;

    font-weight: 400 !important;

    line-height: 48px !important;

    box-shadow: none !important;

    outline: none !important;

    box-sizing: border-box !important;

    appearance: textfield !important;

    -moz-appearance: textfield !important;

    -webkit-appearance: none !important;
}


/* =========================================================
   REMOVE NUMBER ARROWS
   ========================================================= */

.spl-qty-controls > .quantity > input.qty::-webkit-inner-spin-button,
.spl-qty-controls > .quantity > input.qty::-webkit-outer-spin-button {

    -webkit-appearance: none !important;

    margin: 0 !important;
}


/* =========================================================
   INPUT FOCUS
   ========================================================= */

.spl-qty-controls > .quantity > input.qty:focus {

    border-top-color: #ccc !important;

    border-bottom-color: #ccc !important;

    border-left: 0 !important;

    border-right: 0 !important;

    outline: none !important;

    box-shadow: none !important;
}


/* =========================================================
   HOVER
   ========================================================= */

.spl-qty-controls > .spl-qty-minus:hover,
.spl-qty-controls > .spl-qty-plus:hover {

    background: #f7f7f7 !important;

    color: #111 !important;
}


/* =========================================================
   ADD TO CART / BUY NOW
   ========================================================= */

.spl-buy-box .single_add_to_cart_button {

    width: 100%;

    min-height: 58px;

    border: 0;

    border-radius: 7px;

    background: #111;

    color: #fff;

    font-size: 18px;

    font-weight: 700;

    cursor: pointer;
}


/* =========================================================
   STOCK
   ========================================================= */

.spl-stock {

    margin-top: 14px;

    font-weight: 700;
}

.spl-stock.low {
    color: #d00000;
}


/* =========================================================
   SHORT DESCRIPTION
   ========================================================= */

.spl-short-description {

    margin-top: 22px;

    line-height: 1.75;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.spl-section {

    padding: 65px 0;

    border-top: 1px solid #eee;
}

.spl-section-title {

    margin: 0 0 35px;

    text-align: center;

    font-size: 30px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.spl-description {

    max-width: 900px;

    margin: 0 auto;

    line-height: 1.8;
}


/* =========================================================
   FEATURES
   ========================================================= */

.spl-features {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.spl-feature {

    padding: 28px 20px;

    border: 1px solid #eee;

    border-radius: 10px;

    text-align: center;
}

.spl-feature-icon {

    margin-bottom: 12px;

    font-size: 30px;
}

.spl-feature-title {

    margin-bottom: 8px;

    font-size: 18px;

    font-weight: 700;
}

.spl-feature-text {

    color: #666;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   FAQ
   ========================================================= */

.spl-faq {

    max-width: 820px;

    margin: 0 auto;
}

.spl-faq-item {

    border-bottom: 1px solid #ddd;
}

.spl-faq-question {

    width: 100%;

    padding: 19px 0;

    border: 0;

    background: transparent;

    text-align: left;

    font-weight: 700;

    cursor: pointer;
}

.spl-faq-answer {

    display: none;

    padding: 0 0 18px;

    color: #666;

    line-height: 1.7;
}

.spl-faq-item.active .spl-faq-answer {

    display: block;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.spl-final-cta {

    text-align: center;
}

.spl-final-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 280px;

    min-height: 56px;

    padding: 0 30px;

    border: 0;

    border-radius: 7px;

    background: #111;

    color: #fff;

    font-weight: 700;

    cursor: pointer;
}


/* =========================================================
   MOBILE STICKY
   ========================================================= */

.spl-mobile-sticky {

    display: none;
}


/* =========================================================
   RECENT ACTIVITY
   ========================================================= */



/* =========================================================
   RECENT ICON
   ========================================================= */



/* =========================================================
   RECENT CONTENT
   ========================================================= */






/* =========================================================
   RECENT CLOSE
   ========================================================= */




/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {


    /* =====================================================
       CONTAINER
       ===================================================== */

    .spl-container {

        width: calc(100% - 24px);
    }


    /* =====================================================
       PRODUCT
       ===================================================== */

    .spl-product {

        padding: 22px 0 45px;
    }

    .spl-product-grid {

        display: block;
    }

    .spl-gallery {

        position: static;

        margin-bottom: 28px;
    }


    /* =====================================================
       TITLE
       ===================================================== */

    .spl-title {

        font-size: 30px;
    }


    /* =====================================================
       PRICE
       ===================================================== */

    .spl-price {

        font-size: 27px;
    }


    /* =====================================================
       BUY BOX
       ===================================================== */

    .spl-buy-box {

        padding: 17px;
    }


    /* =====================================================
       FEATURES
       ===================================================== */

    .spl-features {

        grid-template-columns: 1fr;
    }


    /* =====================================================
       SECTIONS
       ===================================================== */

    .spl-section {

        padding: 45px 0;
    }

    .spl-section-title {

        font-size: 25px;
    }


    /* =====================================================
       BODY
       ===================================================== */

    body {

        padding-bottom: 72px;
    }


    /* =====================================================
       MOBILE QUANTITY
       ===================================================== */

    .spl-qty-controls {

        width: max-content !important;

        max-width: 100% !important;

        height: 46px !important;

        margin: 0 0 15px !important;
    }


    /* Mobile Minus */

    .spl-qty-controls > .spl-qty-minus {

        flex: 0 0 46px !important;

        width: 46px !important;

        min-width: 46px !important;

        max-width: 46px !important;

        height: 46px !important;

        min-height: 46px !important;

        max-height: 46px !important;
    }


    /* Mobile Quantity Wrapper */

    .spl-qty-controls > .quantity {

        flex: 0 0 64px !important;

        width: 64px !important;

        min-width: 64px !important;

        max-width: 64px !important;

        height: 46px !important;

        min-height: 46px !important;

        max-height: 46px !important;
    }


    /* Mobile Number */

    .spl-qty-controls > .quantity > input.qty {

        width: 64px !important;

        min-width: 64px !important;

        max-width: 64px !important;

        height: 46px !important;

        min-height: 46px !important;

        max-height: 46px !important;

        line-height: 46px !important;
    }


    /* Mobile Plus */

    .spl-qty-controls > .spl-qty-plus {

        flex: 0 0 46px !important;

        width: 46px !important;

        min-width: 46px !important;

        max-width: 46px !important;

        height: 46px !important;

        min-height: 46px !important;

        max-height: 46px !important;
    }


    /* =====================================================
       MOBILE STICKY
       ===================================================== */

    .spl-mobile-sticky {

        position: fixed;

        z-index: 999999;

        left: 0;

        right: 0;

        bottom: 0;

        display: flex;

        align-items: center;

        gap: 10px;

        padding: 9px 11px;

        background: #fff;

        border-top: 1px solid #ddd;

        box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
    }


    .spl-mobile-price {

        max-width: 42%;

        overflow: hidden;

        font-size: 17px;

        font-weight: 700;

        white-space: nowrap;
    }


    .spl-mobile-buy {

        flex: 1;

        min-height: 48px;

        border: 0;

        border-radius: 6px;

        background: #111;

        color: #fff;

        font-weight: 700;

        cursor: pointer;
    }


    /* =====================================================
       MOBILE RECENT ACTIVITY
       ===================================================== */

    .spl-recent-activity {

        left: 12px;

        bottom: 78px;

        width: 310px;

        max-width: calc(100vw - 24px);

        padding: 12px 34px 12px 12px;
    }


    .spl-recent-icon {

        flex-basis: 38px;

        width: 38px;

        height: 38px;

        margin-right: 10px;

        font-size: 18px;
    }


    .spl-recent-title {

        font-size: 13px;
    }


    .spl-recent-text {

        font-size: 12px;
    }

}

/* Recent Purchases inline carousel */
.spl-recent-purchases-block {
    margin-top: 24px;
    padding: 18px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #fff;
}
.spl-recent-purchases-block h3 {
    margin: 0 0 12px;
    font-size: 18px;
}
.spl-recent-slider {
    overflow: hidden;
}
.spl-recent-slide {
    opacity: 0;
    transform: translateX(20px);
    transition: all .3s ease;
}
.spl-recent-slide.active {
    opacity: 1;
    transform: translateX(0);
}


/* Custom Landing Header Menu */
.spl-header{position:sticky;top:0;z-index:999;background:#fff;}
.spl-header-inner{display:flex;align-items:center;justify-content:space-between;gap:30px;}
.spl-logo-link{text-decoration:none;}
.spl-nav{display:flex;align-items:center;gap:28px;}
.spl-nav a{color:inherit;text-decoration:none;font-weight:500;}
.spl-mobile-menu{display:none;border:0;background:none;font-size:26px;cursor:pointer;}
@media(max-width:768px){
 .spl-header-inner{position:relative;}
 .spl-nav{display:none;position:absolute;top:70px;left:0;right:0;background:#fff;padding:20px;flex-direction:column;align-items:flex-start;border:1px solid #eee;}
 .spl-nav.active{display:flex;}
 .spl-mobile-menu{display:block;}
}


.spl-footer{
    padding:40px 0 25px;
    border-top:1px solid #eee;
    text-align:center;
}

.spl-footer-policy h3{
    margin-bottom:20px;
}

.spl-footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.spl-footer-links a{
    color:#333;
    text-decoration:none;
}

.spl-footer-copy{
    margin-top:25px;
    color:#666;
    font-size:14px;
}

@media(max-width:768px){
    .spl-footer-links{
        flex-direction:column;
        gap:12px;
    }
}
.checkout-countdown {
    display:block !important;
    width:100% !important;
    max-width:1200px !important;
    margin:20px auto !important;
    padding:20px !important;
    text-align:center !important;
    background:#fff5f5 !important;
    border-radius:10px !important;
}


.checkout-countdown .countdown-title {
    font-size:18px !important;
    font-weight:700 !important;
}


.checkout-countdown #checkout-timer {
    display:block !important;
    font-size:42px !important;
    line-height:1.2 !important;
    font-weight:800 !important;
    color:red !important;
    margin:10px 0 !important;
}


.checkout-countdown .countdown-desc {
    font-size:14px !important;
}
