/**
 * NassEver Cart - Custom Styles
 * Corporate branding for order forms
 * 
 * Colors:
 * - Primary Blue: #1e5aa8
 * - Primary Dark: #184a8c
 * - Accent Orange: #ff6200
 * - Accent Dark: #e55800
 */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --ne-primary: #1e5aa8;
    --ne-primary-dark: #184a8c;
    --ne-primary-light: #2d6fc4;
    --ne-accent: #ff6200;
    --ne-accent-dark: #e55800;
    --ne-accent-light: #ff7a26;
    --ne-gray-100: #f8f9fa;
    --ne-gray-200: #e9ecef;
    --ne-gray-600: #6c757d;
    --ne-gray-800: #343a40;
    --ne-text: #374151;
    --ne-border: #e5e7eb;
    --ne-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --ne-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
#order-standard_cart {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--ne-text);
}

#order-standard_cart h1,
#order-standard_cart h2,
#order-standard_cart h3,
#order-standard_cart h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--ne-gray-800);
}

/* ========================================
   HEADER / TITLES
   ======================================== */
#order-standard_cart .header-lined h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ne-primary);
    margin-bottom: 0.5rem;
}

#order-standard_cart .header-lined p {
    color: var(--ne-gray-600);
    font-size: 1rem;
}

/* ========================================
   SIDEBAR CATEGORIES
   ======================================== */
#order-standard_cart .cart-sidebar .list-group-item {
    border: none;
    border-left: 3px solid transparent;
    padding: 12px 20px;
    font-weight: 500;
    color: var(--ne-text);
    transition: all 0.2s ease;
}

#order-standard_cart .cart-sidebar .list-group-item:hover {
    background-color: var(--ne-gray-100);
    border-left-color: var(--ne-accent);
    color: var(--ne-accent);
}

#order-standard_cart .cart-sidebar .list-group-item.active,
#order-standard_cart .cart-sidebar .list-group-item.active:hover {
    background-color: var(--ne-primary);
    border-left-color: var(--ne-accent);
    color: #fff;
}

/* ========================================
   PRODUCT CARDS - Modern Style
   ======================================== */
#order-standard_cart .products .product {
    background: #fff;
    border: 1px solid var(--ne-border);
    border-radius: 12px;
    box-shadow: var(--ne-shadow);
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

#order-standard_cart .products .product:hover {
    box-shadow: var(--ne-shadow-lg);
    transform: translateY(-2px);
}

/* Product Header */
#order-standard_cart .products .product header {
    background: linear-gradient(135deg, var(--ne-primary) 0%, var(--ne-primary-dark) 100%);
    padding: 16px 20px;
    margin: 0;
    border-radius: 0;
}

#order-standard_cart .products .product header span {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}

#order-standard_cart .products .product header .qty {
    color: rgba(255, 255, 255, 0.8);
}

/* Product Description */
#order-standard_cart .products .product div.product-desc {
    padding: 20px;
    font-size: 0.9rem;
    color: var(--ne-text);
}

#order-standard_cart .products .product div.product-desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#order-standard_cart .products .product div.product-desc ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--ne-border);
    display: flex;
    justify-content: space-between;
}

#order-standard_cart .products .product div.product-desc ul li:last-child {
    border-bottom: none;
}

#order-standard_cart .products .product span.feature-value {
    font-weight: 600;
    color: var(--ne-accent);
}

/* Product Footer/Pricing */
#order-standard_cart .products .product footer {
    background: var(--ne-gray-100);
    padding: 20px;
    margin: 0;
    width: 100%;
    float: none;
    text-align: center;
    border-top: 1px solid var(--ne-border);
}

#order-standard_cart .products .product div.product-pricing {
    margin-bottom: 15px;
}

#order-standard_cart .products .product div.product-pricing span.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ne-primary);
}

/* Setup Fee - Make it visible */
#order-standard_cart .products .product div.product-pricing small {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #92400e;
}

/* No Setup Fee indicator (optional) */
#order-standard_cart .products .product div.product-pricing .no-setup-fee {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #065f46;
}

/* ========================================
   BUTTONS
   ======================================== */
#order-standard_cart .btn-primary,
#order-standard_cart .btn-success {
    background: linear-gradient(135deg, var(--ne-accent) 0%, var(--ne-accent-dark) 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: 0 4px 14px rgba(255, 98, 0, 0.3);
    transition: all 0.3s ease;
}

#order-standard_cart .btn-primary:hover,
#order-standard_cart .btn-success:hover {
    background: linear-gradient(135deg, var(--ne-accent-dark) 0%, #cc4d00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 98, 0, 0.4);
}

#order-standard_cart .btn-primary:active,
#order-standard_cart .btn-success:active {
    transform: translateY(0);
}

