/* WC LP Helper Frontend Styles - VERSION 2.1 */
/* Modern 2-Column Checkout + responsive product grid */

.wc-lp-combo-container {
    background: linear-gradient(180deg, #7AB547 0%, #5A8F35 100%);
    padding: 20px;
    border-radius: 8px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-x: hidden;
}

.wc-lp-combo-title {
    background: #2D5016;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
}

.wc-lp-products-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ========================================
   PRODUCT CARD - CUSTOM RADIO/CHECKBOX
======================================== */

.wc-lp-product-card {
    background: #F5F8F0;
    border: 2px solid #E0E8D5;
    border-radius: 8px;
    /* Left padding: room for the radio/check indicator */
    padding: 15px 15px 15px 46px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
}

.wc-lp-product-card:hover {
    border-color: #7AB547;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wc-lp-product-image {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.wc-lp-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.wc-lp-product-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-right: 4px;
}

.wc-lp-product-name {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: #2D5016;
    line-height: 1.3;
}

.wc-lp-product-price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    min-width: 0;
    text-align: right;
    flex-shrink: 0;
}

.wc-lp-product-price del {
    color: #999;
    font-size: 14px;
    margin-right: 8px;
}

.wc-lp-product-price ins {
    text-decoration: none;
    color: #7AB547;
    font-weight: 800;
}

.wc-lp-product-price ins .woocommerce-Price-amount,
.wc-lp-product-price ins .amount {
    font-weight: 800;
}

.wc-lp-product-price .woocommerce-Price-amount {
    font-size: inherit;
}

/* Hide default radio/checkbox; custom draw via pseudo (desktop) */
.wc-lp-product-card input[type="radio"],
.wc-lp-product-card input[type="checkbox"] {
    position: absolute;
    left: 14px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    opacity: 1;
    z-index: 4;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}

/* Custom radio/checkbox container - no longer needed as we style input directly */
.wc-lp-product-card input[type="radio"]+*,
.wc-lp-product-card input[type="checkbox"]+* {
    position: relative;
}

/* Create custom radio button */
.wc-lp-product-card input[type="radio"]::after,
.wc-lp-product-card input[type="checkbox"]::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border: 2px solid #bdbdbd;
    background: #fff;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    pointer-events: none;
    box-sizing: border-box;
}

/* Radio button is round */
.wc-lp-product-card input[type="radio"]::after {
    border-radius: 50%;
}

/* Checkbox: rounded square (tick overlay) */
.wc-lp-product-card input[type="checkbox"]::after {
    border-radius: 6px;
}

/* Selected: radio = solid fill; checkbox = green tile + tick */
.wc-lp-product-card input[type="radio"]:checked::after {
    border-color: #5A8F35;
    border-width: 2px;
    background: #7AB547;
    box-shadow: none;
}

.wc-lp-product-card input[type="checkbox"]:checked::after {
    border-color: #5A8F35;
    border-width: 2px;
    background: #7AB547;
    border-radius: 6px;
}

.wc-lp-product-card input[type="radio"]:checked::before {
    display: none;
}

.wc-lp-product-card input[type="checkbox"]::before {
    display: none;
}

.wc-lp-product-card input[type="checkbox"]:checked::before {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 10px;
    margin: 0;
    padding: 0;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -58%) rotate(45deg);
    z-index: 5;
    pointer-events: none;
    box-sizing: border-box;
}

/* Hover effect for radio/checkbox */
.wc-lp-product-card:hover input[type="radio"]::after,
.wc-lp-product-card:hover input[type="checkbox"]::after {
    border-color: #7AB547;
    box-shadow: 0 0 0 4px rgba(122, 181, 71, 0.1);
}

/* Selected card highlighting */
.wc-lp-product-card.selected {
    border-color: #7AB547 !important;
    background: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(122, 181, 71, 0.15);
}

