/*
Theme Name: Glozin Child
Theme URI: https://wpglozin.com/
Author: UIXThemes
Author URI: https://uix.store
Description: Multipurpose WooCommerce WordPress Theme
Version: 1.0.0
Requires at least: 5.0
Tested up to: 5.8
Requires PHP: 7.0
License: GNU General Public License v2+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: glozin
Tags: one-column, two-columns, left-sidebar, right-sidebar, full-width-template, post-formats, theme-options, threaded-comments, translation-ready
Template: glozin
*/

/* ==========================================================================
   PIC N PAIR (PNP) HIGH-CONVERTING CHECKOUT UI/UX CUSTOMIZATIONS
   (Strictly Scoped to WooCommerce Checkout Page Only)
   ========================================================================== */

/* 1. Global Box-Sizing Override for Checkout Page to prevent horizontal scrolling */
body.woocommerce-checkout,
body.woocommerce-checkout * {
    box-sizing: border-box !important;
}

/* 2. Top Security & Assurance Bar */
body.woocommerce-checkout .pnp-checkout-security-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background: #f8f6ff;
    border: 1.5px dashed #6200ea;
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 25px;
    font-size: 13px;
    color: #4a148c;
    gap: 15px;
    width: 100%;
}

body.woocommerce-checkout .pnp-security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

body.woocommerce-checkout .pnp-sec-icon {
    font-size: 16px;
}

@media (max-width: 767px) {
    body.woocommerce-checkout .pnp-checkout-security-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 15px;
        gap: 10px;
    }
    body.woocommerce-checkout .pnp-security-item {
        width: 100%;
        border-bottom: 1px dashed #efeaff;
        padding-bottom: 8px;
    }
    body.woocommerce-checkout .pnp-security-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* 3. Main Checkout Form Layout Optimization */
body.woocommerce-checkout .woocommerce-checkout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

/* Left Column: Customer & Shipping Details */
body.woocommerce-checkout #customer_details {
    flex: 1 1 58%;
    min-width: 300px;
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #eaeaea;
}

/* Right Column: Sticky Order Review Card */
body.woocommerce-checkout #order_review_heading,
body.woocommerce-checkout #order_review {
    flex: 1 1 38%;
    min-width: 300px;
}

body.woocommerce-checkout #order_review {
    position: -webkit-sticky;
    position: sticky;
    top: 25px;
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(98, 0, 234, 0.08);
    border: 1.5px solid #dcd3ff;
}

body.woocommerce-checkout #order_review_heading {
    display: none;
}

@media (max-width: 991px) {
    body.woocommerce-checkout #customer_details,
    body.woocommerce-checkout #order_review {
        flex: 1 1 100% !important;
        min-width: 100% !important;
        width: 100% !important;
    }
    
    body.woocommerce-checkout #order_review {
        position: static;
    }
}

@media (max-width: 767px) {
    body.woocommerce-checkout #customer_details,
    body.woocommerce-checkout #order_review {
        padding: 15px !important;
    }
    body.woocommerce-checkout .woocommerce-checkout {
        gap: 15px !important;
    }
}

/* 4. Form Fields & Input Styling */
body.woocommerce-checkout .form-row {
    margin-bottom: 16px;
}

body.woocommerce-checkout .form-row label {
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
    font-size: 14px;
}

body.woocommerce-checkout input.input-text,
body.woocommerce-checkout select,
body.woocommerce-checkout textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #cccccc;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
    background-color: #fafafa;
}

body.woocommerce-checkout input.input-text:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-checkout textarea:focus {
    border-color: #6200ea;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(98, 0, 234, 0.12);
    outline: none;
}

/* Section Titles (Billing & Shipping) */
body.woocommerce-checkout h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.woocommerce-checkout h3:not(#ship-to-different-address)::before {
    content: "📍";
    font-size: 20px;
}

/* 5. Order Review Table Styling & Quantity Selector */
body.woocommerce-checkout table.shop_table {
    border: none;
    margin-bottom: 20px;
    width: 100%;
}

body.woocommerce-checkout table.shop_table th,
body.woocommerce-checkout table.shop_table td {
    padding: 12px 0;
    border-bottom: 1px dashed #e5e5e5;
    font-size: 14px;
}

body.woocommerce-checkout table.shop_table .product-name {
    font-weight: 600;
    color: #333;
    display: block;
    width: 100%;
}

/* Custom quantity button wrapper */
body.woocommerce-checkout .pnp-checkout-qty-wrapper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d0c4ff;
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
    height: 32px;
    width: 96px;
    margin-top: 8px;
}

body.woocommerce-checkout .pnp-qty-btn {
    width: 30px;
    height: 100%;
    border: none;
    background: #f4f0ff;
    color: #6200ea;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    padding: 0;
}

body.woocommerce-checkout .pnp-qty-btn:hover {
    background: #e0d5ff;
}

body.woocommerce-checkout .pnp-qty-input {
    width: 36px !important;
    height: 100% !important;
    border: none !important;
    text-align: center !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #333 !important;
    padding: 0 !important;
    background: #ffffff !important;
    outline: none !important;
    margin: 0 !important;
}

