/* ============================================================
   Teles Hosting - Lagom2 Order Form UX Enhancements
   Inspired by Smart Order Form features
   ============================================================ */

/* ===== 1. STICKY ORDER SUMMARY ===== */
/* Make the order summary stick during scroll on configure pages */
@media (min-width: 992px) {
    .main-content .panel-summary,
    .main-content .panel-order-summary {
        position: sticky;
        top: 80px;
        z-index: 100;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        overflow-x: hidden;
    }

    /* Custom scrollbar for sticky summary */
    .main-content .panel-summary::-webkit-scrollbar,
    .main-content .panel-order-summary::-webkit-scrollbar {
        width: 4px;
    }
    .main-content .panel-summary::-webkit-scrollbar-track,
    .main-content .panel-order-summary::-webkit-scrollbar-track {
        background: transparent;
    }
    .main-content .panel-summary::-webkit-scrollbar-thumb,
    .main-content .panel-order-summary::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.15);
        border-radius: 2px;
    }
}

/* ===== 2. ENHANCED PRODUCT CARDS ===== */
.package {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    position: relative;
}

.package:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.06);
    border-color: rgba(0, 123, 255, 0.25);
}

.package-featured {
    border-color: rgba(0, 123, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.08);
}

.package-featured:hover {
    box-shadow: 0 12px 32px rgba(0, 123, 255, 0.15), 0 4px 8px rgba(0, 123, 255, 0.10);
}

/* Smooth gradient overlay on hover */
.package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
    z-index: 1;
}

.package:hover::before,
.package-featured::before {
    transform: scaleX(1);
}

/* Order button enhancement */
.btn-order-now {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    position: relative;
    overflow: hidden;
}

.btn-order-now:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.25);
}

.btn-order-now:active {
    transform: translateY(0);
}

.btn-order-now .btn-loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
    margin-right: 6px;
    vertical-align: middle;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

/* ===== 3. BILLING CYCLE PILLS ===== */
/* Convert billing cycle selectors to pill tabs */
.cycle-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.cycle-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(0,0,0,0.02);
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.cycle-pill:hover {
    border-color: rgba(0, 123, 255, 0.3);
    background: rgba(0, 123, 255, 0.05);
    text-decoration: none;
}

.cycle-pill.active {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.25);
}

.cycle-pill .pill-price {
    margin-left: 6px;
    opacity: 0.8;
    font-weight: 400;
}

.cycle-pill.active .pill-price {
    opacity: 1;
}

/* ===== 4. PROGRESS STEPS INDICATOR ===== */
.order-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    margin-bottom: 24px;
    background: transparent;
}

.order-progress-step {
    display: flex;
    align-items: center;
    color: rgba(0,0,0,0.35);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.order-progress-step.active {
    color: #007bff;
    font-weight: 600;
}

.order-progress-step.completed {
    color: #28a745;
}

.order-progress-step.completed[data-step-url] {
    cursor: pointer;
}

.order-progress-step.completed[data-step-url]:hover {
    color: #007bff;
}

.order-progress-step.completed[data-step-url]:hover .order-progress-step-number {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.1);
}

.order-progress-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid currentColor;
    margin-right: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.order-progress-step.active .order-progress-step-number {
    background: #007bff;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.15);
}

.order-progress-step.completed .order-progress-step-number {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
}

.order-progress-step.completed .order-progress-step-number::after {
    content: '\2713';
    font-size: 14px;
}

.order-progress-step.completed .order-progress-step-number > span {
    display: none;
}

.order-progress-divider {
    width: 40px;
    height: 2px;
    background: rgba(0,0,0,0.1);
    margin: 0 12px;
    transition: background 0.3s ease;
}

.order-progress-divider.completed {
    background: #28a745;
}

/* ===== 5. QUICK CART POPUP ===== */
.quick-cart-popup {
    position: absolute;
    top: 100%;
    right: 0;
    width: 360px;
    max-height: 480px;
    overflow-y: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.08);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    margin-top: 8px;
}

