/*
 * Alpha Host - Order Form Custom CSS (Lagom Style)
 * Applies to standard_cart and hosti_cart (child)
 */

/* ===== Base ===== */
#order-standard_cart {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== Progress Steps ===== */
.progress-steps {
    display: flex;
    align-items: center;
    gap: 0;
}

.progress-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.progress-steps .step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    background: #e8ecf1;
    color: #a0aec0;
    transition: all 0.3s ease;
}

.progress-steps .step.active .step-circle {
    background: #5d78ff;
    color: #fff;
    box-shadow: 0 4px 12px rgba(93, 120, 255, 0.3);
}

.progress-steps .step.completed .step-circle {
    background: #2ecc71;
    color: #fff;
}

.progress-steps .step-label {
    font-size: 11px;
    font-weight: 500;
    color: #a0aec0;
    white-space: nowrap;
}

.progress-steps .step.active .step-label {
    color: #5d78ff;
    font-weight: 600;
}

.progress-steps .step.completed .step-label {
    color: #2ecc71;
}

.progress-steps .step-line {
    width: 40px;
    height: 2px;
    background: #e8ecf1;
    margin: 0 8px;
    margin-bottom: 20px;
}

/* ===== Product Header Card ===== */
.bg-gradient-primary {
    background: linear-gradient(135deg, #5d78ff 0%, #4a63e0 100%) !important;
}

.product-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    backdrop-filter: blur(4px);
}

.pattern-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 200px;
    opacity: 0.1;
    background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.3) 0%, transparent 70%);
}

/* ===== Configuration Sections ===== */
.configuration-section {
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.section-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 6px;
}

.section-header h3 i,
.section-header h3 .text-primary {
    color: #5d78ff !important;
}

.section-header p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* ===== Billing Cycle Grid ===== */
.billing-cycle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.cycle-card {
    display: block;
    background: #f7f8fc;
    border: 2px solid #e8ecf1;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.cycle-card:hover {
    border-color: rgba(93, 120, 255, 0.3);
    background: #fff;
    box-shadow: 0 4px 12px rgba(93, 120, 255, 0.08);
}

input[type="radio"]:checked + .cycle-card {
    border-color: #5d78ff;
    background: #eef1ff;
    box-shadow: 0 4px 16px rgba(93, 120, 255, 0.15);
}

.cycle-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
    display: block;
}

.cycle-suffix {
    font-size: 12px;
    color: #a0aec0;
}

.cycle-price {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
}

input[type="radio"]:checked + .cycle-card .cycle-price {
    color: #5d78ff;
}

.cycle-features {
    margin-top: 10px;
}

.cycle-features .feature-item {
    font-size: 12px;
    color: #64748b;
    padding: 3px 0;
}

.cycle-features .feature-item i {
    color: #5d78ff;
    font-size: 10px;
}

.cycle-badge .badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
    background: #eef1ff;
    color: #5d78ff;
}

.cycle-badge .badge.bg-success {
    background: #eafaf1 !important;
    color: #2ecc71 !important;
}

.cycle-selected-indicator {
    display: none;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #5d78ff;
}

input[type="radio"]:checked + .cycle-card .cycle-selected-indicator {
    display: block;
}

/* ===== Config Option Cards ===== */
.config-option-card {
    border: 1px solid #e8ecf1 !important;
    border-radius: 10px !important;
    transition: all 0.2s ease;
}