body.woocommerce-checkout table.shop_table .order-total th,
body.woocommerce-checkout table.shop_table .order-total td {
    font-size: 18px;
    font-weight: 700;
    color: #6200ea;
    border-bottom: none;
    padding-top: 15px;
}

/* 6. Payment Methods Selection & Razorpay Logo Fixes */
body.woocommerce-checkout #payment {
    background: #f9f9fb;
    border-radius: 12px;
    padding: 18px;
    margin-top: 15px;
    border: 1px solid #e8e8ee;
}

body.woocommerce-checkout #payment ul.payment_methods {
    padding: 0;
    margin: 0 0 20px 0;
    list-style: none;
}

body.woocommerce-checkout #payment ul.payment_methods li {
    background: #ffffff;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 15px;
    cursor: pointer;
    display: block;
    transition: all 0.2s ease;
}

body.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
    margin: 0 10px 0 0 !important;
    float: left;
    position: relative;
    top: 5px;
}

/* Label flex row - holds text on left, logo on right for desktop */
body.woocommerce-checkout #payment ul.payment_methods li label {
    font-weight: 600;
    color: #222;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: calc(100% - 25px) !important;
    margin-bottom: 0 !important;
    font-size: 14px;
    float: left;
    line-height: 1.4;
}

/* Enlarged Razorpay logo with correct margins */
body.woocommerce-checkout #payment ul.payment_methods li label img {
    max-height: 32px !important;
    height: 32px !important;
    width: auto !important;
    object-fit: contain !important;
    margin-left: 15px !important;
    flex-shrink: 0;
    display: inline-block !important;
}

/* Mobile-first alignment: Stack label and Razorpay logo vertically on mobile to prevent squeezing */
@media (max-width: 767px) {
    body.woocommerce-checkout #payment ul.payment_methods li label {
        display: block !important;
        float: none !important;
        width: 100% !important;
        font-size: 13px !important;
    }
    body.woocommerce-checkout #payment ul.payment_methods li label img {
        display: block !important;
        margin: 10px 0 0 0 !important;
        max-height: 38px !important;
        height: 38px !important;
        width: auto !important;
    }
    body.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
        top: 2px;
    }
}

/* Description box styling */
body.woocommerce-checkout #payment div.payment_box {
    margin-top: 12px !important;
    background: #fdfcff !important;
    border: 1px solid #efeaff !important;
    border-left: 3px solid #6200ea !important;
    padding: 12px 15px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    color: #555 !important;
    display: block !important;
    width: 100% !important;
    clear: both;
}

body.woocommerce-checkout #payment ul.payment_methods li::after {
    content: "";
    display: table;
    clear: both;
}

body.woocommerce-checkout #payment ul.payment_methods li:hover,
body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method input:checked + label {
    border-color: #6200ea;
    background: #f5eeff;
}

/* 7. Place Order CTA Button Styling & Mobile-responsive Active states */
body.woocommerce-checkout #place_order {
    width: 100% !important;
    background: linear-gradient(135deg, #6200ea 0%, #4a00b4 100%) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    padding: 15px 20px !important;
    border-radius: 50px !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(98, 0, 234, 0.3) !important;
    cursor: pointer !important;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    will-change: transform;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* Desktop hover animation */
body.woocommerce-checkout #place_order:hover {
    background: linear-gradient(135deg, #4a00b4 0%, #370086 100%) !important;
    transform: translateY(-2px) scale(0.97) !important;
    box-shadow: 0 4px 15px rgba(98, 0, 234, 0.2) !important;
}

/* JS-driven touch animation class (works on ALL mobile browsers) */
body.woocommerce-checkout #place_order.pnp-pressed {
    background: linear-gradient(135deg, #4a00b4 0%, #370086 100%) !important;
    transform: translateY(-2px) scale(0.93) !important;
    box-shadow: 0 2px 10px rgba(98, 0, 234, 0.15) !important;
}

/* 8. Trust Badges Grid Styling (Increased visibility, bolder text) */
body.woocommerce-checkout .pnp-trust-badges-wrapper {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e8e8ee;
}

body.woocommerce-checkout .pnp-trust-header {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}

body.woocommerce-checkout .pnp-trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 767px) {
    body.woocommerce-checkout .pnp-trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

body.woocommerce-checkout .pnp-badge-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1.5px solid #eaeaea;
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    will-change: transform;
    cursor: pointer; /* Enforces iOS tap response */
    -webkit-tap-highlight-color: transparent;
}

/* Desktop hover animation */
body.woocommerce-checkout .pnp-badge-card:hover {
    transform: translateY(-5px) scale(1.03) !important;
    border-color: #6200ea !important;
    box-shadow: 0 6px 20px rgba(98, 0, 234, 0.12) !important;
    background: #faf8ff !important;
}

/* JS-driven touch animation class (works on ALL mobile browsers) */
body.woocommerce-checkout .pnp-badge-card.pnp-pressed {
    transform: translateY(-6px) scale(1.05) !important;
    border-color: #6200ea !important;
    box-shadow: 0 8px 25px rgba(98, 0, 234, 0.18) !important;
    background: #f3edff !important;
}

