/**
 * Lexus Cart – products.tpl only
 * Matches v1.rdp.cheap/index.php #plans + css/styles.css .glass-card
 * Minimal, soft shadows, rounded, blue accent, clear hierarchy
 */

:root {
    --v1-primary: #0d6cf2;
    --v1-primary-hover: #0b5ed7;
    --v1-primary-shadow: rgba(13, 108, 242, 0.25);
    --v1-glass-card-bg: rgba(255, 255, 255, 0.4);
    --v1-glass-card-border: rgba(255, 255, 255, 0.8);
    --v1-glass-card-shadow: 0 8px 32px 0 rgba(13, 108, 242, 0.07);
    --v1-glass-card-hover-bg: rgba(255, 255, 255, 0.6);
    --v1-glass-card-hover-shadow: 0 12px 40px 0 rgba(13, 108, 242, 0.15);
    --v1-text: #111418;
    --v1-text-heading: #1e293b;
    --v1-text-muted: #64748b;
    --v1-text-features: #334155;
    --v1-radius: 1.5rem;
}

#order-lexus_cart.v1-plan-wrap {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem 0 3rem;
}

/* Category tabs above plans (same design as login Login/Create account switch) */
.lexus-cart-category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
#order-lexus_cart.v1-plan-wrap .lexus-login-switch {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 9999px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
}
#order-lexus_cart.v1-plan-wrap .lexus-login-switch-item {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: #64748b;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
#order-lexus_cart.v1-plan-wrap .lexus-login-switch-item:hover {
    color: var(--v1-primary);
    background: rgba(13, 108, 242, 0.08);
    text-decoration: none;
}
#order-lexus_cart.v1-plan-wrap .lexus-login-switch-item.is-active {
    background: var(--v1-primary);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(13, 108, 242, 0.3);
}
#order-lexus_cart.v1-plan-wrap .lexus-login-switch-item.is-active:hover {
    color: #fff;
    background: var(--v1-primary-hover);
    box-shadow: 0 4px 14px rgba(13, 108, 242, 0.4);
}

.v1-plan-section {
    margin-bottom: 2rem;
}

.v1-plan-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.v1-plan-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--v1-text);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.v1-plan-subheading {
    font-size: 0.9375rem;
    color: var(--v1-text-muted);
    margin: 0;
}

.v1-plan-alert {
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

/* Grid: 1 col → 2 (md/lg) – fewer columns = wider plan cards */
.v1-plan-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem 1.5rem;
}

@media (min-width: 768px) {
    .v1-plan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Card = v1 .glass-card: soft white, rounded-3xl, light shadow, floating effect */
.v1-plan-card-wrap {
    min-width: 0;
}

.v1-plan-card {
    position: relative;
    padding: 1.25rem 1.5rem;
    border-radius: var(--v1-radius);
    background: var(--v1-glass-card-bg);
    border: 1px solid var(--v1-glass-card-border);
    box-shadow: var(--v1-glass-card-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.v1-plan-card:hover {
    transform: translateY(-5px);
    background: var(--v1-glass-card-hover-bg);
    box-shadow: var(--v1-glass-card-hover-shadow);
    border-color: rgba(13, 108, 242, 0.2);
}

/* Featured: ring, badge, primary price & button */
.v1-plan-card--featured {
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(13, 108, 242, 0.3);
    box-shadow: 0 8px 32px var(--v1-primary-shadow);
}
.v1-plan-card--featured:hover {
    box-shadow: 0 12px 40px var(--v1-primary-shadow);
}

.v1-plan-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--v1-primary);
    color: #fff;
    font-size: 0.5625rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem 0.25rem 0.75rem;
    border-radius: 0 var(--v1-radius) 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Plan name with tagline directly under (v1: h3 then p text-slate-500) */
.v1-plan-card-head {
    margin-bottom: 0.75rem;
}

.v1-plan-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--v1-text-heading);
    margin: 0;
    line-height: 1.3;
}
@media (min-width: 640px) {
    .v1-plan-name { font-size: 1.125rem; }
}

.v1-plan-tagline {
    font-size: 0.75rem;
    color: var(--v1-text-muted);
    margin: 0.25rem 0 0 0;
    line-height: 1.4;
}
@media (min-width: 640px) {
    .v1-plan-tagline { font-size: 0.875rem; }
}

/* Price row: large bold price, /mo smaller and muted (v1: flex items-baseline) */
.v1-plan-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
@media (min-width: 640px) {
    .v1-plan-price-row { margin-bottom: 1.25rem; }
}

.v1-plan-from {
    display: block;
    font-size: 0.75rem;
    color: var(--v1-text-muted);
    margin-bottom: 0.25rem;
}