.config-option-card:hover {
    border-color: rgba(93, 120, 255, 0.2) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.config-option-card .form-label {
    font-size: 13px;
    font-weight: 600;
    color: #1a202c;
}

.config-option-card .form-select,
.config-option-card .form-control {
    border: 1px solid #e8ecf1;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.config-option-card .form-select:focus,
.config-option-card .form-control:focus {
    border-color: #5d78ff;
    box-shadow: 0 0 0 3px rgba(93, 120, 255, 0.1);
}

/* ===== Billing Cycle - Hide tick, colorize selected ===== */

/* Hide ALL iCheck elements on billing cycle */
.billing-cycle-grid .iradio_square-blue,
.billing-cycle-grid .icheckbox_square-blue,
.billing-cycle-item .iradio_square-blue,
.billing-cycle-item .icheckbox_square-blue,
.alpha-billing-grid .iradio_square-blue,
.alpha-billing-grid .icheckbox_square-blue,
.alpha-cycle-card .iradio_square-blue,
.alpha-cycle-card .icheckbox_square-blue,
#order-standard_cart .iradio_square-blue,
#order-standard_cart .icheckbox_square-blue,
.iradio_square-blue,
.icheckbox_square-blue {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    position: absolute !important;
    visibility: hidden !important;
}

/* Hide native radio too */
.alpha-cycle-card input[type="radio"],
.alpha-billing-grid input[type="radio"],
input[name="billingcycle"] {
    display: none !important;
    opacity: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Selected billing card - filled gradient */
.alpha-cycle-card input:checked + .alpha-cycle-inner {
    background: linear-gradient(135deg, #6366f1, #4f46e5) !important;
    border-color: #6366f1 !important;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3) !important;
    transform: translateY(-2px);
}

.alpha-cycle-card input:checked + .alpha-cycle-inner .alpha-cycle-name,
.alpha-cycle-card input:checked + .alpha-cycle-inner .alpha-cycle-price {
    color: #fff !important;
}

.alpha-cycle-card input:checked + .alpha-cycle-inner .alpha-cycle-badge {
    background: rgba(255,255,255,0.25) !important;
    color: #fff !important;
}

/* Non-selected cards */
.alpha-cycle-inner {
    background: #fff !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    transition: all 0.25s ease !important;
}

.alpha-cycle-card:hover .alpha-cycle-inner {
    border-color: #a5b4fc !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1) !important;
}

/* ===== Order Summary - Complete Redesign ===== */

/* Summary card container */
#orderSummary,
.summary-card,
.alpha-summary-card,
.alpha-configure-sidebar .card {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important;
}

/* Summary header */
#orderSummary .card-header,
.summary-card .card-header,
.alpha-summary-header,
.alpha-configure-sidebar .card-header {
    background: #1a1a2e !important;
    color: #fff !important;
    padding: 14px 18px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 0 !important;
}

#orderSummary .card-header *,
.alpha-summary-header * {
    color: #fff !important;
}

/* Kill ALL purple gradients inside producttotal */
#producttotal,
#producttotal * {
    background-image: none !important;
}

#producttotal {
    padding: 0 !important;
    background: #fff !important;
}

/* Product name banner - replace purple gradient with clean style */
#producttotal > div:first-child,
#producttotal > .card:first-child,
#producttotal > [class*="product"],
#producttotal > [class*="bg-"],
#producttotal > [style*="gradient"],
#producttotal > [style*="background"] {
    background: #f8f9fa !important;
    background-image: none !important;
    color: #1a1a2e !important;
    padding: 14px 18px !important;
    border-bottom: 1px solid #eee !important;
    border-radius: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

#producttotal > div:first-child *,
#producttotal > [style*="gradient"] *,
#producttotal > [style*="background"] * {
    color: #1a1a2e !important;
    background: none !important;
    background-image: none !important;
    text-shadow: none !important;
}

/* Hide the icon/image in product banner */
#producttotal img,
#producttotal svg {
    display: none !important;
}

/* Line items section */
#producttotal table,
#producttotal .summary-totals {
    width: 100% !important;
    padding: 16px 18px !important;
    background: #fff !important;
}

#producttotal td {
    padding: 7px 0 !important;
    font-size: 13px !important;
    color: #4b5563 !important;
    vertical-align: top !important;
    background: none !important;
}

#producttotal td:last-child {
    text-align: right !important;
    font-weight: 600 !important;
    color: #111827 !important;
}

#producttotal strong,
#producttotal b {
    color: #111827 !important;
    font-weight: 600 !important;
}

#producttotal hr {
    border: none !important;
    border-top: 1px solid #f0f0f0 !important;
    margin: 10px 0 !important;
    background: none !important;
}