body.woocommerce-checkout .pnp-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f0ff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

body.woocommerce-checkout .pnp-badge-icon svg {
    width: 22px;
    height: 22px;
}

body.woocommerce-checkout .pnp-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

/* Bold & larger text for the 4 Trust Badges */
body.woocommerce-checkout .pnp-badge-text strong {
    font-size: 14.5px !important;
    color: #1a1a1a !important;
    font-weight: 700 !important;
}

body.woocommerce-checkout .pnp-badge-text small {
    font-size: 12px !important;
    color: #444 !important;
    font-weight: 500 !important;
    margin-top: 3px;
}

/* Payment Support Logos alignment */
body.woocommerce-checkout .pnp-trust-badges-wrapper + p {
    text-align: center;
    margin-top: 20px;
}

body.woocommerce-checkout img[src*="payment"] {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* ==========================================================================
   SHOPIFY-STYLE MOBILE CHECKOUT SUMMARIES & COMPACT LAYOUTS
   ========================================================================== */

/* Hide footer strictly on the WooCommerce checkout page */
body.woocommerce-checkout #site-footer,
body.woocommerce-checkout footer {
    display: none !important;
}

/* Top Collapsible Mobile Order Summary Bar */
.pnp-mobile-summary-toggle {
    display: none; /* Hidden on desktop */
    align-items: center;
    justify-content: space-between;
    background: #f6f6f9;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 14px 20px;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    width: 100%;
}

.pnp-toggle-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6200ea; /* Theme primary purple */
    font-weight: 600;
}

.pnp-toggle-text {
    text-decoration: none;
}

.pnp-toggle-arrow {
    font-size: 10px;
    transition: transform 0.2s ease;
    display: inline-block;
}

.pnp-mobile-summary-toggle.active .pnp-toggle-arrow {
    transform: rotate(180deg);
}

.pnp-toggle-right {
    font-weight: 700;
    font-size: 15px;
    color: #222;
}

.pnp-mobile-summary-content {
    display: none;
    background: #fbfbfe;
    border-bottom: 1px solid #eaeaea;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Hide summary wrapper by default on Desktop & Tablet viewports */
.pnp-shopify-checkout-summary-wrapper {
    display: none !important;
}

/* Mobile responsive alignments for Shopify Checkout style (Strictly under 768px Mobile view) */
@media (max-width: 767px) {
    /* Show the bottom collapsible toggle bar on mobile only */
    .pnp-shopify-checkout-summary-wrapper {
        display: block !important;
        margin-top: 15px;
        margin-bottom: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Hide the original WooCommerce review table completely on mobile view */
    body.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table {
        display: none !important;
    }
}

/* Shopify-style Collapsed Summary Panel Trigger */
.pnp-summary-collapsed-trigger {
    background: #ffffff !important; /* High contrast white */
    border: 1px solid #dcdbe5 !important;
    border-radius: 12px !important;
    padding: 16px !important;
    cursor: pointer !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Shopify-style Add Discount Pill Button */
.pnp-shopify-add-discount {
    background: #f7f6fb !important;
    border: 1.5px solid #d1cbef !important;
    border-radius: 20px !important;
    padding: 6px 14px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #4a148c !important; /* Clear purple contrast */
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 12px !important;
    cursor: pointer !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.01) !important;
    height: auto !important;
    width: fit-content !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.pnp-tag-icon {
    font-size: 11px !important;
}

.pnp-summary-collapsed-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}

.pnp-summary-collapsed-left {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.pnp-toggle-product-thumb {
    width: 36px !important;
    height: 36px !important;
    border-radius: 6px !important;
    border: 1px solid #e2d9ff !important;
    overflow: hidden !important;
    background: #ffffff !important;
    flex-shrink: 0 !important;
}

.pnp-toggle-product-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.pnp-summary-title-col {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.3 !important;
}

.pnp-total-label {
    font-weight: 700 !important;
    font-size: 15px !important;
    color: #1a1a1a !important; /* Solid dark text */
}

.pnp-item-count {
    font-size: 12px !important;
    color: #444444 !important; /* High contrast */
    font-weight: 600 !important;
}

.pnp-summary-collapsed-right {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-weight: 700 !important;
}

.pnp-currency-label {
    font-size: 11px !important;
    color: #444444 !important; /* Solid dark text */
    font-weight: 600 !important;
    margin-right: 2px !important;
}

.pnp-toggle-total {
    font-size: 16px !important;
    color: #1a1a1a !important; /* Solid dark text */
}

.pnp-toggle-arrow {
    font-size: 10px !important;
    color: #6200ea !important;
    margin-left: 2px !important;
}

/* Shopify-style Expanded Summary Container */
.pnp-summary-expanded-content {
    background: #ffffff !important; /* High contrast white background */
    border: 1px solid #dcdbe5 !important;
    border-radius: 12px !important;
    padding: 16px !important;
    display: none; /* Starts hidden, slideToggle works smoothly now */
    flex-direction: column;
    gap: 15px;
    width: 100% !important;
    box-sizing: border-box !important;
}

.pnp-expanded-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    cursor: pointer !important;
    padding-bottom: 5px !important;
}

.pnp-expanded-title {
    font-weight: 700 !important;
    font-size: 15px !important;
    color: #1a1a1a !important; /* Solid dark text */
}

.pnp-expanded-arrow-up {
    font-size: 10px !important;
    color: #6200ea !important;
}

/* Expanded Products List */
.pnp-expanded-products-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
}

.pnp-shopify-product-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 12px !important;
}