/* Wraps the checkout block inside the green combo shell */
.wc-lp-checkout-section {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.wc-lp-checkout-section .wc-lp-checkout-wrapper {
    margin-top: 0;
}

/* ========================================
   CHECKOUT WRAPPER - 2 COLUMN LAYOUT
======================================== */

.wc-lp-checkout-wrapper {
    margin-top: 40px;
}

.wc-lp-checkout-main-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2D5016;
    text-align: center;
}

.wc-lp-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

/* ========================================
   LEFT COLUMN - CHECKOUT FORM
======================================== */

.wc-lp-checkout-form-column {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.wc-lp-form-section:last-child {
    margin-bottom: 0;
}

.wc-lp-form-section-title {
    font-size: 18px;
    font-weight: 500;
    /* margin-bottom: 20px; */
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    /* padding-bottom: 12px; */
    /* border-bottom: 2px solid #f0f0f0; */
}

.checkout-form-title {
    margin-bottom: 20px;
}


.wc-lp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 20px; */
}

.wc-lp-form-field {
    margin-bottom: 20px;
}

.wc-lp-form-field.wc-lp-field-full {
    grid-column: 1 / -1;
}

.wc-lp-form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.wc-lp-required {
    color: #e74c3c;
    margin-left: 3px;
}

.wc-lp-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.wc-lp-input:focus {
    outline: none;
    border-color: #7AB547;
    box-shadow: 0 0 0 4px rgba(122, 181, 71, 0.1);
}

.wc-lp-input.error {
    border-color: #e74c3c;
}

textarea.wc-lp-input {
    resize: vertical;
    min-height: 100px;
}

select.wc-lp-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* ========================================
   RIGHT COLUMN - ORDER SUMMARY
======================================== */

.wc-lp-order-summary-column {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.wc-lp-order-summary-sticky {
    position: sticky;
    top: 20px;
}

.wc-lp-order-summary {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.wc-lp-summary-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #2D5016;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Selected Products Display */
.wc-lp-summary-products {
    margin-bottom: 20px;
    min-height: 80px;
}

.wc-lp-summary-products-empty {
    text-align: center;
    padding: 30px 20px;
    color: #999;
}



.wc-lp-summary-product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #e9ecef;
}

.wc-lp-summary-product-item:last-child {
    margin-bottom: 0;
}

.wc-lp-summary-product-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.wc-lp-summary-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc-lp-summary-product-info {
    flex: 1;
    min-width: 0;
}

.wc-lp-summary-product-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wc-lp-summary-product-price {
    font-size: 13px;
    color: #7AB547;
    font-weight: 600;
}

/* Coupon Section */
.wc-lp-summary-coupon {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.wc-lp-coupon-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}



.wc-lp-coupon-input-wrapper {
    display: flex;
    gap: 8px;
}

.wc-lp-coupon-input {
    flex: 1;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.wc-lp-coupon-input:focus {
    outline: none;
    border-color: #7AB547;
}

.wc-lp-apply-coupon-btn {
    padding: 10px 20px;
    background: #7AB547;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.wc-lp-apply-coupon-btn:hover {
    background: #5A8F35;
}

.wc-lp-coupon-message {
    margin-top: 8px;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 6px;
}

.wc-lp-coupon-message.success {
    background: #d4edda;
    color: #155724;
}

.wc-lp-coupon-message.error {
    background: #f8d7da;
    color: #721c24;
}

/* Price Breakdown */
.wc-lp-summary-totals {
    margin-bottom: 20px;
}

.wc-lp-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 15px;
}

.wc-lp-summary-row.wc-lp-total-row {
    border-top: 2px solid #e0e0e0;
    margin-top: 10px;
    padding-top: 15px;
    font-size: 18px;
    font-weight: 700;
}

.wc-lp-summary-label {
    color: #666;
}

.wc-lp-summary-value {
    font-weight: 600;
    color: #333;
}

.wc-lp-total-row .wc-lp-summary-label,
.wc-lp-total-row .wc-lp-summary-value {
    color: #2D5016;
}

.wc-lp-discount-amount {
    color: #e74c3c !important;
}

.wc-lp-shipping-amount {
    font-size: 13px;
    font-style: italic;
    color: #999;
}

/* Submit Button */
.wc-lp-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: #7AB547;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(122, 181, 71, 0.3);
}