/* Total Due Today - CLEAN, no gradient */
#producttotal > div:last-child,
#producttotal [class*="total"],
#producttotal [class*="Total"],
#producttotal [class*="due"],
#producttotal .well,
#producttotal .panel,
#producttotal .panel-footer,
#producttotal > div[style*="gradient"],
#producttotal > div[style*="background"]:last-of-type {
    background: #f8f9fa !important;
    background-image: none !important;
    color: #111827 !important;
    padding: 16px 18px !important;
    border-top: 1px solid #eee !important;
    border-radius: 0 !important;
    margin: 0 !important;
    text-align: center !important;
    box-shadow: none !important;
    border: none !important;
    border-top: 1px solid #eee !important;
}

#producttotal > div:last-child *,
#producttotal [class*="total"] *,
#producttotal [class*="Total"] *,
#producttotal [class*="due"] *,
#producttotal > div[style*="gradient"]:last-of-type *,
#producttotal > div[style*="background"]:last-of-type * {
    color: #111827 !important;
    background: none !important;
    background-image: none !important;
    text-shadow: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* The price number in total */
#producttotal .h2,
#producttotal .h3,
#producttotal h2,
#producttotal h3 {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #111827 !important;
    margin: 6px 0 0 !important;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
}

/* "Total Due Today" text */
#producttotal small,
#producttotal .text-muted,
#producttotal p {
    color: #6b7280 !important;
    font-size: 12px !important;
    background: none !important;
}

/* Red/colored tax amounts */
#producttotal .text-danger,
#producttotal [style*="color: red"],
#producttotal [style*="color:red"] {
    color: #dc2626 !important;
}

/* Continue button */
#btnCompleteProductConfig,
.alpha-continue-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 13px !important;
    background: #1a1a2e !important;
    background-image: none !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

#btnCompleteProductConfig:hover,
.alpha-continue-btn:hover {
    background: #2d2d44 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
}

/* Summary footer */
#orderSummary .card-footer,
.alpha-summary-footer,
.alpha-configure-sidebar .card-footer {
    padding: 14px 18px !important;
    border-top: 1px solid #f0f0f0 !important;
    background: #fff !important;
}

/* ===== Buttons ===== */
.modern-configure .btn-primary,
.modern-configure .btn-default,
#order-standard_cart .btn-primary {
    background: #5d78ff;
    border-color: #5d78ff;
    color: #fff;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s ease;
}

.modern-configure .btn-primary:hover,
#order-standard_cart .btn-primary:hover {
    background: #4a63e0;
    border-color: #4a63e0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(93, 120, 255, 0.3);
}

#order-standard_cart .btn-success {
    background: #2ecc71;
    border-color: #2ecc71;
    border-radius: 8px;
    font-weight: 600;
}

#order-standard_cart .btn-success:hover {
    background: #27ae60;
    transform: translateY(-1px);
}

/* ===== Alerts ===== */
#order-standard_cart .alert {
    border-radius: 10px;
    border: none;
    padding: 16px 20px;
}

/* ===== Form Controls ===== */
#order-standard_cart .form-control,
#order-standard_cart .custom-select,
#order-standard_cart .form-select {
    border: 1px solid #e8ecf1;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: #4a5568;
    transition: all 0.2s ease;
}

#order-standard_cart .form-control:focus,
#order-standard_cart .custom-select:focus,
#order-standard_cart .form-select:focus {
    border-color: #5d78ff;
    box-shadow: 0 0 0 3px rgba(93, 120, 255, 0.1);
}

/* ===== Cards ===== */
#order-standard_cart .card {
    border-radius: 12px;
    border: 1px solid #e8ecf1;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

#order-standard_cart .card-header {
    background: #fff;
    border-bottom: 1px solid #f0f3f8;
    padding: 16px 20px;
    font-weight: 600;
}

#order-standard_cart .card-body {
    padding: 20px;
}

/* ===== Sidebar ===== */
#order-standard_cart .cart-sidebar .card {
    border-radius: 12px;
    overflow: hidden;
}

#order-standard_cart .cart-sidebar .card-header {
    background: #f7f8fc;
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
}

#order-standard_cart .cart-sidebar .list-group-item {
    border: none;
    border-bottom: 1px solid #f0f3f8;
    padding: 11px 20px;
    font-size: 13px;
    color: #4a5568;
    transition: all 0.2s ease;
}