.pnp-shopify-item-img-wrapper {
    position: relative !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 8px !important;
    border: 1px solid #e2d9ff !important;
    background: #ffffff !important;
    flex-shrink: 0 !important;
}

.pnp-shopify-item-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    display: block !important;
}

/* Shopify Black Quantity Badge */
.pnp-shopify-item-qty-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    background: #000000 !important; /* Black quantity badge */
    color: #ffffff !important;
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1.5px solid #ffffff !important;
    line-height: 1 !important;
    z-index: 2 !important;
}

.pnp-shopify-item-info {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.pnp-shopify-item-name {
    font-weight: 600 !important;
    font-size: 13.5px !important;
    color: #1a1a1a !important; /* Solid dark text */
    line-height: 1.3 !important;
}

.pnp-shopify-item-qty-selector-container {
    display: inline-block !important;
}

/* Adjust quantity selectors inside accordion product list */
.pnp-shopify-item-qty-selector-container .pnp-checkout-qty-wrapper {
    height: 28px !important;
    width: 80px !important;
    margin-top: 2px !important;
}

.pnp-shopify-item-qty-selector-container .pnp-qty-btn {
    width: 24px !important;
    font-size: 13px !important;
}

.pnp-shopify-item-qty-selector-container .pnp-qty-input {
    width: 32px !important;
    font-size: 12px !important;
}

.pnp-shopify-item-price {
    font-weight: 700 !important;
    font-size: 14px !important;
    color: #1a1a1a !important; /* Solid dark text */
    text-align: right !important;
    white-space: nowrap !important;
}

/* Cloned WooCommerce Totals Table (Tfoot Mirror) inside Accordion */
.pnp-expanded-totals-breakdown {
    border-top: 1px solid #eaeaea !important;
    padding-top: 12px !important;
    width: 100% !important;
}

.pnp-shopify-totals-table {
    width: 100% !important;
    border-collapse: collapse !important;
    border: none !important;
    margin: 0 !important;
}

/* General rows layout (applied only to non-shipping totals rows) */
.pnp-shopify-totals-table tr:not(.pnp-shipping-header-row):not(.pnp-shipping-options-row) {
    display: table-row !important;
    border: none !important;
}

.pnp-shopify-totals-table tr:not(.pnp-shipping-header-row):not(.pnp-shipping-options-row) th,
.pnp-shopify-totals-table tr:not(.pnp-shipping-header-row):not(.pnp-shipping-options-row) td {
    padding: 10px 0 !important;
    border: none !important;
    background: transparent !important;
    font-size: 14px !important;
    color: #333333 !important; /* Dark charcoal text */
    text-transform: none !important;
    letter-spacing: normal !important;
    display: table-cell !important;
    vertical-align: middle !important;
    white-space: nowrap !important; /* Prevent text wrapping to new lines */
}

.pnp-shopify-totals-table tr:not(.pnp-shipping-header-row):not(.pnp-shipping-options-row) th {
    text-align: left !important;
    font-weight: 600 !important; /* Bold left headings */
}

.pnp-shopify-totals-table tr:not(.pnp-shipping-header-row):not(.pnp-shipping-options-row) td {
    text-align: right !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
}

/* Shipping Header Row (Mobile Stacked Style) */
.pnp-shopify-totals-table tr.pnp-shipping-header-row {
    display: block !important;
    width: 100% !important;
    border: none !important;
    margin-top: 10px !important;
}

.pnp-shopify-totals-table tr.pnp-shipping-header-row th {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    padding: 10px 0 5px 0 !important; /* Proper padding for heading */
    border: none !important;
}

.pnp-shopify-totals-table tr.pnp-shipping-header-row td {
    display: none !important; /* Hide empty cell */
}

/* Shipping Options Row (Mobile Stacked Style - separate row below heading) */
.pnp-shopify-totals-table tr.pnp-shipping-options-row {
    display: block !important;
    width: 100% !important;
    border: none !important;
}

/* Hide duplicate Shipment th header */
.pnp-shopify-totals-table tr.pnp-shipping-options-row th {
    display: none !important;
}

/* Make value td display as full-width block below heading */
.pnp-shopify-totals-table tr.pnp-shipping-options-row td {
    display: block !important;
    width: 100% !important;
    text-align: left !important; /* Left-aligned */
    padding: 0 0 10px 0 !important; /* Spacing */
    border: none !important;
}

/* Clean left-aligned list for shipping methods */
.pnp-shopify-totals-table tr.pnp-shipping-options-row ul#shipping_method {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    text-align: left !important;
}

.pnp-shopify-totals-table tr.pnp-shipping-options-row ul#shipping_method li {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important; /* Left align methods */
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

