/**
 * EskHosting Order Form Stylesheet (eskhosting_cart)
 * Comprehensive modern styling for all ordering workflows
 */

:root {
    --esk-color-bg: #FFFFFF;
    --esk-color-surface: rgba(255, 255, 255, 0.96);
    --esk-color-border: #E2E8F0;
    --esk-color-border-hover: #CBD5E1;
    --esk-color-text: #0F172A;
    --esk-color-text-muted: #64748B;
    --esk-color-primary: #E93D5D;
    --esk-color-primary-hover: #D62848;
    --esk-gradient-primary: linear-gradient(135deg, #E93D5D 0%, #FF4F79 100%);
    --esk-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --esk-font-heading: '"Plus Jakarta Sans"', -apple-system, BlinkMacSystemFont, sans-serif;
    --esk-radius-sm: 6px;
    --esk-radius-md: 10px;
    --esk-radius-lg: 16px;
    --esk-radius-xl: 20px;
    --esk-shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --esk-shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --esk-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --esk-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Global Order Form Layout
   ========================================================================== */
#order-standard_cart {
    font-family: var(--esk-font-sans) !important;
    color: var(--esk-color-text) !important;
    margin-top: 15px;
    margin-bottom: 40px;
}

#order-standard_cart .header-lined {
    border-bottom: 1px solid var(--esk-color-border);
    margin-bottom: 25px;
    padding-bottom: 15px;
}

#order-standard_cart .header-lined h1 {
    font-family: var(--esk-font-heading) !important;
    font-weight: 800 !important;
    color: var(--esk-color-text) !important;
    font-size: 26px !important;
    margin: 0 0 6px;
}

#order-standard_cart .header-lined p {
    color: var(--esk-color-text-muted);
    font-size: 14px;
    margin: 0;
}

/* ==========================================================================
   Sidebar Categories
   ========================================================================== */
#order-standard_cart .cart-sidebar .panel {
    border: 1px solid var(--esk-color-border) !important;
    border-radius: var(--esk-radius-lg) !important;
    box-shadow: var(--esk-shadow-sm) !important;
    overflow: hidden;
    margin-bottom: 25px;
}

#order-standard_cart .cart-sidebar .panel-heading {
    background: #F8FAFC !important;
    border-bottom: 1px solid var(--esk-color-border) !important;
    padding: 14px 18px !important;
}

#order-standard_cart .cart-sidebar .panel-title {
    font-family: var(--esk-font-heading) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    color: var(--esk-color-text) !important;
}

#order-standard_cart .cart-sidebar .list-group-item {
    font-family: var(--esk-font-heading);
    font-weight: 600;
    font-size: 13.5px;
    color: #334155;
    padding: 12px 18px;
    border: none;
    border-bottom: 1px solid #F1F5F9;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#order-standard_cart .cart-sidebar .list-group-item:last-child {
    border-bottom: none;
}

#order-standard_cart .cart-sidebar .list-group-item:hover {
    background-color: #F8FAFC;
    color: var(--esk-color-primary);
    padding-left: 22px;
}

#order-standard_cart .cart-sidebar .list-group-item.active,
#order-standard_cart .cart-sidebar .list-group-item.active:hover {
    background: var(--esk-gradient-primary) !important;
    border-color: transparent !important;
    color: #FFFFFF !important;
    font-weight: 700;
}

#order-standard_cart .cart-sidebar .list-group-item.active .badge {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #FFFFFF !important;
}

/* ==========================================================================
   Horizontal Split Product Pricing Cards (2 per line)
   Left: Features & Info | Right: Pricing & Order Button
   ========================================================================== */
.esk-products-list {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -10px !important;
    margin-right: -10px !important;
}

.esk-product-col {
    padding-left: 10px !important;
    padding-right: 10px !important;
    margin-bottom: 20px !important;
    display: flex !important;
}

#order-standard_cart .products .product.esk-product-horizontal {
    background: #FFFFFF !important;
    border: 1px solid var(--esk-color-border) !important;
    border-radius: var(--esk-radius-lg) !important;
    box-shadow: var(--esk-shadow-xs) !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    min-height: auto !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible !important;
}

#order-standard_cart .products .product.esk-product-horizontal:hover {
    border-color: var(--esk-color-border-hover) !important;
    box-shadow: var(--esk-shadow-lg) !important;
    transform: translateY(-2px);
}

#order-standard_cart .products .product.esk-product-horizontal.featured {
    border: 2px solid var(--esk-color-primary) !important;
    box-shadow: 0 8px 25px rgba(233, 61, 93, 0.15) !important;
}

.esk-featured-badge {
    background: var(--esk-gradient-primary);
    color: #FFFFFF;
    font-family: var(--esk-font-heading);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    padding: 5px 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--esk-radius-lg) var(--esk-radius-lg) 0 0;
}

.esk-product-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

/* Left Column: Product Info & Features */
.esk-product-left {
    flex: 1 1 58%;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.esk-product-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.esk-product-name {
    font-family: var(--esk-font-heading) !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--esk-color-text) !important;
    margin: 0 !important;
}

#order-standard_cart .products .product .qty {
    font-size: 10.5px;
    font-weight: 700;
    background: #ECFDF5;
    color: #059669;
    padding: 2px 7px;
    border-radius: 9999px;
    border: 1px solid #A7F3D0;
}

.esk-product-description {
    color: var(--esk-color-text-muted);
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 12px;
}

.esk-product-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;
}

.esk-product-features li {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 12.5px !important;
    color: #334155 !important;
    padding: 0 !important;
    border: none !important;
}

.esk-product-features li::before {
    display: none !important;
}

.esk-product-features li i {
    color: var(--esk-color-primary) !important;
    font-size: 13px !important;
    flex-shrink: 0;
}

.esk-product-features .feature-value {
    font-weight: 700 !important;
    color: var(--esk-color-text) !important;
}