#order-standard_cart .cart-sidebar .list-group-item:hover {
    background: #eef1ff;
    color: #5d78ff;
    padding-left: 24px;
}

#order-standard_cart .cart-sidebar .list-group-item.active {
    background: #5d78ff;
    color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .billing-cycle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .progress-steps {
        display: none;
    }
}

@media (max-width: 767px) {
    .billing-cycle-grid {
        grid-template-columns: 1fr;
    }
    
    #order-standard_cart .cart-sidebar {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }
    
    #order-standard_cart .cart-body {
        width: 100%;
        float: none;
    }
    
    .configuration-section {
        padding: 18px;
    }
}


/* ===== View Cart Page - Complete Redesign ===== */

/* Cart header - remove gradient */
#order-standard_cart .cart-header,
#order-standard_cart .cart-header.enhanced,
.lagom-cart .cart-header {
    background: #fff !important;
    background-image: none !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 14px !important;
    padding: 22px 26px !important;
    margin-bottom: 24px !important;
    box-shadow: none !important;
}

#order-standard_cart .cart-header h1 {
    color: #111827 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
}

#order-standard_cart .cart-header .text-muted,
#order-standard_cart .cart-header p,
#order-standard_cart .cart-header small {
    color: #6b7280 !important;
}

/* Step circles */
#order-standard_cart .step-circle {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: #f3f4f6 !important;
    color: #9ca3af !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 14px !important;
}

#order-standard_cart .step.active .step-circle {
    background: #111827 !important;
    color: #fff !important;
}

#order-standard_cart .step-label {
    font-size: 10px !important;
    color: #9ca3af !important;
}

#order-standard_cart .step.active .step-label {
    color: #111827 !important;
    font-weight: 600 !important;
}

#order-standard_cart .step-line {
    color: #d1d5db !important;
    font-size: 10px !important;
}

/* Progress steps - align properly */
#order-standard_cart .progress-steps,
#order-standard_cart .progress-steps.enhanced {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
}

#order-standard_cart .progress-steps .step {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    min-width: 70px !important;
}

#order-standard_cart .progress-steps .step-line {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 18px !important;
}

/* Cart items */
#order-standard_cart .cart-item {
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    margin-bottom: 12px !important;
}

#order-standard_cart .product-icon {
    width: 38px !important;
    height: 38px !important;
    background: #f3f4f6 !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #6366f1 !important;
    font-size: 14px !important;
}

/* Section header */
#order-standard_cart .cart-section-header {
    background: #f9fafb !important;
    border: 1px solid #f3f4f6 !important;
    border-radius: 8px !important;
    padding: 10px 16px !important;
}

/* Promo tabs */
#order-standard_cart .enhanced-tabs {
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    box-shadow: none !important;
}

#order-standard_cart .tabs-header {
    background: #f9fafb !important;
    border-bottom: 1px solid #e5e7eb !important;
}

#order-standard_cart .tabs-header .nav-link {
    border: none !important;
    color: #6b7280 !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
}

#order-standard_cart .tabs-header .nav-link.active {
    color: #111827 !important;
    background: #fff !important;
    border-bottom: 2px solid #111827 !important;
    font-weight: 600 !important;
}

/* Promo form */
#order-standard_cart .promo-form .btn-primary {
    background: #111827 !important;
    border: none !important;
    border-radius: 8px !important;
}

/* Empty cart button */
#order-standard_cart #btnEmptyCart {
    background: #fff !important;
    border: 1px solid #fecaca !important;
    color: #dc2626 !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

/* ORDER SUMMARY */
#order-standard_cart .summary-header {
    background: #111827 !important;
    background-image: none !important;
    padding: 16px 18px !important;
    border-radius: 14px 14px 0 0 !important;
}

#order-standard_cart .summary-header * {
    color: #fff !important;
    background: none !important;
    background-image: none !important;
}

#order-standard_cart .order-summary {
    border: 1px solid #e5e7eb !important;
    border-radius: 14px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important;
    overflow: hidden !important;
    background: #fff !important;
}

#order-standard_cart .order-summary *:not(.summary-header):not(.summary-header *) {
    background: transparent !important;
    background-image: none !important;
    background-color: transparent !important;
}