/* Hide duplicate dots and bullets */
.pnp-shopify-totals-table tr.pnp-shipping-options-row ul#shipping_method li input[type="radio"],
.pnp-shopify-totals-table tr.pnp-shipping-options-row ul#shipping_method li input[type="hidden"],
.pnp-shopify-totals-table tr.pnp-shipping-options-row ul#shipping_method li label::before,
.pnp-shopify-totals-table tr.pnp-shipping-options-row ul#shipping_method li::before {
    display: none !important;
    content: "" !important;
}

.pnp-shopify-totals-table ul#shipping_method li label {
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Styling for final total row */
.pnp-shopify-totals-table tr.order-total {
    border-top: 1px solid #eaeaea !important;
}

.pnp-shopify-totals-table tr.order-total th,
.pnp-shopify-totals-table tr.order-total td {
    padding-top: 12px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
}

.pnp-shopify-totals-table tr.order-total td .amount {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
}

.pnp-shopify-totals-table tr.order-total td strong {
    font-weight: 700 !important;
}

.pnp-currency-code {
    font-size: 11px !important;
    color: #444444 !important; /* Clear visibility */
    font-weight: 600 !important;
}

/* Green discounts color */
.pnp-shopify-totals-table tr.cart-discount td,
.pnp-shopify-totals-table tr.cart-discount td .amount {
    color: #007a1a !important;
}

/* Visually hide GST/Tax rate rows completely on the checkout page (both mobile accordion and desktop) */
body.woocommerce-checkout tr.tax-rate,
.pnp-shopify-totals-table tr.tax-rate {
    display: none !important;
}

/* Hide the "(includes CGST, SGST)" sub-text visually on checkout */
body.woocommerce-checkout .includes_tax,
body.woocommerce-checkout tr.order-total td small {
    display: none !important;
}

/* Desktop alignment correction for "Ship to a different address" checkbox & label */
body.woocommerce-checkout #ship-to-different-address {
    border-bottom: none !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    margin-top: 30px !important;
    margin-bottom: 25px !important;
    padding-bottom: 0 !important;
    display: block !important;
    clear: both !important; /* Force to its own line below floats */
    width: 100% !important; /* Span full width */
    box-sizing: border-box !important;
}

body.woocommerce-checkout #ship-to-different-address label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important; /* Solid dark text */
    cursor: pointer !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

body.woocommerce-checkout #ship-to-different-address label input[type="checkbox"] {
    margin: 0 !important;
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
}

/* Hide duplicate top coupon forms since we render it inside accordion */
body.woocommerce-checkout .checkout-coupon {
    display: none !important;
}

/* Shopify-style Inline Coupon Wrapper inside Expanded Accordion */
.pnp-checkout-coupon-wrapper {
    margin-top: 10px !important;
    margin-bottom: 5px !important;
    background: #ffffff !important;
    padding: 12px !important;
    border-radius: 10px !important;
    border: 1px solid #d9d9e2 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.01) !important;
}

.pnp-checkout-coupon-wrapper form.checkout_coupon {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
}

.pnp-coupon-input-group {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    width: 100% !important;
}

.pnp-coupon-input-group input[type="text"]#pnp_coupon_code {
    flex: 1 1 auto !important;
    margin: 0 !important;
    padding: 10px 12px !important;
    border: 1px solid #d9d9e2 !important;
    background: #ffffff !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    height: 40px !important;
    box-sizing: border-box !important;
}

.pnp-coupon-input-group input[type="text"]#pnp_coupon_code:focus {
    border-color: #6200ea !important;
    box-shadow: 0 0 0 3px rgba(98, 0, 234, 0.08) !important;
    outline: none !important;
}

.pnp-coupon-input-group button[type="submit"] {
    background: #ececf1 !important;
    color: #333333 !important;
    font-weight: 600 !important;
    border: 1px solid #d9d9e2 !important;
    border-radius: 6px !important;
    padding: 0 18px !important;
    height: 40px !important;
    font-size: 13.5px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.pnp-coupon-input-group button[type="submit"]:hover {
    background: #d9d9e2 !important;
}

/* On Mobile, apply the custom review product layout overrides (keeps Desktop native and spacious!) */
@media (max-width: 767px) {
    body.woocommerce-checkout .checkout-review-product-image {
        position: relative !important;
        display: inline-block !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 8px !important;
        border: 1px solid #e2d9ff !important;
        background: #ffffff !important;
        float: left !important;
        margin-right: 12px !important;
        overflow: visible !important;
    }

    body.woocommerce-checkout .checkout-review-product-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 8px !important;
        display: block !important;
    }

    body.woocommerce-checkout .checkout-review-product-image .product-quantity {
        position: absolute !important;
        top: -6px !important;
        right: -6px !important;
        background: #000000 !important; /* Matches black Shopify badge */
        color: #ffffff !important;
        width: 18px !important;
        height: 18px !important;
        border-radius: 50% !important;
        font-size: 10px !important;
        font-weight: 700 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1.5px solid #ffffff !important;
        line-height: 1 !important;
    }

    body.woocommerce-checkout .checkout-review-product-name {
        font-weight: 600 !important;
        color: #333 !important;
        font-size: 14px !important;
        line-height: 1.3 !important;
        display: inline-block !important;
        padding-top: 6px !important;
    }
}

