@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   HOSTIKO CART — WP-100 Design System
   All selectors use high specificity to override
   the base template override100.css
   ============================================ */

:root {
    --of-primary: #1e1b4b;
    --of-accent: #5b21b6;
    --of-accent-light: #8b5cf6;
    --of-accent-hover: #7c3aed;
    --of-gold: #f59e0b;
    --of-gold-dark: #d97706;
    --of-text: #374151;
    --of-text-light: #6b7280;
    --of-border: #e0e7ff;
    --of-bg-light: #f8f9fc;
    --of-bg-lavender: #f0ebf8;
    --of-white: #ffffff;
    --of-dark: #0f0a1e;
    --of-green: #34d399;
    --of-red: #dc2626;
    --of-radius-btn: 12px;
    --of-radius-box: 16px;
    --of-radius-sm: 8px;
    --of-shadow: 0 2px 12px rgba(91, 33, 182, 0.06);
    --of-shadow-hover: 0 8px 30px rgba(91, 33, 182, 0.12);
    --of-transition: all 0.3s ease-in-out;
}

/* ============================================
   GLOBAL LAYOUT
   ============================================ */

#order-standard_cart {
    font-family: "Inter", sans-serif;
    color: var(--of-text);
    -webkit-font-smoothing: antialiased;
}

/* Fix: override100.css centers this — we want left-aligned */
#order-standard_cart .header-lined {
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: none;
    position: relative;
}

#order-standard_cart .header-lined::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
}

#order-standard_cart .header-lined h1.font-size-36,
#order-standard_cart h1.font-size-36,
#order-standard_cart .font-size-36 {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: var(--of-primary) !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    text-align: left !important;
}

#order-standard_cart .font-size-30 {
    font-size: 24px;
    font-weight: 700;
    color: var(--of-white);
}

#order-standard_cart .font-size-24 {
    font-size: 20px;
    font-weight: 600;
    color: var(--of-primary);
}

#order-standard_cart .font-size-18 {
    font-size: 18px;
    font-weight: 600;
}

/* ============================================
   MAIN LAYOUT — sidebar + cart-body
   Bootstrap .row is flex. We just need proper widths.
   ============================================ */

#order-standard_cart > .row {
    display: flex;
    flex-wrap: wrap;
}

#order-standard_cart > .row > .cart-sidebar {
    flex: 0 0 240px;
    max-width: 240px;
    padding-right: 20px;
}

#order-standard_cart > .row > .cart-body {
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 240px);
}

/* Secondary layout (configure/viewcart two-column) */
#order-standard_cart .cart-body > .row,
#order-standard_cart .cart-body > form > .row {
    display: flex;
    flex-wrap: wrap;
}

#order-standard_cart .secondary-cart-body {
    flex: 1;
    min-width: 0;
    padding-right: 24px;
}

#order-standard_cart .secondary-cart-sidebar {
    flex: 0 0 300px;
    max-width: 300px;
}

/* ============================================
   SIDEBAR
   ============================================ */

#order-standard_cart .cart-sidebar .panel,
#order-standard_cart .cart-sidebar .card {
    background: var(--of-white) !important;
    border: none !important;
    border-radius: var(--of-radius-box) !important;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(91, 33, 182, 0.10) !important;
    margin-bottom: 20px;
}

#order-standard_cart .cart-sidebar .panel-heading,
#order-standard_cart .cart-sidebar .card-header {
    background: linear-gradient(135deg, var(--of-accent), var(--of-accent-hover)) !important;
    color: var(--of-white) !important;
    padding: 14px 18px !important;
    border: none !important;
    border-radius: 0 !important;
}

#order-standard_cart .cart-sidebar .panel-title,
#order-standard_cart .cart-sidebar .card-header h3 {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--of-white) !important;
    margin: 0 !important;
}

#order-standard_cart .cart-sidebar .panel-minimise,
#order-standard_cart .cart-sidebar .card-minimise {
    color: rgba(255,255,255,0.7) !important;
    cursor: pointer;
    transition: var(--of-transition);
}

#order-standard_cart .cart-sidebar .list-group {
    margin: 0;
}

#order-standard_cart .cart-sidebar .list-group-item {
    padding: 10px 18px !important;
    border: none !important;
    border-bottom: 1px solid var(--of-border) !important;
    border-radius: 0 !important;
    font-size: 14px;
    font-weight: 500;
    color: var(--of-text) !important;
    background: var(--of-white) !important;
    transition: var(--of-transition);
}

#order-standard_cart .cart-sidebar .list-group-item:last-child {
    border-bottom: none !important;
}

#order-standard_cart .cart-sidebar .list-group-item:hover,
#order-standard_cart .cart-sidebar .list-group-item:focus {
    background: var(--of-bg-lavender) !important;
    color: var(--of-accent) !important;
    text-decoration: none;
}

#order-standard_cart .cart-sidebar .list-group-item.active,
#order-standard_cart .cart-sidebar .list-group-item.active:hover,
#order-standard_cart .cart-sidebar .list-group-item.active:focus {
    background: var(--of-bg-lavender) !important;
    color: var(--of-accent) !important;
    border: none !important;
    border-bottom: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 10px 18px !important;
    font-weight: 700;
    position: relative;
}

#order-standard_cart .cart-sidebar .list-group-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    background: linear-gradient(135deg, var(--of-accent), var(--of-accent-hover));
    border-radius: 0 4px 4px 0;
}

#order-standard_cart .cart-sidebar .list-group-item.active a,
#order-standard_cart .cart-sidebar .list-group-item.active i {
    color: var(--of-accent) !important;
}

#order-standard_cart .cart-sidebar .list-group-item .badge {
    background: linear-gradient(135deg, var(--of-accent), var(--of-accent-hover)) !important;
    color: var(--of-white) !important;
    font-size: 11px;
    border-radius: 20px;
    padding: 3px 8px;
}

/* ============================================
   SIDEBAR COLLAPSED (Mobile)
   ============================================ */

#order-standard_cart .sidebar-collapsed {
    margin-bottom: 20px;
}

#order-standard_cart .sidebar-collapsed .card,
#order-standard_cart .sidebar-collapsed .panel {
    border: none !important;
    border-radius: var(--of-radius-box) !important;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(91, 33, 182, 0.10) !important;
    margin-bottom: 16px;
}

#order-standard_cart .sidebar-collapsed .card-header,
#order-standard_cart .sidebar-collapsed .panel-heading,
#order-standard_cart .sidebar-collapsed .panel .card-header,
#order-standard_cart .sidebar-collapsed .card .card-header,
#order-standard_cart .sidebar-collapsed .panel-heading.card-header,
.sidebar-collapsed .panel-heading.card-header {
    background: linear-gradient(135deg, var(--of-accent), var(--of-accent-hover)) !important;
    color: var(--of-white) !important;
    padding: 12px 18px !important;
    border: none !important;
    border-radius: 0 !important;
}

#order-standard_cart .sidebar-collapsed .panel-title,
#order-standard_cart .sidebar-collapsed .card-header h3,
#order-standard_cart .sidebar-collapsed h3.panel-title,
.sidebar-collapsed .panel-title,
.sidebar-collapsed h3.panel-title {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--of-white) !important;
    margin: 0 !important;
}

#order-standard_cart .sidebar-collapsed .panel-heading *,
#order-standard_cart .sidebar-collapsed .card-header *,
.sidebar-collapsed .panel-heading.card-header *,
#order-standard_cart .sidebar-collapsed .panel-title *,
#order-standard_cart .sidebar-collapsed .panel-title i,
#order-standard_cart .sidebar-collapsed .card-header i,
#order-standard_cart .sidebar-collapsed .panel-title a,
#order-standard_cart .sidebar-collapsed .card-header a,
.sidebar-collapsed .panel-title i,
.sidebar-collapsed .card-header i {
    color: var(--of-white) !important;
}

#order-standard_cart .sidebar-collapsed .panel-body,
#order-standard_cart .sidebar-collapsed .card-body {
    padding: 14px 18px !important;
}

#order-standard_cart .sidebar-collapsed .form-control,
#order-standard_cart .sidebar-collapsed .custom-select,
#order-standard_cart .sidebar-collapsed select,
.sidebar-collapsed .form-control,
.sidebar-collapsed select.form-control {
    border: 1px solid var(--of-border) !important;
    border-radius: var(--of-radius-btn) !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    height: auto !important;
    min-height: 44px !important;
    padding: 10px 36px 10px 14px !important;
    color: var(--of-text) !important;
    background-color: var(--of-white) !important;
    width: 100% !important;
    max-width: 100% !important;
    cursor: pointer;
    -webkit-text-fill-color: var(--of-text) !important;
    opacity: 1 !important;
}

