/**
 * Slimea Express Checkout - HaloGrow-Inspired Layout
 * Minimalist conversion-focused design
 */

/* ===========================
   GLOBAL STYLES & RESETS
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    padding-top: 60px; /* Space for sticky countdown */
}

/* Hide main header navigation and unwanted footers for this page */
.header-area,
.banner-area {
    display: none !important;
}

/* Hide the Suxnix/theme footer */
.footer-area,
footer.footer-area,
.footer-widget-wrap,
.copyright-wrap {
    display: none !important;
}

/* ===========================
   COUNTDOWN BANNER (STICKY TOP)
   =========================== */

.countdown-banner-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.countdown-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.countdown-label {
    font-weight: 600;
    text-transform: uppercase;
}

.countdown-discount {
    font-size: 20px;
    font-weight: 700;
    color: #00d4aa;
}

.countdown-reserved {
    font-size: 13px;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 5px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.time-value {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.time-label {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 2px;
}

.time-separator {
    font-size: 20px;
    font-weight: 700;
    padding: 0 5px;
}

/* ===========================
   MAIN CONTAINER LAYOUT
   =========================== */

.halogrow-container {
    max-width: 1200px;
    margin: 30px auto;
    display: flex;
    gap: 30px;
    padding: 0 20px;
    position: relative;
}

/* ===========================
   ORDER SUMMARY SIDEBAR (STICKY RIGHT)
   =========================== */

.order-summary-sticky {
    position: sticky;
    top: 90px; /* Below countdown banner */
    height: fit-content;
    width: 380px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    overflow: hidden;
}

.summary-header {
    background: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.summary-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.summary-total {
    font-size: 24px;
    font-weight: 700;
    color: #00c851;
}

.summary-content {
    padding: 20px;
}

.summary-items {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
    background: #f8f9fa;
}

.summary-item-details {
    flex: 1;
}

.summary-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.summary-item-desc {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.summary-item-price {
    font-size: 16px;
    font-weight: 700;
    color: #00c851;
}

.summary-breakdown {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.summary-shipping {
    color: #00c851;
    font-weight: 600;
}

.discount-row {
    color: #dc3545;
}

.total-row {
    border-top: 2px solid #1a1a2e;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
}

.summary-total-price {
    color: #00c851;
    font-size: 24px;
}

.summary-notice {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.summary-notice strong {
    color: #1a1a2e;
}

/* ===========================
   MAIN CONTENT AREA
   =========================== */

.checkout-main-content {
    flex: 1;
    min-width: 0;
}

/* ===========================
   FEATURE BADGES
   =========================== */

.feature-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.badge-item i {
    font-size: 36px;
    color: #00d4aa;
}

.badge-item span {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* ===========================
   DISCOUNT BANNER
   =========================== */

.discount-banner {
    background: linear-gradient(135deg, #d4f1e8 0%, #b8e6d5 100%);
    border: 3px solid #00c851;
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 6px 25px rgba(0, 200, 81, 0.15);
}

.discount-badge {
    background: linear-gradient(135deg, #00c851 0%, #00e676 100%);
    color: #fff;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0, 200, 81, 0.35);
}

.discount-banner .discount-percent {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: flex-start;
}

.discount-banner .percent-sign {
    font-size: 24px;
    font-weight: 800;
    margin-top: 10px;
}

.discount-banner .discount-text {
    font-size: 15px;
    font-weight: 700;
    margin-top: -2px;
    letter-spacing: 1px;
}

.discount-message {
    flex: 1;
}

.success-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.success-icon i {
    color: #00c851;
    font-size: 26px;
}

.success-icon p {
    font-size: 16px;
    font-weight: 700;
    color: #2e7d32;
    margin: 0;
}

.promo-text {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.price-strike {
    text-decoration: line-through;
    color: #999;
    margin: 0 8px;
}

.price-special {
    font-size: 20px;
    font-weight: 700;
    color: #2e7d32;
    margin: 0 8px;
}

.discount-info {
    color: #666;
    font-size: 13px;
}

/* ===========================
   CHECKOUT STEPS
   =========================== */

.checkout-step {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

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

.product-rating {
    margin-bottom: 30px;
}

.rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.rating-details {
    text-align: center;
}

.rating-label {
    font-size: 14px;
    font-weight: 700;
    color: #00c851;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 5px 0;
}

.rating-stars i {
    color: #ffc107;
    font-size: 18px;
}

.rating-score {
    margin-left: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.rating-customers {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===========================
   PRODUCT SELECTION LIST (HaloGrow Style)
   =========================== */

.product-selection-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-option {
    position: relative;
    border: 3px solid #e9ecef;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.product-option:hover {
    border-color: #00d4aa;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.25);
    transform: translateY(-2px);
}

/* Only highlight when actually selected */
.product-option.selected {
    border-color: #00d4aa;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.35);
}

/* Popular ribbon always visible but border only when selected */
.product-option-popular:not(.selected) {
    border-color: #e9ecef;
    box-shadow: none;
}

.product-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-option-label {
    display: block;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.popular-ribbon {
    background: linear-gradient(135deg, #1a1a4e 0%, #2d2d6e 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    padding: 6px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    gap: 12px;
}

/* Product image in cards */
.product-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8f9fa;
    flex-shrink: 0;
}

.product-option-info {
    flex: 1;
}

.product-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.product-supply {
    font-size: 12px;
    color: #666;
}

.product-pricing-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.discount-label {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

.discount-value {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.discount-percent {
    font-size: 14px;
}

.discount-off {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-top: 1px;
}

.price-display {
    text-align: right;
}

.price-each {
    font-size: 16px;
    font-weight: 700;
    color: #00c851;
    margin-bottom: 2px;
}

.currency {
    font-size: 14px;
}

.amount {
    font-size: 18px;
}

.each-label {
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin-left: 3px;
}

.shipping-free {
    font-size: 11px;
    color: #00c851;
    font-weight: 700;
    margin-bottom: 4px;
}

.total-price {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.total-label {
    font-weight: 600;
    color: #666;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    text-align: center;
}

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

.stock-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fff8e1;
    border: 2px solid #ffb300;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.15);
}

.stock-text {
    font-size: 14px;
    color: #856404;
    font-weight: 600;
}

.stock-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #856404;
}

.stock-badge i {
    font-size: 18px;
}

.stock-badge strong {
    color: #d9534f;
}

/* ===========================
   EXPRESS CHECKOUT
   =========================== */

.express-checkout-section {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.express-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.express-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.btn-express {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    cursor: not-allowed;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.btn-express:not(:disabled):hover {
    background: #f8f9fa;
    border-color: #00d4aa;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.2);
    transform: translateY(-2px);
}

.btn-express span {
    font-size: 14px;
    color: #333;
}

.btn-express img {
    height: 24px;
}

.express-divider {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #999;
    padding: 20px 0;
    position: relative;
}

.express-divider::before,
.express-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}

.express-divider::before {
    left: 0;
}

.express-divider::after {
    right: 0;
}

/* ===========================
   FORM STYLES
   =========================== */

.customer__form-wrap {
    max-width: 100%;
}

.form-grp {
    margin-bottom: 12px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.form-grp input[type="email"],
.form-grp input[type="text"],
.form-grp input[type="tel"],
.form-grp select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
}

.form-grp input:focus,
.form-grp select:focus {
    outline: none;
    border-color: #00d4aa;
    box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.15);
}

.country-select-wrapper {
    position: relative;
}

.country-select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #999;
}

.country-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Phone Input France */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.phone-prefix {
    padding: 10px 12px;
    background: #f5f5f5;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    border-right: 1px solid #e0e0e0;
}

.phone-input-france {
    flex: 1;
    border: none !important;
    border-radius: 0 !important;
    padding: 10px 12px !important;
}

.phone-input-france:focus {
    box-shadow: none !important;
}

.phone-input-wrapper:focus-within {
    border-color: #00d4aa;
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.15);
}

/* ===========================
   CHECKBOXES
   =========================== */

.checkbox-group {
    margin: 15px 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.checkbox-container:hover {
    background: #f8f9fa;
}

.checkbox-container span {
    font-size: 12px;
    line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-container span {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.checkbox-container a {
    color: #00d4aa;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

/* ===========================
   TERMS NOTICE
   =========================== */

.terms-notice {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.terms-notice p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.terms-notice a {
    color: #00d4aa;
    text-decoration: none;
    font-weight: 600;
}

/* Bank Statement Notice */
.bank-statement-notice {
    background: #fff9e6;
    border: 2px solid #ffd700;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    text-align: center;
}

.bank-statement-notice p {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

.bank-statement-notice strong {
    color: #000;
    font-weight: 700;
}

/* ===========================
   ORDER NOW BUTTON (HaloGrow Style)
   =========================== */

.btn-order-now {
    width: 100%;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-order-now:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-order-now:disabled {
    background: #9e9e9e;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.8;
}

/* ===========================
   ERROR STATES & VALIDATION
   =========================== */

/* Server Error Banner */
.server-error-banner {
    display: none;
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    animation: slideDown 0.3s ease-out;
}

.server-error-banner.show {
    display: block;
}

.server-error-banner i {
    margin-right: 10px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Input Error State */
.form-grp input.error,
.form-grp select.error {
    border-color: #d32f2f !important;
    background: #fff5f5 !important;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15) !important;
}

.phone-input-wrapper.error {
    border-color: #d32f2f !important;
    background: #fff5f5;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15);
}

/* Checkbox Error State */
.checkbox-container.error {
    background: #fff5f5;
    border: 1px solid #d32f2f;
    border-radius: 8px;
}

/* Field Tooltip */
.field-tooltip {
    position: absolute;
    top: -8px;
    left: 10px;
    transform: translateY(-100%);
    background: #d32f2f;
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    z-index: 1000;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
    animation: tooltipFadeIn 0.2s ease-out;
}

.field-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 20px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #d32f2f;
}

/* Checkbox Tooltip (positioned below) */
.checkbox-tooltip {
    position: absolute;
    bottom: -8px;
    left: 10px;
    transform: translateY(100%);
    background: #d32f2f;
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    z-index: 1000;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
    animation: tooltipFadeIn 0.2s ease-out;
}

.checkbox-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #d32f2f;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateY(-100%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(-100%) scale(1);
    }
}

/* Mobile tooltip adjustments */
@media (max-width: 768px) {
    .field-tooltip,
    .checkbox-tooltip {
        font-size: 11px;
        padding: 6px 10px;
        max-width: 280px;
        white-space: normal;
    }
}

.btn-order-now p {
    margin: 0;
    font-size: 18px;
    color: #fff;
}

/* ===========================
   SHIPPING NOTICE
   =========================== */

.shipping-notice {
    display: flex;
    justify-content: space-between;
    padding: 18px 25px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 20px;
}

.shipping-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.shipping-value {
    font-size: 14px;
    font-weight: 700;
    color: #00c851;
}

/* ===========================
   PAYMENT NOTICE
   =========================== */

.payment-notice {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.payment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4aa 0%, #00e6c3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.payment-icon i {
    font-size: 28px;
    color: #fff;
}

.payment-notice p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ===========================
   SSL SECURITY SECTION
   =========================== */

.ssl-security-section {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.ssl-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #d4f1e8 0%, #b8e6d5 100%);
    border-radius: 15px;
    border: 3px solid #00c851;
    box-shadow: 0 4px 15px rgba(0, 200, 81, 0.15);
}

.ssl-badge i {
    font-size: 50px;
    color: #00c851;
}

.ssl-text strong {
    display: block;
    font-size: 16px;
    color: #2e7d32;
    margin-bottom: 5px;
}

.ssl-text p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* ===========================
   PRODUCT BENEFITS (SIMPLE TEXT)
   =========================== */

.product-benefits-simple {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.benefit-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* ===========================
   MINIMAL FOOTER
   =========================== */

.minimal-footer {
    background: #1a1a2e;
    color: #fff;
    padding: 40px 20px 20px;
    margin-top: 50px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
}

.footer-logo-text {
    font-size: 32px;
    font-weight: 700;
    color: #00c851;
    letter-spacing: 1px;
}

.footer-links {
    max-width: 1000px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #00d4aa;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 13px;
}

.footer-contact i {
    color: #00d4aa;
}

.footer-disclaimer {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    font-size: 11px;
    color: #aaa;
    line-height: 1.6;
    text-align: center;
}

.footer-bottom {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #aaa;
    margin: 0;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons img {
    height: 25px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-icons img:hover {
    opacity: 1;
}

/* ===========================
   SUCCESS BANNER
   =========================== */

.success-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 1001;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.success-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.success-content i {
    font-size: 24px;
}

.success-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* ===========================
   RESPONSIVE STYLES
   =========================== */

@media (max-width: 1024px) {
    .halogrow-container {
        flex-direction: column;
    }

    .order-summary-sticky {
        position: relative;
        top: 0;
        width: 100%;
        order: -1;
    }

    .summary-content {
        display: block;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .halogrow-container {
        margin-top: 10px;
    }

    .countdown-banner-sticky {
        flex-direction: column;
        gap: 5px;
        padding: 8px 12px;
    }

    .countdown-content {
        flex-direction: row;
        gap: 5px;
        text-align: center;
        font-size: 11px;
    }

    .countdown-label {
        font-size: 11px;
    }

    .countdown-discount {
        font-size: 14px;
    }

    .countdown-reserved {
        font-size: 10px;
    }

    .countdown-timer {
        gap: 3px;
    }

    .time-block {
        min-width: 35px;
    }

    .time-value {
        font-size: 16px;
    }

    .time-label {
        font-size: 8px;
    }

    /* Reorder column 1 children: discount banner → products → feature badges */
    .checkout-column-1 {
        display: flex;
        flex-direction: column;
    }

    .discount-banner {
        order: 1;
    }

    .checkout-column-1 > .checkout-step {
        order: 2;
    }

    .feature-badges {
        order: 3;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 12px;
        margin-bottom: 15px;
    }

    .badge-item i {
        font-size: 22px;
    }

    .badge-item span {
        font-size: 10px;
    }

    /* Compact discount banner: horizontal, smaller */
    .discount-banner {
        flex-direction: row;
        text-align: left;
        padding: 12px 16px;
        gap: 14px;
        margin-bottom: 15px;
        border-width: 2px;
        border-radius: 12px;
    }

    .discount-badge {
        width: 60px;
        height: 60px;
    }

    .discount-banner .discount-percent {
        font-size: 28px;
    }

    .discount-banner .percent-sign {
        font-size: 12px;
        margin-top: 4px;
    }

    .discount-banner .discount-text {
        font-size: 10px;
    }

    .discount-message .success-icon {
        margin-bottom: 4px;
        gap: 6px;
    }

    .discount-message .success-icon i {
        font-size: 16px;
    }

    .discount-message .success-icon p {
        font-size: 11px;
    }

    .discount-message .promo-text {
        font-size: 11px;
        margin: 0;
    }

    /* Product cards - compact horizontal layout on mobile */
    .product-option-content {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
    }

    .product-image {
        width: 40px;
        height: 40px;
    }

    .product-option-info {
        flex: 1;
        min-width: 0;
    }

    .product-name {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-supply {
        font-size: 10px;
    }

    .product-pricing-block {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .discount-label {
        padding: 6px 8px;
        min-width: 45px;
    }

    .discount-value {
        font-size: 16px;
    }

    .discount-percent {
        font-size: 12px;
    }

    .discount-off {
        font-size: 9px;
    }

    .price-display {
        text-align: right;
    }

    .price-each {
        font-size: 14px;
    }

    .shipping-free {
        font-size: 9px;
    }

    .total-price {
        font-size: 11px;
    }

    .original-price {
        font-size: 11px;
        text-decoration: line-through;
        text-decoration-color: #999;
        display: inline-flex;
        align-items: center;
        line-height: 1;
    }

    /* Compact form for mobile - fit on one screen */
    .checkout-step {
        padding: 15px 12px;
        margin-bottom: 15px;
    }

    .step-title {
        font-size: 16px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .form-grp {
        margin-bottom: 8px;
    }

    .form-label {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .form-grp input[type="email"],
    .form-grp input[type="text"],
    .form-grp input[type="tel"],
    .form-grp select {
        padding: 8px 10px;
        font-size: 13px;
    }

    .phone-prefix {
        padding: 8px 10px;
        font-size: 13px;
    }

    .phone-input-france {
        padding: 8px 10px !important;
    }

    /* Compact checkboxes for mobile */
    .checkbox-group {
        margin: 10px 0;
    }

    .checkbox-container {
        padding: 5px;
        margin-bottom: 5px;
        gap: 6px;
    }

    .checkbox-container input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    .checkbox-container span {
        font-size: 11px;
        line-height: 1.3;
    }

    /* Compact notices */
    .terms-notice {
        padding: 10px;
        margin-bottom: 12px;
    }

    .terms-notice p {
        font-size: 10px;
    }

    .bank-statement-notice {
        padding: 10px 12px;
        margin-bottom: 15px;
    }

    .bank-statement-notice p {
        font-size: 11px;
    }

    /* Compact order button */
    .btn-order-now {
        padding: 14px 20px;
        border-radius: 12px;
    }

    .btn-order-now p {
        font-size: 15px;
        color: #fff;
    }

    .express-buttons {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .stock-indicator {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Popular ribbon smaller on mobile */
    .popular-ribbon {
        padding: 4px 8px;
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .checkout-step {
        padding: 20px 15px;
    }

    .step-title {
        font-size: 18px;
    }

    .time-value {
        font-size: 20px;
    }

    .time-label {
        font-size: 9px;
    }

    .amount {
        font-size: 20px;
    }

    .price-each {
        font-size: 16px;
    }
}

/* ===========================
   STEP 3: PAYMENT METHODS
   HaloGrow-Style Credit Card Form
   =========================== */

.payment-step {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Credit Card Header with Icons */
.credit-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #dee2e6;
}

.credit-card-header span {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
}

.card-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.card-icons img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

/* Netvalve Form Container */
#netvalve-fields {
    color: #222;
    font-size: 16px;
    background: #fff;
}

/* Credit Card Form */
.credit-card-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.credit-card-form .form-grp {
    margin-bottom: 0;
}

.credit-card-form .form-grp label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
    display: block;
}

/* Netvalve Custom Elements Styling */
netvalve-cardnumber,
netvalve-expiry,
netvalve-cvv {
    display: block;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 14px 16px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
    font-size: 16px;
}

netvalve-cardnumber:focus,
netvalve-expiry:focus,
netvalve-cvv:focus {
    border-color: #00d4aa;
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.15);
    outline: none;
}

/* Form Row for Expiry + CVV */
.credit-card-form .form-row {
    display: flex;
    gap: 15px;
}

.credit-card-form .form-row .form-grp {
    flex: 1;
}

/* Terms Agreement Text */
.terms-agreement {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin: 15px 0;
    line-height: 1.5;
}

.terms-agreement a {
    color: #00d4aa;
    text-decoration: underline;
}

.terms-agreement a:hover {
    color: #00c851;
}

/* Payment Order Button */
.payment-step .btn-order-now {
    width: 100%;
    margin-top: 10px;
}

/* Trust Badges Row */
.trust-badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 25px 0;
    margin-top: 20px;
    border-top: 1px solid #e9ecef;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 11px;
    text-align: center;
}

.trust-badge-item i {
    font-size: 24px;
    color: #00c851;
}

.trust-badge-item span {
    font-weight: 500;
}

.trust-badges-row img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.85;
    transition: all 0.2s ease;
}

.trust-badges-row img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* SSL Security Notice */
.ssl-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
}

.ssl-notice i {
    font-size: 28px;
    color: #00c851;
}

.ssl-notice div {
    text-align: left;
}

.ssl-notice strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.ssl-notice p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* DDC Loading Container */
#ddc-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ddc-container .loading-text {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    text-align: center;
}

#ddc-container .loading-text::after {
    content: '';
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* Payment Step Mobile Adjustments */
@media (max-width: 768px) {
    .payment-step {
        padding: 20px 15px;
    }

    .credit-card-header {
        padding: 12px 15px;
    }

    .credit-card-header span {
        font-size: 14px;
    }

    .card-icons img {
        height: 22px;
    }

    .credit-card-form .form-row {
        flex-direction: row;
        gap: 10px;
    }

    netvalve-cardnumber,
    netvalve-expiry,
    netvalve-cvv {
        padding: 12px 14px;
        font-size: 14px;
    }

    .trust-badges-row {
        gap: 10px;
        padding: 15px 0;
    }

    .trust-badges-row img {
        height: 30px;
    }

    .ssl-notice {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .ssl-notice div {
        text-align: center;
    }

    .ssl-notice i {
        font-size: 24px;
    }
}

/* ===========================
   DESKTOP-ONLY TWO-COLUMN LAYOUT
   These styles only apply on screens >= 1024px
   Mobile layout remains unchanged
   =========================== */

@media (min-width: 1024px) {
    /* Remove top margin to eliminate gray space */
    .halogrow-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 20px 30px;
    }

    /* Two-column layout */
    .checkout-main-content {
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }

    /* Column 1: Product Selection (left) */
    .checkout-column-1 {
        flex: 0 0 55%;
        max-width: 55%;
    }

    /* Column 2: Shipping & Payment (right) */
    .checkout-column-2 {
        flex: 0 0 43%;
        max-width: 43%;
    }

    /* Compact feature badges for desktop */
    .feature-badges {
        padding: 15px 20px;
        margin-bottom: 20px;
        gap: 10px;
    }

    .badge-item i {
        font-size: 28px;
    }

    .badge-item span {
        font-size: 11px;
    }

    /* Compact discount banner */
    .discount-banner {
        padding: 15px 20px;
        margin-bottom: 20px;
        gap: 15px;
    }

    .discount-badge {
        width: 80px;
        height: 80px;
    }

    .discount-banner .discount-percent {
        font-size: 36px;
    }

    .discount-banner .percent-sign {
        font-size: 16px;
        margin-top: 5px;
    }

    .discount-banner .discount-text {
        font-size: 12px;
    }

    .success-icon i {
        font-size: 20px;
    }

    .success-icon p {
        font-size: 13px;
    }

    .promo-text {
        font-size: 12px;
    }

    .price-special {
        font-size: 16px;
    }

    /* Compact checkout steps */
    .checkout-step {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 15px;
    }

    .step-title {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    /* Compact rating section */
    .product-rating {
        margin-bottom: 15px;
    }

    .rating-badge {
        padding: 12px;
    }

    .rating-stars i {
        font-size: 14px;
    }

    .rating-score {
        font-size: 13px;
    }

    /* Compact product cards - fit all 3 without scrolling */
    .product-selection-list {
        gap: 10px;
    }

    .product-option {
        border-radius: 12px;
        border-width: 2px;
    }

    .popular-ribbon {
        padding: 4px 8px;
        font-size: 10px;
    }

    .product-option-content {
        padding: 8px 12px;
        gap: 10px;
    }

    .product-image {
        width: 45px;
        height: 45px;
    }

    .product-name {
        font-size: 13px;
    }

    .product-supply {
        font-size: 11px;
    }

    .discount-label {
        padding: 6px 10px;
        min-width: 50px;
    }

    .discount-value {
        font-size: 16px;
    }

    .discount-percent {
        font-size: 11px;
    }

    .discount-off {
        font-size: 9px;
    }

    .price-each {
        font-size: 14px;
    }

    .amount {
        font-size: 15px;
    }

    .shipping-free {
        font-size: 10px;
    }

    /* Hide total price row on desktop - show only unit price like product 1 */
    .total-price {
        display: none;
    }

    .original-price {
        font-size: 11px;
        display: inline;
        margin-left: 5px;
    }

    /* Make price display inline on desktop */
    .price-display {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        text-align: right;
    }

    .price-each {
        font-size: 14px;
        margin-bottom: 0;
        white-space: nowrap;
    }

    .shipping-free {
        font-size: 9px;
        margin-bottom: 0;
        white-space: nowrap;
    }

    /* Compact stock indicator */
    .stock-indicator {
        padding: 12px 15px;
        margin-top: 15px;
    }

    .stock-text {
        font-size: 12px;
    }

    .stock-badge {
        font-size: 12px;
    }

    .stock-badge i {
        font-size: 14px;
    }

    /* Compact SSL section */
    .ssl-security-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .ssl-badge {
        padding: 15px;
        gap: 15px;
    }

    .ssl-badge i {
        font-size: 36px;
    }

    .ssl-text strong {
        font-size: 14px;
    }

    .ssl-text p {
        font-size: 12px;
    }

    /* Compact product benefits */
    .product-benefits-simple {
        padding: 20px;
        margin-bottom: 20px;
    }

    .benefit-item {
        padding: 10px 0;
        font-size: 12px;
    }
}

/* ===========================
   STEP 3: PAYMENT SELECTION
   =========================== */

#payment-step {
    margin-top: 32px;
    padding: 0 16px;
}

#payment-step .checkout-step {
    margin: 0;
}

/* Payment Method Tabs */
#payment-step .payment-method-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

#payment-step .payment-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: #fff;
}

#payment-step .payment-tab:hover {
    border-color: #b0b0b0;
}

#payment-step .payment-tab.active {
    border-color: #2ecc71;
    background: #f0fdf4;
}

#payment-step .payment-tab.loading {
    opacity: 0.7;
    pointer-events: none;
}

#payment-step .tab-radio {
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#payment-step .payment-tab.active .tab-radio {
    border-color: #2ecc71;
}

#payment-step .radio-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    transition: background 0.2s;
}

#payment-step .payment-tab.active .radio-dot {
    background: #2ecc71;
}

#payment-step .tab-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

#payment-step .tab-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

#payment-step .tab-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

#payment-step .tab-icons img {
    height: 24px;
    width: auto;
}

/* Payment Descriptions */
#payment-step .payment-description {
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
}

#payment-step .payment-description p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Inline Payment Container */
#inline-payment-container {
    margin: 16px 0;
}

#klarna-payments-container {
    min-height: 200px;
    margin: 16px 0;
}

/* Secure Payment Block */
#payment-step .secure-payment-block {
    text-align: center;
    padding: 16px 0;
}

#payment-step .secure-payment-title {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
}

#payment-step .secure-payment-title i {
    color: #2ecc71;
    margin-right: 6px;
}

#payment-step .payment-methods-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

#payment-step .payment-methods-icons img {
    height: 28px;
    width: auto;
    opacity: 0.7;
}

/* Bank Statement Notice */
#payment-step .bank-statement-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f0f7ff;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 13px;
    color: #555;
}

#payment-step .bank-statement-notice i {
    color: #4a90d9;
    font-size: 16px;
    flex-shrink: 0;
}

/* Mobile responsive for payment step */
@media (max-width: 768px) {
    #payment-step {
        padding: 0 12px;
        margin-top: 24px;
    }

    #payment-step .payment-tab {
        padding: 12px 14px;
        gap: 10px;
    }

    #payment-step .tab-label {
        font-size: 14px;
    }

    #payment-step .tab-icons img {
        height: 20px;
    }

    #payment-step .tab-radio {
        width: 18px;
        height: 18px;
    }

    #payment-step .radio-dot {
        width: 10px;
        height: 10px;
    }
}