/* ==========================================================================
   PIC N PAIR (PNP) HOME PAGE & GLOBAL E-COMMERCE DESIGN STYLES
   ========================================================================== */

:root {
    --pnp-coral: #FF4D5A;
    --pnp-coral-hover: #E83B48;
    --pnp-green: #22C55E;
    --pnp-green-hover: #16A34A;
    --pnp-indigo: #4F46E5;
    --pnp-indigo-dark: #1E1B4B;
    --pnp-purple-dark: #0F172A;
    --pnp-text-dark: #0F172A;
    --pnp-text-muted: #64748B;
    --pnp-font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --pnp-font-secondary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--pnp-font-secondary);
    color: var(--pnp-text-dark);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .pnp-heading {
    font-family: var(--pnp-font-primary);
    font-weight: 700;
}

/* 1. Header & Top Bar Enhancements */
.pnp-top-bar {
    background: #0A0F1D;
    color: #FFFFFF;
    font-size: 12px;
    padding: 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}
.pnp-top-bar a {
    color: #E2E8F0;
    text-decoration: none;
    margin-left: 15px;
}
.pnp-top-bar a:hover {
    color: var(--pnp-coral);
}

/* 2. Hero Section */
.pnp-hero-section {
    background: radial-gradient(circle at 80% 20%, #2E1065 0%, #0F172A 70%, #050814 100%);
    color: #FFFFFF;
    padding: 70px 20px 60px;
    position: relative;
    overflow: hidden;
}
.pnp-hero-title {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 18px;
    color: #FFFFFF;
}
.pnp-hero-title .highlight-coral {
    color: var(--pnp-coral);
}
.pnp-hero-title .highlight-green {
    color: var(--pnp-green);
}
.pnp-hero-title .highlight-gradient {
    background: linear-gradient(135deg, #818CF8 0%, #C084FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pnp-hero-subtitle {
    font-size: 17px;
    color: #CBD5E1;
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.5;
}
.pnp-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}
.pnp-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    color: #F8FAFC;
    font-weight: 500;
}
.pnp-hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.pnp-btn-primary {
    background: var(--pnp-coral);
    color: #FFFFFF !important;
    font-family: var(--pnp-font-primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(255, 77, 90, 0.35);
    border: none;
    cursor: pointer;
}
.pnp-btn-primary:hover {
    background: var(--pnp-coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 77, 90, 0.45);
}
.pnp-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    font-family: var(--pnp-font-primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.pnp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}
.pnp-hero-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pnp-hero-showcase img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* 3. Floating Trust Bar */
.pnp-floating-trust-bar {
    background: #FFFFFF;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 24px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: -35px auto 50px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    border: 1px solid #F1F5F9;
}
.pnp-trust-col {
    display: flex;
    align-items: center;
    gap: 15px;
}
.pnp-trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pnp-trust-info h4 {
    margin: 0 0 3px 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--pnp-text-dark);
}
.pnp-trust-info p {
    margin: 0;
    font-size: 12px;
    color: var(--pnp-text-muted);
}

/* 4. Category / Collections Grid */
.pnp-section-header {
    margin-bottom: 35px;
}
.pnp-sub-badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--pnp-coral);
    display: inline-block;
    margin-bottom: 6px;
}
.pnp-section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--pnp-text-dark);
    margin: 0 0 8px 0;
}
.pnp-section-desc {
    font-size: 14px;
    color: var(--pnp-text-muted);
    margin: 0;
}
.pnp-btn-view-all {
    background: #4F46E5;
    color: #FFFFFF !important;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.pnp-btn-view-all:hover {
    background: #3730A3;
    transform: translateY(-2px);
}
.pnp-btn-view-green {
    background: #22C55E;
}
.pnp-btn-view-green:hover {
    background: #16A34A;
}

.pnp-category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 60px;
}
.pnp-cat-card {
    border-radius: 18px;
    padding: 22px 14px 18px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.pnp-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}