#order-standard_cart .sidebar-collapsed .form-control:focus,
#order-standard_cart .sidebar-collapsed .custom-select:focus {
    border-color: var(--of-accent-light) !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
    outline: none;
}

#order-standard_cart .sidebar-collapsed .form-control option,
#order-standard_cart .sidebar-collapsed .custom-select option {
    padding: 10px 14px;
    font-size: 14px !important;
    color: var(--of-text) !important;
    background: var(--of-white) !important;
    -webkit-text-fill-color: var(--of-text) !important;
}

/* ============================================
   BUTTONS
   ============================================ */

#order-standard_cart .btn {
    border-radius: var(--of-radius-btn) !important;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    transition: var(--of-transition);
    font-size: 14px;
    letter-spacing: 0.01em;
}

#order-standard_cart .btn-primary {
    color: var(--of-white) !important;
    background: linear-gradient(135deg, var(--of-accent), var(--of-accent-hover)) !important;
    border: none !important;
    padding: 10px 22px;
}

#order-standard_cart .btn-primary:hover,
#order-standard_cart .btn-primary:focus {
    background: linear-gradient(135deg, var(--of-accent-hover), var(--of-accent-light)) !important;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.35) !important;
    transform: translateY(-1px);
}

#order-standard_cart .btn-success {
    color: var(--of-white) !important;
    background: linear-gradient(135deg, var(--of-accent), var(--of-accent-hover)) !important;
    border: none !important;
    padding: 10px 22px;
}

#order-standard_cart .products .product footer .btn-success {
    display: block !important;
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
}

#order-standard_cart .btn-success:hover,
#order-standard_cart .btn-success:focus {
    background: linear-gradient(135deg, var(--of-accent-hover), var(--of-accent-light)) !important;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.35) !important;
    transform: translateY(-1px);
}

#order-standard_cart .btn-default {
    color: var(--of-white) !important;
    background: linear-gradient(135deg, var(--of-accent), var(--of-accent-hover)) !important;
    border: none !important;
    padding: 10px 22px;
}

#order-standard_cart .btn-default:hover,
#order-standard_cart .btn-default:focus {
    background: linear-gradient(135deg, var(--of-accent-hover), var(--of-accent-light)) !important;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.35) !important;
}

#order-standard_cart .btn-info {
    color: var(--of-white) !important;
    background: linear-gradient(135deg, var(--of-accent), var(--of-accent-hover)) !important;
    border: none !important;
}

#order-standard_cart .btn-info:hover {
    background: linear-gradient(135deg, var(--of-accent-hover), var(--of-accent-light)) !important;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.35) !important;
}

#order-standard_cart .btn-warning {
    color: var(--of-white) !important;
    background: linear-gradient(135deg, var(--of-gold), var(--of-gold-dark)) !important;
    border: none !important;
}

#order-standard_cart .btn-warning:hover {
    background: linear-gradient(135deg, var(--of-gold-dark), #b45309) !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35) !important;
}

#order-standard_cart .btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
}

#order-standard_cart .btn-sm,
#order-standard_cart .btn-xs {
    padding: 6px 14px;
    font-size: 13px;
}

#order-standard_cart .btn-link {
    color: var(--of-accent) !important;
    background: none !important;
    box-shadow: none !important;
    transform: none !important;
    border: none !important;
    padding: 4px 8px;
}

#order-standard_cart .btn-link:hover {
    color: var(--of-accent-light) !important;
    text-decoration: underline;
}

#order-standard_cart .btn-block {
    display: block;
    width: 100%;
}

#order-standard_cart .btn-add-to-cart {
    background: linear-gradient(135deg, var(--of-accent), var(--of-accent-hover)) !important;
    color: var(--of-white) !important;
    border: none !important;
    border-radius: var(--of-radius-btn) !important;
    padding: 8px 18px;
}

#order-standard_cart .btn-add-to-cart:hover {
    background: linear-gradient(135deg, var(--of-accent-hover), var(--of-accent-light)) !important;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.35);
}

#order-standard_cart .btn-checkout {
    background: linear-gradient(135deg, var(--of-gold), var(--of-gold-dark)) !important;
    color: var(--of-white) !important;
    border: none !important;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
}

#order-standard_cart .btn-checkout:hover {
    background: linear-gradient(135deg, var(--of-gold-dark), #b45309) !important;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4) !important;
    transform: translateY(-2px);
}

/* ============================================
   FORM CONTROLS
   ============================================ */

#order-standard_cart .form-control {
    border: 1px solid var(--of-border) !important;
    border-radius: var(--of-radius-btn) !important;
    padding: 10px 14px;
    height: auto;
    line-height: 1.5;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    color: var(--of-text);
    transition: var(--of-transition);
    background: var(--of-white) !important;
}

#order-standard_cart select.form-control {
    height: auto;
    line-height: 1.5;
}

#order-standard_cart .form-control:focus {
    border-color: var(--of-accent-light) !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
    outline: none;
}

#order-standard_cart .form-control::placeholder {
    color: var(--of-text-light);
}

#order-standard_cart select.form-control,
#order-standard_cart .custom-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

#order-standard_cart label {
    font-size: 14px;
    font-weight: 500;
    color: var(--of-primary);
    margin-bottom: 6px;
}

#order-standard_cart .form-group {
    margin-bottom: 18px;
}

#order-standard_cart .input-group .form-control {
    border-radius: 0 !important;
}

#order-standard_cart .input-group .form-control:first-child {
    border-radius: var(--of-radius-btn) 0 0 var(--of-radius-btn) !important;
}

#order-standard_cart .input-group .form-control:last-child {
    border-radius: 0 var(--of-radius-btn) var(--of-radius-btn) 0 !important;
}

#order-standard_cart .input-group .input-group-append .btn,
#order-standard_cart .input-group .input-group-btn .btn {
    border-radius: 0 var(--of-radius-btn) var(--of-radius-btn) 0 !important;
}

#order-standard_cart .input-group-addon,
#order-standard_cart .input-group-prepend .input-group-text,
#order-standard_cart .input-group-text {
    background: var(--of-bg-lavender) !important;
    border: 1px solid var(--of-border) !important;
    border-right: none !important;
    color: var(--of-accent) !important;
    font-size: 14px;
    border-radius: var(--of-radius-btn) 0 0 var(--of-radius-btn) !important;
}

/* ============================================
   PRODUCT CARDS
   Fix: override100.css sets footer padding: 0 15px
   ============================================ */

#order-standard_cart .products .row-eq-height {
    display: flex;
    flex-wrap: wrap;
}

#order-standard_cart .products .row-eq-height > [class*="col-"] {
    display: flex;
    margin-bottom: 24px;
}

#order-standard_cart .products .product.clearfix {
    background: var(--of-white) !important;
    border: 1px solid rgba(91,33,182,0.08) !important;
    border-radius: 20px !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    transition: all 0.35s ease-in-out !important;
    box-shadow: 0 4px 24px rgba(91, 33, 182, 0.08) !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    text-align: center !important;
    position: relative !important;
}

#order-standard_cart .products .product.clearfix:hover {
    box-shadow: 0 12px 40px rgba(91, 33, 182, 0.16) !important;
    transform: translateY(-6px) !important;
    border-color: rgba(91,33,182,0.15) !important;
}

/* Header — product name */
#order-standard_cart .products .product.clearfix header {
    background: none !important;
    padding: 20px 20px 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
    border-radius: 0 !important;
    text-align: center !important;
    border: none !important;
}

#order-standard_cart .products .product.clearfix header h3 {
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: #5b21b6 !important;
    margin: 0 !important;
}

#order-standard_cart .products .product.clearfix header span {
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: #5b21b6 !important;
}

#order-standard_cart .products .product.clearfix header .qty {
    display: block !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    opacity: 0.7 !important;
    background: rgba(91, 33, 182, 0.08) !important;
    padding: 3px 10px !important;
    border-radius: 20px !important;
    margin-top: 8px !important;
    float: none !important;
}

/* Pricing — between header and features */
#order-standard_cart .products .product.clearfix .product-pricing {
    text-align: center !important;
    margin-bottom: 0 !important;
    padding: 10px 20px 14px !important;
    border-bottom: none !important;
    font-size: 13px !important;
    color: #374151 !important;
    font-weight: 400 !important;
}