.esk-product-features .feature-name {
    color: var(--esk-color-text-muted);
}

/* Right Column: Pricing & Order CTA */
.esk-product-right {
    flex: 0 0 175px;
    width: 175px;
    padding: 20px 16px;
    background: #F8FAFC;
    border-left: 1px solid var(--esk-color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

.esk-product-right .product-pricing {
    margin-bottom: 0 !important;
    width: 100%;
    text-align: center;
}

.esk-pricing-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--esk-color-text-muted);
    margin-bottom: 2px;
}

/* Dual Pricing (Monthly & Annually) */
.esk-dual-pricing {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    margin-bottom: 4px;
}

.esk-dual-price-item {
    background: #FFFFFF;
    border: 1px solid var(--esk-color-border);
    border-radius: var(--esk-radius-md);
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    transition: all 0.2s ease;
}

.esk-dual-price-item:hover {
    border-color: var(--esk-color-border-hover);
}

.esk-dual-price-item.esk-price-annually {
    background: #FFF5F7;
    border-color: rgba(233, 61, 93, 0.25);
}

.esk-price-tag-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--esk-color-text-muted);
}

.esk-dual-price-item.esk-price-annually .esk-price-tag-label {
    color: var(--esk-color-primary);
}

.esk-price-tag-value {
    font-family: var(--esk-font-heading);
    font-size: 13.5px;
    font-weight: 800;
    color: var(--esk-color-text);
}

.esk-dual-price-item.esk-price-annually .esk-price-tag-value {
    color: var(--esk-color-primary);
}

.esk-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    flex-wrap: wrap;
}

.esk-product-right .product-pricing .price {
    font-family: var(--esk-font-heading) !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    color: var(--esk-color-text) !important;
    line-height: 1.1;
    display: inline-block;
}

.esk-product-right .product-pricing .cycle {
    font-size: 12px !important;
    color: var(--esk-color-text-muted) !important;
    font-weight: 600;
}

.esk-product-right .product-pricing .setup-fee {
    display: block;
    font-size: 11px;
    color: var(--esk-color-text-muted);
    margin-top: 2px;
}

.esk-order-btn-wrap {
    width: 100%;
    margin-top: 4px;
}

/* Order Now Button - Full Visibility & No Clipping */
#order-standard_cart .btn-order-now,
.btn-order-now {
    background: var(--esk-gradient-primary) !important;
    border: none !important;
    border-radius: var(--esk-radius-md) !important;
    color: #FFFFFF !important;
    font-family: var(--esk-font-heading) !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    padding: 12px 20px !important;
    min-height: 44px !important;
    height: auto !important;
    width: 100% !important;
    box-shadow: 0 4px 14px rgba(233, 61, 93, 0.3) !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
}

#order-standard_cart .btn-order-now:hover,
.btn-order-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(233, 61, 93, 0.4) !important;
    color: #FFFFFF !important;
}

/* ==========================================================================
   Product Configuration (configureproduct.tpl)
   ========================================================================== */
#order-standard_cart .product-info {
    background: #FFFFFF;
    border: 1px solid var(--esk-color-border);
    border-radius: var(--esk-radius-lg);
    padding: 20px 24px;
    box-shadow: var(--esk-shadow-xs);
    margin-bottom: 20px;
}

#order-standard_cart .product-info .product-title {
    font-family: var(--esk-font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--esk-color-text);
    margin-bottom: 6px;
}

#order-standard_cart .field-container {
    background: #FFFFFF;
    border: 1px solid var(--esk-color-border);
    border-radius: var(--esk-radius-lg);
    padding: 20px 24px;
    margin-bottom: 20px;
    box-shadow: var(--esk-shadow-xs);
}

.esk-section-label {
    font-family: var(--esk-font-heading) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    color: var(--esk-color-text) !important;
    margin-bottom: 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

/* Interactive Billing Cycle Grid & Tiles */
.esk-billing-cycles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.esk-cycle-card {
    background: #FFFFFF;
    border: 2px solid var(--esk-color-border);
    border-radius: var(--esk-radius-md);
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    user-select: none;
}

.esk-cycle-card:hover {
    border-color: var(--esk-color-border-hover);
    background: #FAFAFA;
    transform: translateY(-2px);
    box-shadow: var(--esk-shadow-sm);
}

.esk-cycle-card.active {
    border-color: var(--esk-color-primary) !important;
    background: #FFF5F7 !important;
    box-shadow: 0 0 0 1px var(--esk-color-primary), 0 4px 12px rgba(233, 61, 93, 0.15) !important;
}

.esk-cycle-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #CBD5E1;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
    background: #FFFFFF;
}

.esk-cycle-card.active .esk-cycle-radio {
    border-color: var(--esk-color-primary);
    background: var(--esk-color-primary);
}

.esk-cycle-card.active .esk-cycle-radio::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.esk-cycle-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.esk-cycle-name {
    font-family: var(--esk-font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--esk-color-text);
}

.esk-cycle-card.active .esk-cycle-name {
    color: var(--esk-color-primary);
}

.esk-cycle-price {
    font-family: var(--esk-font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--esk-color-text-muted);
}

.esk-cycle-card.active .esk-cycle-price {
    color: var(--esk-color-text);
    font-weight: 700;
}

.esk-cycle-badge {
    position: absolute;
    top: -10px;
    right: 12px;
    background: var(--esk-gradient-primary);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 2px 8px;
    border-radius: 9999px;
    box-shadow: 0 2px 6px rgba(233, 61, 93, 0.3);
}

#order-standard_cart .sub-heading {
    height: auto !important;
    border-top: none !important;
    border-bottom: 1.5px solid var(--esk-color-border) !important;
    text-align: left !important;
    margin: 32px 0 20px !important;
    padding-bottom: 8px !important;
    display: block !important;
    position: relative !important;
}