.v1-plan-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}
@media (min-width: 640px) {
    .v1-plan-amount { font-size: 1.875rem; }
}

.v1-plan-card--featured .v1-plan-amount {
    color: var(--v1-primary);
}

.v1-plan-cycle {
    font-size: 0.875rem;
    color: var(--v1-text-muted);
    font-weight: 500;
    margin-left: 0.25rem;
}

.v1-plan-setup {
    display: block;
    font-size: 0.75rem;
    color: var(--v1-text-muted);
    margin-top: 0.25rem;
}

/* Button: wide rounded-full, soft bg (v1: py-2.5 rounded-full bg-slate-100) */
.v1-plan-btn {
    display: block;
    width: 100%;
    padding: 0.625rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 1rem;
    border: none;
    cursor: pointer;
}
@media (min-width: 640px) {
    .v1-plan-btn { margin-bottom: 1.25rem; }
}

.v1-plan-btn--primary {
    background: var(--v1-primary);
    color: #fff;
    box-shadow: 0 4px 14px var(--v1-primary-shadow);
}

.v1-plan-btn--primary:hover {
    background: var(--v1-primary-hover);
    color: #fff;
    box-shadow: 0 6px 20px var(--v1-primary-shadow);
}

.v1-plan-btn:not(.v1-plan-btn--primary):not(.v1-plan-btn--disabled) {
    background: #f1f5f9;
    color: var(--v1-text-heading);
}

.v1-plan-btn:not(.v1-plan-btn--primary):not(.v1-plan-btn--disabled):hover {
    background: #e2e8f0;
    color: var(--v1-text-heading);
}

.v1-plan-btn--disabled {
    background: #e2e8f0;
    color: var(--v1-text-muted);
    cursor: not-allowed;
    pointer-events: none;
}

/* Product description under button: each line with check (v1: flex flex-col gap-2.5, check_circle + text) */
.v1-plan-features {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex: 1 1 auto;
    margin-top: 0;
}

.v1-plan-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--v1-text-features);
    line-height: 1.4;
}
@media (min-width: 640px) {
    .v1-plan-feature { font-size: 0.875rem; }
}

.v1-plan-feature-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    background: var(--v1-primary);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}

.v1-plan-feature-text {
    flex: 1;
}

.v1-plan-card-glow {
    position: absolute;
    bottom: -2.5rem;
    right: -2.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(13, 108, 242, 0.1);
    border-radius: 50%;
    filter: blur(24px);
    pointer-events: none;
}

/* Included with plans */
.v1-plan-includes {
    padding: 1.5rem;
    border-radius: var(--v1-radius);
    background: var(--v1-glass-card-bg);
    border: 1px solid var(--v1-glass-card-border);
}

.v1-plan-includes-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--v1-primary);
    display: block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.v1-plan-includes-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .v1-plan-includes-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .v1-plan-includes-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.v1-plan-includes-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--v1-text);
}

.v1-plan-includes-icon {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
    background: #22c55e;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}

/* ========== Addons page – slim cards (same glass-card look as products) ========== */
.lexus-addon-empty {
    text-align: center;
    padding: 1.5rem 2rem;
}
.lexus-addon-back-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--v1-primary);
    font-weight: 500;
    text-decoration: none;
}
.lexus-addon-back-link:hover {
    text-decoration: underline;
    color: var(--v1-primary-hover);
}

.lexus-addon-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .lexus-addon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

.lexus-addon-card {
    background: var(--v1-glass-card-bg);
    border: 1px solid var(--v1-glass-card-border);
    border-radius: var(--v1-radius);
    box-shadow: var(--v1-glass-card-shadow);
    padding: 1rem 1.25rem;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.lexus-addon-card:hover {
    box-shadow: var(--v1-glass-card-hover-shadow);
    border-color: rgba(13, 108, 242, 0.15);
}

.lexus-addon-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lexus-addon-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.lexus-addon-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--v1-text-heading);
    margin: 0;
    letter-spacing: -0.02em;
    flex: 1 1 auto;
    min-width: 0;
}
.lexus-addon-price--head {
    flex: 0 0 auto;
    text-align: right;
}
.lexus-addon-desc {
    font-size: 0.8125rem;
    color: var(--v1-text-muted);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.lexus-addon-card-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.lexus-addon-card-row .lexus-addon-dropdown {
    flex: 1 1 0;
    min-width: 0;
}
.lexus-addon-card-row .lexus-addon-btn {
    flex-shrink: 0;
}

.lexus-addon-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.25rem;
}
.lexus-addon-price-amount {
    font-weight: 600;
    font-size: 1rem;
    color: var(--v1-text-heading);
}
.lexus-addon-price-cycle {
    font-size: 0.8125rem;
    color: var(--v1-text-muted);
}
.lexus-addon-setup {
    display: block;
    font-size: 0.75rem;
    color: var(--v1-text-muted);
}
.lexus-addon-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    border: none;
    background: var(--v1-primary);
    color: #fff !important;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(13, 108, 242, 0.25);
    transition: background 0.2s, box-shadow 0.2s;
    outline: none;
}
.lexus-addon-btn:hover {
    background: var(--v1-primary-hover);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(13, 108, 242, 0.35);
}
.lexus-addon-btn:focus {
    outline: none;
    border: none;
    color: #fff !important;
}
.lexus-addon-btn:active {
    outline: none;
    border: none;
    color: #fff !important;
}