/* Hide original annual price + cycle — JS replaces with monthly hero */
#order-standard_cart .products .product.clearfix .product-pricing .price,
#order-standard_cart .products .product.clearfix .product-pricing .cycle {
    display: none !important;
}

#order-standard_cart .products .product.clearfix .product-pricing small {
    display: block !important;
    margin-top: 4px !important;
    font-size: 12px !important;
    color: #9ca3af !important;
}

/* Features list */
#order-standard_cart .products .product.clearfix .product-desc {
    padding: 0 20px !important;
    flex: 1 !important;
    margin-top: 0 !important;
    text-align: left !important;
    width: 100% !important;
    float: none !important;
}

#order-standard_cart .products .product.clearfix .product-desc p {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    color: #6b7280 !important;
    margin-bottom: 8px !important;
    padding: 0 !important;
    border-bottom: none !important;
    text-align: left !important;
}

#order-standard_cart .products .product.clearfix .product-desc ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
}

#order-standard_cart .products .product.clearfix .product-desc ul li {
    padding: 5px 0 !important;
    font-size: 13.5px !important;
    line-height: 1.3 !important;
    color: #374151 !important;
    border-bottom: 1px solid rgba(91,33,182,0.04) !important;
    display: block !important;
    margin-bottom: 0 !important;
    font-weight: 400 !important;
}

#order-standard_cart .products .product.clearfix .product-desc ul li:last-child {
    border-bottom: none !important;
}

#order-standard_cart .products .product.clearfix .product-desc ul li .feature-value {
    font-weight: 400 !important;
    font-size: 13.5px !important;
    color: #374151 !important;
    margin-right: 0 !important;
}

/* Footer — only button now */
#order-standard_cart .products .product.clearfix footer {
    padding: 14px 20px 20px !important;
    background: none !important;
    border: none !important;
    border-top: none !important;
    box-shadow: none !important;
    width: 100% !important;
    float: none !important;
    display: block !important;
    margin-top: auto !important;
}

#order-standard_cart .products .product.clearfix footer a.btn.btn-order,
#order-standard_cart .products .product.clearfix footer a.btn {
    white-space: normal !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    color: #fff !important;
    background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
    border: none !important;
    border-radius: 14px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease-in-out !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 14px rgba(91,33,182,0.25) !important;
}

#order-standard_cart .products .product.clearfix footer a.btn i {
    transition: transform 0.3s ease !important;
}

#order-standard_cart .products .product.clearfix footer a.btn.btn-order:hover,
#order-standard_cart .products .product.clearfix footer a.btn:hover {
    background: linear-gradient(135deg, #4c1d95, #6d28d9) !important;
    box-shadow: 0 6px 20px rgba(91, 33, 182, 0.4) !important;
    transform: translateY(-1px) !important;
}

#order-standard_cart .products .product.clearfix footer a.btn:hover i {
    transform: translateX(3px) !important;
}

/* Popular card gets gold CTA */
#order-standard_cart .products .product.clearfix.product--popular footer a.btn {
    background: linear-gradient(135deg, #d97706, #f59e0b) !important;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3) !important;
}

#order-standard_cart .products .product.clearfix.product--popular footer a.btn:hover {
    background: linear-gradient(135deg, #b45309, #d97706) !important;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45) !important;
}

/* Popular card */
#order-standard_cart .products .product.clearfix.product--popular {
    border: 2px solid #5b21b6 !important;
    box-shadow: 0 8px 32px rgba(91,33,182,0.20) !important;
    z-index: 2 !important;
    transform: none !important;
}
#order-standard_cart .products .product.clearfix.product--popular:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 48px rgba(91,33,182,0.24) !important;
    border-color: #5b21b6 !important;
}
#order-standard_cart .products .product.clearfix.product--popular > header {
    background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
    margin: -1px -2px 0 !important;
    padding: 21px 26px 0 !important;
    border-radius: 20px 20px 0 0 !important;
}
#order-standard_cart .products .product.clearfix.product--popular > header h3 {
    color: #fff !important;
}

/* Monthly hero price (injected by JS) */
#order-standard_cart .products .product.clearfix .price-monthly {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #1e1b4b !important;
    line-height: 1 !important;
    letter-spacing: -0.5px !important;
    margin-top: 0 !important;
}
#order-standard_cart .products .product.clearfix .price-monthly .price-mo-currency {
    font-size: 16px !important;
    font-weight: 700 !important;
    vertical-align: super !important;
    margin-right: 1px !important;
}
#order-standard_cart .products .product.clearfix .price-monthly .price-mo-period {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #374151 !important;
}
#order-standard_cart .products .product.clearfix .price-billing-note {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #9ca3af !important;
    margin-top: 4px !important;
}

/* Key specs highlight pills */
/* Key specs highlight pills */
#order-standard_cart .products .product.clearfix .pf-highlight {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
    margin: 0 0 10px !important;
    padding: 0 20px 10px !important;
    border-bottom: 1px solid rgba(91,33,182,0.06) !important;
}
#order-standard_cart .products .product.clearfix .pf-highlight-item {
    background: rgba(124,58,237,0.05) !important;
    border-radius: 10px !important;
    padding: 8px 4px 6px !important;
    text-align: center !important;
    border: none !important;
    overflow: hidden !important;
}
#order-standard_cart .products .product.clearfix .pf-highlight-val {
    display: block !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #1e1b4b !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
#order-standard_cart .products .product.clearfix .pf-highlight-label {
    display: block !important;
    font-size: 8px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.4px !important;
    color: #9ca3af !important;
    margin-top: 2px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Feature list icons & separators */
#order-standard_cart .products .product.clearfix .product-features-list .pfl-yes {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}
#order-standard_cart .products .product.clearfix .product-features-list .pfl-yes .pfl-icon {
    color: #7c3aed !important;
    font-size: 11px !important;
    flex-shrink: 0 !important;
    width: 22px !important;
    height: 22px !important;
    line-height: 22px !important;
    text-align: center !important;
    background: rgba(124,58,237,0.08) !important;
    border-radius: 6px !important;
}
#order-standard_cart .products .product.clearfix .product-features-list .pfl-no {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    opacity: 0.4 !important;
}
#order-standard_cart .products .product.clearfix .product-features-list .pfl-no .pfl-icon {
    color: #d1d5db !important;
    font-size: 9px !important;
    flex-shrink: 0 !important;
    width: 22px !important;
    height: 22px !important;
    line-height: 22px !important;
    text-align: center !important;
    background: rgba(0,0,0,0.03) !important;
    border-radius: 6px !important;
}
#order-standard_cart .products .product.clearfix .product-features-list .pfl-no .pfl-text {
    color: #9ca3af !important;
    text-decoration: line-through !important;
}
#order-standard_cart .products .product.clearfix .product-features-list .pfl-separator {
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(91,33,182,0.12), transparent) !important;
    margin: 6px 0 !important;
    border: none !important;
    list-style: none !important;
    padding: 0 !important;
}

#order-standard_cart .products .product.clearfix .product-features-list li:has(+ .pfl-separator) {
    border-bottom: none !important;
}

/* ============================================
   ORDER SUMMARY PANEL
   Fix: override100.css uses !important on .order-summary
   ============================================ */

#order-standard_cart .order-summary {
    background: var(--of-white) !important;
    border-radius: var(--of-radius-box) !important;
    border: 1px solid rgba(91, 33, 182, 0.1) !important;
    padding: 0 !important;
    color: var(--of-text);
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(91, 33, 182, 0.08);
}

#order-standard_cart .order-summary::before {
    display: none;
}

#order-standard_cart .order-summary h2 {
    position: relative;
    margin: 0 !important;
    padding: 18px 24px !important;
    background: linear-gradient(135deg, #1e1b4b, #4c1d95, #7c3aed) !important;
    color: var(--of-white) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

#order-standard_cart .order-summary .loader {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255,255,255,0.6);
}

#order-standard_cart .summary-container {
    position: relative;
    padding: 20px 24px !important;
}

/* Prevent JS-driven sticky from causing layout jitter */
#order-standard_cart .secondary-cart-sidebar,
#order-standard_cart #scrollingPanelContainer {
    position: static !important;
    top: auto !important;
    width: auto !important;
}

#order-standard_cart .summary-container .product-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--of-primary);
}

#order-standard_cart .summary-container .product-group {
    display: block;
    font-size: 12px;
    opacity: 0.6;
    margin-bottom: 14px;
    color: var(--of-text);
}

#order-standard_cart .summary-container .clearfix {
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(91, 33, 182, 0.08);
    color: var(--of-text);
}