#order-standard_cart .sub-heading span,
#order-standard_cart .sub-heading-borderless span {
    position: static !important;
    top: 0 !important;
    padding: 0 0 6px 0 !important;
    font-family: var(--esk-font-heading) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    color: var(--esk-color-text) !important;
    background: transparent !important;
    display: inline-block !important;
    border-bottom: 2.5px solid var(--esk-color-primary) !important;
    margin-bottom: -9.5px !important;
}

#order-standard_cart .addon-products .panel {
    border: 1px solid var(--esk-color-border) !important;
    border-radius: var(--esk-radius-lg) !important;
    box-shadow: var(--esk-shadow-xs) !important;
    transition: all 0.2s ease;
    margin-bottom: 16px;
}

#order-standard_cart .addon-products .panel:hover {
    border-color: var(--esk-color-border-hover);
    box-shadow: var(--esk-shadow-md);
}

#order-standard_cart .addon-products .panel-heading {
    background: #F8FAFC !important;
    border-bottom: 1px solid var(--esk-color-border) !important;
    padding: 14px 18px !important;
}

/* ==========================================================================
   Domain Selection & Configuration (configureproductdomain.tpl, domainregister.tpl)
   ========================================================================== */
#order-standard_cart .domain-selection-options {
    background: #FFFFFF;
    border: 1px solid var(--esk-color-border);
    border-radius: var(--esk-radius-lg);
    padding: 0;
    box-shadow: var(--esk-shadow-xs);
    margin-bottom: 25px;
    overflow: hidden;
}

#order-standard_cart .domain-selection-options .option {
    border-bottom: 1px solid #F1F5F9;
    padding: 18px 24px;
    transition: background 0.2s ease;
}

#order-standard_cart .domain-selection-options .option:last-child {
    border-bottom: none;
}

#order-standard_cart .domain-selection-options .option:hover {
    background: #FAFAFA;
}

#order-standard_cart .domain-selection-options label {
    font-family: var(--esk-font-heading);
    font-weight: 700;
    font-size: 14.5px;
    color: var(--esk-color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

#order-standard_cart .domain-selection-options label input[type="radio"] {
    margin: 0;
    accent-color: var(--esk-color-primary);
    width: 16px;
    height: 16px;
}

#order-standard_cart .domain-input-group {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed #E2E8F0;
}

#order-standard_cart .domain-input-group .domains-row {
    margin: 0;
}

#order-standard_cart .domain-input-group .input-group-addon {
    background: #F8FAFC !important;
    border: 1px solid var(--esk-color-border) !important;
    border-right: none !important;
    border-radius: var(--esk-radius-md) 0 0 var(--esk-radius-md) !important;
    font-weight: 700;
    color: var(--esk-color-text-muted);
    padding: 0 16px;
}

#order-standard_cart .domain-input-group .form-control {
    border: 1px solid var(--esk-color-border) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    height: 46px !important;
}

#order-standard_cart .domain-input-group select.form-control {
    background: #F8FAFC !important;
    border-left: none !important;
    border-radius: 0 var(--esk-radius-md) var(--esk-radius-md) 0 !important;
    font-weight: 700 !important;
    color: var(--esk-color-text) !important;
    cursor: pointer;
}

#order-standard_cart .domain-input-group button[type="submit"] {
    background: var(--esk-gradient-primary) !important;
    border: none !important;
    border-radius: var(--esk-radius-md) !important;
    color: #FFFFFF !important;
    font-family: var(--esk-font-heading) !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    height: 46px !important;
    box-shadow: 0 4px 14px rgba(233, 61, 93, 0.3) !important;
    transition: all 0.2s ease !important;
}

#order-standard_cart .domain-input-group button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(233, 61, 93, 0.4) !important;
}

/* Domain Search Results */
#searchDomainInfo {
    margin: 25px 0;
}

#primaryLookupSearching {
    background: #FFFFFF;
    border: 1px solid var(--esk-color-border);
    border-radius: var(--esk-radius-lg);
    padding: 30px;
    text-align: center;
    font-family: var(--esk-font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--esk-color-primary);
    box-shadow: var(--esk-shadow-sm);
}

#primaryLookupResult {
    background: #FFFFFF;
    border: 1px solid var(--esk-color-border);
    border-radius: var(--esk-radius-lg);
    padding: 24px 28px;
    box-shadow: var(--esk-shadow-md);
    margin: 20px 0;
}

#order-standard_cart .domain-available {
    color: #059669 !important;
    font-family: var(--esk-font-heading) !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    margin-bottom: 8px;
}

#order-standard_cart .domain-unavailable {
    color: #DC2626 !important;
    font-family: var(--esk-font-heading) !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    margin-bottom: 8px;
}

#order-standard_cart .domain-price {
    font-size: 14px;
    color: var(--esk-color-text-muted);
    margin: 12px 0 16px;
}

#order-standard_cart .domain-price .price {
    font-family: var(--esk-font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--esk-color-primary);
    display: inline-block;
    margin-left: 6px;
}

/* ==========================================================================
   Spotlight TLDs (Domain Search & Configuration)
   ========================================================================== */
#spotlightTlds,
.spotlight-tlds {
    background: transparent !important;
    padding: 0 !important;
    margin: 24px 0 28px !important;
    border: none !important;
    width: 100% !important;
}

.spotlight-tlds-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(135px, 1fr)) !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