#order-standard_cart .order-summary .card-body,
#order-standard_cart .order-summary > div:not(.summary-header) {
    background: #fff !important;
}

#order-standard_cart .order-summary .quick-summary,
#order-standard_cart .order-summary .total-section,
#order-standard_cart .order-summary .checkout-section,
#order-standard_cart .order-summary .payment-methods,
#order-standard_cart .order-summary .security-badges {
    background: #fff !important;
}

#order-standard_cart .order-summary .summary-item span,
#order-standard_cart .order-summary .text-muted {
    color: #6b7280 !important;
}

#order-standard_cart .order-summary .fw-semibold {
    color: #111827 !important;
}

#order-standard_cart .order-summary .text-success {
    color: #059669 !important;
}

#order-standard_cart #totalDueToday {
    color: #111827 !important;
    font-size: 22px !important;
    font-weight: 800 !important;
}

#order-standard_cart .order-summary .extra-small {
    color: #9ca3af !important;
    font-size: 11px !important;
}

#order-standard_cart .order-summary .border-top {
    border-color: #f3f4f6 !important;
}

#order-standard_cart .order-summary .badge {
    background: #f3f4f6 !important;
    color: #374151 !important;
}

#order-standard_cart .checkout-btn,
#order-standard_cart .order-summary .btn-primary {
    background: #111827 !important;
    background-image: none !important;
    border: none !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 13px !important;
}

#order-standard_cart .checkout-btn:hover {
    background: #1f2937 !important;
}

/* Total */
#order-standard_cart .total-section {
    border-top: 1px solid #f3f4f6 !important;
    padding-top: 12px !important;
}

#order-standard_cart #totalDueToday {
    color: #111827 !important;
    font-size: 22px !important;
    font-weight: 800 !important;
}

/* Badges */
#order-standard_cart .bg-primary-soft {
    background: #eef2ff !important;
    color: #6366f1 !important;
}

#order-standard_cart .billing-cycle-badge {
    background: #ecfdf5 !important;
    color: #059669 !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
}

/* Action buttons */
#order-standard_cart .btn-outline-primary {
    border: 1px solid #e5e7eb !important;
    color: #6b7280 !important;
    background: #fff !important;
    border-radius: 6px !important;
}

#order-standard_cart .btn-outline-primary:hover {
    background: #eef2ff !important;
    color: #6366f1 !important;
    border-color: #c7d2fe !important;
}

#order-standard_cart .btn-outline-danger {
    border: 1px solid #fecaca !important;
    color: #dc2626 !important;
    background: #fff !important;
    border-radius: 6px !important;
}

#order-standard_cart .btn-outline-danger:hover {
    background: #fef2f2 !important;
}

/* Addon items */
#order-standard_cart .addon-item {
    background: #f9fafb !important;
}

#order-standard_cart .addon-icon {
    width: 28px !important;
    height: 28px !important;
    background: #ecfdf5 !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #059669 !important;
    font-size: 11px !important;
}

/* Recurring section */
#order-standard_cart .recurring-section {
    background: #f9fafb !important;
    border: 1px solid #f3f4f6 !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    margin: 12px 16px !important;
}

/* Help section */
#order-standard_cart .need-help-section {
    background: #f9fafb !important;
    border: 1px solid #f3f4f6 !important;
    border-radius: 10px !important;
    padding: 14px !important;
    margin: 12px 16px 16px !important;
    text-align: center !important;
}

/* Forms */
#order-standard_cart .form-control,
#order-standard_cart .form-select {
    border: 1.5px solid #e5e7eb !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
}

#order-standard_cart .form-control:focus,
#order-standard_cart .form-select:focus {
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.08) !important;
}

/* Alerts */
#order-standard_cart .alert.enhanced {
    border-radius: 10px !important;
    border: none !important;
}

#order-standard_cart .alert-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Empty cart */
#order-standard_cart .empty-cart {
    border: 1px solid #e5e7eb !important;
    border-radius: 14px !important;
    box-shadow: none !important;
}

/* Security badges */
#order-standard_cart .security-badges .badge {
    font-size: 10px !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
}

/* Sticky summary */
#order-standard_cart .sticky-summary {
    position: sticky !important;
    top: 90px !important;
}