#order-standard_cart .summary-container .clearfix span {
    color: var(--of-text);
    font-weight: 600;
}

#order-standard_cart .summary-container .summary-totals {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(91, 33, 182, 0.12);
}

#order-standard_cart .summary-container .total-due-today {
    margin-top: 16px;
    padding: 20px;
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: -20px;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    text-align: center;
}

#order-standard_cart .summary-container .total-due-today .amt {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #5b21b6;
    color: var(--of-gold) !important;
    line-height: 1.2;
}

#order-standard_cart .summary-container .total-due-today span:last-child {
    font-size: 11px;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    letter-spacing: 0.5px;
    color: var(--of-white);
}

#order-standard_cart .summary-container .btn-success {
    margin-top: 12px;
    width: 100%;
}

/* View Cart Summary Totals */
#order-standard_cart .order-summary .subtotal {
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(91, 33, 182, 0.08);
    color: var(--of-text);
}

#order-standard_cart .order-summary .bordered-totals {
    margin-top: 8px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(91, 33, 182, 0.1);
}

#order-standard_cart .order-summary .bordered-totals .clearfix {
    padding: 4px 0;
    font-size: 13px;
    color: var(--of-text);
}

#order-standard_cart .order-summary .recurring-totals {
    padding: 10px 0 6px;
    font-size: 14px;
    color: var(--of-text);
}

#order-standard_cart .order-summary .recurring-charges .cost {
    font-weight: 600;
}

#order-standard_cart .order-summary .total-due-today-padded {
    margin-top: 12px;
    padding-top: 12px;
}

#order-standard_cart .order-summary .express-checkout-buttons {
    margin: 16px 0;
}

#order-standard_cart .order-summary .express-checkout-buttons .separator {
    text-align: center;
    margin: 10px 0;
    font-size: 12px;
    opacity: 0.6;
    color: var(--of-white);
}

#order-standard_cart .btn-continue-shopping {
    color: rgba(255,255,255,0.7) !important;
    font-size: 13px;
    margin-top: 8px;
    display: inline-block;
    background: none !important;
}

#order-standard_cart .btn-continue-shopping:hover {
    color: var(--of-white) !important;
}

/* ============================================
   PRODUCT INFO (Configure)
   ============================================ */

#order-standard_cart .product-info {
    background: var(--of-bg-lavender) !important;
    border: 1px solid var(--of-border) !important;
    border-radius: var(--of-radius-box) !important;
    padding: 20px 24px !important;
    margin-bottom: 24px;
}

#order-standard_cart .product-info .product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--of-primary);
    margin-bottom: 6px;
}

#order-standard_cart .product-info p {
    font-size: 14px;
    color: var(--of-text-light);
    margin-bottom: 0;
}

/* ============================================
   SUB-HEADINGS
   ============================================ */

#order-standard_cart .sub-heading {
    margin: 28px 0 18px !important;
    padding: 0 0 12px 0 !important;
    border: none !important;
    border-bottom: 2px solid var(--of-accent-light) !important;
    text-align: center;
    background: none !important;
}

#order-standard_cart .sub-heading::before,
#order-standard_cart .sub-heading::after {
    display: none !important;
}

#order-standard_cart .sub-heading span {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--of-primary) !important;
    background: none !important;
    padding: 0 !important;
}

#order-standard_cart .sub-heading-borderless {
    text-align: center;
    margin: 24px 0;
}

#order-standard_cart .sub-heading-borderless span {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--of-text-light) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: none !important;
}

/* ============================================
   FIELD CONTAINER
   ============================================ */

#order-standard_cart .field-container {
    background: var(--of-white);
    border: 1px solid var(--of-border);
    border-radius: var(--of-radius-box);
    padding: 20px 24px;
    margin-bottom: 20px;
}

/* ============================================
   ADDON PRODUCTS
   ============================================ */

#order-standard_cart .addon-products .panel,
#order-standard_cart .addon-products .panel-addon {
    background: var(--of-white) !important;
    border: 1px solid var(--of-border) !important;
    border-radius: var(--of-radius-box) !important;
    overflow: hidden;
    transition: var(--of-transition);
    cursor: pointer;
    height: 100%;
}

#order-standard_cart .addon-products .panel:hover {
    border-color: var(--of-accent-light) !important;
    box-shadow: var(--of-shadow-hover);
    transform: translateY(-2px);
}

#order-standard_cart .addon-products .panel-addon-selected {
    border-color: var(--of-accent) !important;
    background: var(--of-bg-lavender) !important;
}

#order-standard_cart .addon-products .panel-body,
#order-standard_cart .addon-products .card-body {
    padding: 18px 20px !important;
    font-size: 14px;
    color: var(--of-text-light);
}

#order-standard_cart .addon-products .panel-body label,
#order-standard_cart .addon-products .card-body label {
    font-weight: 600;
    color: var(--of-primary);
    font-size: 15px;
}

#order-standard_cart .addon-products .panel-price {
    padding: 10px 20px;
    background: var(--of-bg-light);
    font-weight: 600;
    color: var(--of-accent);
    font-size: 15px;
    border-top: 1px solid var(--of-border);
}

#order-standard_cart .addon-products .panel-add {
    padding: 10px 20px;
    text-align: center;
    color: var(--of-accent);
    font-weight: 500;
    font-size: 14px;
    background: var(--of-bg-lavender);
    transition: var(--of-transition);
}

#order-standard_cart .addon-products .panel-addon-selected .panel-add {
    background: var(--of-accent) !important;
    color: var(--of-white) !important;
}

/* ============================================
   VIEW CART
   ============================================ */

#order-standard_cart .view-cart-items-header {
    background: linear-gradient(135deg, var(--of-primary), #312e81) !important;
    color: var(--of-white) !important;
    border-radius: var(--of-radius-box) var(--of-radius-box) 0 0 !important;
    padding: 14px 20px !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#order-standard_cart .view-cart-items {
    border: 1px solid var(--of-border) !important;
    border-top: none !important;
    border-bottom: 1px solid var(--of-border) !important;
    border-radius: 0 0 var(--of-radius-box) var(--of-radius-box) !important;
    overflow: hidden;
}

#order-standard_cart .view-cart-items .item {
    padding: 16px 20px;
    border-bottom: 1px solid var(--of-border);
    transition: var(--of-transition);
}

#order-standard_cart .view-cart-items .item:last-child {
    border-bottom: none;
}

#order-standard_cart .view-cart-items .item:hover {
    background: var(--of-bg-light);
}

#order-standard_cart .view-cart-items .item-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--of-primary);
    display: block;
    margin-bottom: 2px;
}

#order-standard_cart .view-cart-items .item-group {
    font-size: 13px;
    color: var(--of-text-light);
    display: block;
}

#order-standard_cart .view-cart-items .item-domain {
    font-size: 13px;
    color: var(--of-accent);
    display: block;
    font-weight: 500;
}

#order-standard_cart .view-cart-items .item-price {
    text-align: right;
    font-weight: 600;
    color: var(--of-primary);
}

#order-standard_cart .view-cart-items .item-price .cycle {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--of-text-light);
}

#order-standard_cart .view-cart-items .item-qty {
    text-align: center;
}

#order-standard_cart .view-cart-items .item-qty .form-control {
    width: 60px;
    display: inline-block;
    text-align: center;
    padding: 4px 8px;
}

#order-standard_cart .view-cart-empty {
    padding: 40px;
    text-align: center;
    color: var(--of-text-light);
    font-size: 16px;
}

#order-standard_cart .empty-cart {
    padding: 10px 0;
    text-align: right;
}

#order-standard_cart .empty-cart .btn,
#order-standard_cart .empty-cart .btn-link {
    color: var(--of-red) !important;
    background: none !important;
    font-size: 13px;
    box-shadow: none !important;
}

#order-standard_cart .empty-cart .btn:hover {
    color: #b91c1c !important;
    background: none !important;
}

#order-standard_cart .btn-remove-from-cart {
    color: var(--of-red) !important;
    background: none !important;
    font-size: 13px;
    padding: 4px 8px;
    box-shadow: none !important;
}

/* ============================================
   VIEW CART TABS (Promo Code / Tax)
   ============================================ */

#order-standard_cart .view-cart-tabs {
    margin-top: 24px;
    background: var(--of-white);
    border: 1px solid var(--of-border);
    border-radius: var(--of-radius-box);
    overflow: hidden;
}

#order-standard_cart .view-cart-tabs .nav-tabs {
    border-bottom: 1px solid var(--of-border) !important;
    padding: 0;
    margin: 0;
    background: var(--of-bg-light);
}