#order-standard_cart .btn-default,
#order-standard_cart .btn-secondary {
    background: #fff;
    border: 2px solid var(--ne-primary);
    color: var(--ne-primary);
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#order-standard_cart .btn-default:hover,
#order-standard_cart .btn-secondary:hover {
    background: var(--ne-primary);
    color: #fff;
}

/* Order Now Button specific */
#order-standard_cart .products .product .btn,
#order-standard_cart .products .product .btn-order-now {
    background: linear-gradient(135deg, var(--ne-accent) 0%, var(--ne-accent-dark) 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 1rem;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(255, 98, 0, 0.3);
    transition: all 0.3s ease;
}

#order-standard_cart .products .product .btn:hover,
#order-standard_cart .products .product .btn-order-now:hover {
    background: linear-gradient(135deg, var(--ne-accent-dark) 0%, #cc4d00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 98, 0, 0.4);
}

/* ========================================
   ADDON PANELS
   ======================================== */
#order-standard_cart .panel-addon {
    border-radius: 12px;
    border: 1px solid var(--ne-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

#order-standard_cart .panel-addon:hover {
    box-shadow: var(--ne-shadow);
    border-color: var(--ne-primary);
}

#order-standard_cart .panel-addon .panel-add {
    background: var(--ne-accent);
}

#order-standard_cart .panel-addon-selected {
    border-color: var(--ne-primary);
}

#order-standard_cart .panel-addon-selected .panel-add {
    background: var(--ne-primary);
}

/* ========================================
   DOMAIN SEARCH
   ======================================== */
#order-standard_cart .domain-checker-container {
    background: var(--ne-gray-100);
    border-radius: 12px;
    padding: 24px;
}

#order-standard_cart .domain-checker-container input[type="text"] {
    border-radius: 8px 0 0 8px;
    border: 2px solid var(--ne-border);
    padding: 12px 16px;
    font-size: 1rem;
}

#order-standard_cart .domain-checker-container input[type="text"]:focus {
    border-color: var(--ne-primary);
    box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.1);
}

#order-standard_cart .domain-checker-container .btn {
    border-radius: 0 8px 8px 0;
}

/* Domain Results */
#order-standard_cart .domain-lookup-result {
    border-radius: 12px;
    padding: 20px;
}

#order-standard_cart .domain-lookup-result.available {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #10b981;
}

#order-standard_cart .domain-lookup-result.unavailable {
    background: var(--ne-gray-100);
    border: 1px solid var(--ne-border);
}

/* ========================================
   CART / ORDER SUMMARY
   ======================================== */
#order-standard_cart .order-summary {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--ne-shadow);
    padding: 24px;
}

#order-standard_cart .order-summary .total-due {
    background: var(--ne-primary);
    color: #fff;
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
}

#order-standard_cart .view-cart-items-header {
    background: var(--ne-primary);
    color: #fff;
    border-radius: 8px 8px 0 0;
}

/* ========================================
   CHECKOUT FORM
   ======================================== */
#order-standard_cart .form-control {
    border-radius: 8px;
    border: 2px solid var(--ne-border);
    padding: 12px 16px;
    transition: all 0.2s ease;
}

#order-standard_cart .form-control:focus {
    border-color: var(--ne-primary);
    box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.1);
}

#order-standard_cart .panel,
#order-standard_cart .card {
    border-radius: 12px;
    border: 1px solid var(--ne-border);
    box-shadow: var(--ne-shadow);
}

#order-standard_cart .panel-heading,
#order-standard_cart .card-header {
    background: var(--ne-gray-100);
    border-bottom: 1px solid var(--ne-border);
    font-weight: 600;
}

/* ========================================
   ALERTS
   ======================================== */
#order-standard_cart .alert-success {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #10b981;
    color: #065f46;
    border-radius: 8px;
}

#order-standard_cart .alert-info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid var(--ne-primary);
    color: var(--ne-primary-dark);
    border-radius: 8px;
}

#order-standard_cart .alert-warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #f59e0b;
    color: #92400e;
    border-radius: 8px;
}

#order-standard_cart .alert-danger {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #ef4444;
    color: #991b1b;
    border-radius: 8px;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 991px) {
    #order-standard_cart .products .product div.product-desc {
        width: 100%;
        float: none;
    }
    
    #order-standard_cart .products .product footer {
        width: 100%;
        float: none;
    }
}

/* ========================================
   COMPLETE PAGE
   ======================================== */
#order-standard_cart .order-complete {
    text-align: center;
    padding: 40px 20px;
}

#order-standard_cart .order-complete .fa-check-circle {
    color: #10b981;
    font-size: 4rem;
    margin-bottom: 20px;
}