/* Addon product select: same custom dropdown as invoices page */
#order-lexus_cart .lexus-addon-dropdown.lexus-custom-dropdown {
    position: relative;
    display: block;
    width: 100%;
}
#order-lexus_cart .lexus-addon-select-native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}
#order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-trigger {
    width: 100%;
    min-height: 42px;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--v1-text);
    text-align: left;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
#order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-trigger:hover {
    border-color: rgba(13, 108, 242, 0.2);
    box-shadow: 0 2px 12px rgba(13, 108, 242, 0.08);
}
#order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-label {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--v1-text);
}
#order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-icon {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    color: var(--v1-text-muted);
    transition: transform 0.2s;
}
#order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 0.375rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    max-height: 200px;
    overflow-y: auto;
}
#order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-option {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--v1-text);
    transition: background 0.15s, color 0.15s;
}
#order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-option:hover,
#order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-option:focus {
    background: rgba(13, 108, 242, 0.08);
    color: var(--v1-primary);
}
#order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-option.is-selected {
    background: rgba(13, 108, 242, 0.12);
    color: var(--v1-primary);
    font-weight: 500;
}

/* ========== Configure Product page – Lexus design ========== */
.lexus-configure-wrap .lexus-configure-section {
    max-width: 1200px;
    margin: 0 auto;
}
.lexus-configure-header {
    margin-bottom: 1.5rem;
}
.lexus-configure-header .v1-plan-heading {
    margin-bottom: 0.25rem;
}
.lexus-configure-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}
@media (min-width: 992px) {
    .lexus-configure-grid {
        grid-template-columns: 1fr 320px;
    }
}
.lexus-configure-main {
    min-width: 0;
}
.lexus-configure-sidebar {
    position: sticky;
    top: 1rem;
}
.lexus-configure-wrap .lexus-card {
    background: var(--v1-glass-card-bg);
    border: 1px solid var(--v1-glass-card-border);
    box-shadow: var(--v1-glass-card-shadow);
    border-radius: var(--v1-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}
.lexus-configure-product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--v1-text-heading);
    margin: 0 0 0.5rem 0;
}
.lexus-configure-product-desc {
    font-size: 0.9375rem;
    color: var(--v1-text-muted);
    margin: 0;
    line-height: 1.5;
}
.lexus-configure-alert.alert-danger {
    border-radius: 1rem;
    margin-bottom: 1rem;
}
.lexus-configure-subheading {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--v1-primary);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.lexus-configure-subheading small {
    font-weight: 400;
    text-transform: none;
    color: var(--v1-text-muted);
}
.lexus-configure-field {
    margin-bottom: 1rem;
}
.lexus-configure-field:last-child {
    margin-bottom: 0;
}
.lexus-configure-field label,
.lexus-configure-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--v1-text-heading);
    margin-bottom: 0.375rem;
}
.lexus-configure-field .form-control,
.lexus-configure-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    color: var(--v1-text);
}
.lexus-configure-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.lexus-configure-row .lexus-configure-field:last-child {
    margin-bottom: 0;
}
@media (max-width: 576px) {
    .lexus-configure-row {
        grid-template-columns: 1fr;
    }
}
.lexus-configure-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 576px) {
    .lexus-configure-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.lexus-configure-field-full {
    grid-column: 1 / -1;
}
.lexus-configure-radios {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.lexus-configure-radio-label,
.lexus-configure-check-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--v1-text);
}
.lexus-configure-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.lexus-configure-qty-wrap .form-control-qty {
    width: 6rem;
}
.lexus-configure-qty-suffix {
    font-size: 0.875rem;
    color: var(--v1-text-muted);
}
.lexus-configure-text {
    font-size: 0.875rem;
    color: var(--v1-text-muted);
    margin: 0 0 0.75rem 0;
}
.lexus-configure-list {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.875rem;
    color: var(--v1-text);
}
.lexus-configure-list li {
    margin-bottom: 0.5rem;
}
.lexus-configure-list .lexus-btn {
    margin-left: 0.5rem;
}
.lexus-configure-help {
    display: block;
    font-size: 0.8125rem;
    color: var(--v1-text-muted);
    margin-top: 0.25rem;
}
.lexus-configure-addons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}
@media (min-width: 576px) {
    .lexus-configure-addons {
        grid-template-columns: repeat(2, 1fr);
    }
}
.lexus-configure-addon-card {
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.5);
    transition: border-color 0.2s, background 0.2s;
}
.lexus-configure-addon-card:hover,
.lexus-configure-addon-selected {
    border-color: rgba(13, 108, 242, 0.25);
    background: rgba(255, 255, 255, 0.7);
}
.lexus-configure-addon-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--v1-text-heading);
    margin: 0 0 0.25rem 0;
}