.quick-cart-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.quick-cart-popup-header {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quick-cart-popup-body {
    padding: 8px 0;
}

.quick-cart-item {
    display: flex;
    align-items: flex-start;
    padding: 10px 18px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: background 0.15s ease;
}

.quick-cart-item:hover {
    background: rgba(0,0,0,0.02);
}

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

.quick-cart-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(0, 123, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    color: #007bff;
    font-size: 16px;
}

.quick-cart-item-info {
    flex: 1;
    min-width: 0;
}

.quick-cart-item-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.quick-cart-item-desc {
    font-size: 11px;
    color: rgba(0,0,0,0.5);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.quick-cart-item-price {
    font-size: 13px;
    font-weight: 600;
    color: #007bff;
    white-space: nowrap;
    margin-left: 8px;
}

.quick-cart-popup-empty {
    padding: 32px 18px;
    text-align: center;
    color: rgba(0,0,0,0.4);
    font-size: 13px;
}

.quick-cart-popup-empty i {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
    opacity: 0.3;
}

.quick-cart-popup-footer {
    padding: 14px 18px;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    gap: 8px;
}

.quick-cart-popup-footer .btn {
    flex: 1;
}

.quick-cart-popup .quick-cart-loader {
    padding: 32px;
    text-align: center;
}

.quick-cart-popup .quick-cart-loader .spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(0, 123, 255, 0.15);
    border-top-color: #007bff;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
    margin: 0 auto;
}

/* ===== 6. SMOOTH SCROLL & ANIMATIONS ===== */
html {
    scroll-behavior: smooth;
}

.section {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animate config sections when they appear */
#productconfig {
    animation: fadeInUp 0.3s ease;
}

/* ===== 7. ENHANCED DOMAIN SEARCH ===== */
.domain-search-results {
    animation: fadeInUp 0.3s ease;
}

.domain-spotlight {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 8px;
    overflow: hidden;
}

.domain-spotlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.domain-spotlight .domain-price {
    font-weight: 700;
}

/* Domain search button enhancement */
#btnDomainSearch {
    transition: transform 0.15s ease;
}

#btnDomainSearch:hover {
    transform: scale(1.02);
}

/* ===== 8. SIDEBAR ENHANCEMENTS ===== */
/* Sticky sidebar with smooth scroll */
.sidebar-sticky {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.sidebar-sticky::-webkit-scrollbar {
    width: 3px;
}
.sidebar-sticky::-webkit-scrollbar-track {
    background: transparent;
}
.sidebar-sticky::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.1);
    border-radius: 2px;
}

/* Category items hover effect */
.panel-sidebar .list-group-item {
    transition: background 0.15s ease, padding-left 0.15s ease;
    border-left: 3px solid transparent;
}

.panel-sidebar .list-group-item:hover {
    padding-left: 18px;
}

.panel-sidebar .list-group-item.active {
    border-left-color: #007bff;
}

/* ===== 9. CONFIGURABLE OPTIONS ENHANCEMENT ===== */
/* Radio box style for config options */
.config-option-group {
    margin-bottom: 20px;
}

.config-option-group .radio,
.config-option-group .checkbox {
    padding: 10px 14px;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 8px;
    margin-bottom: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.config-option-group .radio:hover,
.config-option-group .checkbox:hover {
    border-color: rgba(0, 123, 255, 0.25);
    background: rgba(0, 123, 255, 0.02);
}

.config-option-group .radio input:checked + label,
.config-option-group .checkbox input:checked + label {
    font-weight: 600;
}

.config-option-group .radio:has(input:checked),
.config-option-group .checkbox:has(input:checked) {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.04);
}

/* ===== 10. MOBILE OPTIMIZATIONS ===== */
@media (max-width: 767px) {
    /* Stack product cards on mobile */
    .row-eq-height > [class*="col-"] {
        margin-bottom: 12px;
    }

    /* Make order summary full width and not sticky on mobile */
    .main-content .panel-summary,
    .main-content .panel-order-summary {
        position: static !important;
        max-height: none !important;
    }

    /* Quick cart popup full width on mobile */
    .quick-cart-popup {
        width: calc(100vw - 32px);
        right: -8px;
    }

    /* Progress steps scrollable on mobile */
    .order-progress {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 12px 0;
        -webkit-overflow-scrolling: touch;
    }

    .order-progress-divider {
        flex-shrink: 0;
    }

    /* Larger touch targets on mobile */
    .btn-order-now {
        min-height: 48px;
        font-size: 15px;
    }

    .cycle-pill {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ===== 11. LOADING STATES ===== */
/* Loading overlay for AJAX operations */
.cart-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.7);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.cart-loading-overlay.show {
    display: flex;
}

.cart-loading-overlay .loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 123, 255, 0.15);
    border-top-color: #007bff;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
}

/* ===== 12. ADD TO CART FEEDBACK ===== */
.add-to-cart-feedback {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #28a745;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.add-to-cart-feedback.show {
    transform: translateY(0);
    opacity: 1;
}

.add-to-cart-feedback i {
    font-size: 18px;
}