.pnp-cat-card.cat-spotify { background: linear-gradient(180deg, #FFF1F2 0%, #FFE4E6 100%); }
.pnp-cat-card.cat-collage { background: linear-gradient(180deg, #FEF3C7 0%, #FDE68A 100%); }
.pnp-cat-card.cat-led { background: linear-gradient(180deg, #EDE9FE 0%, #DDD6FE 100%); }
.pnp-cat-card.cat-occasion { background: linear-gradient(180deg, #FCE7F3 0%, #FBCFE8 100%); }
.pnp-cat-card.cat-blocks { background: linear-gradient(180deg, #E0E7FF 0%, #C7D2FE 100%); }

.pnp-cat-img {
    width: 100%;
    max-width: 130px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}
.pnp-cat-card:hover .pnp-cat-img {
    transform: scale(1.06);
}
.pnp-cat-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--pnp-text-dark);
    margin: 0 0 6px 0;
}
.pnp-cat-desc {
    font-size: 11px;
    color: #475569;
    margin: 0 0 12px 0;
    line-height: 1.4;
    min-height: 30px;
}
.pnp-cat-link {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #1E293B;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.pnp-cat-card:hover .pnp-cat-link {
    color: var(--pnp-coral);
}

/* 5. Best Sellers Product Cards */
.pnp-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}
.pnp-product-card {
    background: #FFFFFF;
    border: 1px solid #F1F5F9;
    border-radius: 18px;
    padding: 16px;
    transition: all 0.35s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.pnp-product-card:hover {
    border-color: #CBD5E1;
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}
.pnp-product-thumb {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    background: #F8FAFC;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pnp-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.pnp-product-card:hover .pnp-product-thumb img {
    transform: scale(1.05);
}
.pnp-product-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--pnp-text-dark);
    margin: 0 0 6px 0;
}
.pnp-product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #F59E0B;
}
.pnp-product-rating span {
    color: var(--pnp-text-muted);
}
.pnp-product-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--pnp-coral);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}
.pnp-product-price del {
    font-size: 13px;
    color: var(--pnp-text-muted);
    font-weight: 400;
}

/* 6. 3-Step How It Works */
.pnp-how-it-works-section {
    padding: 60px 20px;
    background: radial-gradient(circle at center, #FAF5FF 0%, #FFFFFF 100%);
    border-radius: 24px;
    margin-bottom: 60px;
}
.pnp-steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1000px;
    margin: 40px auto 0;
}
.pnp-step-card {
    background: #FFFFFF;
    border: 1px solid #F1F5F9;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 30px 20px 24px;
    text-align: center;
    flex: 1;
    position: relative;
}
.pnp-step-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.pnp-step-badge.step-1 { background: var(--pnp-coral); }
.pnp-step-badge.step-2 { background: var(--pnp-green); }
.pnp-step-badge.step-3 { background: var(--pnp-indigo); }

.pnp-step-icon-wrap {
    margin: 10px 0 16px;
}
.pnp-step-card h3 {
    font-size: 17px;
    margin: 0 0 8px 0;
    color: var(--pnp-text-dark);
}
.pnp-step-card p {
    font-size: 13px;
    color: var(--pnp-text-muted);
    margin: 0;
    line-height: 1.5;
}
.pnp-step-arrow {
    font-size: 24px;
    color: #CBD5E1;
    font-weight: bold;
}

/* 7. Promo Occasion Banner */
.pnp-promo-banner-card {
    background: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #4338CA 100%);
    border-radius: 24px;
    padding: 45px 50px;
    color: #FFFFFF;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}
.pnp-promo-title {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 12px;
}
.pnp-promo-subtitle {
    font-size: 16px;
    color: #E0E7FF;
    margin-bottom: 24px;
}
.pnp-occasion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}
.pnp-occ-tag {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #FFFFFF;
}
.pnp-promo-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.pnp-promo-right img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* 8. Testimonials Section */
.pnp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.pnp-review-card {
    background: #FFFFFF;
    border: 1px solid #F1F5F9;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pnp-review-quote {
    font-size: 28px;
    color: #818CF8;
    line-height: 1;
    margin-bottom: 10px;
}
.pnp-review-text {
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 20px;
}
.pnp-review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pnp-review-user img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.pnp-review-user-info h5 {
    margin: 0 0 3px 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--pnp-text-dark);
}
.pnp-review-stars {
    color: #F59E0B;
    font-size: 12px;
}

/* 9. Instagram Feed */
.pnp-insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}
.pnp-insta-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
}
.pnp-insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.pnp-insta-item:hover img {
    transform: scale(1.1);
}