#order-standard_cart .view-cart-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
}

#order-standard_cart .view-cart-tabs .nav-tabs .nav-link {
    color: var(--of-text-light) !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    border-radius: 0 !important;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--of-transition);
    background: transparent !important;
}

#order-standard_cart .view-cart-tabs .nav-tabs .nav-link:hover {
    color: var(--of-accent) !important;
    background: var(--of-white) !important;
}

#order-standard_cart .view-cart-tabs .nav-tabs .nav-link.active {
    color: var(--of-accent) !important;
    background: var(--of-white) !important;
    border-bottom-color: var(--of-accent) !important;
}

#order-standard_cart .view-cart-tabs .tab-content {
    padding: 20px;
}

#order-standard_cart .view-cart-promotion-code {
    text-align: center;
    padding: 12px;
    background: var(--of-bg-lavender);
    border-radius: var(--of-radius-sm);
    font-weight: 500;
    color: var(--of-accent);
    margin-bottom: 12px;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */

#order-standard_cart .already-registered {
    margin-bottom: 20px;
}

#order-standard_cart #containerExistingClientLogin,
#order-standard_cart #containerNewUserSignup {
    background: var(--of-white);
    border: 1px solid var(--of-border);
    border-radius: var(--of-radius-box);
    padding: 24px;
    margin-bottom: 24px;
}

#order-standard_cart .social-signin-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 16px;
}

#order-standard_cart .checkout-tos {
    background: var(--of-bg-light);
    border: 1px solid var(--of-border);
    border-radius: var(--of-radius-box);
    padding: 16px 20px;
    margin: 20px 0;
}

/* ============================================
   DOMAIN CHECKER
   ============================================ */

#order-standard_cart .domain-checker-container {
    margin-bottom: 24px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

/* IDN Language Selector */
#order-standard_cart #idnLanguageSelector {
    margin-top: 16px;
    text-align: center;
}

#order-standard_cart #idnLanguageSelector .form-control {
    border: 2px solid var(--of-border) !important;
    border-radius: var(--of-radius-btn) !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    color: var(--of-text) !important;
    background: var(--of-white) !important;
    height: auto !important;
}

#order-standard_cart #idnLanguageSelector .form-control:focus {
    border-color: var(--of-accent-light) !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
}

#order-standard_cart #idnLanguageSelector .field-error-msg {
    color: var(--of-red);
    font-size: 13px;
    margin-top: 6px;
}

#order-standard_cart .domain-checker-bg {
    background: linear-gradient(135deg, var(--of-primary), #312e81) !important;
    border-radius: var(--of-radius-box) !important;
    padding: 32px 24px !important;
    position: relative;
    overflow: visible;
    border: none !important;
    outline: none !important;
}

#order-standard_cart .domain-checker-bg::after {
    content: '';
    display: block;
    clear: both;
}

#order-standard_cart .domain-checker-bg *:focus {
    outline: none;
}

#order-standard_cart #frmDomainChecker {
    border: none !important;
    outline: none !important;
}

#order-standard_cart .domain-checker-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 50%, rgba(139,92,246,0.2) 0%, transparent 60%);
    pointer-events: none;
}

/* Domain Search Row */
#order-standard_cart .domain-search-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: var(--of-radius-btn);
    overflow: visible;
    background: rgba(255,255,255,0.95);
    border: 2px solid rgba(255,255,255,0.3);
    position: relative;
}

/* reCAPTCHA invisible badge — prevent layout shift */
#order-standard_cart .domain-search-row .grecaptcha-badge,
#order-standard_cart .domain-checker-bg .grecaptcha-badge {
    position: fixed !important;
    bottom: 14px !important;
    right: 14px !important;
}

#order-standard_cart .domain-search-row .form-control {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 14px 18px;
    font-size: 16px;
    color: var(--of-text);
    min-width: 0;
}

#order-standard_cart .domain-search-row .form-control::placeholder {
    color: var(--of-text-light);
}

#order-standard_cart .domain-search-row select.domain-tld-dropdown,
#order-standard_cart .domain-search-row select.domain-tld-dropdown.form-control,
#order-standard_cart .domain-search-row select.domain-tld-dropdown.form-control-lg {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 130px;
    max-width: 160px;
    border: none !important;
    border-left: 2px solid #e0d4f5 !important;
    background-color: #ede9fe !important;
    box-shadow: none !important;
    padding: 14px 36px 14px 16px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1e1b4b !important;
    cursor: pointer;
    border-radius: 0 !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='%235b21b6' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 12px 7px !important;
    line-height: 1.2 !important;
    height: auto !important;
}

#order-standard_cart .domain-search-row .domain-check-availability {
    flex: 0 0 auto;
    border-radius: 0 var(--of-radius-btn) var(--of-radius-btn) 0 !important;
    white-space: nowrap;
    padding: 0 28px !important;
    margin: 0 !important;
    border: none !important;
    background: linear-gradient(135deg, var(--of-gold), var(--of-gold-dark)) !important;
    color: var(--of-white) !important;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    height: auto !important;
    width: auto !important;
}

#order-standard_cart .domain-check-availability {
    background: linear-gradient(135deg, var(--of-gold), var(--of-gold-dark)) !important;
    color: var(--of-white) !important;
    border: none !important;
}

#order-standard_cart .domain-check-availability:hover,
#order-standard_cart .domain-check-availability:focus {
    background: linear-gradient(135deg, var(--of-gold-dark), #b45309) !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4) !important;
    transform: none !important;
}

/* Domain Results */
#order-standard_cart .domain-checker-result-headline {
    text-align: center;
    padding: 16px;
    border-radius: var(--of-radius-box);
    margin: 16px 0;
    font-size: 15px;
    font-weight: 500;
}

#order-standard_cart .domain-checker-available {
    background: rgba(52, 211, 153, 0.1) !important;
    color: #059669 !important;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

#order-standard_cart .domain-checker-unavailable {
    background: rgba(220, 38, 38, 0.08) !important;
    color: var(--of-red) !important;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* Spotlight TLDs — card grid */
#order-standard_cart .spotlight-tlds { margin: 16px 0; }

#order-standard_cart .spotlight-tlds-container {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

#order-standard_cart .spotlight-tld-container,
#order-standard_cart [class*="spotlight-tld-container-"] {
    display: flex !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    flex: none !important;
    padding: 0 !important;
}

#order-standard_cart .spotlight-tld,
#order-standard_cart #spotlightTlds .spotlight-tld {
    background: var(--of-white) !important;
    border: 1px solid rgba(91, 33, 182, 0.10) !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 8px rgba(91, 33, 182, 0.05);
    padding: 18px 14px 14px !important;
    text-align: center !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--of-primary) !important;
    transition: var(--of-transition);
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: 100% !important;
    position: relative !important;
    width: 100% !important;
    float: none !important;
}

#order-standard_cart .spotlight-tld:hover {
    border-color: rgba(124, 58, 237, 0.25) !important;
    box-shadow: 0 6px 20px rgba(91, 33, 182, 0.12);
    transform: translateY(-2px);
}

#order-standard_cart .spotlight-tld .domain-lookup-result {
    position: static !important;
    float: none !important;
    width: 100% !important;
    margin-top: auto;
    padding-top: 10px;
    text-align: center;
}

#order-standard_cart .spotlight-tld .domain-lookup-loader {
    position: static !important;
    margin-top: auto;
    padding-top: 10px;
}

#order-standard_cart .spotlight-tld .price {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--of-accent);
    margin: 0 0 8px;
}

#order-standard_cart .spotlight-tld .btn-add-to-cart:not(.w-hidden) {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    background: linear-gradient(135deg, var(--of-accent), #6d28d9) !important;
    color: var(--of-white) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 8px 12px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    float: none !important;
    box-shadow: 0 2px 6px rgba(91, 33, 182, 0.2);
}

#order-standard_cart .spotlight-tld .btn-add-to-cart:hover {
    box-shadow: 0 4px 12px rgba(91, 33, 182, 0.35) !important;
    background: linear-gradient(135deg, #4c1d95, var(--of-accent)) !important;
}

#order-standard_cart .spotlight-tld .btn.unavailable:not(.w-hidden),
#order-standard_cart .spotlight-tld .btn.invalid:not(.w-hidden) {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    font-size: 12px !important;
    padding: 8px 12px !important;
    border-radius: 10px !important;
    background: #f3f4f6 !important;
    color: #9ca3af !important;
    border: none !important;
    float: none !important;
    opacity: 1;
    box-shadow: none !important;
    cursor: default;
}