/* ===== 13. TOAST NOTIFICATIONS ===== */
.cart-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-width: 360px;
}

.cart-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.cart-toast-success {
    background: #28a745;
    color: #fff;
}

.cart-toast-error {
    background: #dc3545;
    color: #fff;
}

.cart-toast-info {
    background: #17a2b8;
    color: #fff;
}

/* ===== 14. CHECKOUT PAGE ENHANCEMENTS ===== */
/* Better form fields on checkout */
#frmCheckout .form-group {
    margin-bottom: 16px;
}

#frmCheckout .form-control {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#frmCheckout .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Payment gateway cards */
.payment-gateway-card {
    padding: 14px 16px;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-gateway-card:hover {
    border-color: rgba(0, 123, 255, 0.25);
    background: rgba(0, 123, 255, 0.02);
}

.payment-gateway-card.selected {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.08);
}

.payment-gateway-card input[type="radio"] {
    margin: 0;
}

.payment-gateway-card label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

/* ===== 15. EMPTY STATE ENHANCEMENT ===== */
.empty-cart-state {
    text-align: center;
    padding: 48px 24px;
}

.empty-cart-state i {
    font-size: 48px;
    color: rgba(0,0,0,0.15);
    margin-bottom: 16px;
}

.empty-cart-state h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.empty-cart-state p {
    color: rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

/* ============================================================
   PART 2 - Smart Order Form Features
   ============================================================ */

/* ===== 16. HORIZONTAL PACKAGES ===== */
/* Full-width cards with price/button on the right */
.layout-horizontal .package {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    margin-bottom: 16px;
}

.layout-horizontal .package-side-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 24px;
}

.layout-horizontal .package-side-right {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid rgba(0,0,0,0.06);
    padding: 24px;
    background: rgba(0,0,0,0.01);
}

.layout-horizontal .package-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.layout-horizontal .package-title {
    font-size: 20px;
    margin: 0;
}

.layout-horizontal .package-price {
    text-align: right;
}

.layout-horizontal .package-body {
    flex: 1;
}

.layout-horizontal .package-footer {
    border-top: none;
}

.layout-horizontal .package-features {
    columns: 2;
    column-gap: 24px;
}

.layout-horizontal .package-features li {
    break-inside: avoid;
    margin-bottom: 6px;
}

/* ===== 17. PACKAGE SLIDER ===== */
.package-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -8px;
    padding: 0 8px;
}

.package-slider-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.package-slider-track > [class*=col-] {
    flex: 0 0 calc(33.333% - 12px);
    max-width: calc(33.333% - 12px);
}

@media (max-width: 991px) {
    .package-slider-track > [class*=col-] {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
}

@media (max-width: 767px) {
    .package-slider-track > [class*=col-] {
        flex: 0 0 calc(100% - 0px);
        max-width: 100%;
    }
}

.package-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    font-size: 18px;
    color: #007bff;
}

.package-slider-btn:hover {
    background: #007bff;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.25);
}

.package-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.package-slider-btn.prev {
    left: -4px;
}

.package-slider-btn.next {
    right: -4px;
}

.package-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.package-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}

.package-slider-dot.active {
    background: #007bff;
    width: 24px;
    border-radius: 4px;
}

/* ===== 18. PRODUCTS NAVIGATION TABS ===== */
.products-nav-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    margin-bottom: 24px;
    border-bottom: 2px solid rgba(0,0,0,0.06);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.products-nav-tab {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(0,0,0,0.5);
    cursor: pointer;
    border: none;
    background: transparent;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.products-nav-tab:hover {
    color: #007bff;
    text-decoration: none;
    background: rgba(0, 123, 255, 0.04);
    border-radius: 6px 6px 0 0;
}

.products-nav-tab.active {
    color: #007bff;
    border-bottom-color: #007bff;
}

.products-nav-tab i {
    font-size: 14px;
}

/* ===== 19. BOTTOM SUMMARY ===== */
/* Summary that sticks to bottom of viewport */
.bottom-summary-active .panel-summary,
.bottom-summary-active .panel-order-summary {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto !important;
    max-height: none !important;
    z-index: 1000;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.12);
    margin: 0;
    padding: 16px 24px;
    overflow: hidden;
}

.bottom-summary-active .panel-summary .panel-body,
.bottom-summary-active .panel-order-summary .panel-body {
    display: none;
}

.bottom-summary-active .panel-summary .panel-footer,
.bottom-summary-active .panel-order-summary .panel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: none;
    padding: 0;
    background: transparent;
}