#order-standard_cart .order-complete h1 {
    color: var(--ne-primary);
}

/* ========================================
   BILLING CYCLE SELECTOR - Premium Style
   ======================================== */
#order-standard_cart select,
#order-standard_cart .form-control[type="select"],
#order-standard_cart select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231e5aa8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px 9px;
    border: 2px solid var(--ne-border);
    border-radius: 8px;
    padding: 12px 36px 12px 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ne-primary);
    cursor: pointer;
    transition: all 0.25s ease;
    width: auto;
    min-width: 280px;
    max-width: 100%;
    text-align: center;
    text-align-last: center;
    line-height: 1.2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#order-standard_cart select option {
    padding: 8px 12px;
    font-weight: 500;
    color: var(--ne-text);
    text-align: center;
    direction: ltr;
}

#order-standard_cart select:hover {
    border-color: var(--ne-primary);
    box-shadow: 0 4px 12px rgba(30, 90, 168, 0.12);
}

#order-standard_cart select:focus {
    border-color: var(--ne-primary);
    box-shadow: 0 0 0 4px rgba(30, 90, 168, 0.12), 0 4px 12px rgba(30, 90, 168, 0.08);
    outline: none;
}

/* Billing cycle label */
#order-standard_cart .field-container label,
#order-standard_cart label[for*="billingcycle"],
#order-standard_cart .product-options label {
    display: block;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--ne-gray-600);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Selector container spacing */
#order-standard_cart .field-container {
    margin-bottom: 24px;
}

#order-standard_cart .field-container .form-group {
    margin-bottom: 0;
}

/* ========================================
   ORDER SUMMARY PANEL - Enhanced
   ======================================== */
#order-standard_cart .order-summary {
    background: #fff !important;
    border: 1px solid var(--ne-border) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    overflow: hidden;
    margin-bottom: 24px;
}

#order-standard_cart .order-summary h2 {
    background: linear-gradient(135deg, var(--ne-primary) 0%, var(--ne-primary-dark) 100%) !important;
    color: #fff !important;
    padding: 14px 20px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-align: center;
    margin: 0 !important;
    border-radius: 16px 16px 0 0 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#order-standard_cart .summary-container {
    background: #fff !important;
    padding: 20px !important;
    font-size: 0.85rem;
}

/* Product name in summary */
#order-standard_cart .order-summary .product-name {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--ne-primary) !important;
    margin-bottom: 2px;
    line-height: 1.3;
}

/* Product group/category */
#order-standard_cart .order-summary .product-group {
    font-size: 0.8rem !important;
    color: var(--ne-gray-600) !important;
    font-style: normal !important;
    margin-bottom: 16px !important;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--ne-border);
}

/* Summary line items */
#order-standard_cart .order-summary .line-item,
#order-standard_cart .summary-container > div.clearfix {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--ne-text);
}

#order-standard_cart .summary-container > div.clearfix .pull-left,
#order-standard_cart .summary-container > div.clearfix .float-left {
    float: none !important;
    font-size: 0.8rem;
    color: var(--ne-gray-600);
    margin-bottom: 2px;
}

#order-standard_cart .summary-container > div.clearfix .pull-right,
#order-standard_cart .summary-container > div.clearfix .float-right {
    float: none !important;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ne-primary);
}

#order-standard_cart .summary-container > div:not(:last-child) {
    border-bottom: 1px dashed #eee;
}

/* Summary totals section */
#order-standard_cart .order-summary .summary-totals {
    background: var(--ne-gray-100) !important;
    margin: 20px -20px 0 -20px !important;
    padding: 16px 20px !important;
    border-top: 1px solid var(--ne-border) !important;
    border-bottom: none !important;
}

#order-standard_cart .order-summary .summary-totals > div.clearfix {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

#order-standard_cart .order-summary .summary-totals > div.clearfix:not(:last-child) {
    border-bottom: 1px dashed #ddd;
}

#order-standard_cart .order-summary .summary-totals .pull-left,
#order-standard_cart .order-summary .summary-totals .float-left {
    float: none !important;
    font-size: 0.75rem;
    color: var(--ne-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

#order-standard_cart .order-summary .summary-totals .pull-right,
#order-standard_cart .order-summary .summary-totals .float-right {
    float: none !important;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ne-primary);
}

/* Total due today - Refined */
#order-standard_cart .order-summary .total-due-today,
#order-standard_cart .order-summary .total-due-today-padded {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: linear-gradient(135deg, var(--ne-accent) 0%, var(--ne-accent-dark) 100%) !important;
    margin: 16px -20px 0 -20px !important;
    padding: 16px 20px !important;
    text-align: center !important;
    border-radius: 0 0 16px 16px !important;
}