/* Available card */
#order-standard_cart .spotlight-tld:has(.btn-add-to-cart:not(.w-hidden)) {
    border-color: rgba(91, 33, 182, 0.15) !important;
    box-shadow: 0 3px 12px rgba(91, 33, 182, 0.08);
}

/* Unavailable card */
#order-standard_cart .spotlight-tld:has(.btn.unavailable:not(.w-hidden)),
#order-standard_cart .spotlight-tld:has(.btn.invalid:not(.w-hidden)) {
    opacity: 0.4;
    background: #fafafa !important;
    border-color: #e5e7eb !important;
    box-shadow: none !important;
}

#order-standard_cart .spotlight-tld:has(.btn.unavailable:not(.w-hidden)):hover,
#order-standard_cart .spotlight-tld:has(.btn.invalid:not(.w-hidden)):hover {
    opacity: 0.55;
    transform: none !important;
}

/* Group badges */
#order-standard_cart .spotlight-tld [class*="spotlight-tld-"] {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

/* Suggested Domains */
#order-standard_cart .suggested-domains .panel-heading,
#order-standard_cart .suggested-domains .card-header {
    background: var(--of-bg-lavender) !important;
    color: var(--of-primary) !important;
    font-weight: 600;
    padding: 14px 20px !important;
    border: 1px solid var(--of-border) !important;
    border-radius: var(--of-radius-box) var(--of-radius-box) 0 0 !important;
}

#order-standard_cart .suggested-domains .list-group-item {
    border: 1px solid var(--of-border) !important;
    border-top: none !important;
    padding: 12px 20px !important;
    display: flex;
    align-items: center;
    font-size: 15px;
    background: var(--of-white) !important;
    border-radius: 0 !important;
}

#order-standard_cart .suggested-domains .domain-suggestion .domain {
    width: 45%;
    flex: none;
    font-weight: 600;
    color: var(--of-primary);
}

#order-standard_cart .suggested-domains .domain-suggestion .extension {
    width: 10%;
    flex: none;
    color: var(--of-accent);
    font-weight: 600;
}

#order-standard_cart .suggested-domains .domain-suggestion .actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

#order-standard_cart .suggested-domains .domain-suggestion .price {
    font-weight: 600;
    color: var(--of-accent);
}

/* Domain Pricing Table */
#order-standard_cart .domain-pricing { margin-top: 32px; display: block !important; }

#order-standard_cart .tld-pricing-header {
    background: var(--of-bg-lavender) !important;
    color: var(--of-primary) !important;
    padding: 14px 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--of-radius-box) var(--of-radius-box) 0 0;
    border: 1px solid var(--of-border);
    border-bottom: 2px solid var(--of-accent-light);
}

#order-standard_cart .tld-pricing-header .tld-column,
#order-standard_cart .tld-pricing-header [class*="col-"] {
    color: var(--of-primary) !important;
}

#order-standard_cart .tld-row {
    padding: 12px 0;
    border-bottom: 1px solid var(--of-border);
    transition: var(--of-transition);
}

#order-standard_cart .tld-row:hover {
    background: var(--of-bg-lavender);
}

#order-standard_cart .tld-filters {
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

#order-standard_cart .tld-filters .badge {
    background: var(--of-bg-lavender) !important;
    color: var(--of-accent) !important;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px !important;
    border: 1px solid var(--of-border);
    transition: var(--of-transition);
    cursor: pointer;
}

#order-standard_cart .tld-filters .badge:hover,
#order-standard_cart .tld-filters .badge.active {
    background: linear-gradient(135deg, var(--of-accent), var(--of-accent-hover)) !important;
    color: var(--of-white) !important;
    border-color: var(--of-accent) !important;
}

/* Featured TLDs */
#order-standard_cart .featured-tld {
    background: var(--of-white);
    border: 1px solid var(--of-border);
    border-radius: var(--of-radius-box);
    padding: 20px;
    text-align: center;
    margin-bottom: 16px;
    transition: var(--of-transition);
}

#order-standard_cart .featured-tld:hover {
    border-color: var(--of-accent-light);
    box-shadow: var(--of-shadow-hover);
    transform: translateY(-3px);
}

#order-standard_cart .featured-tld .price {
    font-size: 16px;
    font-weight: 600;
    color: var(--of-accent);
}

/* Domain Promo Boxes */
#order-standard_cart .domain-promo-box {
    background: var(--of-white) !important;
    border: 1px solid var(--of-border) !important;
    border-radius: var(--of-radius-box) !important;
    padding: 28px 24px;
    text-align: center;
    margin-top: 28px;
    transition: var(--of-transition);
}

#order-standard_cart .domain-promo-box:hover {
    border-color: var(--of-accent-light) !important;
    box-shadow: var(--of-shadow-hover);
    transform: translateY(-3px);
}

#order-standard_cart .domain-promo-box i.fa-4x {
    color: var(--of-accent);
    margin-bottom: 12px;
}

/* ============================================
   DOMAIN SELECTION (Product Domain)
   ============================================ */

#order-standard_cart .domain-selection-options .option {
    background: var(--of-white) !important;
    border: 1px solid var(--of-border) !important;
    border-radius: var(--of-radius-box) !important;
    padding: 18px 22px !important;
    margin-bottom: 12px;
    transition: var(--of-transition);
}

#order-standard_cart .domain-selection-options .option:hover {
    border-color: var(--of-accent-light) !important;
}

#order-standard_cart .domain-selection-options .option > label {
    font-size: 15px;
    font-weight: 600;
    color: var(--of-primary);
    cursor: pointer;
    display: block;
    margin-bottom: 12px;
}

#order-standard_cart .domain-selection-options .option > label input[type="radio"] {
    margin-right: 10px;
    accent-color: var(--of-accent);
}

#order-standard_cart .domain-inline-form {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 600px;
}

#order-standard_cart .domain-inline-sld {
    flex: 1 1 auto;
    min-width: 0;
}

#order-standard_cart .domain-inline-tld {
    flex: 0 0 auto;
    width: 180px;
}

#order-standard_cart .domain-inline-tld select.form-control {
    appearance: auto !important;
    -webkit-appearance: menulist !important;
    background-image: none !important;
    padding: 10px 8px !important;
    font-size: 14px;
    border-radius: var(--of-radius-btn) !important;
    width: 100%;
}

#order-standard_cart .domain-inline-btn {
    flex: 0 0 auto;
}

#order-standard_cart .domain-inline-btn .btn {
    white-space: nowrap;
    padding: 10px 22px;
}

/* ============================================
   DOMAIN RENEWALS
   ============================================ */

#order-standard_cart .domain-renewals .domain-renewal {
    background: var(--of-white) !important;
    border: 1px solid var(--of-border) !important;
    border-radius: var(--of-radius-box) !important;
    padding: 20px 24px !important;
    margin-bottom: 14px;
    transition: var(--of-transition);
}

#order-standard_cart .domain-renewals .domain-renewal:hover {
    border-color: var(--of-accent-light) !important;
    box-shadow: var(--of-shadow);
}

#order-standard_cart .domain-renewals .domain-renewal h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--of-primary);
}

#order-standard_cart .domain-renewals .label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

#order-standard_cart .domain-renewals .label-success { background: rgba(52, 211, 153, 0.15); color: #059669; }
#order-standard_cart .domain-renewals .label-warning { background: rgba(245, 158, 11, 0.15); color: #92400e; }
#order-standard_cart .domain-renewals .label-danger { background: rgba(220, 38, 38, 0.1); color: var(--of-red); }
#order-standard_cart .domain-renewals .label-info { background: var(--of-bg-lavender); color: var(--of-accent); }

/* ============================================
   CONFIGURABLE OPTIONS
   ============================================ */

#order-standard_cart .product-configurable-options {
    background: var(--of-white);
    border: 1px solid var(--of-border);
    border-radius: var(--of-radius-box);
    padding: 20px 24px;
    margin-bottom: 20px;
}

/* ============================================
   ALERTS
   ============================================ */

#order-standard_cart .alert {
    border-radius: var(--of-radius-btn) !important;
    font-size: 14px;
    border: none;
    padding: 14px 18px;
}

#order-standard_cart .alert-danger {
    background: rgba(220, 38, 38, 0.08) !important;
    color: var(--of-red) !important;
    border: 1px solid rgba(220, 38, 38, 0.15) !important;
}

#order-standard_cart .alert-warning {
    background: rgba(245, 158, 11, 0.08) !important;
    color: #92400e !important;
    border: 1px solid rgba(245, 158, 11, 0.2) !important;
}