.wc-lp-submit-btn:hover {
    background: #5A8F35;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(122, 181, 71, 0.4);
}

.wc-lp-submit-btn:active {
    transform: translateY(0);
}

.wc-lp-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}





/* ========================================
   MESSAGES
======================================== */

.wc-lp-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wc-lp-message::before {
    font-size: 18px;
}

.wc-lp-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wc-lp-message.success::before {
    content: '✓';
}

.wc-lp-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.wc-lp-message.error::before {
    content: '⚠';
}

.wc-lp-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.wc-lp-message.info::before {
    content: 'ℹ';
}

.wc-lp-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* ========================================
   LOADING STATE
======================================== */

.wc-lp-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.wc-lp-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #7AB547;
    border-radius: 50%;
    animation: wc-lp-spin 1s linear infinite;
    z-index: 100;
}

@keyframes wc-lp-spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ========================================
   ANIMATIONS
======================================== */

@keyframes wc-lp-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wc-lp-fade-in {
    animation: wc-lp-fade-in 0.3s ease;
}

@keyframes wc-lp-slide-in {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wc-lp-summary-product-item {
    animation: wc-lp-slide-in 0.3s ease;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1024px) {
    .wc-lp-checkout-grid {
        grid-template-columns: 1fr 350px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .wc-lp-combo-container {
        padding: 14px;
    }

    .wc-lp-checkout-section {
        padding: 15px;
        margin-top: 16px;
    }

    .wc-lp-checkout-wrapper {
        margin-top: 16px;
    }

    .wc-lp-checkout-grid {
        grid-template-columns: 1fr;
    }

    /* Prevent grid children from overflowing on mobile */
    .wc-lp-checkout-grid,
    .wc-lp-order-summary-column,
    .wc-lp-checkout-form-column,
    .wc-lp-order-summary {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .wc-lp-checkout-form-column,
    .wc-lp-order-summary {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    /* Form first, order summary below */
    .wc-lp-checkout-form-column {
        order: 1;
        padding: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .wc-lp-order-summary-column {
        order: 2;
    }

    .wc-lp-order-summary-sticky {
        position: static;
    }

    .wc-lp-form-row {
        grid-template-columns: 1fr;
    }

    .wc-lp-order-summary {
        padding: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Product grid: stack for narrow viewports */
    .wc-lp-product-card {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 15px 15px 15px 46px !important;
    }

    .wc-lp-product-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 140px;
        max-height: 220px;
        align-self: center;
    }

    .wc-lp-product-image img {
        max-height: 220px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .wc-lp-product-details {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        text-align: left;
        padding: 0 4px;
        gap: 8px;
        width: 100%;
    }

    .wc-lp-product-name {
        font-size: 15px;
        margin-bottom: 0;
    }

    .wc-lp-product-price {
        text-align: left;
        font-size: 16px;
    }

    .wc-lp-product-price .woocommerce-Price-amount {
        font-size: 12px;
    }

    /* Radio/check: left edge, vertically centered on card */
    .wc-lp-product-card input[type="radio"],
    .wc-lp-product-card input[type="checkbox"] {
        position: absolute;
        left: 14px;
        right: auto;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        opacity: 1;
        background: transparent;
    }

    .wc-lp-badge {
        top: 6px;
        right: 6px;
        z-index: 6;
    }
}

@media (max-width: 480px) {
    .wc-lp-checkout-main-title {
        font-size: 24px;
    }

    .wc-lp-form-section-title {
        font-size: 16px;
    }

    .wc-lp-input {
        font-size: 16px;
        /* Prevent zoom on iOS */
    }

    .wc-lp-coupon-input-wrapper {
        flex-direction: column;
    }

    .wc-lp-apply-coupon-btn {
        width: 100%;
    }

    .wc-lp-product-name {
        font-size: 14px;
    }

    .wc-lp-product-card input[type="radio"],
    .wc-lp-product-card input[type="checkbox"] {
        transform: translateY(-50%) scale(0.94);
    }

    .wc-lp-shipping-amount {
        font-size: 12px;
    }
}

/* ========================================
   PRINT STYLES
======================================== */

@media print {

    .wc-lp-submit-btn,
    .wc-lp-summary-coupon {
        display: none;
    }

    .wc-lp-order-summary {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ========================================
   BADGE STYLES (Modern Top-Right)
======================================== */

.wc-lp-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #FF6B35;
    color: #fff;
    padding: 4px 11px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    transform: rotate(14deg);
    transform-origin: center center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    z-index: 6;
    line-height: 1.2;
    white-space: nowrap;
}

/* =============================================================================
   Theme / other-plugin overrides — scoped to combo, uses !important
   (Fixes missing visual when themes hide inputs or reposition badges.)
============================================================================= */

.wc-lp-combo-container .wc-lp-product-card {
    position: relative !important;
    overflow: visible !important;
}

/* Badge: true top-right corner of card */
.wc-lp-combo-container .wc-lp-product-card > .wc-lp-badge {
    position: absolute !important;
    top: 4px !important;
    right: 4px !important;
    left: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    float: none !important;
    display: inline-block !important;
    transform: rotate(14deg) !important;
    transform-origin: center center !important;
    z-index: 15 !important;
}

.wc-lp-combo-container .wc-lp-product-card input[type="radio"],
.wc-lp-combo-container .wc-lp-product-card input[type="checkbox"] {
    position: absolute !important;
    left: 14px !important;
    right: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 24px !important;
    min-width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    clip: auto !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;
    z-index: 10 !important;
    cursor: pointer !important;
    display: block !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.wc-lp-combo-container .wc-lp-product-card input[type="radio"]::after,
.wc-lp-combo-container .wc-lp-product-card input[type="checkbox"]::after {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 22px !important;
    height: 22px !important;
    border: 2px solid #bdbdbd !important;
    background: #fff !important;
    pointer-events: none !important;
    box-sizing: border-box !important;
}

.wc-lp-combo-container .wc-lp-product-card input[type="radio"]::after {
    border-radius: 50% !important;
}

.wc-lp-combo-container .wc-lp-product-card input[type="checkbox"]::after {
    border-radius: 6px !important;
}

.wc-lp-combo-container .wc-lp-product-card input[type="radio"]:checked::after {
    border-color: #5A8F35 !important;
    border-width: 2px !important;
    background: #7AB547 !important;
    box-shadow: none !important;
}

.wc-lp-combo-container .wc-lp-product-card input[type="checkbox"]:checked::after {
    border-color: #5A8F35 !important;
    border-width: 2px !important;
    background: #7AB547 !important;
    border-radius: 6px !important;
}

.wc-lp-combo-container .wc-lp-product-card input[type="radio"]:checked::before {
    display: none !important;
}

.wc-lp-combo-container .wc-lp-product-card input[type="checkbox"]::before {
    display: none !important;
}

.wc-lp-combo-container .wc-lp-product-card input[type="checkbox"]:checked::before {
    display: block !important;
    content: '' !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 5px !important;
    height: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: solid #fff !important;
    border-width: 0 2px 2px 0 !important;
    transform: translate(-50%, -58%) rotate(45deg) !important;
    z-index: 11 !important;
    pointer-events: none !important;
    box-sizing: border-box !important;
}

@media (max-width: 480px) {

    .wc-lp-combo-container .wc-lp-product-card input[type="radio"],
    .wc-lp-combo-container .wc-lp-product-card input[type="checkbox"] {
        transform: translateY(-50%) scale(0.94) !important;
    }
}

/* Order tracking UI: assets/css/order-tracking.css (enqueued with [wc_lp_order_tracking]) */