#order-standard_cart .order-summary .total-due-today .amt,
#order-standard_cart .order-summary .total-due-today-padded .amt {
    order: 1 !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1.2;
    margin-bottom: 4px;
}

#order-standard_cart .order-summary .total-due-today span:not(.amt),
#order-standard_cart .order-summary .total-due-today-padded span:not(.amt) {
    order: 2 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Recurring info */
#order-standard_cart .order-summary .recurring-totals,
#order-standard_cart .order-summary .recurring-charges {
    background: var(--ne-gray-100);
    padding: 12px 20px;
    margin: 0 -20px;
    font-size: 0.85rem;
    color: var(--ne-gray-600);
    text-align: center;
}

/* Import link */
#order-standard_cart .order-summary a {
    color: var(--ne-primary);
    font-weight: 500;
    font-size: 0.8rem;
}

#order-standard_cart .order-summary a:hover {
    color: var(--ne-accent);
}

/* Continue button - Outside summary panel */
#order-standard_cart .secondary-cart-sidebar > .btn,
#order-standard_cart .secondary-cart-sidebar > .btn-primary,
#order-standard_cart .secondary-cart-sidebar > .btn-success,
#order-standard_cart .secondary-cart-sidebar > a.btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--ne-accent) 0%, var(--ne-accent-dark) 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 24px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    text-transform: none !important;
    box-shadow: 0 4px 14px rgba(255, 98, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    margin-top: 0;
    text-align: center;
}

#order-standard_cart .secondary-cart-sidebar > .btn:hover,
#order-standard_cart .secondary-cart-sidebar > .btn-primary:hover,
#order-standard_cart .secondary-cart-sidebar > .btn-success:hover,
#order-standard_cart .secondary-cart-sidebar > a.btn:hover {
    background: linear-gradient(135deg, var(--ne-accent-dark) 0%, #cc4d00 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 98, 0, 0.4) !important;
}

/* Buttons inside order summary - smaller */
#order-standard_cart .order-summary .btn {
    display: inline-block;
    background: transparent !important;
    border: none !important;
    padding: 4px 0 !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    color: var(--ne-primary) !important;
    box-shadow: none !important;
    text-decoration: underline;
    margin: 0;
}

#order-standard_cart .order-summary .btn:hover {
    color: var(--ne-accent) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Main Continue/Submit button */
#order-standard_cart #btnCompleteProductConfig,
#order-standard_cart #orderSummary > .text-center > .btn,
#order-standard_cart .btn-lg.btn-primary {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 280px;
    background: linear-gradient(135deg, var(--ne-accent) 0%, var(--ne-accent-dark) 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 28px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    text-transform: none !important;
    box-shadow: 0 4px 14px rgba(255, 98, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    margin-top: 16px;
}

#order-standard_cart #btnCompleteProductConfig:hover,
#order-standard_cart #orderSummary > .text-center > .btn:hover,
#order-standard_cart .btn-lg.btn-primary:hover {
    background: linear-gradient(135deg, var(--ne-accent-dark) 0%, #cc4d00 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 98, 0, 0.4) !important;
}

/* ========================================
   CONFIGURE PRODUCT PAGE
   ======================================== */
#order-standard_cart .product-info {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--ne-shadow);
}

#order-standard_cart .product-info .product-title {
    color: var(--ne-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

#order-standard_cart .product-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#order-standard_cart .product-info ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--ne-border);
    color: var(--ne-text);
}

#order-standard_cart .product-info ul li:last-child {
    border-bottom: none;
}

/* Configuration sections */
#order-standard_cart .sub-heading,
#order-standard_cart h4.sub-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ne-gray-800);
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--ne-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Server configuration inputs */
#order-standard_cart .server-config input[type="text"],
#order-standard_cart input[name*="hostname"],
#order-standard_cart input[name*="rootpw"],
#order-standard_cart input[name*="ns1prefix"],
#order-standard_cart input[name*="ns2prefix"] {
    border: 2px solid var(--ne-border);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

#order-standard_cart .server-config input[type="text"]:focus,
#order-standard_cart input[name*="hostname"]:focus,
#order-standard_cart input[name*="rootpw"]:focus {
    border-color: var(--ne-primary);
    box-shadow: 0 0 0 4px rgba(30, 90, 168, 0.15);
    outline: none;
}

/* Help/Contact box */
#order-standard_cart .alert-info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid var(--ne-primary);
    border-left: 4px solid var(--ne-primary);
    border-radius: 8px;
    padding: 16px 20px;
}

#order-standard_cart .alert-info a {
    color: var(--ne-primary);
    font-weight: 600;
}

#order-standard_cart .alert-info a:hover {
    color: var(--ne-accent);
}