.spotlight-tld-container,
.spotlight-tld-container-1,
.spotlight-tld-container-2,
.spotlight-tld-container-3,
.spotlight-tld-container-4,
.spotlight-tld-container-5,
.spotlight-tld-container-6,
.spotlight-tld-container-7,
.spotlight-tld-container-8 {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.spotlight-tld {
    position: relative !important;
    background: #FFFFFF !important;
    border: 1px solid var(--esk-color-border) !important;
    border-radius: var(--esk-radius-md) !important;
    padding: 16px 12px 14px !important;
    text-align: center !important;
    font-family: var(--esk-font-heading) !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    color: var(--esk-color-text) !important;
    height: auto !important;
    min-height: 140px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
    overflow: visible !important;
    box-shadow: var(--esk-shadow-xs) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.spotlight-tld:hover {
    border-color: var(--esk-color-primary) !important;
    box-shadow: 0 10px 22px -4px rgba(233, 61, 93, 0.16) !important;
    transform: translateY(-3px) !important;
}

/* Modern floating pill badges */
.spotlight-tld-new,
.spotlight-tld-sale,
.spotlight-tld-hot {
    position: absolute !important;
    top: -9px !important;
    right: 8px !important;
    left: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
    -webkit-transform: none !important;
    padding: 2.5px 8px !important;
    font-family: var(--esk-font-heading) !important;
    font-size: 9.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    border-radius: 999px !important;
    color: #FFFFFF !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
    z-index: 5 !important;
    line-height: 1.2 !important;
}

.spotlight-tld-new {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
}

.spotlight-tld-sale {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
}

.spotlight-tld-hot {
    background: linear-gradient(135deg, #EF4444 0%, #E93D5D 100%) !important;
}

/* Spinner / Loader during search */
.spotlight-tld .domain-lookup-spotlight-loader {
    margin: 10px 0 !important;
    color: var(--esk-color-primary) !important;
    font-size: 18px !important;
    line-height: 1 !important;
    padding: 6px 0 !important;
    text-align: center !important;
}

/* Spotlight Result Area */
.spotlight-tld .domain-lookup-result {
    width: 100% !important;
    margin-top: auto !important;
    padding-top: 6px !important;
}

/* Price */
.spotlight-tld .price,
.spotlight-tld span.available {
    font-family: var(--esk-font-heading) !important;
    font-size: 13.5px !important;
    font-weight: 800 !important;
    color: var(--esk-color-primary) !important;
    margin: 4px 0 8px !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}

/* Add to Cart Button */
.spotlight-tld .btn-add-to-cart {
    background: var(--esk-gradient-primary) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: var(--esk-radius-sm) !important;
    font-family: var(--esk-font-heading) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 7px 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-shadow: 0 2px 6px rgba(233, 61, 93, 0.25) !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.3 !important;
}

.spotlight-tld .btn-add-to-cart span {
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
    padding: 0 !important;
}

.spotlight-tld .btn-add-to-cart:hover {
    background: linear-gradient(135deg, #D62848 0%, #E93D5D 100%) !important;
    box-shadow: 0 4px 10px rgba(233, 61, 93, 0.4) !important;
    transform: translateY(-1px) !important;
    color: #FFFFFF !important;
}

.spotlight-tld .btn-add-to-cart.checkout,
.spotlight-tld .btn-add-to-cart.added {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.25) !important;
    color: #FFFFFF !important;
}

/* Unavailable / Invalid State */
.spotlight-tld button.unavailable,
.spotlight-tld button.invalid {
    margin: 4px 0 0 !important;
    background: #F1F5F9 !important;
    border: 1px solid #E2E8F0 !important;
    color: #94A3B8 !important;
    border-radius: var(--esk-radius-sm) !important;
    font-family: var(--esk-font-sans) !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    padding: 6px 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    cursor: not-allowed !important;
    text-align: center !important;
    line-height: 1.3 !important;
    box-shadow: none !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Contact Support State */
.spotlight-tld button.domain-contact-support {
    margin: 4px 0 0 !important;
    background: #3B82F6 !important;
    border: none !important;
    color: #FFFFFF !important;
    border-radius: var(--esk-radius-sm) !important;
    font-family: var(--esk-font-heading) !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    padding: 6px 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    line-height: 1.3 !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.spotlight-tld button.domain-contact-support:hover {
    background: #2563EB !important;
    color: #FFFFFF !important;
}

@media (max-width: 767px) {
    .spotlight-tlds-container {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)) !important;
        gap: 10px !important;
    }
    .spotlight-tld {
        padding: 14px 8px 12px !important;
        font-size: 17px !important;
        min-height: 130px !important;
    }
    .spotlight-tld .price,
    .spotlight-tld span.available {
        font-size: 12.5px !important;
    }
}

/* Suggested Domains Panel */
.suggested-domains {
    background: #FFFFFF;
    border: 1px solid var(--esk-color-border);
    border-radius: var(--esk-radius-lg);
    box-shadow: var(--esk-shadow-sm);
    margin: 25px 0;
    overflow: hidden;
}

.suggested-domains .panel-heading,
.suggested-domains .card-header {
    background: #F8FAFC !important;
    border-bottom: 1px solid var(--esk-color-border) !important;
    font-family: var(--esk-font-heading) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    color: var(--esk-color-text) !important;
    padding: 14px 20px !important;
}

.suggested-domains .domain-suggestion {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 20px !important;
    border-bottom: 1px solid #F1F5F9 !important;
}

.suggested-domains .domain-suggestion .domain {
    font-weight: 700;
    font-size: 14px;
    color: var(--esk-color-text);
}

.suggested-domains .domain-suggestion .price {
    font-family: var(--esk-font-heading);
    font-weight: 800;
    color: var(--esk-color-text);
    margin-right: 12px;
    font-size: 14px;
}

.suggested-domains .domain-suggestion .btn-add-to-cart {
    background: #F1F5F9 !important;
    color: var(--esk-color-text) !important;
    border: 1px solid var(--esk-color-border) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    border-radius: var(--esk-radius-sm) !important;
    padding: 6px 14px !important;
    transition: all 0.2s ease !important;
}

.suggested-domains .domain-suggestion .btn-add-to-cart:hover {
    background: var(--esk-gradient-primary) !important;
    color: #FFFFFF !important;
    border-color: transparent !important;
}

/* Domain Continue Button */
#btnDomainContinue {
    background: var(--esk-gradient-primary) !important;
    border: none !important;
    border-radius: var(--esk-radius-md) !important;
    color: #FFFFFF !important;
    font-family: var(--esk-font-heading) !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    padding: 14px 36px !important;
    box-shadow: 0 6px 18px rgba(233, 61, 93, 0.3) !important;
    transition: all 0.2s ease !important;
    margin: 20px auto 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#btnDomainContinue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(233, 61, 93, 0.4) !important;
}

/* ==========================================================================
   View Cart Items & Review (viewcart.tpl)
   ========================================================================== */
#order-standard_cart .view-cart-items-header {
    background: #F8FAFC;
    border: 1px solid var(--esk-color-border);
    border-radius: var(--esk-radius-md) var(--esk-radius-md) 0 0;
    padding: 12px 18px;
    font-family: var(--esk-font-heading);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--esk-color-text-muted);
}