/* Custom checkbox – addon (and config option type 3) – matches Lexus style */
.lexus-custom-checkbox-input {
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    pointer-events: none;
}
.lexus-configure-addon-label .lexus-custom-checkbox-input,
.lexus-configure-check-label .lexus-custom-checkbox-input {
    position: absolute;
    pointer-events: auto;
}
.lexus-custom-checkbox-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.9);
    transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}
.lexus-custom-checkbox-input:checked + .lexus-custom-checkbox-box {
    background: var(--v1-primary);
    border-color: var(--v1-primary);
    box-shadow: 0 0 0 1px var(--v1-primary);
}
.lexus-custom-checkbox-input:checked + .lexus-custom-checkbox-box::after {
    content: "";
    display: block;
    width: 0.3rem;
    height: 0.55rem;
    margin: auto;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.lexus-custom-checkbox-input:focus-visible + .lexus-custom-checkbox-box {
    outline: 2px solid var(--v1-primary);
    outline-offset: 2px;
}
.lexus-configure-addon-label:hover .lexus-custom-checkbox-box,
.lexus-configure-check-label:hover .lexus-custom-checkbox-box {
    border-color: rgba(13, 108, 242, 0.4);
}
.lexus-configure-addon-desc {
    font-size: 0.8125rem;
    color: var(--v1-text-muted);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}
.lexus-configure-addon-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--v1-primary);
}
.lexus-configure-addon-promo {
    margin-bottom: 0.75rem;
}
.lexus-configure-help-alert {
    border-radius: 1rem;
    font-size: 0.875rem;
}
.lexus-configure-help-alert i {
    margin-right: 0.5rem;
}
/* ========== Order Summary / Checkout Card (configure product) ========== */
/* Card: 18–24px radius, soft layered shadow, more padding – modern SaaS/fintech */
.lexus-configure-summary-card.lexus-summary-card {
    padding: 1.5rem 1.75rem;
    border-radius: 1.25rem;
    border: 1px solid var(--v1-glass-card-border);
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 20px -5px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
    background: var(--v1-glass-card-bg);
}
.lexus-configure-summary-card .order-summary {
    position: relative;
    min-height: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.lexus-configure-summary-card .loader {
    position: static;
    flex: 0 0 auto;
    margin-right: 0.5rem;
    margin-top: 0.125rem;
    color: var(--v1-text-muted);
    font-size: 1.25rem;
}
.lexus-configure-summary-title {
    flex: 1 1 auto;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--v1-text-heading);
    margin: 0 0 1rem 0;
}
.lexus-configure-summary-card .summary-container {
    flex: 1 1 100%;
}
/* View cart: order summary is the card itself, same loader-left layout */
.lexus-configure-summary-card.order-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.lexus-configure-summary-card.order-summary > .loader {
    position: static;
    flex: 0 0 auto;
    margin-right: 0.5rem;
    margin-top: 0.125rem;
    color: var(--v1-text-muted);
    font-size: 1.25rem;
}
.lexus-configure-summary-card.order-summary > .lexus-configure-summary-title {
    flex: 1 1 auto;
}
.lexus-configure-summary-card.order-summary > .summary-container {
    flex: 1 1 100%;
}
/* Summary rows: flex alignment, dividers, consistent spacing */
.lexus-configure-summary-card #producttotal {
    font-size: 0.9375rem;
    color: var(--v1-text);
    margin-bottom: 1rem;
}
.lexus-configure-summary-card #producttotal .clearfix {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.9375rem;
}
.lexus-configure-summary-card #producttotal .clearfix:last-of-type {
    border-bottom: none;
}
.lexus-configure-summary-card #producttotal .pull-left {
    flex: 1 1 auto;
    min-width: 0;
    color: var(--v1-text);
}
.lexus-configure-summary-card #producttotal .pull-right {
    flex: 0 0 auto;
    font-weight: 500;
    color: var(--v1-text-heading);
    text-align: right;
}
.lexus-configure-summary-card #producttotal .summary-totals .clearfix {
    padding: 0.4rem 0;
}
/* Total Due Today: prominent block, divider, larger amount */
.lexus-configure-summary-card #producttotal .total-due-today {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    font-weight: 600;
    color: var(--v1-text-heading);
}
.lexus-configure-summary-card #producttotal .total-due-today .amt {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--v1-primary);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}
.lexus-configure-summary-card #producttotal .total-due-today span:last-child {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--v1-text-muted);
}
.lexus-configure-submit-wrap {
    margin-top: 1.25rem;
}
/* CTA: pill, blue gradient, soft shadow, hover lift */
.lexus-configure-summary-card .lexus-summary-cta {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    background: linear-gradient(135deg, #0d6cf2 0%, #0a5cd4 100%);
    box-shadow: 0 4px 14px rgba(13, 108, 242, 0.35);
    color: #fff;
    cursor: pointer;
    transition: box-shadow 0.25s ease, transform 0.2s ease, background 0.25s ease;
}
.lexus-configure-summary-card .lexus-summary-cta:hover {
    background: linear-gradient(135deg, #1568e8 0%, #0b5ed7 100%);
    box-shadow: 0 6px 20px rgba(13, 108, 242, 0.4);
    transform: translateY(-1px);
}
.lexus-configure-summary-card .lexus-summary-cta:active {
    transform: translateY(0);
}

/* ========== Dark mode: category switch + plans + addons ========== */
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-login-switch {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-login-switch-item {
    color: #94a3b8;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-login-switch-item:hover {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.15);
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-login-switch-item.is-active {
    background: var(--v1-primary);
    color: #ffffff;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-login-switch-item.is-active:hover {
    background: var(--v1-primary-hover);
    color: #ffffff;
}

/* Plans – dark mode */
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-heading {
    color: #e2e8f0;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-subheading {
    color: #94a3b8;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-card {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-card:hover {
    background: rgba(30, 41, 59, 0.7);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(96, 165, 250, 0.25);
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-card--featured {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-card--featured:hover {
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.25);
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-name {
    color: #e2e8f0;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-tagline {
    color: #94a3b8;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-from,
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-cycle,
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-setup {
    color: #94a3b8;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-amount {
    color: #f1f5f9;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-card--featured .v1-plan-amount {
    color: #60a5fa;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-btn--primary {
    color: #ffffff;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-btn--primary:hover {
    color: #ffffff;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-btn:not(.v1-plan-btn--primary):not(.v1-plan-btn--disabled) {
    background: rgba(51, 65, 85, 0.8);
    color: #e2e8f0;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-btn:not(.v1-plan-btn--primary):not(.v1-plan-btn--disabled):hover {
    background: rgba(71, 85, 105, 0.9);
    color: #e2e8f0;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-btn--disabled {
    background: rgba(51, 65, 85, 0.5);
    color: #64748b;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-feature {
    color: #cbd5e1;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-feature-icon {
    background: #60a5fa;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-card-glow {
    background: rgba(59, 130, 246, 0.15);
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-includes {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(255, 255, 255, 0.08);
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-includes-title {
    color: #60a5fa;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-includes-list li {
    color: #cbd5e1;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .v1-plan-alert {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}

/* Addons page – dark mode */
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-addon-card {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-addon-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(96, 165, 250, 0.2);
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-addon-name {
    color: #e2e8f0;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-addon-desc {
    color: #94a3b8;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-addon-price-amount {
    color: #e2e8f0;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-addon-price-cycle,
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-addon-setup {
    color: #94a3b8;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-addon-btn {
    color: #ffffff !important;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-addon-btn:hover,
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-addon-btn:focus,
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-addon-btn:active {
    color: #ffffff !important;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-addon-back-link {
    color: #60a5fa;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-addon-back-link:hover {
    color: #93c5fd;
}
html.lexus-theme-dark #order-lexus_cart.v1-plan-wrap .lexus-addon-empty {
    color: #cbd5e1;
}

/* Addon dropdown – dark mode */
html.lexus-theme-dark #order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-trigger {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
html.lexus-theme-dark #order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-trigger:hover {
    border-color: rgba(96, 165, 250, 0.25);
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.15);
}
html.lexus-theme-dark #order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-label {
    color: #e2e8f0;
}
html.lexus-theme-dark #order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-icon {
    color: #94a3b8;
}
html.lexus-theme-dark #order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-panel {
    background: rgba(30, 41, 59, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
html.lexus-theme-dark #order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-option {
    color: #cbd5e1;
}
html.lexus-theme-dark #order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-option:hover,
html.lexus-theme-dark #order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-option:focus {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}
html.lexus-theme-dark #order-lexus_cart .lexus-addon-dropdown .lexus-custom-dropdown-option.is-selected {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

/* Configure Product – dark mode */
html.lexus-theme-dark .lexus-configure-wrap .lexus-card {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
html.lexus-theme-dark .lexus-configure-product-name {
    color: #e2e8f0;
}
html.lexus-theme-dark .lexus-configure-product-desc {
    color: #94a3b8;
}
html.lexus-theme-dark .lexus-configure-subheading {
    color: #60a5fa;
}
html.lexus-theme-dark .lexus-configure-field label,
html.lexus-theme-dark .lexus-configure-label {
    color: #e2e8f0;
}
html.lexus-theme-dark .lexus-configure-field .form-control,
html.lexus-theme-dark .lexus-configure-select {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}
html.lexus-theme-dark .lexus-configure-radio-label,
html.lexus-theme-dark .lexus-configure-check-label {
    color: #cbd5e1;
}
html.lexus-theme-dark .lexus-custom-checkbox-box {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(30, 41, 59, 0.8);
}
html.lexus-theme-dark .lexus-custom-checkbox-input:checked + .lexus-custom-checkbox-box {
    background: var(--v1-primary);
    border-color: var(--v1-primary);
    box-shadow: 0 0 0 1px var(--v1-primary);
}
html.lexus-theme-dark .lexus-configure-addon-label:hover .lexus-custom-checkbox-box,
html.lexus-theme-dark .lexus-configure-check-label:hover .lexus-custom-checkbox-box {
    border-color: rgba(96, 165, 250, 0.5);
}
html.lexus-theme-dark .lexus-configure-qty-suffix {
    color: #94a3b8;
}
html.lexus-theme-dark .lexus-configure-text,
html.lexus-theme-dark .lexus-configure-list {
    color: #cbd5e1;
}
html.lexus-theme-dark .lexus-configure-addon-card {
    background: rgba(30, 41, 59, 0.4);
    border-color: rgba(255, 255, 255, 0.06);
}
html.lexus-theme-dark .lexus-configure-addon-card:hover,
html.lexus-theme-dark .lexus-configure-addon-selected {
    border-color: rgba(96, 165, 250, 0.25);
    background: rgba(30, 41, 59, 0.6);
}
html.lexus-theme-dark .lexus-configure-addon-label {
    color: #e2e8f0;
}
html.lexus-theme-dark .lexus-configure-addon-desc {
    color: #94a3b8;
}
html.lexus-theme-dark .lexus-configure-addon-price {
    color: #60a5fa;
}
html.lexus-theme-dark .lexus-configure-summary-title {
    color: #e2e8f0;
}
html.lexus-theme-dark .lexus-configure-summary-card #producttotal {
    color: #cbd5e1;
}
html.lexus-theme-dark .lexus-configure-summary-card #producttotal .clearfix {
    border-color: rgba(255, 255, 255, 0.08);
}
html.lexus-theme-dark .lexus-configure-summary-card #producttotal .pull-left {
    color: #cbd5e1;
}
html.lexus-theme-dark .lexus-configure-summary-card #producttotal .pull-right {
    color: #e2e8f0;
}
html.lexus-theme-dark .lexus-configure-summary-card #producttotal .total-due-today {
    border-color: rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
}
html.lexus-theme-dark .lexus-configure-summary-card #producttotal .total-due-today .amt {
    color: #60a5fa;
}
html.lexus-theme-dark .lexus-configure-summary-card #producttotal .total-due-today span:last-child {
    color: #94a3b8;
}
html.lexus-theme-dark .lexus-configure-summary-card .lexus-summary-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}
html.lexus-theme-dark .lexus-configure-summary-card .lexus-summary-cta:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
}