.bottom-summary-active .panel-summary .price,
.bottom-summary-active .panel-order-summary .price {
    margin: 0;
}

.bottom-summary-active .panel-summary .summary-actions,
.bottom-summary-active .panel-order-summary .summary-actions {
    flex: 0 0 auto;
}

.bottom-summary-active .main-content {
    padding-bottom: 120px;
}

/* Toggle button for summary position */
.summary-position-toggle {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.2s ease;
    font-size: 18px;
    color: #007bff;
}

.summary-position-toggle:hover {
    background: #007bff;
    color: #fff;
}

/* ===== 20. SIMPLIFIED SUMMARY ===== */
.simplified-summary .panel-summary .summary-list,
.simplified-summary .panel-order-summary .summary-list {
    display: none;
}

.simplified-summary .panel-summary .summary-item .subname,
.simplified-summary .panel-order-summary .summary-item .subname {
    display: none;
}

.simplified-summary .panel-summary .summary-item-addon,
.simplified-summary .panel-order-summary .summary-item-addon {
    display: none;
}

.simplified-summary .panel-summary .summary-item-tax,
.simplified-summary .panel-order-summary .summary-item-tax {
    display: none;
}

/* Summary toggle button */
.summary-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: rgba(0,0,0,0.4);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
}

.summary-toggle-btn:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.05);
}

/* ===== 21. DOMAIN SPOTLIGHTS ===== */
.domain-spotlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0;
}

.domain-spotlight-item {
    flex: 1 1 120px;
    min-width: 120px;
    max-width: 180px;
    padding: 16px 12px;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    text-align: center;
    transition: all 0.25s ease;
    cursor: pointer;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.domain-spotlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.domain-spotlight-item:hover {
    border-color: rgba(0, 123, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.domain-spotlight-item:hover::before {
    transform: scaleX(1);
}

.domain-spotlight-tld {
    font-size: 18px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 4px;
}

.domain-spotlight-price {
    font-size: 13px;
    color: rgba(0,0,0,0.6);
}

.domain-spotlight-price .price-amount {
    font-weight: 600;
}

.domain-spotlight-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    background: #28a745;
    color: #fff;
    text-transform: uppercase;
}

/* ===== 22. GATEWAY ICONS ENHANCEMENT ===== */
/* Enhanced payment gateway display on checkout */
.payment-gateway-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin: 16px 0;
}

.payment-gateway-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.payment-gateway-option:hover {
    border-color: rgba(0, 123, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.payment-gateway-option.selected {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.03);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.08);
}

.payment-gateway-option input[type=radio] {
    margin: 0;
    flex-shrink: 0;
}

.payment-gateway-option-icon {
    width: 40px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-gateway-option-icon img,
.payment-gateway-option-icon svg {
    max-width: 100%;
    max-height: 100%;
}

.payment-gateway-option-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(0,0,0,0.7);
    flex: 1;
    min-width: 0;
}

.payment-gateway-option.selected .payment-gateway-option-label {
    color: #007bff;
}

/* ===== 23. TWO STEPS ORDER LAYOUT ===== */
/* Step 1: Product selection, Step 2: Configuration */
.two-steps-order .main-sidebar {
    display: none;
}

.two-steps-order .main-content {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
}

.two-steps-order .sidebar-categories-collapsed {
    display: block;
    margin-bottom: 16px;
}

/* ===== 24. LAYOUT TOGGLE CONTROLS ===== */
.order-layout-controls {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 16px;
    padding: 8px 0;
}

.order-layout-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(0,0,0,0.4);
    font-size: 16px;
}

.order-layout-btn:hover {
    border-color: rgba(0, 123, 255, 0.25);
    color: #007bff;
}

.order-layout-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

/* ===== 25. ENHANCED CONFIG OPTIONS (Config Manager lite) ===== */
/* Radio Box display type */
.config-display-radio-box .radio {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    margin: 4px;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    min-width: 120px;
    transition: all 0.2s ease;
}

.config-display-radio-box .radio input {
    margin: 0 0 8px 0;
}

.config-display-radio-box .radio label {
    font-size: 12px;
    font-weight: 600;
}

.config-display-radio-box .radio:has(input:checked) {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.08);
}

/* Product Box display type */
.config-display-product-box .radio {
    display: flex;
    flex-direction: column;
    padding: 16px;
    margin-bottom: 8px;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.config-display-product-box .radio:has(input:checked) {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.03);
}

.config-display-product-box .radio label {
    font-weight: 600;
    margin-bottom: 4px;
}