#order-standard_cart .view-cart-items .item {
    background: #FFFFFF;
    border: 1px solid var(--esk-color-border);
    border-top: none;
    padding: 18px 20px;
    transition: background 0.15s ease;
}

#order-standard_cart .view-cart-items .item:last-child {
    border-radius: 0 0 var(--esk-radius-md) var(--esk-radius-md);
    margin-bottom: 25px;
}

#order-standard_cart .view-cart-items .item:hover {
    background: #F8FAFC;
}

#order-standard_cart .view-cart-items .item .item-title {
    font-family: var(--esk-font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--esk-color-text);
}

#order-standard_cart .view-cart-items .item .item-price {
    font-family: var(--esk-font-heading);
    font-weight: 800;
    font-size: 16px;
    color: var(--esk-color-text);
}

#order-standard_cart .view-cart-items .item .btn-remove-from-cart {
    color: #DC2626 !important;
    font-size: 12px;
    font-weight: 600;
}

/* ==========================================================================
   Order Summary & Floating Checkout Sidebar (ordersummary.tpl, checkout.tpl)
   ========================================================================== */
#order-standard_cart .order-summary {
    background: #FFFFFF;
    border: 1px solid var(--esk-color-border);
    border-radius: var(--esk-radius-lg);
    box-shadow: var(--esk-shadow-md);
    padding: 24px;
    margin-bottom: 25px;
    position: sticky;
    top: 20px;
}

#order-standard_cart .order-summary h2 {
    font-family: var(--esk-font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--esk-color-text);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--esk-color-border);
}

#order-standard_cart .order-summary .total-due-today,
#order-standard_cart .total-due-today {
    font-family: var(--esk-font-heading);
    margin: 16px 0 10px;
    text-align: right;
}

#order-standard_cart .order-summary .total-due-today .amt,
#order-standard_cart .total-due-today .amt {
    display: block;
    font-size: 24px !important;
    font-weight: 800 !important;
    color: var(--esk-color-primary) !important;
    line-height: 1.2;
}

#order-standard_cart .order-summary .total-due-today span:not(.amt),
#order-standard_cart .total-due-today span:not(.amt) {
    display: block;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: var(--esk-color-text-muted) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Checkout Alert Total Due Today (checkout.tpl) */
#order-standard_cart #totalDueToday.alert {
    background: #F8FAFC !important;
    border: 1px solid var(--esk-color-border) !important;
    border-left: 4px solid var(--esk-color-primary) !important;
    border-radius: var(--esk-radius-md) !important;
    color: var(--esk-color-text) !important;
    font-family: var(--esk-font-heading);
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 14px 20px !important;
    margin: 20px 0 25px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#order-standard_cart #totalDueToday #totalCartPrice {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: var(--esk-color-primary) !important;
    letter-spacing: -0.2px;
}

#order-standard_cart .btn-checkout {
    background: var(--esk-gradient-primary) !important;
    border: none !important;
    border-radius: var(--esk-radius-md) !important;
    color: #FFFFFF !important;
    font-family: var(--esk-font-heading) !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    padding: 14px 24px !important;
    box-shadow: 0 6px 18px rgba(233, 61, 93, 0.3) !important;
    transition: all 0.2s ease !important;
    width: 100%;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#order-standard_cart .btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(233, 61, 93, 0.4) !important;
}

/* ==========================================================================
   Checkout & Payment Method Selector (checkout.tpl)
   ========================================================================== */

/* Top bar: Already Registered / Create Account */
#order-standard_cart .already-registered {
    background: #F8FAFC;
    border: 1px solid var(--esk-color-border);
    border-radius: var(--esk-radius-md);
    padding: 14px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

#order-standard_cart .already-registered p {
    margin: 0;
    font-size: 13.5px;
    color: var(--esk-color-text-muted);
    font-weight: 500;
}

#order-standard_cart #btnAlreadyRegistered,
#order-standard_cart #btnNewUserSignup {
    margin: 0;
    border-radius: var(--esk-radius-md);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 18px;
    border: none;
    transition: all 0.2s ease;
}

#order-standard_cart #btnAlreadyRegistered {
    background: var(--esk-color-primary);
    color: #FFFFFF;
}

#order-standard_cart #btnAlreadyRegistered:hover {
    background: var(--esk-color-primary-dark);
    transform: translateY(-1px);
}

#order-standard_cart #btnNewUserSignup {
    background: #475569;
    color: #FFFFFF;
}

#order-standard_cart #btnNewUserSignup:hover {
    background: #334155;
    transform: translateY(-1px);
}

/* Account Switcher for Existing Multi-Accounts */
#order-standard_cart .account-select-container {
    margin: 15px -8px 25px;
    border: none !important;
}

#order-standard_cart .account-select-container .account {
    background: #FFFFFF;
    border: 1.5px solid var(--esk-color-border) !important;
    border-radius: var(--esk-radius-md) !important;
    padding: 16px 18px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

#order-standard_cart .account-select-container .account:hover {
    border-color: var(--esk-color-primary) !important;
    background: #FFFBFB !important;
}

#order-standard_cart .account-select-container .account.active {
    border-color: var(--esk-color-primary) !important;
    background: rgba(233, 61, 93, 0.04) !important;
    box-shadow: 0 0 0 1.5px rgba(233, 61, 93, 0.2) !important;
}