/* ========== View Cart – Lexus design ========== */
.lexus-viewcart-wrap .lexus-viewcart-section {
    max-width: 1200px;
    margin: 0 auto;
}
.lexus-viewcart-header {
    margin-bottom: 1.5rem;
}
.lexus-viewcart-header .v1-plan-heading {
    margin-bottom: 0;
}
.lexus-viewcart-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}
@media (min-width: 992px) {
    .lexus-viewcart-grid {
        grid-template-columns: 1fr 320px;
    }
}
.lexus-viewcart-main {
    min-width: 0;
}
.lexus-viewcart-sidebar {
    position: sticky;
    top: 1rem;
}
.lexus-viewcart-alert {
    border-radius: 1rem;
    margin-bottom: 1rem;
}
.lexus-viewcart-card.lexus-card {
    background: var(--v1-glass-card-bg);
    border: 1px solid var(--v1-glass-card-border);
    box-shadow: var(--v1-glass-card-shadow);
    border-radius: var(--v1-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}
.lexus-viewcart-items-header {
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.lexus-viewcart-items-header-inner {
    display: grid;
    grid-template-columns: 1fr auto 40px;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--v1-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.lexus-viewcart-items-header-inner.has-qty {
    grid-template-columns: 1fr auto auto 40px;
}
.lexus-viewcart-col-price {
    text-align: right;
}
.lexus-viewcart-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.lexus-viewcart-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.lexus-viewcart-item:last-of-type {
    border-bottom: none;
}
.lexus-viewcart-item-inner {
    display: grid;
    grid-template-columns: 1fr auto 40px;
    gap: 0.75rem;
    align-items: start;
}
.lexus-viewcart-items.has-qty .lexus-viewcart-item-inner {
    grid-template-columns: 1fr auto auto 40px;
}
.lexus-viewcart-col-desc {
    min-width: 0;
}
.lexus-viewcart-item-title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--v1-text-heading);
    margin-bottom: 0.25rem;
}
.lexus-viewcart-item-title .lexus-viewcart-link {
    font-weight: 500;
    font-size: 0.8125rem;
    margin-left: 0.5rem;
}
.lexus-viewcart-item-group,
.lexus-viewcart-item-domain {
    display: block;
    font-size: 0.8125rem;
    color: var(--v1-text-muted);
    margin-top: 0.125rem;
}
.lexus-viewcart-config {
    display: block;
    font-size: 0.8125rem;
    color: var(--v1-text-muted);
    margin-top: 0.25rem;
}
.lexus-viewcart-link {
    color: var(--v1-primary);
    text-decoration: none;
}
.lexus-viewcart-link:hover {
    text-decoration: underline;
    color: var(--v1-primary-hover);
}
.lexus-viewcart-remove-btn {
    background: none;
    border: none;
    color: var(--v1-text-muted);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1rem;
}
.lexus-viewcart-remove-btn:hover {
    color: #dc3545;
}
.lexus-viewcart-item-price {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--v1-text);
    text-align: right;
    white-space: nowrap;
}
.lexus-viewcart-cycle {
    display: block;
    font-size: 0.8125rem;
    color: var(--v1-text-muted);
    font-weight: 400;
}
.lexus-viewcart-prorata {
    font-size: 0.75rem;
    color: var(--v1-text-muted);
}
.lexus-viewcart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.lexus-viewcart-item-qty .form-control {
    width: 4rem;
    text-align: center;
    padding: 0.35rem 0.5rem;
}
.lexus-viewcart-upgrade-credit {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    padding: 0.75rem 0 0;
    margin-top: 0.5rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
    color: var(--v1-text-muted);
}
.lexus-viewcart-upgrade-msg {
    font-size: 0.8125rem;
    margin-top: 0.25rem;
}
.lexus-viewcart-empty {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 1rem;
    color: var(--v1-text-muted);
}
.lexus-viewcart-empty-cart-wrap {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.lexus-viewcart-gateway {
    margin-bottom: 1rem;
}
.lexus-viewcart-tabs-wrap .nav-tabs {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 -0.25rem 1rem 0;
    gap: 0;
}
.lexus-viewcart-tabs-wrap .nav-link {
    border: none;
    border-radius: 0.75rem 0.75rem 0 0;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--v1-text-muted);
    background: transparent;
}
.lexus-viewcart-tabs-wrap .nav-link:hover {
    color: var(--v1-primary);
}
.lexus-viewcart-tabs-wrap .nav-link.active {
    color: var(--v1-primary);
    background: rgba(13, 108, 242, 0.08);
}
.lexus-viewcart-tab-content .tab-pane {
    padding: 0;
}
.lexus-viewcart-promo-form,
.lexus-viewcart-tax-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 320px;
}
.lexus-viewcart-promo-field .form-control,
.lexus-viewcart-field .form-control {
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
}
.lexus-viewcart-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--v1-text-heading);
}
.lexus-viewcart-promo-code {
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    color: var(--v1-text);
}
.lexus-viewcart-summary-row {
    font-size: 0.875rem;
    padding: 0.35rem 0;
    color: var(--v1-text);
}
.lexus-viewcart-bordered-totals {
    padding: 0.25rem 0;
}
.lexus-viewcart-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--v1-text-heading);
}
.lexus-viewcart-total .amt {
    display: block;
    font-size: 1.5rem;
    color: var(--v1-primary);
}
.lexus-viewcart-checkout-wrap {
    margin-top: 1.25rem;
    text-align: center;
}
.lexus-viewcart-checkout-wrap .lexus-btn {
    width: 100%;
    padding: 0.75rem 1.25rem;
    margin-bottom: 0.5rem;
}
.lexus-viewcart-continue {
    font-size: 0.875rem;
    color: var(--v1-primary);
    text-decoration: none;
}
.lexus-viewcart-continue:hover {
    text-decoration: underline;
    color: var(--v1-primary-hover);
}
.lexus-viewcart-renewal {
    font-size: 0.75rem;
    color: var(--v1-text-muted);
}
/* View cart: custom dropdowns (domain period, country) use base .lexus-custom-dropdown from theme */
.lexus-viewcart-domain-dropdown.lexus-custom-dropdown {
    display: inline-block;
    min-width: 0;
}
.lexus-viewcart-domain-dropdown .lexus-custom-dropdown-trigger {
    font-size: 0.875rem;
    padding: 0.35rem 0.6rem;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .lexus-viewcart-item-inner,
    .lexus-viewcart-items.has-qty .lexus-viewcart-item-inner {
        grid-template-columns: 1fr auto;
    }
    .lexus-viewcart-col-action.d-none.d-sm-block {
        display: none !important;
    }
    .lexus-viewcart-item-price {
        grid-column: 2;
    }
    .lexus-viewcart-col-qty {
        grid-column: 1 / -1;
    }
}
@media (max-width: 575px) {
    .lexus-viewcart-items-header-inner {
        display: none;
    }
    .lexus-viewcart-item-inner,
    .lexus-viewcart-item-inner.has-qty {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .lexus-viewcart-item-price {
        grid-column: 1;
        text-align: left;
    }
}

/* View cart – dark mode */
html.lexus-theme-dark .lexus-viewcart-card.lexus-card {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
html.lexus-theme-dark .lexus-viewcart-items-header {
    border-color: rgba(255, 255, 255, 0.1);
}
html.lexus-theme-dark .lexus-viewcart-items-header-inner {
    color: #94a3b8;
}
html.lexus-theme-dark .lexus-viewcart-item {
    border-color: rgba(255, 255, 255, 0.06);
}
html.lexus-theme-dark .lexus-viewcart-item-title {
    color: #e2e8f0;
}
html.lexus-theme-dark .lexus-viewcart-item-group,
html.lexus-theme-dark .lexus-viewcart-item-domain,
html.lexus-theme-dark .lexus-viewcart-config {
    color: #94a3b8;
}
html.lexus-theme-dark .lexus-viewcart-link {
    color: #60a5fa;
}
html.lexus-theme-dark .lexus-viewcart-remove-btn {
    color: #94a3b8;
}
html.lexus-theme-dark .lexus-viewcart-remove-btn:hover {
    color: #f87171;
}
html.lexus-theme-dark .lexus-viewcart-item-price {
    color: #e2e8f0;
}
html.lexus-theme-dark .lexus-viewcart-cycle,
html.lexus-theme-dark .lexus-viewcart-prorata,
html.lexus-theme-dark .lexus-viewcart-renewal {
    color: #94a3b8;
}
html.lexus-theme-dark .lexus-viewcart-empty {
    color: #94a3b8;
}
html.lexus-theme-dark .lexus-viewcart-tabs-wrap .nav-link {
    color: #94a3b8;
}
html.lexus-theme-dark .lexus-viewcart-tabs-wrap .nav-link.active {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.15);
}
html.lexus-theme-dark .lexus-viewcart-total {
    color: #e2e8f0;
    border-color: rgba(255, 255, 255, 0.1);
}
html.lexus-theme-dark .lexus-viewcart-total .amt {
    color: #60a5fa;
}
html.lexus-theme-dark .lexus-viewcart-continue {
    color: #60a5fa;
}
/* Order summary sidebar (view cart) – dark mode text */
html.lexus-theme-dark .lexus-configure-summary-card .summary-container {
    color: #cbd5e1;
}
html.lexus-theme-dark .lexus-configure-summary-card .lexus-viewcart-summary-row {
    color: #cbd5e1;
}
html.lexus-theme-dark .lexus-configure-summary-card .summary-container .recurring-charges,
html.lexus-theme-dark .lexus-configure-summary-card .summary-container .cost {
    color: #e2e8f0;
}
html.lexus-theme-dark .lexus-configure-summary-card .summary-container .subtotal,
html.lexus-theme-dark .lexus-configure-summary-card .summary-container .recurring-totals {
    color: #cbd5e1;
}
html.lexus-theme-dark .lexus-configure-summary-card .summary-container .total-due-today {
    color: #e2e8f0;
}
html.lexus-theme-dark .lexus-configure-summary-card .summary-container .total-due-today .amt {
    color: #60a5fa;
}
html.lexus-theme-dark .lexus-configure-summary-card .summary-container .separator {
    color: #94a3b8;
}
html.lexus-theme-dark .lexus-viewcart-upgrade-credit {
    border-color: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}