/* ===== 26. MOBILE ENHANCEMENTS for new features ===== */
@media (max-width: 767px) {
    /* Horizontal packages stack on mobile */
    .layout-horizontal .package {
        flex-direction: column;
    }
    
    .layout-horizontal .package-side-right {
        flex: 0 0 auto;
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.06);
        padding: 16px;
    }
    
    .layout-horizontal .package-features {
        columns: 1;
    }
    
    /* Products nav tabs scrollable */
    .products-nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    /* Bottom summary full width */
    .bottom-summary-active .panel-summary .panel-footer,
    .bottom-summary-active .panel-order-summary .panel-footer {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Payment gateway single column */
    .payment-gateway-selector {
        grid-template-columns: 1fr;
    }
    
    /* Layout controls hidden on mobile */
    .order-layout-controls {
        display: none;
    }
}

/* ============================================================
   PART 2 - Smart Order Form Features
   ============================================================ */

/* ===== 16. HORIZONTAL PACKAGES ===== */
.layout-horizontal .package {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    margin-bottom: 16px;
}
.layout-horizontal .package-side-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 24px;
}
.layout-horizontal .package-side-right {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid rgba(0,0,0,0.06);
    padding: 24px;
    background: rgba(0,0,0,0.01);
}
.layout-horizontal .package-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.layout-horizontal .package-title {
    font-size: 20px;
    margin: 0;
}
.layout-horizontal .package-price {
    text-align: right;
}
.layout-horizontal .package-body { flex: 1; }
.layout-horizontal .package-footer { border-top: none; }
.layout-horizontal .package-features {
    columns: 2;
    column-gap: 24px;
}
.layout-horizontal .package-features li {
    break-inside: avoid;
    margin-bottom: 6px;
}

/* ===== 17. PACKAGE SLIDER ===== */
.package-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -8px;
    padding: 0 8px;
}
.package-slider-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.package-slider-track > [class*="col-"] {
    flex: 0 0 calc(33.333% - 12px);
    max-width: calc(33.333% - 12px);
}
@media (max-width: 991px) {
    .package-slider-track > [class*="col-"] {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
}
@media (max-width: 767px) {
    .package-slider-track > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.package-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    font-size: 18px;
    color: #007bff;
}
.package-slider-btn:hover {
    background: #007bff;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.25);
}
.package-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.package-slider-btn.prev { left: -4px; }
.package-slider-btn.next { right: -4px; }
.package-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.package-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}
.package-slider-dot.active {
    background: #007bff;
    width: 24px;
    border-radius: 4px;
}

/* ===== 18. PRODUCTS NAVIGATION TABS ===== */
.products-nav-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    margin-bottom: 24px;
    border-bottom: 2px solid rgba(0,0,0,0.06);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.products-nav-tab {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(0,0,0,0.5);
    cursor: pointer;
    border: none;
    background: transparent;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.products-nav-tab:hover {
    color: #007bff;
    text-decoration: none;
    background: rgba(0, 123, 255, 0.04);
    border-radius: 6px 6px 0 0;
}
.products-nav-tab.active {
    color: #007bff;
    border-bottom-color: #007bff;
}
.products-nav-tab i { font-size: 14px; }

/* ===== 19. BOTTOM SUMMARY ===== */
.bottom-summary-active .panel-summary,
.bottom-summary-active .panel-order-summary {
    position: fixed !important;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto !important;
    max-height: none !important;
    z-index: 1000;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.12);
    margin: 0;
    padding: 16px 24px;
    overflow: hidden;
}
.bottom-summary-active .panel-summary .panel-body,
.bottom-summary-active .panel-order-summary .panel-body { display: none; }
.bottom-summary-active .panel-summary .panel-footer,
.bottom-summary-active .panel-order-summary .panel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: none;
    padding: 0;
    background: transparent;
}
.bottom-summary-active .panel-summary .price,
.bottom-summary-active .panel-order-summary .price { margin: 0; }
.bottom-summary-active .panel-summary .summary-actions,
.bottom-summary-active .panel-order-summary .summary-actions { flex: 0 0 auto; }
.bottom-summary-active .main-content { padding-bottom: 120px; }

.summary-position-toggle {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.2s ease;
    font-size: 18px;
    color: #007bff;
}
.summary-position-toggle:hover {
    background: #007bff;
    color: #fff;
}

/* ===== 20. SIMPLIFIED SUMMARY ===== */
.simplified-summary .panel-summary .summary-list,
.simplified-summary .panel-order-summary .summary-list { display: none; }
.simplified-summary .panel-summary .summary-item .subname,
.simplified-summary .panel-order-summary .summary-item .subname { display: none; }
.simplified-summary .panel-summary .summary-item-addon,
.simplified-summary .panel-order-summary .summary-item-addon { display: none; }
.simplified-summary .panel-summary .summary-item-tax,
.simplified-summary .panel-order-summary .summary-item-tax { display: none; }