#order-standard_cart .account-select-container .account label.radio-inline {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Prepend Icons & Form Controls */
#order-standard_cart .form-group {
    margin-bottom: 18px;
}

#order-standard_cart .prepend-icon {
    position: relative;
    display: block;
    width: 100%;
}

#order-standard_cart .prepend-icon .field-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    pointer-events: none;
}

#order-standard_cart .prepend-icon .field-icon i {
    color: #94A3B8;
    font-size: 14px;
    transition: color 0.2s ease;
}

#order-standard_cart .prepend-icon:focus-within .field-icon i {
    color: var(--esk-color-primary);
}

#order-standard_cart .form-control,
#order-standard_cart .field.form-control {
    border: 1px solid var(--esk-color-border) !important;
    border-radius: var(--esk-radius-md) !important;
    box-shadow: none !important;
    font-size: 13.5px !important;
    padding: 10px 14px !important;
    height: auto !important;
    min-height: 44px !important;
    color: var(--esk-color-text) !important;
    background-color: #FFFFFF !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#order-standard_cart .prepend-icon .field.form-control:not([type="tel"]),
#order-standard_cart .prepend-icon select.field.form-control {
    padding-left: 44px !important;
}

/* Telephone & intl-tel-input integration */
#order-standard_cart .prepend-icon label[for="inputPhone"],
#order-standard_cart .prepend-icon label[for="inputDCPhone"],
#order-standard_cart .prepend-icon:has(input[type="tel"]) .field-icon {
    display: none !important;
}

#order-standard_cart .intl-tel-input,
#order-standard_cart .iti {
    display: block !important;
    width: 100% !important;
    position: relative !important;
}

#order-standard_cart .intl-tel-input .flag-container,
#order-standard_cart .iti__flag-container {
    z-index: 5 !important;
    border-radius: var(--esk-radius-md) 0 0 var(--esk-radius-md) !important;
}

#order-standard_cart .intl-tel-input .selected-flag,
#order-standard_cart .iti__selected-flag {
    padding: 0 8px 0 12px !important;
    border-radius: var(--esk-radius-md) 0 0 var(--esk-radius-md) !important;
}

#order-standard_cart .intl-tel-input input[type="tel"],
#order-standard_cart .iti input[type="tel"],
#order-standard_cart input[type="tel"].field.form-control,
#order-standard_cart .prepend-icon input[type="tel"].field.form-control {
    padding-left: 96px !important;
    width: 100% !important;
}

#order-standard_cart .intl-tel-input .country-list,
#order-standard_cart .iti__country-list {
    z-index: 9999 !important;
    border-radius: var(--esk-radius-md) !important;
    border: 1px solid var(--esk-color-border) !important;
    box-shadow: var(--esk-shadow-lg) !important;
    font-family: var(--esk-font-base) !important;
    font-size: 13px !important;
}

#order-standard_cart .form-control:focus,
#order-standard_cart .field.form-control:focus {
    border-color: var(--esk-color-primary) !important;
    box-shadow: 0 0 0 3px rgba(233, 61, 93, 0.15) !important;
    outline: none !important;
}

#order-standard_cart select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 14px !important;
    padding-right: 38px !important;
}

/* Password & Strength Meter */
#order-standard_cart .generate-password {
    background: #F1F5F9 !important;
    border: 1px solid var(--esk-color-border) !important;
    border-radius: var(--esk-radius-md) !important;
    color: var(--esk-color-text) !important;
    font-weight: 700 !important;
    font-size: 12.5px !important;
    padding: 8px 16px !important;
    transition: all 0.2s ease !important;
    margin-bottom: 12px;
}

#order-standard_cart .generate-password:hover {
    background: #E2E8F0 !important;
}

#order-standard_cart .password-strength-meter .progress {
    height: 8px;
    border-radius: 4px;
    background-color: #E2E8F0;
    box-shadow: none;
    margin-bottom: 6px;
    overflow: hidden;
}

#order-standard_cart #passwordStrengthTextLabel {
    font-size: 12px;
    font-weight: 600;
}

/* Payment Gateways Selection (checkout.tpl) */
#order-standard_cart #paymentGatewaysContainer {
    margin: 20px 0 25px;
}

#order-standard_cart #paymentGatewaysContainer .text-center {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    text-align: left;
}

#order-standard_cart #paymentGatewaysContainer label.radio-inline {
    background: #FFFFFF;
    border: 1.5px solid var(--esk-color-border);
    border-radius: var(--esk-radius-md);
    padding: 14px 20px;
    margin: 0 !important;
    flex: 1 1 calc(33.333% - 12px);
    min-width: 180px;
    font-family: var(--esk-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--esk-color-text);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

#order-standard_cart #paymentGatewaysContainer label.radio-inline:hover {
    border-color: var(--esk-color-primary);
    background: #FFFBFB;
    transform: translateY(-1px);
    box-shadow: var(--esk-shadow-sm);
}

#order-standard_cart #paymentGatewaysContainer label.radio-inline:has(input:checked),
#order-standard_cart #paymentGatewaysContainer label.radio-inline.active {
    border-color: var(--esk-color-primary) !important;
    background: rgba(233, 61, 93, 0.05) !important;
    color: var(--esk-color-primary) !important;
    box-shadow: 0 0 0 2px rgba(233, 61, 93, 0.15) !important;
}

#order-standard_cart #paymentGatewaysContainer label.radio-inline input[type="radio"] {
    margin: 0;
    accent-color: var(--esk-color-primary);
    cursor: pointer;
}

/* Credit Card Input Container */
#order-standard_cart .cc-input-container {
    background: #FFFFFF;
    border: 1px solid var(--esk-color-border);
    border-radius: var(--esk-radius-lg);
    box-shadow: var(--esk-shadow-xs);
    padding: 24px;
    margin: 20px 0;
}