/* 10. Live Stats Gradient Strip */
.pnp-stats-gradient-bar {
    background: linear-gradient(90deg, #6366F1 0%, #8B5CF6 30%, #EC4899 70%, #F43F5E 100%);
    padding: 20px 30px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    color: #FFFFFF;
    margin-bottom: 50px;
}
.pnp-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.pnp-stat-item strong {
    font-size: 20px;
    font-weight: 800;
    display: block;
    line-height: 1.1;
}
.pnp-stat-item span {
    font-size: 12px;
    opacity: 0.9;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .pnp-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .pnp-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pnp-floating-trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .pnp-stats-gradient-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .pnp-insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .pnp-hero-title {
        font-size: 32px;
    }
    .pnp-floating-trust-bar {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }
    .pnp-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pnp-products-grid {
        grid-template-columns: 1fr;
    }
    .pnp-steps-grid {
        flex-direction: column;
    }
    .pnp-step-arrow {
        transform: rotate(90deg);
    }
    .pnp-promo-banner-card {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    .pnp-reviews-grid {
        grid-template-columns: 1fr;
    }
    .pnp-stats-gradient-bar {
        grid-template-columns: 1fr;
    }
    .pnp-insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 11. Automatically Hide Default Page Header & Title Bar on Home / Elementor Pages */
.home .page-header,
.home .page-title-bar,
.home .breadcrumb,
.home .breadcrumbs,
.page-template-elementor_full_width .page-header,
.page-template-elementor_header_footer .page-header,
.elementor-template-full-width .page-header,
.elementor-page-title-hide .page-header,
.elementor-page .page-header {
    display: none !important;
}

/* 12. Hero Slider & Smooth Micro-Animations */
@keyframes pnpFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pnpPulseGlow {
    0%, 100% { filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5)); }
    50% { filter: drop-shadow(0 25px 40px rgba(129, 140, 248, 0.4)); }
}

.pnp-float-anim {
    animation: pnpFloat 4s ease-in-out infinite;
}

.pnp-hero-slider .elementor-image-carousel-wrapper {
    border-radius: 20px;
    overflow: hidden;
    animation: pnpPulseGlow 5s ease-in-out infinite;
}

.pnp-hero-slider .slick-dots li button:before,
.pnp-hero-slider .swiper-pagination-bullet {
    background: #FF4D5A !important;
    opacity: 0.5;
}

.pnp-hero-slider .slick-dots li.slick-active button:before,
.pnp-hero-slider .swiper-pagination-bullet-active {
    opacity: 1 !important;
    transform: scale(1.3);
}

.pnp-hero-slider .elementor-swiper-button {
    color: #FFFFFF !important;
    background: rgba(0,0,0,0.4);
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.pnp-hero-slider .elementor-swiper-button:hover {
    background: #FF4D5A !important;
}

/* 13. Live Dynamic WooCommerce Product Grid Styling */
.pnp-live-woocommerce-grid ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin: 0 0 30px 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.pnp-live-woocommerce-grid ul.products li.product {
    background: #FFFFFF !important;
    border: 1px solid #F1F5F9 !important;
    border-radius: 18px !important;
    padding: 16px !important;
    transition: all 0.35s ease !important;
    display: flex !important;
    flex-direction: column !important;
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}

.pnp-live-woocommerce-grid ul.products li.product:hover {
    border-color: #CBD5E1 !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06) !important;
}

.pnp-live-woocommerce-grid ul.products li.product img {
    border-radius: 12px !important;
    width: 100% !important;
    aspect-ratio: 1/1 !important;
    object-fit: cover !important;
    margin-bottom: 12px !important;
}

.pnp-live-woocommerce-grid ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    margin: 0 0 6px 0 !important;
    padding: 0 !important;
}

.pnp-live-woocommerce-grid ul.products li.product .price {
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #FF4D5A !important;
    margin: auto 0 12px 0 !important;
}

.pnp-live-woocommerce-grid ul.products li.product .price del {
    color: #94A3B8 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    margin-right: 6px !important;
}

.pnp-live-woocommerce-grid ul.products li.product .price ins {
    text-decoration: none !important;
    color: #FF4D5A !important;
}

.pnp-live-woocommerce-grid ul.products li.product .button {
    background: #FF4D5A !important;
    color: #FFFFFF !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    border-radius: 30px !important;
    padding: 10px 20px !important;
    text-align: center !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    margin-top: auto !important;
}

.pnp-live-woocommerce-grid ul.products li.product .button:hover {
    background: #E83B48 !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 1024px) {
    .pnp-live-woocommerce-grid ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .pnp-live-woocommerce-grid ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* 14. Dynamic WooCommerce Best Sellers Grid (Exact Original Beautiful Card Design) */
.pnp-best-sellers-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
}

.pnp-prod-card {
    background: #FFFFFF !important;
    border: 1px solid #F1F5F9 !important;
    border-radius: 18px !important;
    padding: 16px !important;
    transition: all 0.35s ease !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
}

.pnp-prod-card:hover {
    border-color: #CBD5E1 !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06) !important;
}

.pnp-prod-img-wrap {
    width: 100% !important;
    aspect-ratio: 1/1 !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    margin-bottom: 12px !important;
}

.pnp-prod-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease !important;
}

.pnp-prod-card:hover .pnp-prod-img-wrap img {
    transform: scale(1.05) !important;
}

.pnp-prod-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    margin: 0 0 6px 0 !important;
    line-height: 1.3 !important;
}

.pnp-prod-title a {
    color: #0F172A !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.pnp-prod-title a:hover {
    color: #FF4D5A !important;
}

.pnp-prod-stars {
    margin-bottom: 6px !important;
}

.pnp-prod-price-box {
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #FF4D5A !important;
    margin: 4px 0 14px 0 !important;
}

.pnp-prod-price-box del {
    color: #94A3B8 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    margin-left: 6px !important;
}

.pnp-prod-price-box ins {
    text-decoration: none !important;
    color: #FF4D5A !important;
}

.pnp-prod-btn {
    display: inline-block !important;
    background: #FF4D5A !important;
    color: #FFFFFF !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    border-radius: 30px !important;
    padding: 10px 20px !important;
    text-align: center !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    margin-top: auto !important;
}

.pnp-prod-btn:hover {
    background: #E83B48 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 14px rgba(255, 77, 90, 0.3) !important;
}

@media (max-width: 1024px) {
    .pnp-best-sellers-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .pnp-best-sellers-grid {
        grid-template-columns: 1fr !important;
    }
}