.summary-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: rgba(0,0,0,0.4);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
}
.summary-toggle-btn:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.05);
}

/* ===== 21. DOMAIN SPOTLIGHTS ===== */
.domain-spotlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0;
}
.domain-spotlight-item {
    flex: 1 1 120px;
    min-width: 120px;
    max-width: 180px;
    padding: 16px 12px;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    text-align: center;
    transition: all 0.25s ease;
    cursor: pointer;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.domain-spotlight-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.domain-spotlight-item:hover {
    border-color: rgba(0, 123, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.domain-spotlight-item:hover::before { transform: scaleX(1); }
.domain-spotlight-tld {
    font-size: 18px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 4px;
}
.domain-spotlight-price {
    font-size: 13px;
    color: rgba(0,0,0,0.6);
}
.domain-spotlight-price .price-amount { font-weight: 600; }
.domain-spotlight-badge {
    position: absolute;
    top: 8px; right: 8px;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    background: #28a745;
    color: #fff;
    text-transform: uppercase;
}

/* ===== 22. GATEWAY ICONS ENHANCEMENT ===== */
.payment-gateway-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin: 16px 0;
}
.payment-gateway-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}
.payment-gateway-option:hover {
    border-color: rgba(0, 123, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.payment-gateway-option.selected {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.03);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.08);
}
.payment-gateway-option input[type="radio"] { margin: 0; flex-shrink: 0; }
.payment-gateway-option-icon {
    width: 40px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.payment-gateway-option-icon img,
.payment-gateway-option-icon svg { max-width: 100%; max-height: 100%; }
.payment-gateway-option-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(0,0,0,0.7);
    flex: 1; min-width: 0;
}
.payment-gateway-option.selected .payment-gateway-option-label { color: #007bff; }

/* ===== 23. TWO STEPS ORDER ===== */
.two-steps-order .main-sidebar { display: none; }
.two-steps-order .main-content {
    width: 100%; max-width: 100%; flex: 0 0 100%;
}
.two-steps-order .sidebar-categories-collapsed {
    display: block; margin-bottom: 16px;
}

/* ===== 24. LAYOUT TOGGLE CONTROLS ===== */
.order-layout-controls {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 16px;
    padding: 8px 0;
}
.order-layout-btn {
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(0,0,0,0.4);
    font-size: 16px;
}
.order-layout-btn:hover {
    border-color: rgba(0, 123, 255, 0.25);
    color: #007bff;
}
.order-layout-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

/* ===== 25. CONFIG DISPLAY TYPES ===== */
.config-display-radio-box .radio {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    margin: 4px;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    min-width: 120px;
    transition: all 0.2s ease;
}
.config-display-radio-box .radio input { margin: 0 0 8px 0; }
.config-display-radio-box .radio label { font-size: 12px; font-weight: 600; }
.config-display-radio-box .radio:has(input:checked) {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.08);
}
.config-display-product-box .radio {
    display: flex;
    flex-direction: column;
    padding: 16px;
    margin-bottom: 8px;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    transition: all 0.2s ease;
}
.config-display-product-box .radio:has(input:checked) {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.03);
}
.config-display-product-box .radio label { font-weight: 600; margin-bottom: 4px; }

/* ===== 26. MOBILE ===== */
@media (max-width: 767px) {
    .layout-horizontal .package { flex-direction: column; }
    .layout-horizontal .package-side-right {
        flex: 0 0 auto;
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.06);
        padding: 16px;
    }
    .layout-horizontal .package-features { columns: 1; }
    .products-nav-tabs { flex-wrap: nowrap; overflow-x: auto; }
    .bottom-summary-active .panel-summary .panel-footer,
    .bottom-summary-active .panel-order-summary .panel-footer {
        flex-direction: column; gap: 8px;
    }
    .payment-gateway-selector { grid-template-columns: 1fr; }
    .order-layout-controls { display: none; }
}

/* ===== 27. PAYMENT GATEWAYS - panel-check structure ===== */
/* Make panel-check gateways visible as cards */
#paymentGatewaysContainer .panel-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

#paymentGatewaysContainer .panel.panel-check {
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    margin: 0;
    transition: all 0.2s ease;
    cursor: pointer;
    overflow: hidden;
}