#order-standard_cart .cc-input-container ul {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

#order-standard_cart .cc-input-container ul li label {
    font-weight: 700;
    font-size: 13.5px;
    color: var(--esk-color-text);
}

#order-standard_cart .cc-input-container .input-group .btn-default {
    background: #F1F5F9;
    border: 1px solid var(--esk-color-border);
    border-left: none;
    color: var(--esk-color-text-muted);
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 0 var(--esk-radius-md) var(--esk-radius-md) 0;
}

/* Apply Credit Container */
#order-standard_cart .apply-credit-container {
    background: #F8FAFC;
    border: 1px solid var(--esk-color-border);
    border-radius: var(--esk-radius-md);
    padding: 18px 20px;
    margin: 20px 0;
}

#order-standard_cart .apply-credit-container p {
    font-family: var(--esk-font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--esk-color-text);
    margin-bottom: 10px;
}

#order-standard_cart .apply-credit-container label.radio {
    margin-bottom: 8px;
    font-size: 13.5px;
    color: var(--esk-color-text);
}

/* Complete Order Submit Button & Terms */
#order-standard_cart #btnCompleteOrder {
    background: var(--esk-gradient-primary) !important;
    border: none !important;
    border-radius: var(--esk-radius-md) !important;
    color: #FFFFFF !important;
    font-family: var(--esk-font-heading) !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    padding: 16px 44px !important;
    box-shadow: 0 8px 24px rgba(233, 61, 93, 0.35) !important;
    transition: all 0.2s ease !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

#order-standard_cart #btnCompleteOrder:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(233, 61, 93, 0.5) !important;
    color: #FFFFFF !important;
}

#order-standard_cart label.checkbox-inline {
    font-size: 13.5px;
    color: var(--esk-color-text);
    font-weight: 500;
}

#order-standard_cart label.checkbox-inline a {
    color: var(--esk-color-primary);
    font-weight: 700;
    text-decoration: underline;
}

/* SSL / Checkout Security Notice */
#order-standard_cart .checkout-security-msg {
    background: #F0FDF4 !important;
    border: 1px solid #BBF7D0 !important;
    border-radius: var(--esk-radius-md) !important;
    color: #166534 !important;
    padding: 14px 20px !important;
    margin: 30px 0 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    text-align: left !important;
}

#order-standard_cart .checkout-security-msg i {
    float: none !important;
    margin: 0 !important;
    font-size: 22px !important;
    color: #16A34A !important;
    flex-shrink: 0 !important;
}

#order-standard_cart .checkout-security-msg .checkout-security-text {
    flex: 1 1 auto;
    margin: 0;
}

#order-standard_cart .checkout-security-msg .checkout-security-text strong {
    font-weight: 700;
    color: #14532D;
}

/* Error feedback alert on checkout */
#order-standard_cart .checkout-error-feedback {
    background: #FEF2F2 !important;
    border: 1px solid #FECACA !important;
    border-left: 4px solid #EF4444 !important;
    border-radius: var(--esk-radius-md) !important;
    color: #991B1B !important;
    padding: 16px 20px !important;
    margin-bottom: 24px !important;
}

#order-standard_cart .checkout-error-feedback ul {
    margin: 8px 0 0 18px;
    padding: 0;
}

/* ==========================================================================
   Order Complete Confirmation (complete.tpl)
   ========================================================================== */
#order-standard_cart .order-complete-container {
    background: #FFFFFF;
    border: 1px solid var(--esk-color-border);
    border-radius: var(--esk-radius-xl);
    padding: 40px 30px;
    box-shadow: var(--esk-shadow-md);
    text-align: center;
    max-width: 650px;
    margin: 20px auto;
}

#order-standard_cart .order-complete-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ECFDF5;
    color: #059669;
    font-size: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

#order-standard_cart .order-number {
    font-family: var(--esk-font-heading);
    font-weight: 800;
    color: var(--esk-color-primary);
    font-size: 22px;
}

/* ==========================================================================
   Responsive Mobile Adjustments for Order Form
   ========================================================================== */
@media (max-width: 991px) {
    .esk-product-row {
        flex-direction: column;
    }

    .esk-product-left {
        flex: 1 1 100%;
        padding: 20px;
    }

    .esk-product-right {
        width: 100%;
        flex: 1 1 100%;
        border-left: none;
        border-top: 1px solid var(--esk-color-border);
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .esk-product-features {
        grid-template-columns: 1fr;
    }

    #order-standard_cart .payment-methods .btn-default {
        flex: 1 1 100%;
    }

    #order-standard_cart .order-summary {
        position: static;
    }
}

/* ==========================================================================
   Domain Configuration Page (configuredomains.tpl)
   ========================================================================== */