/* Checkout security / IP log message — match theme */
#order-standard_cart .alert-warning.checkout-security-msg {
    background: rgba(91, 33, 182, 0.06) !important;
    color: #5b21b6 !important;
    border: 1px solid rgba(91, 33, 182, 0.12) !important;
    border-radius: 12px !important;
    padding: 16px 20px 16px 48px !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    position: relative !important;
    overflow: hidden !important;
}

#order-standard_cart .alert-warning.checkout-security-msg i {
    position: absolute !important;
    left: 18px !important;
    top: 18px !important;
    font-size: 18px !important;
    color: #7c3aed !important;
}

#order-standard_cart .alert-warning.checkout-security-msg .clearfix {
    display: none !important;
}

/* ============================================
   HOSTIKO TOGGLE SWITCH
   ============================================ */
.hostiko-toggle {
    display: inline-block;
    cursor: pointer;
    user-select: none;
    margin: 0;
    font-weight: normal;
    vertical-align: middle;
}

.hostiko-toggle .hostiko-toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.hostiko-toggle-track {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 32px;
    border-radius: 16px;
    background: #6b7280;
    transition: background 0.25s ease;
}

.hostiko-toggle-track::before {
    content: attr(data-off);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
    opacity: 1;
}

.hostiko-toggle-track::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease;
    z-index: 1;
}

.hostiko-toggle-input:checked + .hostiko-toggle-track {
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
}

.hostiko-toggle-input:checked + .hostiko-toggle-track::before {
    content: attr(data-on);
    right: auto;
    left: 10px;
}

.hostiko-toggle-input:checked + .hostiko-toggle-track::after {
    transform: translateX(32px);
}

/* Mini variant */
.hostiko-toggle-mini .hostiko-toggle-track {
    width: 36px;
    height: 20px;
    border-radius: 10px;
}

.hostiko-toggle-mini .hostiko-toggle-track::after {
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
}

.hostiko-toggle-mini .hostiko-toggle-input:checked + .hostiko-toggle-track::after {
    transform: translateX(16px);
}

/* intl-tel-input phone field fix */
#order-standard_cart .iti {
    width: 100% !important;
    display: block !important;
}

/* intl-tel-input phone field fix */
#order-standard_cart .iti input.form-control,
#order-standard_cart .iti input.field {
    padding-left: 90px !important;
    width: 100% !important;
}

/* Fallback: target phone inputs directly by ID */
input#inputPhone,
input#inputDCPhone,
#order-standard_cart input#inputPhone,
#order-standard_cart input#inputDCPhone {
    padding-left: 90px !important;
}

/* Card fields — prevent placeholder clipping */
#order-standard_cart #newCardInfo .prepend-icon .field-icon {
    display: none !important;
}

#order-standard_cart #newCardInfo .prepend-icon .form-control {
    padding-left: 12px !important;
}

#order-standard_cart #cvv-field-container .input-group {
    flex-wrap: nowrap !important;
}

#order-standard_cart #cvv-field-container .input-group .form-control {
    min-width: 0 !important;
    padding-left: 8px !important;
    padding-right: 4px !important;
}

#order-standard_cart #cvv-field-container .input-group-btn .btn,
#order-standard_cart #cvv-field-container .input-group-append .btn {
    padding: 6px 8px !important;
}

#order-standard_cart .alert-info {
    background: linear-gradient(135deg, var(--of-accent), var(--of-accent-hover)) !important;
    color: var(--of-white) !important;
    border: none !important;
}

#order-standard_cart .alert-success {
    background: rgba(52, 211, 153, 0.1) !important;
    color: #059669 !important;
    border: 1px solid rgba(52, 211, 153, 0.25) !important;
}

#order-standard_cart .alert-link {
    color: inherit !important;
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================
   ORDER COMPLETE
   ============================================ */

#order-standard_cart .order-confirmation {
    text-align: center;
    background: linear-gradient(135deg, var(--of-accent), var(--of-accent-hover)) !important;
    color: var(--of-white) !important;
    border-radius: var(--of-radius-box) !important;
    padding: 24px !important;
}

#order-standard_cart .order-confirmation span {
    display: block;
    font-size: 28px;
    font-weight: 800;
    margin-top: 6px;
    color: var(--of-gold) !important;
}

/* ============================================
   ERROR PAGE
   ============================================ */

#order-standard_cart .error-heading {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* ============================================
   MODALS
   ============================================ */

#order-standard_cart .modal-content {
    border-radius: var(--of-radius-box) !important;
    border: none !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

#order-standard_cart .modal-header {
    border-bottom: 1px solid var(--of-border);
    padding: 18px 24px;
}

#order-standard_cart .modal-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--of-primary);
}

#order-standard_cart .modal-body { padding: 24px; }

#order-standard_cart .modal-footer {
    border-top: 1px solid var(--of-border);
    padding: 14px 24px;
}

#order-standard_cart .modal-remove-item .modal-title i {
    color: var(--of-red);
    display: block;
    margin-bottom: 12px;
}

/* ============================================
   PANELS (Generic: Transfer, Fraud, etc.)
   ============================================ */

#order-standard_cart .panel.panel-default,
#order-standard_cart .card.panel-default {
    background: var(--of-white) !important;
    border: 1px solid var(--of-border) !important;
    border-radius: var(--of-radius-box) !important;
    overflow: hidden;
    box-shadow: var(--of-shadow);
}

#order-standard_cart .panel-default > .panel-heading,
#order-standard_cart .panel-default > .card-header {
    background: var(--of-bg-light) !important;
    border-bottom: 1px solid var(--of-border) !important;
    padding: 14px 20px;
}

#order-standard_cart .panel-default > .panel-heading .panel-title,
#order-standard_cart .panel-default > .card-header .card-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--of-primary) !important;
}

/* Override for sidebar-collapsed: white text on purple header */
#order-standard_cart .sidebar-collapsed .panel-default > .panel-heading .panel-title,
#order-standard_cart .sidebar-collapsed .panel-default > .card-header .card-title,
#order-standard_cart .sidebar-collapsed .panel-default > .panel-heading .panel-title *,
#order-standard_cart .sidebar-collapsed .panel-default > .card-header .card-title * {
    color: var(--of-white) !important;
}

#order-standard_cart .panel-default > .panel-body,
#order-standard_cart .panel-default > .card-body {
    padding: 20px;
}

#order-standard_cart .panel-default > .panel-footer,
#order-standard_cart .panel-default > .card-footer {
    background: var(--of-bg-light) !important;
    border-top: 1px solid var(--of-border) !important;
    padding: 14px 20px;
}

/* ============================================
   MARKETPLACE CONNECT PROMO
   ============================================ */

#order-standard_cart .mc-promo {
    background: var(--of-white) !important;
    border: 1px solid var(--of-border) !important;
    border-radius: var(--of-radius-box) !important;
    overflow: hidden;
    margin-bottom: 16px;
    transition: var(--of-transition);
}

#order-standard_cart .mc-promo:hover {
    border-color: var(--of-accent-light) !important;
    box-shadow: var(--of-shadow-hover);
}

/* ============================================
   TABLES
   ============================================ */

#order-standard_cart .table thead th {
    background: var(--of-bg-lavender) !important;
    color: var(--of-primary) !important;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    border: 1px solid var(--of-border) !important;
}

#order-standard_cart .table td {
    padding: 12px 16px;
    border: 1px solid var(--of-border);
    font-size: 14px;
}

/* ============================================
   DOMAIN SEARCH RESULTS
   ============================================ */

#order-standard_cart #DomainSearchResults { margin-top: 20px; }

#order-standard_cart .domain-searching {
    text-align: center;
    padding: 20px;
    color: var(--of-accent);
    font-size: 15px;
}

#order-standard_cart .domain-lookup-loader {
    text-align: center;
    padding: 16px;
    color: var(--of-accent);
}

#order-standard_cart .domain-price {
    text-align: center;
    margin-top: 12px;
}

#order-standard_cart .domain-price .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--of-accent);
    margin-right: 12px;
}

/* ============================================
   MISC
   ============================================ */

#order-standard_cart .form-control-qty {
    width: 100px;
    display: inline-block;
}

#order-standard_cart .form-control-static-inline {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

#order-standard_cart .row-upgrade-credit {
    background: var(--of-bg-lavender);
    border-radius: var(--of-radius-sm);
    padding: 10px 16px;
    margin-top: 8px;
}

#order-standard_cart .upgrade-calc-msg {
    font-size: 12px;
    color: var(--of-text-light);
    margin-top: 4px;
}