#paymentGatewaysContainer .panel.panel-check:hover {
    border-color: rgba(0, 123, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

#paymentGatewaysContainer .panel.panel-check.checked {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.03);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.08);
}

#paymentGatewaysContainer .panel-check .panel-heading {
    padding: 14px 16px;
    margin: 0;
    border: none;
    background: transparent;
}

/* Show the label content - override the display:none */
#paymentGatewaysContainer .panel-check .panel-heading label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin: 0;
    cursor: pointer;
}

#paymentGatewaysContainer .panel-check .check-content {
    display: block;
}

#paymentGatewaysContainer .panel-check .check-content span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(0,0,0,0.7);
}

#paymentGatewaysContainer .panel-check.checked .check-content span {
    color: #007bff;
}

/* Gateway icon styling */
#paymentGatewaysContainer .panel-check .check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 26px;
    flex-shrink: 0;
}

#paymentGatewaysContainer .panel-check .check-icon img,
#paymentGatewaysContainer .panel-check .check-icon svg {
    max-width: 100%;
    max-height: 100%;
}

#paymentGatewaysContainer .panel-check .check-icon i {
    font-size: 20px;
    color: #007bff;
}

/* Mobile: single column */
@media (max-width: 767px) {
    #paymentGatewaysContainer .panel-group {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   PART 3 - Theme fixes for Futuristic (dark) + Progress steps
   ============================================================ */

/* ===== 28. PROGRESS STEPS - non-reached steps dimmed ===== */
.order-progress-step {
    opacity: 0.4;
}

.order-progress-step.active,
.order-progress-step.completed {
    opacity: 1;
}

/* ===== 29. DARK THEME (futuristic) ADAPTATIONS ===== */
/* Use CSS that adapts to dark backgrounds */
.lagom-futuristic .order-progress-step {
    color: rgba(255,255,255,0.4);
}
.lagom-futuristic .order-progress-step.active {
    color: #4dabf7;
}
.lagom-futuristic .order-progress-step.completed {
    color: #51cf66;
}
.lagom-futuristic .order-progress-step-number {
    border-color: currentColor;
}
.lagom-futuristic .order-progress-step.active .order-progress-step-number {
    background: #4dabf7;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(77, 171, 247, 0.2);
}
.lagom-futuristic .order-progress-step.completed .order-progress-step-number {
    background: #51cf66;
    color: #fff;
    border-color: #51cf66;
}
.lagom-futuristic .order-progress-divider {
    background: rgba(255,255,255,0.1);
}
.lagom-futuristic .order-progress-divider.completed {
    background: #51cf66;
}

/* ===== 30. GATEWAY CARDS - dark theme ===== */
.lagom-futuristic #paymentGatewaysContainer .panel.panel-check {
    border-color: rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

.lagom-futuristic #paymentGatewaysContainer .panel.panel-check:hover {
    border-color: rgba(77, 171, 247, 0.3);
    background: rgba(77, 171, 247, 0.05);
}

.lagom-futuristic #paymentGatewaysContainer .panel.panel-check.checked {
    border-color: #4dabf7;
    background: rgba(77, 171, 247, 0.08);
    box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.12);
}

.lagom-futuristic #paymentGatewaysContainer .panel-check .check-content span {
    color: rgba(255,255,255,0.7);
}

.lagom-futuristic #paymentGatewaysContainer .panel-check.checked .check-content span {
    color: #4dabf7;
}

.lagom-futuristic #paymentGatewaysContainer .panel-check .check-icon i {
    color: #4dabf7;
}

/* ===== 31. PRODUCT CARDS - dark theme ===== */
.lagom-futuristic .package {
    border-color: rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
}

.lagom-futuristic .package:hover {
    border-color: rgba(77, 171, 247, 0.25);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3), 0 4px 8px rgba(0,0,0,0.2);
}

.lagom-futuristic .package-featured {
    border-color: rgba(77, 171, 247, 0.3);
}

/* ===== 32. CYCLE PILLS - dark theme ===== */
.lagom-futuristic .cycle-pill {
    border-color: rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.7);
}

.lagom-futuristic .cycle-pill:hover {
    border-color: rgba(77, 171, 247, 0.3);
    background: rgba(77, 171, 247, 0.05);
    color: #4dabf7;
}

.lagom-futuristic .cycle-pill.active {
    background: #4dabf7;
    border-color: #4dabf7;
    color: #fff;
}

/* ===== 33. PRODUCTS NAV TABS - dark theme ===== */
.lagom-futuristic .products-nav-tab {
    color: rgba(255,255,255,0.4);
}