.domain-config-card {
    background: #FFFFFF;
    border: 1px solid var(--esk-color-border);
    border-radius: var(--esk-radius-lg);
    box-shadow: var(--esk-shadow-sm);
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.domain-config-header {
    background: #F8FAFC;
    border-bottom: 1px solid var(--esk-color-border);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.domain-title {
    font-family: var(--esk-font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--esk-color-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.domain-title i {
    color: var(--esk-color-primary);
    font-size: 19px;
}

.domain-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.badge-reg-period {
    background: #EFF6FF;
    color: #2563EB;
    font-family: var(--esk-font-heading);
    font-weight: 700;
    font-size: 12.5px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #DBEAFE;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.badge-hosting.has-hosting {
    background: #ECFDF5;
    color: #059669;
    font-family: var(--esk-font-heading);
    font-weight: 700;
    font-size: 12.5px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #A7F3D0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.badge-hosting.no-hosting {
    background: #FEF2F2;
    color: #DC2626;
    font-family: var(--esk-font-heading);
    font-weight: 700;
    font-size: 12.5px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #FECACA;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.badge-hosting.no-hosting:hover {
    background: #FEE2E2;
    color: #B91C1C;
    transform: translateY(-1px);
}

.domain-config-body {
    padding: 24px;
}

.domain-addons-heading {
    font-family: var(--esk-font-heading);
    font-size: 13.5px;
    font-weight: 800;
    color: var(--esk-color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 8px 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.domain-addons-heading i {
    color: var(--esk-color-primary);
}

/* Domain Addons Cards */
#order-standard_cart .addon-products {
    margin-right: -8px;
    margin-left: -8px;
}

#order-standard_cart .addon-products > div {
    padding-right: 8px;
    padding-left: 8px;
}

#order-standard_cart .panel-addon {
    background: #FFFFFF !important;
    border: 1.5px solid var(--esk-color-border) !important;
    border-radius: var(--esk-radius-md) !important;
    box-shadow: var(--esk-shadow-xs) !important;
    overflow: hidden !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer !important;
    height: 100% !important;
    min-height: 180px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    text-align: left !important;
    margin: 0 0 16px 0 !important;
}

#order-standard_cart .panel-addon:hover {
    border-color: var(--esk-color-primary) !important;
    box-shadow: var(--esk-shadow-md) !important;
    transform: translateY(-2px);
}

#order-standard_cart .panel-addon.panel-addon-selected {
    border-color: var(--esk-color-primary) !important;
    background: #FFF5F7 !important;
    box-shadow: 0 6px 16px rgba(233, 61, 93, 0.16) !important;
}

#order-standard_cart .panel-addon .panel-body {
    padding: 16px !important;
    flex: 1 1 auto;
    background: transparent !important;
}

.addon-checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.addon-checkbox-row .addon-name {
    font-family: var(--esk-font-heading) !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    color: var(--esk-color-text) !important;
    margin: 0 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.addon-desc {
    font-size: 12.5px;
    color: var(--esk-color-text-muted);
    margin: 0;
    line-height: 1.45;
}

#order-standard_cart .panel-addon .panel-price {
    padding: 10px 16px !important;
    background: #F8FAFC !important;
    border-top: 1px solid var(--esk-color-border) !important;
    font-family: var(--esk-font-heading) !important;
    font-weight: 800 !important;
    font-size: 13.5px !important;
    color: var(--esk-color-primary) !important;
    text-align: center !important;
}

#order-standard_cart .panel-addon.panel-addon-selected .panel-price {
    background: rgba(233, 61, 93, 0.06) !important;
    border-color: rgba(233, 61, 93, 0.2) !important;
}

#order-standard_cart .panel-addon .panel-add {
    padding: 10px 16px !important;
    background: #F1F5F9 !important;
    color: var(--esk-color-text) !important;
    font-family: var(--esk-font-heading) !important;
    font-weight: 700 !important;
    font-size: 12.5px !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    border-radius: 0 !important;
}

#order-standard_cart .panel-addon.panel-addon-selected .panel-add {
    background: var(--esk-gradient-primary) !important;
    color: #FFFFFF !important;
}

/* EPP Code Box */
.epp-code-box {
    background: #F8FAFC;
    border: 1px solid var(--esk-color-border);
    border-radius: var(--esk-radius-md);
    padding: 18px 20px;
    margin-bottom: 22px;
}

.epp-label {
    font-family: var(--esk-font-heading);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--esk-color-text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.epp-label i {
    color: var(--esk-color-primary);
}

/* Domain Custom Fields */
.domain-custom-fields {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--esk-color-border);
}

.domain-custom-fields .col-form-label {
    font-family: var(--esk-font-heading);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--esk-color-text);
}

/* Nameservers Card */
.nameservers-card {
    background: #FFFFFF;
    border: 1px solid var(--esk-color-border);
    border-radius: var(--esk-radius-lg);
    box-shadow: var(--esk-shadow-sm);
    margin: 25px 0;
    overflow: hidden;
}

.nameservers-header {
    background: #F8FAFC;
    border-bottom: 1px solid var(--esk-color-border);
    padding: 18px 24px;
}

.nameservers-title {
    font-family: var(--esk-font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--esk-color-text);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.nameservers-title i {
    color: var(--esk-color-primary);
    font-size: 18px;
}

.nameservers-desc {
    font-size: 13.5px;
    color: var(--esk-color-text-muted);
    margin: 0;
}

.nameservers-body {
    padding: 24px;
}

.ns-group {
    margin-bottom: 16px;
}

.ns-group label {
    font-family: var(--esk-font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--esk-color-text);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ns-badge {
    background: var(--esk-gradient-primary);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 4px;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.ns-group .input-group {
    display: flex;
    width: 100%;
}

.ns-group .input-group-prepend .input-group-text {
    background: #F8FAFC;
    border: 1px solid var(--esk-color-border);
    border-right: none;
    color: var(--esk-color-text-muted);
    font-size: 13px;
    border-radius: var(--esk-radius-md) 0 0 var(--esk-radius-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
}

.ns-group .form-control {
    border: 1px solid var(--esk-color-border);
    border-radius: 0 var(--esk-radius-md) var(--esk-radius-md) 0;
    height: 44px;
    font-size: 13.5px;
    padding: 10px 14px;
    transition: all 0.2s ease;
    flex: 1;
}

.ns-group .form-control:focus {
    border-color: var(--esk-color-primary);
    box-shadow: 0 0 0 3px rgba(233, 61, 93, 0.15);
    outline: none;
}

/* Continue Configuration Button */
.btn-continue-conf {
    background: var(--esk-gradient-primary) !important;
    border: none !important;
    border-radius: var(--esk-radius-md) !important;
    color: #FFFFFF !important;
    font-family: var(--esk-font-heading) !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    padding: 14px 44px !important;
    box-shadow: 0 6px 20px rgba(233, 61, 93, 0.35) !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.btn-continue-conf:hover {
    box-shadow: 0 8px 24px rgba(233, 61, 93, 0.5) !important;
    transform: translateY(-2px) !important;
    color: #FFFFFF !important;
}