#order-standard_cart .captcha-container { margin-top: 16px; }

#order-standard_cart .default-captcha {
    background: var(--of-bg-light);
    border: 1px solid var(--of-border);
    border-radius: var(--of-radius-btn);
    padding: 14px;
    text-align: center;
}

#order-standard_cart .view-cart-gateway-checkout {
    margin: 16px 0;
    text-align: center;
}

#order-standard_cart .w-hidden {
    display: none;
}

#order-standard_cart .margin-bottom { margin-bottom: 16px; }
#order-standard_cart .no-wrap { white-space: nowrap; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    #order-standard_cart > .row > .cart-sidebar {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }

    #order-standard_cart > .row > .cart-body {
        max-width: 100%;
    }

    #order-standard_cart .secondary-cart-body {
        padding-right: 0;
    }

    #order-standard_cart .secondary-cart-sidebar {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 24px;
    }
}

@media (max-width: 767px) {
    #order-standard_cart > .row > .cart-sidebar {
        display: none;
    }

    #order-standard_cart .sidebar-collapsed {
        display: block !important;
    }

    #order-standard_cart .header-lined h1.font-size-36,
    #order-standard_cart h1.font-size-36,
    #order-standard_cart .font-size-36 {
        font-size: 22px !important;
    }

    /* Product cards — match homepage style on mobile */
    #order-standard_cart .products .product.clearfix {
        padding: 32px 16px !important;
        box-shadow: 0 4px 20px rgba(91, 33, 182, 0.12) !important;
        margin-bottom: 16px !important;
    }

    #order-standard_cart .products .product.clearfix header {
        margin-bottom: 18px !important;
    }

    #order-standard_cart .products .product.clearfix header span {
        font-size: 20px !important;
    }

    #order-standard_cart .products .product.clearfix .product-pricing .price {
        font-size: 26px !important;
    }

    #order-standard_cart .products .product.clearfix .product-desc ul {
        margin-bottom: 20px !important;
    }

    #order-standard_cart .products .product.clearfix .product-desc ul li {
        font-size: 13px !important;
    }

    #order-standard_cart .products .product.clearfix footer a.btn {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
    }

    #order-standard_cart .spotlight-tlds-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }

    #order-standard_cart .spotlight-tld,
    #order-standard_cart #spotlightTlds .spotlight-tld {
        padding: 14px 10px 10px !important;
        font-size: 16px !important;
    }

    #order-standard_cart .domain-search-row {
        flex-wrap: wrap;
        border-radius: var(--of-radius-box);
    }

    #order-standard_cart .domain-search-row .form-control:first-child {
        flex: 1 1 0 !important;
        order: 1;
        padding: 12px 14px !important;
        font-size: 15px !important;
        border-radius: var(--of-radius-box) 0 0 0 !important;
    }

    #order-standard_cart .domain-search-row .domain-check-availability {
        order: 2;
        padding: 12px 20px !important;
        border-radius: 0 var(--of-radius-box) 0 0 !important;
    }

    #order-standard_cart .domain-search-row select.domain-tld-dropdown,
    #order-standard_cart .domain-search-row select.domain-tld-dropdown.form-control,
    #order-standard_cart .domain-search-row select.domain-tld-dropdown.form-control-lg {
        order: 3;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        min-width: 0 !important;
        border-left: none !important;
        border-top: 1px solid var(--of-border) !important;
        border-radius: 0 0 var(--of-radius-box) var(--of-radius-box) !important;
        padding: 10px 36px 10px 14px !important;
        font-size: 14px !important;
    }

    /* Suggested domains — stack on mobile */
    #order-standard_cart .suggested-domains .list-group-item {
        flex-wrap: wrap;
        padding: 12px 16px !important;
        gap: 4px 0;
    }

    #order-standard_cart .suggested-domains .domain-suggestion .domain {
        width: auto;
        flex: none;
        font-size: 14px;
    }

    #order-standard_cart .suggested-domains .domain-suggestion .extension {
        width: auto;
        flex: none;
        font-size: 14px;
        margin-right: auto;
    }

    #order-standard_cart .suggested-domains .domain-suggestion .actions {
        flex: 0 0 100%;
        margin-left: 0;
        margin-top: 6px;
        justify-content: space-between;
    }

    #order-standard_cart .suggested-domains .domain-suggestion .price {
        font-size: 14px;
    }

    #order-standard_cart .suggested-domains .domain-suggestion .actions .btn {
        font-size: 13px;
        padding: 6px 14px;
    }

    /* Domain pricing table — horizontal scroll on mobile */
    #order-standard_cart .domain-pricing {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    #order-standard_cart .domain-pricing table {
        min-width: 480px;
    }

    /* General overflow prevention */
    #order-standard_cart .panel,
    #order-standard_cart .card {
        overflow: hidden;
    }

    #order-standard_cart table {
        word-break: break-word;
    }

    #order-standard_cart .table-responsive {
        border: none !important;
    }

    /* Form elements on mobile */
    #order-standard_cart .form-control,
    #order-standard_cart select.form-control {
        font-size: 14px !important;
    }

    #order-standard_cart .input-group {
        flex-wrap: nowrap;
    }

    /* Domain inline form — stack vertically on mobile */
    #order-standard_cart .domain-inline-form {
        flex-wrap: wrap;
        gap: 8px;
    }

    #order-standard_cart .domain-inline-sld {
        flex: 0 0 100%;
    }

    #order-standard_cart .domain-inline-sld .input-group {
        width: 100%;
    }

    #order-standard_cart .domain-inline-sld .form-control {
        min-width: 0;
        flex: 1;
    }

    #order-standard_cart .domain-inline-tld {
        flex: 1 1 auto;
        width: auto;
    }

    #order-standard_cart .domain-inline-btn {
        flex: 0 0 auto;
    }

    #order-standard_cart .domain-inline-btn .btn {
        padding: 10px 18px;
    }

    /* Select dropdowns full width */
    #order-standard_cart .domain-selection-options select.form-control {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Options panel spacing */
    #order-standard_cart .domain-selection-options .option {
        padding: 14px !important;
    }

    #order-standard_cart .domain-selection-options .option > label {
        font-size: 14px;
    }
}

/* ============================================
   FREE SUBDOMAIN HIGHLIGHT BLOCK
   ============================================ */
.store-freesub {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 36px;
    padding: 32px 36px;
    margin: 10px 0 28px;
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(91, 33, 182, 0.25);
    position: relative;
    overflow: hidden;
}
.store-freesub::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.store-freesub-left {
    position: relative;
    z-index: 1;
}
.store-freesub-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.35);
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.store-freesub-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff !important;
    margin: 0 0 10px;
    line-height: 1.2;
}
.store-freesub-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88) !important;
    margin: 0 0 16px;
}
.store-freesub-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.store-freesub-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #fff !important;
}
.store-freesub-points li i {
    font-size: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    background: rgba(251, 191, 36, 0.85);
    border-radius: 50%;
    flex-shrink: 0;
}
.store-freesub-right {
    position: relative;
    z-index: 1;
}
.store-freesub-preview {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 14px 16px 16px;
    backdrop-filter: blur(6px);
}
.store-freesub-browser {
    background: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.store-freesub-browser-dots {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}
.store-freesub-browser-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e5e7eb;
}
.store-freesub-browser-dots span:first-child { background: #ef4444; }
.store-freesub-browser-dots span:nth-child(2) { background: #f59e0b; }
.store-freesub-browser-dots span:nth-child(3) { background: #10b981; }
.store-freesub-browser-url {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    border-radius: 6px;
    padding: 8px 12px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 15px;
    font-weight: 600;
    color: #1e1b4b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.store-freesub-browser-url i {
    color: #10b981;
    font-size: 12px;
    flex-shrink: 0;
}
.store-freesub-url-user {
    color: #7c3aed;
    font-weight: 700;
    border-bottom: 2px dashed rgba(124, 58, 237, 0.4);
    animation: freesubBlink 1.8s ease-in-out infinite;
}
.store-freesub-url-tld {
    color: #1e1b4b;
}
@keyframes freesubBlink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.55; }
}
.store-freesub-hint {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 10px;
    font-style: italic;
}

@media (max-width: 768px) {
    .store-freesub {
        grid-template-columns: 1fr;
        padding: 26px 22px;
        gap: 22px;
    }
    .store-freesub-title {
        font-size: 20px;
    }
    .store-freesub-browser-url {
        font-size: 13px;
    }
}

.price-free {
    color: #10b981;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