.lagom-futuristic .products-nav-tab:hover {
    color: #4dabf7;
    background: rgba(77, 171, 247, 0.05);
}

.lagom-futuristic .products-nav-tab.active {
    color: #4dabf7;
    border-bottom-color: #4dabf7;
}

.lagom-futuristic .products-nav-tabs {
    border-bottom-color: rgba(255,255,255,0.08);
}

/* ===== 34. LAYOUT TOGGLE - dark theme ===== */
.lagom-futuristic .order-layout-btn {
    border-color: rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.4);
}

.lagom-futuristic .order-layout-btn:hover {
    border-color: rgba(77, 171, 247, 0.25);
    color: #4dabf7;
}

.lagom-futuristic .order-layout-btn.active {
    background: #4dabf7;
    border-color: #4dabf7;
    color: #fff;
}

/* ===== 35. SLIDER - dark theme ===== */
.lagom-futuristic .package-slider-btn {
    background: rgba(30,30,40,0.9);
    border-color: rgba(255,255,255,0.1);
    color: #4dabf7;
}

.lagom-futuristic .package-slider-btn:hover {
    background: #4dabf7;
    color: #fff;
}

.lagom-futuristic .package-slider-dot {
    background: rgba(255,255,255,0.15);
}

.lagom-futuristic .package-slider-dot.active {
    background: #4dabf7;
}

/* ===== 36. DOMAIN SPOTLIGHTS - dark theme ===== */
.lagom-futuristic .domain-spotlight-item {
    border-color: rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

.lagom-futuristic .domain-spotlight-item:hover {
    border-color: rgba(77, 171, 247, 0.3);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.lagom-futuristic .domain-spotlight-tld {
    color: #4dabf7;
}

.lagom-futuristic .domain-spotlight-price {
    color: rgba(255,255,255,0.5);
}

/* ===== 37. TOAST - dark theme ===== */
.lagom-futuristic .cart-toast-success {
    background: #2f9e44;
}

.lagom-futuristic .cart-toast-error {
    background: #e03131;
}

.lagom-futuristic .cart-toast-info {
    background: #0c8599;
}

/* ===== 38. SUMMARY TOGGLE - dark theme ===== */
.lagom-futuristic .summary-position-toggle {
    background: rgba(30,30,40,0.9);
    border-color: rgba(255,255,255,0.1);
    color: #4dabf7;
}

.lagom-futuristic .summary-position-toggle:hover {
    background: #4dabf7;
    color: #fff;
}

.lagom-futuristic .summary-toggle-btn {
    color: rgba(255,255,255,0.4);
}

.lagom-futuristic .summary-toggle-btn:hover {
    color: #4dabf7;
    background: rgba(77, 171, 247, 0.05);
}

/* ===== 39. CONFIG OPTIONS - dark theme ===== */
.lagom-futuristic .config-option-group .radio,
.lagom-futuristic .config-option-group .checkbox {
    border-color: rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
}

.lagom-futuristic .config-option-group .radio:hover,
.lagom-futuristic .config-option-group .checkbox:hover {
    border-color: rgba(77, 171, 247, 0.25);
    background: rgba(77, 171, 247, 0.03);
}

.lagom-futuristic .config-option-group .radio:has(input:checked),
.lagom-futuristic .config-option-group .checkbox:has(input:checked) {
    border-color: #4dabf7;
    background: rgba(77, 171, 247, 0.05);
}

/* ===== 40. QUICK CART POPUP - dark theme ===== */
.lagom-futuristic .quick-cart-popup {
    background: rgba(30,30,40,0.98);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.3);
}

.lagom-futuristic .quick-cart-popup-header {
    border-bottom-color: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
}

.lagom-futuristic .quick-cart-item {
    border-bottom-color: rgba(255,255,255,0.04);
}

.lagom-futuristic .quick-cart-item:hover {
    background: rgba(255,255,255,0.03);
}

.lagom-futuristic .quick-cart-item-name {
    color: rgba(255,255,255,0.9);
}

.lagom-futuristic .quick-cart-item-desc {
    color: rgba(255,255,255,0.4);
}

.lagom-futuristic .quick-cart-item-price {
    color: #4dabf7;
}

.lagom-futuristic .quick-cart-item-icon {
    background: rgba(77, 171, 247, 0.1);
    color: #4dabf7;
}

.lagom-futuristic .quick-cart-popup-empty {
    color: rgba(255,255,255,0.4);
}

.lagom-futuristic .quick-cart-popup-footer {
    border-top-color: rgba(255,255,255,0.08);
}
