/* MD-CLOUD clean palette for Nexus cart */
:host,
:root,
#nexus-root {
    --vl-primary: #003D40;
    --vl-primary-lifted: #0A575B;
    --vl-primary-accented: #002B2D;

    --vl-secondary: #F8FAFC;
    --vl-secondary-lifted: #FFFFFF;
    --vl-secondary-accented: #E2E8F0;

    --vl-success: #FFD100;
    --vl-success-lifted: #FFE066;
    --vl-success-accented: #E1B900;

    --vl-info: #003D40;
    --vl-info-lifted: #0A575B;
    --vl-info-accented: #002B2D;

    --vl-notice: #EAF4F4;
    --vl-notice-lifted: #F4FAFA;
    --vl-notice-accented: #D5E7E7;

    --vl-warning: #FFF5CC;
    --vl-warning-lifted: #FFF9E2;
    --vl-warning-accented: #F0D76A;

    --vl-error: #D92D20;
    --vl-error-lifted: #FEECEB;
    --vl-error-accented: #B42318;

    --vl-grayscale: #94A3B8;
    --vl-grayscale-lifted: #CBD5E1;
    --vl-grayscale-accented: #64748B;

    --vl-neutral: #E2E8F0;
    --vl-neutral-lifted: #F8FAFC;
    --vl-neutral-accented: #CBD5E1;

    --vl-text: #0F172A;
    --vl-text-lifted: #334155;
    --vl-text-muted: #64748B;
    --vl-text-accented: #003D40;
    --vl-text-inverted: #FFFFFF;

    --vl-border: rgba(15, 23, 42, 0.10);
    --vl-border-lifted: rgba(15, 23, 42, 0.06);
    --vl-border-muted: rgba(15, 23, 42, 0.14);
    --vl-border-accented: rgba(0, 61, 64, 0.22);

    --vl-bg: #F3F6F8;
    --vl-bg-lifted: #FFFFFF;
    --vl-bg-muted: #EDF2F7;
    --vl-bg-accented: #EAF4F4;
    --vl-bg-inverted: #003D40;

    --vl-text-xs: 12px;
    --vl-text-sm: 14px;
    --vl-text-md: 16px;
    --vl-text-lg: 20px;

    --vl-outline-sm: 1px;
    --vl-outline-md: 2px;
    --vl-outline-lg: 3px;

    --vl-rounding-sm: 12px;
    --vl-rounding-md: 18px;
    --vl-rounding-lg: 24px;

    --vl-letter-spacing: -0.01em;
    --vl-disabled-opacity: .55;
    --vl-spacing: 1rem;

    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:host {
    color-scheme: light;
}

.mdcloud-store-page {
    padding-top: 10px;
}

.mdcloud-store-page .cart-body {
    min-width: 0;
}

.cart-body {
    padding-left: 4px;
}

.mdcloud-store-page .products {
    margin-top: 6px;
    margin-bottom: 12px;
}

.mdcloud-store-header {
    margin: 0 0 24px;
    padding: 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.mdcloud-store-header h1 {
    margin: 0;
    color: #10363b;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.mdcloud-store-header p {
    margin: 8px 0 0;
    color: #5d7074;
    font-size: 15px;
    line-height: 1.5;
}

.cart-sidebar {
    padding-right: 28px;
}

.cart-sidebar .panel,
.cart-sidebar .sidebar-box {
    background: #ffffff;
    border: 1px solid rgba(0, 61, 64, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    margin-bottom: 18px;
}

.cart-sidebar .panel-heading {
    background: #ffffff !important;
    color: #16383d !important;
    border-bottom: 1px solid rgba(0, 61, 64, 0.06);
    padding: 16px 18px;
    font-size: 16px;
    font-weight: 700;
}

.cart-sidebar .list-group-item,
.cart-sidebar a {
    border: 0 !important;
    color: #2e474b;
    font-size: 14px;
}

.cart-sidebar .list-group-item:hover,
.cart-sidebar a:hover {
    background: rgba(255, 209, 0, 0.08);
    color: #003d40;
}

#products .row {
    align-items: stretch;
}

.mdcloud-product-col {
    margin-bottom: 0;
    display: flex;
    align-self: stretch;
}

.mdcloud-product-col .mdcloud-product-card {
    width: 100%;
    max-width: 370px;
}

.mdcloud-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-self: stretch;
    background: #ffffff;
    border: 1px solid rgba(0, 61, 64, 0.10);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mdcloud-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 209, 0, 0.45);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.08);
}

.mdcloud-product-head {
    position: relative;
    padding: 20px 20px 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
    border-bottom: 1px solid rgba(0, 61, 64, 0.06);
}

.mdcloud-product-title {
    position: relative;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 0;
    color: #11363b;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.mdcloud-product-title::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffd100 0%, #0a4b50 100%);
}

.mdcloud-product-head .qty {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(0, 61, 64, 0.06);
    color: #39565a;
    font-size: 12px;
    font-weight: 700;
}

.mdcloud-product-body {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    padding: 10px 20px 8px;
    background: #ffffff;
}

.mdcloud-product-subtitle {
    margin: 0 0 12px;
    color: #667b7f;
    font-size: 14px;
    line-height: 1.55;
}

.mdcloud-feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mdcloud-feature-list li {
    margin: 0 0 6px;
    padding: 0;
    color: #567074;
    font-size: 15px;
    line-height: 1.45;
    border: 0;
    background: transparent;
}

.mdcloud-feature-list li:last-child {
    margin-bottom: 0;
}

.mdcloud-feature-list .feature-value {
    color: #003d40;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    margin-right: 4px;
}

.mdcloud-feature-list .feature-label {
    color: #567074;
    font-size: 15px;
    line-height: 1.45;
}

.mdcloud-product-footer {
    margin-top: 0;
    padding: 14px 20px 14px;
    background: linear-gradient(180deg, #07484d 0%, #042e32 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 0 22px 22px;
}

.mdcloud-product-footer > *:last-child {
    margin-bottom: 0 !important;
}

.mdcloud-product-footer .product-pricing {
    margin: 0 0 14px;
}

.mdcloud-price-label {
    display: inline-block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mdcloud-product-footer .price {
    display: block;
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.mdcloud-product-footer .mdcloud-cycle {
    display: inline-block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 500;
}

.mdcloud-product-footer small {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
}

.mdcloud-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    margin: 0 !important;
    padding: 0 20px;
    border: 0 !important;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffd100 0%, #f2c700 100%) !important;
    color: #082f33 !important;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(255, 209, 0, 0.22);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.mdcloud-order-btn:hover,
.mdcloud-order-btn:focus {
    transform: translateY(-2px);
    color: #082f33 !important;
    box-shadow: 0 18px 30px rgba(255, 209, 0, 0.30);
    filter: brightness(.99);
}

.mdcloud-order-btn i {
    font-size: 13px;
}

/* Kill inherited clearfix pseudo-elements that create white strip under cards */
.mdcloud-product-card::before,
.mdcloud-product-card::after {
    content: none !important;
    display: none !important;
}

.product.clearfix::after,
.product.clearfix::before,
.mdcloud-product-card.clearfix::after,
.mdcloud-product-card.clearfix::before {
    content: none !important;
    display: none !important;
    clear: none !important;
}

.mdcloud-product-card,
.mdcloud-product-footer {
    background-clip: padding-box;
}

.mdcloud-product-footer {
    display: block;
    margin-top: 0 !important;
    padding: 14px 20px 14px !important;
    border-radius: 0 0 22px 22px;
}

#products .row {
    align-items: stretch;
    row-gap: 0;
}

@media (max-width: 767.98px) {
    .mdcloud-products-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .mdcloud-products-grid > * {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .mdcloud-product-card {
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .row > [class*="col-"] {
        margin-bottom: 18px;
    }

    .mdcloud-product-card {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .mdcloud-product-card + .mdcloud-product-card {
        margin-top: 18px;
    }
}

.mdcloud-product-features p {
    margin: 0;
    color: #5b7276;
    line-height: 1.6;
}

.mdcloud-product-body select.form-control {
    border-radius: 12px;
    min-height: 44px;
}

.mdcloud-product-setup {
    margin-top: 4px;
    font-size: 13px;
    color: rgba(255,255,255,.82);
}
.mdcloud-product-body p {
    margin: 0;
    color: #5b7276;
    line-height: 1.6;
}

.mdcloud-product-body .form-control {
    min-height: 46px;
    border-radius: 12px;
}

.mdcloud-product-body {
    flex: 1 1 auto;
}

.mdcloud-product-body .form-group {
    margin-bottom: 14px !important;
}

/* ============================================================
   DOMAIN REGISTER PAGE
   ============================================================ */

/* Page header */
.mdcloud-store-header h1,
#order-standard_cart .cart-body > .mdcloud-store-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: #0e3336;
    letter-spacing: -0.03em;
}

/* Domain checker wrapper */
.domain-checker-container {
    margin: 0 0 28px;
}

.domain-checker-bg {
    background: linear-gradient(135deg, #003D40 0%, #0a5257 100%);
    border-radius: 20px;
    padding: 28px 28px 24px;
    box-shadow: 0 12px 32px rgba(0, 61, 64, 0.22);
}

/* Simple search input */
.domain-checker-bg .form-control,
.domain-checker-bg input[type="text"] {
    height: 54px;
    border: 0;
    border-radius: 14px 0 0 14px !important;
    background: #ffffff;
    color: #0e3336;
    font-size: 15px;
    font-weight: 500;
    padding: 0 18px;
    box-shadow: none;
    outline: none;
}

.domain-checker-bg .form-control:focus,
.domain-checker-bg input[type="text"]:focus {
    box-shadow: none;
    border: 0;
}

/* AI mode layout */
.domain-checker-bg .input-group-box {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* Barre du bas : selects à gauche, bouton à droite */
.ai-search-controls {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    position: static !important;
    z-index: auto !important;
    width: 100% !important;
    margin-top: 0 !important;
}

.ai-search-controls .btn,
.domain-checker-bg .ai-search-controls #btnCheckAvailability,
.domain-checker-bg .ai-search-controls .btn-primary {
    position: static !important;
    z-index: auto !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
    border-radius: 999px !important;
}

.ai-search-controls-left {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex: 1 1 auto !important;
}

/* AI textarea */
.domain-checker-bg textarea {
    border: 0 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: #0e3336 !important;
    font-size: 14px !important;
    padding: 14px 18px !important;
    resize: none;
    box-shadow: none !important;
    min-height: 90px !important;
    display: block !important;
    width: 100% !important;
}

/* Search / Vérifier button */
.domain-checker-bg .btn-primary.domain-check-availability,
.domain-checker-bg #btnCheckAvailability {
    height: 54px;
    min-width: 130px;
    border: 0 !important;
    border-radius: 0 14px 14px 0 !important;
    background: linear-gradient(180deg, #FFD100 0%, #f2c700 100%) !important;
    color: #082f33 !important;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
    box-shadow: 0 8px 20px rgba(255, 209, 0, 0.28);
    transition: filter .15s ease, box-shadow .15s ease;
}

.domain-checker-bg .btn-primary.domain-check-availability:hover,
.domain-checker-bg #btnCheckAvailability:hover {
    filter: brightness(1.04);
    box-shadow: 0 10px 24px rgba(255, 209, 0, 0.36);
}

/* Advanced search controls row */
.domain-checker-bg .multiselect,
.domain-checker-advanced .multiselect {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.22) !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 600;
}

.domain-checker-advanced label {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 13px !important;
    font-weight: 600;
}

.domain-checker-advanced input[type="checkbox"] {
    accent-color: #FFD100;
}

/* CAPTCHA inside domain checker */
.domain-checker-bg .captcha-container,
.domain-checker-bg #captchaContainer {
    margin-top: 16px;
}

.domain-checker-bg .default-captcha {
    background: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 14px !important;
    padding: 14px 18px !important;
    display: flex;
    align-items: center;
    gap: 14px;
}

.domain-checker-bg .default-captcha p {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin: 0 0 8px !important;
}

.domain-checker-bg .default-captcha img {
    border-radius: 8px !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    height: 38px;
    width: auto;
}

.domain-checker-bg .default-captcha .form-control.input-sm {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.30) !important;
    border-radius: 10px !important;
    color: #fff !important;
    height: 38px !important;
    font-size: 14px !important;
    width: 120px !important;
    flex-shrink: 0;
}

.domain-checker-bg .default-captcha .form-control.input-sm::placeholder {
    color: rgba(255, 255, 255, 0.55) !important;
}

.domain-checker-bg .default-captcha .form-control.input-sm:focus {
    border-color: #FFD100 !important;
    box-shadow: 0 0 0 3px rgba(255, 209, 0, 0.20) !important;
    outline: none !important;
}

/* Domain options (radio buttons below the checker) */
#order-standard_cart .cart-body > p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    margin: 0 0 10px;
}

/* Radio option rows shown OUTSIDE the bg box */
.domain-checker-container + p,
.domain-checker-container ~ p {
    color: #56737a;
    font-size: 14px;
}

/* Domain options rows - the radio inputs under the checker */
#order-standard_cart .cart-body .radio,
#order-standard_cart .cart-body label.radio-inline {
    color: #56737a;
    font-size: 14px;
}

/* Domain search results */
#DomainSearchResults {
    margin: 0 0 24px;
}

.primary-domain-header {
    font-size: 17px;
    font-weight: 700;
    color: #0e3336;
    margin: 0 0 10px;
}

.domain-checker-result-headline {
    background: #f8fbfb;
    border: 1px solid rgba(0, 61, 64, 0.10);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 16px;
}

.domain-lookup-loader {
    color: #567074;
    font-size: 14px;
}

.domain-checker-available {
    color: #0a5a2f !important;
    font-weight: 700;
    font-size: 16px;
}

.domain-checker-unavailable {
    color: #b91c1c !important;
    font-weight: 600;
}

.domain-price .btn-add-to-cart,
.domain-lookup-result .btn-add-to-cart {
    background: linear-gradient(180deg, #FFD100 0%, #f2c700 100%) !important;
    color: #082f33 !important;
    border: 0 !important;
    border-radius: 10px !important;
    font-weight: 800;
    font-size: 14px;
    padding: 9px 20px;
    box-shadow: 0 6px 16px rgba(255, 209, 0, 0.22);
    transition: filter .15s ease;
}

.domain-price .btn-add-to-cart:hover,
.domain-lookup-result .btn-add-to-cart:hover {
    filter: brightness(1.05);
}

/* Spotlight TLDs */
.spotlight-tlds {
    margin-bottom: 20px;
}

.spotlight-tld {
    background: #fff;
    border: 1px solid rgba(0, 61, 64, 0.10);
    border-radius: 14px;
    padding: 14px 16px;
    text-align: center;
    font-weight: 700;
    color: #0e3336;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: box-shadow .15s ease, border-color .15s ease;
}

.spotlight-tld:hover {
    border-color: rgba(255, 209, 0, 0.5);
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}

/* Suggested domains panel */
.suggested-domains {
    background: #fff;
    border: 1px solid rgba(0, 61, 64, 0.10);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    margin-bottom: 24px;
}

.suggested-domains .panel-heading,
.suggested-domains .card-header {
    background: #f8fbfb !important;
    border-bottom: 1px solid rgba(0,61,64,0.08) !important;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 700;
    color: #0e3336;
}

.suggested-domains .list-group-item.domain-suggestion {
    border-bottom: 1px solid rgba(0,61,64,0.06) !important;
    padding: 12px 18px;
    color: #0e3336;
    font-size: 14px;
    font-weight: 600;
    transition: background .12s ease;
}

.suggested-domains .list-group-item.domain-suggestion:hover {
    background: rgba(255, 209, 0, 0.06);
}

.suggested-domains .panel-footer,
.suggested-domains .card-footer {
    background: #f8fbfb !important;
    border-top: 1px solid rgba(0,61,64,0.08) !important;
    padding: 12px 18px;
}

/* Page description text (under title) */
#order-standard_cart .cart-body > p,
.domain-checker-container + p,
.domain-checker-container ~ p {
    color: #567074 !important;
    font-size: 14px;
}

/* TLD pricing table */
.domain-pricing {
    margin-top: 20px;
}

.domain-pricing h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0e3336;
    margin: 0 0 14px;
}

/* TLD filter badge pills */
.tld-filters {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 14px 16px 12px;
    background: #eaf4f4;
    border: 1px solid rgba(0, 61, 64, 0.14);
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
}

.tld-filters a.badge.badge-secondary,
.tld-filters a.badge,
.tld-filters > a {
    display: inline-block !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    background: #d4e9e9 !important;
    border: 1px solid rgba(0, 61, 64, 0.22) !important;
    color: #0e3336 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: background .14s ease, color .14s ease, border-color .14s ease;
    cursor: pointer;
    line-height: 1.4;
    white-space: nowrap;
}

.tld-filters a.badge.badge-secondary:hover,
.tld-filters a.badge:hover,
.tld-filters > a:hover {
    background: #bddada !important;
    color: #003D40 !important;
    border-color: rgba(0, 61, 64, 0.40) !important;
}

.tld-filters a.badge.active,
.tld-filters a.badge.badge-secondary.active,
.tld-filters > a.active {
    background: #003D40 !important;
    color: #FFD100 !important;
    border-color: #003D40 !important;
}

/* Fix: input-group-box white padding box inside checker */
.domain-checker-container .input-group-box {
    padding: 6px !important;
    background-color: transparent !important;
    border-radius: 16px !important;
}

/* bg-white wrapper — outer shell of the TLD table */
.tld-filters + .bg-white,
.domain-pricing .bg-white {
    border: 1px solid rgba(0, 61, 64, 0.12) !important;
    border-top: 0 !important;
    border-radius: 0 0 14px 14px !important;
    overflow: hidden;
    background: #fff !important;
}

/* TLD pricing header — fond teal sur toute la ligne */
.tld-pricing-header,
.domain-pricing .tld-pricing-header {
    background: linear-gradient(180deg, #003D40 0%, #0a4b50 100%) !important;
    padding: 0 !important;
    border-radius: 0 !important;
    color: #fff !important;
}

/* Fond teal forcé sur chaque cellule header (contourne les overrides parents) */
.tld-pricing-header .col-xs-2,
.tld-pricing-header .col-sm-2,
.tld-pricing-header .col-xs-4,
.tld-pricing-header .col-sm-4,
.tld-pricing-header .col-4,
.tld-pricing-header .col-md-4,
.tld-pricing-header .col-md-8,
.tld-pricing-header .row,
.domain-pricing .tld-pricing-header .col-xs-4,
.domain-pricing .tld-pricing-header .col-4 {
    background-color: transparent !important;
    border-bottom: 0 !important;
    border-radius: 0 !important;
    color: #fff !important;
}

/* Texte des colonnes register/transfer/renewal */
.tld-pricing-header .col-xs-4,
.tld-pricing-header .col-4 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: .07em !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Kill alternating styling */
.tld-pricing-header div:nth-child(odd),
.domain-pricing .tld-pricing-header div:nth-child(odd) {
    border-color: transparent !important;
    background-color: transparent !important;
}

.tld-pricing-header .tld-column,
.domain-pricing .tld-pricing-header .tld-column {
    text-align: left !important;
    padding-left: 20px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    border-radius: 0 !important;
    color: #fff !important;
}

/* Kill the column separator border from two-row-center */
.domain-pricing .two-row-center {
    border-right: 0 !important;
    padding-left: 20px !important;
    font-weight: 700;
    color: #0e3336;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    line-height: 1.4 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* TLD rows override */
.domain-pricing .tld-row {
    border-bottom: 1px solid rgba(0, 61, 64, 0.06) !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    font-size: 13px;
    color: #2e474b;
    align-items: center;
    transition: background .12s ease;
}

.domain-pricing .tld-row:hover {
    background: rgba(0, 61, 64, 0.025) !important;
}

.domain-pricing .tld-row.highlighted {
    background: rgba(0, 61, 64, 0.03) !important;
}

.domain-pricing .tld-row .col-md-8 .col-xs-4,
.domain-pricing .tld-row .col-md-8 .col-4 {
    color: #567074;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 0;
}

.domain-pricing .tld-row small {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.3;
}

.tld-sale-group {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.tld-sale-group-hot { background: #fee2e2; color: #b91c1c; }
.tld-sale-group-new { background: #d1fae5; color: #065f46; }
.tld-sale-group-sale { background: #fef3c7; color: #92400e; }

/* Domain promo boxes */
.domain-promo-box {
    background: linear-gradient(135deg, #003D40 0%, #0a5257 100%) !important;
    background-color: #003D40 !important;
    border: none !important;
    border-radius: 18px !important;
    padding: 26px 24px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 61, 64, 0.20);
}

.domain-promo-box .clearfix {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    margin-bottom: 16px !important;
    float: none !important;
}

.domain-promo-box .clearfix::before,
.domain-promo-box .clearfix::after {
    display: none !important;
    content: none !important;
}

.domain-promo-box i {
    color: #FFD100 !important;
    float: none !important;
    flex-shrink: 0;
    font-size: 3em !important;
    line-height: 1;
}

.domain-promo-box h3 {
    color: #fff !important;
    font-weight: 800;
    margin: 0 0 4px !important;
    font-size: 20px !important;
}

.domain-promo-box p {
    color: rgba(255,255,255,0.82) !important;
    margin: 0 0 12px;
    font-size: 14px;
}

.domain-promo-box .text-warning {
    color: #FFD100 !important;
    font-weight: 700;
}

.domain-promo-box .text-primary {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 700;
}

.domain-promo-box .btn-warning {
    background: linear-gradient(180deg, #FFD100 0%, #f2c700 100%) !important;
    border: 0 !important;
    border-radius: 10px !important;
    color: #082f33 !important;
    font-weight: 800;
    font-size: 14px;
    padding: 10px 22px;
    box-shadow: 0 6px 16px rgba(255, 209, 0, 0.28);
    transition: filter .15s ease;
}

.domain-promo-box .btn-warning:hover {
    filter: brightness(1.06);
}

.domain-promo-box .btn-primary {
    background: rgba(255,255,255,0.15) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    transition: background .15s ease;
}

.domain-promo-box .btn-primary:hover {
    background: rgba(255,255,255,0.22) !important;
}

.domain-promo-box .small {
    color: rgba(255,255,255,0.55);
    font-size: 11px;
    margin-top: 10px;
    display: block;
}

/* Featured TLDs */
.featured-tlds-container {
    margin-bottom: 28px;
}

.featured-tld {
    background: #fff;
    border: 1px solid rgba(0, 61, 64, 0.10);
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    margin-bottom: 16px;
    transition: box-shadow .15s ease, border-color .15s ease;
}

.featured-tld:hover {
    border-color: rgba(255, 209, 0, 0.45);
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}

.featured-tld .img-container img {
    height: 42px;
    object-fit: contain;
}

.featured-tld .price {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 800;
    color: #003D40;
}

/* ============================================================
   CONFIGURE PRODUCT PAGE
   ============================================================ */

/* Configure header */
#order-standard_cart .header-lined {
    background: linear-gradient(135deg, #003D40 0%, #0a5257 100%) !important;
    border-radius: 16px !important;
    padding: 22px 26px !important;
    margin: 0 0 24px !important;
    border: 0 !important;
    box-shadow: 0 8px 24px rgba(0, 61, 64, 0.18);
}

#order-standard_cart .header-lined h1 {
    color: #fff !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em;
    margin: 0 !important;
}

/* Product info box */
.product-info {
    background: #f8fbfb;
    border: 1px solid rgba(0, 61, 64, 0.10);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 20px;
}

.product-info .product-title {
    font-size: 20px;
    font-weight: 800;
    color: #0e3336;
    margin: 0 0 6px;
}

.product-info p {
    color: #567074;
    font-size: 14px;
    margin: 0;
    line-height: 1.55;
}

/* Configure page description text */
.secondary-cart-body > p:first-of-type {
    color: #567074;
    font-size: 14px;
    margin-bottom: 16px;
}

/* Billing cycle selector */
#order-standard_cart .field-container label {
    font-size: 13px;
    font-weight: 700;
    color: #2e474b;
    margin-bottom: 6px;
}

#order-standard_cart select.form-control,
#order-standard_cart select.custom-select {
    height: 48px;
    border: 1px solid rgba(0, 61, 64, 0.18);
    border-radius: 12px !important;
    background: #fff;
    color: #0e3336;
    font-size: 14px;
    font-weight: 600;
    padding: 0 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: border-color .15s ease, box-shadow .15s ease;
}

#order-standard_cart select.form-control:focus,
#order-standard_cart select.custom-select:focus {
    border-color: #003D40;
    box-shadow: 0 0 0 3px rgba(0, 61, 64, 0.10);
    outline: none;
}

/* Sub-headings (billing cycle label, configurable options, etc.) */
#order-standard_cart .sub-heading {
    height: auto !important;
    border-top: 0 !important;
    text-align: left !important;
    margin: 24px 0 14px !important;
    padding: 0;
}

#order-standard_cart .sub-heading span {
    display: inline-block;
    position: static !important;
    top: auto !important;
    padding: 4px 14px !important;
    border-radius: 999px;
    background: rgba(0, 61, 64, 0.07) !important;
    color: #0e3336 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Validation error alert */
#containerProductValidationErrors {
    border-radius: 12px;
    border: 0;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 13px;
    padding: 14px 16px;
}

/* Info/contact alert */
#order-standard_cart .alert-warning.info-text-sm {
    background: #fffbea;
    border: 1px solid rgba(255, 209, 0, 0.35);
    border-radius: 12px;
    color: #7c5e00;
    font-size: 13px;
    padding: 12px 16px;
    text-align: left !important;
}

#order-standard_cart .alert-warning.info-text-sm a {
    color: #003D40;
    font-weight: 700;
}

/* ORDER SUMMARY SIDEBAR */
.secondary-cart-sidebar #orderSummary {
    position: sticky;
    top: 24px;
}

.order-summary {
    background: #fff;
    border: 1.5px solid rgba(0, 61, 64, 0.18);
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 28px rgba(0, 61, 64, 0.10);
    margin-bottom: 16px;
    transform: translateZ(0); /* force GPU — corrige le clipping avec sticky */
}

.order-summary h2 {
    font-size: 14px !important;
    font-weight: 800;
    color: #fff !important;
    margin: 0;
    padding: 14px 20px 12px;
    background: linear-gradient(180deg, #003D40 0%, #0a4b50 100%) !important;
    border-bottom: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

#orderSummaryLoader {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #567074;
    font-size: 13px;
}

.order-summary .summary-container,
#producttotal {
    padding: 16px 20px;
}

/* Summary items injected by WHMCS JS */
#producttotal .summary-product-name,
#producttotal strong {
    font-size: 14px;
    font-weight: 700;
    color: #0e3336;
}

#producttotal .summary-product-group {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #567074;
    margin-bottom: 2px;
}

#producttotal .summary-product-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 13px;
    color: #2e474b;
    border-bottom: 1px solid rgba(0,61,64,0.06);
}

#producttotal .summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 4px;
    font-size: 22px;
    font-weight: 900;
    color: #0e3336;
    letter-spacing: -0.03em;
}

/* Continue button */
#btnCompleteProductConfig {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 52px;
    border: 0 !important;
    border-radius: 14px !important;
    background: linear-gradient(180deg, #FFD100 0%, #f2c700 100%) !important;
    color: #082f33 !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em;
    box-shadow: 0 10px 24px rgba(255, 209, 0, 0.28);
    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

#btnCompleteProductConfig:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(255, 209, 0, 0.36);
    filter: brightness(1.03);
}

#btnCompleteProductConfig i {
    font-size: 15px;
}

/* Addon panels */
#order-standard_cart .panel-addon {
    background: #fff;
    border: 1px solid rgba(0, 61, 64, 0.10) !important;
    border-radius: 14px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: border-color .15s ease;
    font-size: 13px !important;
    text-align: left !important;
}

#order-standard_cart .panel-addon.panel-addon-selected {
    border-color: rgba(0, 61, 64, 0.30) !important;
    box-shadow: 0 4px 16px rgba(0, 61, 64, 0.10);
}

#order-standard_cart .panel-addon .panel-body,
#order-standard_cart .panel-addon .card-body {
    padding: 14px 16px;
    color: #2e474b;
}

#order-standard_cart .panel-addon .panel-body label {
    font-weight: 700;
    color: #0e3336;
    font-size: 14px !important;
}

#order-standard_cart .panel-addon .panel-price {
    padding: 8px 16px;
    background: #f8fbfb;
    color: #003D40;
    font-weight: 800;
    font-size: 15px;
    border-top: 1px solid rgba(0,61,64,0.07);
}

#order-standard_cart .panel-addon .panel-add {
    padding: 10px 16px;
    background: linear-gradient(180deg, #003D40 0%, #042e32 100%);
    color: #FFD100;
    font-weight: 800;
    font-size: 13px;
    text-align: center;
    cursor: pointer;
    transition: filter .14s ease;
}

#order-standard_cart .panel-addon .panel-add:hover {
    filter: brightness(1.12);
}

/* Form inputs inside configure form */
#frmConfigureProduct .form-control {
    border: 1px solid rgba(0, 61, 64, 0.16);
    border-radius: 12px;
    font-size: 14px;
    color: #0e3336;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease;
}

#frmConfigureProduct .form-control:focus {
    border-color: #003D40;
    box-shadow: 0 0 0 3px rgba(0, 61, 64, 0.10);
    outline: none;
}

/* Radio and checkbox inputs */
#frmConfigureProduct input[type="radio"],
#frmConfigureProduct input[type="checkbox"] {
    accent-color: #003D40;
}

/* ============================================================
   DOMAIN OPTIONS RADIO (below domain checker)
   ============================================================ */

.domain-checker-container ~ div .radio label,
#order-standard_cart .cart-body .radio label {
    font-size: 14px;
    color: #2e474b;
    font-weight: 500;
}

/* domainregister options rows */
#order-standard_cart .cart-body > .row > .col-md-6 > .domain-promo-box,
#order-standard_cart .cart-body > .row > .col-md-8 > .domain-promo-box {
    height: 100%;
}

/* ============================================================
   VIEW CART PAGE (Panier)
   ============================================================ */

/* Cart items header row */
.view-cart-items-header {
    background: linear-gradient(180deg, #003D40 0%, #0a4b50 100%) !important;
    border-radius: 16px 16px 0 0 !important;
    padding: 12px 16px !important;
    color: #fff !important;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 0;
}

.view-cart-items-header .col-xs-7,
.view-cart-items-header .col-xs-5,
.view-cart-items-header [class*="col-"] {
    color: #fff !important;
}

/* Items container */
.view-cart-items {
    background: #fff;
    border: 1px solid rgba(0, 61, 64, 0.10);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    margin-bottom: 8px;
}

/* Individual cart item */
.view-cart-items .item {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 61, 64, 0.07);
    transition: background .12s ease;
}

.view-cart-items .item:last-child {
    border-bottom: 0;
}

.view-cart-items .item:hover {
    background: rgba(0, 61, 64, 0.02);
}

/* Item title / product name */
.view-cart-items .item-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0e3336;
    margin-bottom: 2px;
}

.view-cart-items .item-title .btn-link {
    color: #003D40;
    font-size: 12px;
    font-weight: 600;
    padding: 0 6px;
    opacity: .7;
    transition: opacity .12s ease;
}

.view-cart-items .item-title .btn-link:hover {
    opacity: 1;
}

/* Item group (product category) */
.view-cart-items .item-group {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #567074;
    margin-bottom: 1px;
}

/* Item domain */
.view-cart-items .item-domain {
    display: block;
    font-size: 13px;
    color: #2e474b;
    font-weight: 500;
}

/* Item price column */
.view-cart-items .item-price {
    font-size: 14px;
    font-weight: 800;
    color: #0e3336;
    text-align: right;
}

.view-cart-items .item-price .cycle {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #567074;
    margin-top: 1px;
}

.view-cart-items .item-price .renewal {
    display: block;
    font-size: 11px;
    color: #7a9497;
}

/* Remove button */
.view-cart-items .btn-remove-from-cart {
    color: #b91c1c !important;
    opacity: .5;
    padding: 0 4px;
    font-size: 13px;
    transition: opacity .12s ease;
}

.view-cart-items .btn-remove-from-cart:hover {
    opacity: 1;
}

/* Empty cart state */
.view-cart-empty {
    padding: 32px 16px;
    text-align: center;
    color: #567074;
    font-size: 15px;
}

/* Empty cart button */
.empty-cart {
    padding: 8px 0 4px;
    text-align: right;
}

.empty-cart .btn-link {
    color: #b91c1c;
    font-size: 13px;
    opacity: .65;
    transition: opacity .12s ease;
}

.empty-cart .btn-link:hover {
    opacity: 1;
}

/* Promo code / tax tabs */
.view-cart-tabs {
    margin-top: 24px;
    border: 1.5px solid rgba(0, 61, 64, 0.12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 61, 64, 0.06);
    background: #fff;
}

.view-cart-tabs .nav-tabs {
    border-bottom: 1px solid rgba(0, 61, 64, 0.10) !important;
    background: linear-gradient(180deg, #f8fbfb 0%, #f1f7f7 100%);
    margin: 0 !important;
    padding: 0 8px !important;
}

.view-cart-tabs .nav-tabs .nav-item .nav-link,
.view-cart-tabs .nav-tabs > li > a {
    border: 0 !important;
    border-bottom: 2px solid transparent !important;
    border-radius: 0 !important;
    color: #567074 !important;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 16px;
    transition: color .14s ease, border-color .14s ease;
    background: transparent !important;
}

.view-cart-tabs .nav-tabs .nav-item .nav-link:hover,
.view-cart-tabs .nav-tabs > li > a:hover {
    color: #003D40 !important;
    border-bottom-color: rgba(0, 61, 64, 0.25) !important;
    background: transparent !important;
}

.view-cart-tabs .nav-tabs .nav-link.active,
.view-cart-tabs .nav-tabs > li.active > a,
.view-cart-tabs .nav-tabs a[aria-selected="true"],
.view-cart-tabs .nav-tabs a[aria-expanded="true"] {
    color: #003D40 !important;
    border-bottom-color: #003D40 !important;
    background: transparent !important;
    background-color: transparent !important;
    font-weight: 800 !important;
}

.view-cart-tabs .tab-content {
    background: #fff !important;
    border: none !important;
    border-radius: 0;
    padding: 20px !important;
}

/* Promo code input inside tab */
.view-cart-tabs .form-group.prepend-icon {
    position: relative;
    margin-bottom: 10px;
}

/* Override style.css high-specificity rule for field-icon */
#order-standard_cart .view-cart-tabs .form-group.prepend-icon .field-icon,
.view-cart-tabs .form-group.prepend-icon .field-icon {
    position: absolute !important;
    left: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #003D40 !important;
    font-size: 15px !important;
    z-index: 5 !important;
    pointer-events: none !important;
    margin: 0 !important;
    font-weight: normal !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0.55 !important;
}

#order-standard_cart .view-cart-tabs .form-group.prepend-icon .field-icon i,
.view-cart-tabs .form-group.prepend-icon .field-icon i {
    color: #003D40 !important;
    font-size: 15px !important;
}

.view-cart-tabs .form-group.prepend-icon .form-control,
.view-cart-tabs .field.form-control {
    border: 1.5px solid rgba(0, 61, 64, 0.20) !important;
    border-radius: 12px !important;
    height: 48px !important;
    font-size: 14px;
    color: #0e3336;
    padding-left: 42px !important;
    background: #fff !important;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.view-cart-tabs .form-group.prepend-icon .form-control:focus,
.view-cart-tabs .field.form-control:focus {
    border-color: #003D40 !important;
    box-shadow: 0 0 0 3px rgba(0, 61, 64, 0.10) !important;
    outline: none;
}

/* "Valider le Code" button — yellow CTA */
.view-cart-tabs .btn-block.btn-default {
    background: linear-gradient(180deg, #FFD100 0%, #f2c700 100%) !important;
    color: #082f33 !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    height: 48px !important;
    box-shadow: 0 6px 18px rgba(255, 209, 0, 0.30) !important;
    transition: transform .15s ease, box-shadow .15s ease;
    letter-spacing: -0.01em;
}

.view-cart-tabs .btn-block.btn-default:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 209, 0, 0.40) !important;
    filter: brightness(1.04);
}

.view-cart-promotion-code {
    background: #eaf4f4;
    border: 1px solid rgba(0, 61, 64, 0.15);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #003D40;
    margin-bottom: 10px;
}

/* Order summary sidebar totals (viewcart) */
.order-summary .subtotal {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    color: #2e474b;
    border-bottom: 1px solid rgba(0, 61, 64, 0.07);
}

.order-summary .subtotal .pull-left,
.order-summary .subtotal .float-left { color: #567074; }

.order-summary .subtotal .pull-right,
.order-summary .subtotal .float-right { font-weight: 700; color: #0e3336; }

.order-summary .bordered-totals {
    border-bottom: 1px solid rgba(0, 61, 64, 0.07);
    padding: 6px 0;
}

.order-summary .bordered-totals .clearfix {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #567074;
    padding: 3px 0;
}

.order-summary .recurring-totals {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(0, 61, 64, 0.07);
}

.order-summary .recurring-totals .pull-left,
.order-summary .recurring-totals .float-left { color: #567074; }

.order-summary .recurring-charges .cost {
    font-weight: 700;
    color: #0e3336;
}

/* Total due today */
.order-summary .total-due-today {
    padding: 16px 0 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    border-top: 2px solid rgba(0, 61, 64, 0.10);
    margin-top: 4px;
}

.order-summary .total-due-today .amt {
    font-size: 32px;
    font-weight: 900;
    color: #003D40;
    letter-spacing: -0.04em;
    line-height: 1;
    order: 2;
}

.order-summary .total-due-today > span:not(.amt) {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #8aabad;
    order: 1;
}

/* Checkout button */
.order-summary .text-right {
    text-align: left !important;
}

.order-summary .btn-checkout,
.order-summary .btn-success {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100% !important;
    min-height: 52px;
    border: 0 !important;
    border-radius: 13px !important;
    background: linear-gradient(180deg, #FFD100 0%, #f2c700 100%) !important;
    color: #082f33 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em;
    box-shadow: 0 10px 24px rgba(255, 209, 0, 0.28);
    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
    margin-top: 14px;
}

.order-summary .btn-checkout:hover,
.order-summary .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(255, 209, 0, 0.36);
    filter: brightness(1.03);
    color: #082f33 !important;
}

/* Continue shopping link */
.order-summary .btn-continue-shopping {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    color: #567074;
    font-weight: 600;
    text-decoration: none;
    transition: color .12s ease;
}

.order-summary .btn-continue-shopping:hover {
    color: #003D40;
}

/* Express checkout buttons area */
.express-checkout-buttons {
    margin: 10px 0 0;
}

.express-checkout-buttons .separator {
    text-align: center;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
    margin: 6px 0;
}

/* Alerts in viewcart */
#order-standard_cart .alert-warning {
    background: #fffbea;
    border: 1px solid rgba(255, 209, 0, 0.35);
    border-radius: 12px;
    color: #7c5e00;
    font-size: 13px;
}

#order-standard_cart .alert-danger {
    background: #fef2f2;
    border: 1px solid rgba(217, 45, 32, 0.20);
    border-radius: 12px;
    color: #b91c1c;
    font-size: 13px;
}

#order-standard_cart .alert-info {
    background: #eaf4f4;
    border: 1px solid rgba(0, 61, 64, 0.15);
    border-radius: 12px;
    color: #0e3336;
    font-size: 13px;
}

#order-standard_cart .alert-success {
    background: #f0fdf4;
    border: 1px solid rgba(10, 90, 47, 0.20);
    border-radius: 12px;
    color: #0a5a2f;
    font-size: 13px;
}

/* ============================================================
   CHECKOUT PAGE (Formulaire de commande)
   ============================================================ */

/* Already registered banner */
.already-registered {
    background: #f8fbfb;
    border: 1px solid rgba(0, 61, 64, 0.10);
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 20px;
}

.already-registered p {
    color: #567074;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.already-registered #btnAlreadyRegistered {
    background: rgba(0, 61, 64, 0.07) !important;
    border: 1px solid rgba(0, 61, 64, 0.16) !important;
    border-radius: 10px !important;
    color: #0e3336 !important;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    transition: background .14s ease;
}

.already-registered #btnAlreadyRegistered:hover {
    background: rgba(0, 61, 64, 0.12) !important;
}

.already-registered #btnNewUserSignup {
    background: linear-gradient(180deg, #FFD100 0%, #f2c700 100%) !important;
    border: 0 !important;
    border-radius: 10px !important;
    color: #082f33 !important;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 16px;
    box-shadow: 0 4px 12px rgba(255, 209, 0, 0.24);
}

/* Account selection cards */
#containerExistingAccountSelect .account {
    background: #fff;
    border: 1px solid rgba(0, 61, 64, 0.12);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
    transition: border-color .14s ease, box-shadow .14s ease;
    cursor: pointer;
}

#containerExistingAccountSelect .account.active,
#containerExistingAccountSelect .account:hover {
    border-color: rgba(0, 61, 64, 0.35);
    box-shadow: 0 4px 14px rgba(0, 61, 64, 0.10);
}

#containerExistingAccountSelect .account .address {
    font-size: 13px;
    color: #2e474b;
    line-height: 1.5;
}

#containerExistingAccountSelect .account .address strong {
    font-size: 14px;
    color: #0e3336;
}

#containerExistingAccountSelect .account .address .small {
    font-size: 12px;
    color: #567074;
}

/* Checkout form input fields */
#frmCheckout .form-group.prepend-icon,
.view-cart-tabs .form-group.prepend-icon {
    position: relative;
}

#frmCheckout .field.form-control,
#frmCheckout .form-control {
    height: 48px;
    border: 1px solid rgba(0, 61, 64, 0.18);
    border-radius: 12px;
    font-size: 14px;
    color: #0e3336;
    background: #fff;
    padding-left: 42px;
    transition: border-color .15s ease, box-shadow .15s ease;
}

#frmCheckout .field.form-control:focus,
#frmCheckout .form-control:focus {
    border-color: #003D40;
    box-shadow: 0 0 0 3px rgba(0, 61, 64, 0.10);
    outline: none;
}

#frmCheckout .form-group.prepend-icon .field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
    z-index: 2;
    pointer-events: none;
    margin: 0;
    font-weight: normal;
}

#frmCheckout select.field.form-control,
#frmCheckout select.form-control {
    appearance: auto;
    padding-left: 42px;
}

/* Login button inside checkout */
#btnExistingLogin {
    background: linear-gradient(180deg, #003D40 0%, #042e32 100%) !important;
    border: 0 !important;
    border-radius: 12px !important;
    color: #FFD100 !important;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 28px;
    box-shadow: 0 6px 16px rgba(0, 61, 64, 0.22);
    transition: filter .14s ease;
}

#btnExistingLogin:hover {
    filter: brightness(1.14);
}

/* Password strength bar */
.password-strength {
    height: 4px;
    border-radius: 999px;
    background: rgba(0, 61, 64, 0.10);
    margin-top: 6px;
    overflow: hidden;
}

/* Payment methods section */
#containerPaymentMethod .sub-heading {
    margin-top: 28px !important;
}

/* Checkout submit button */
#frmCheckout .btn-primary[type="submit"],
#btnCompleteOrder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 54px;
    border: 0 !important;
    border-radius: 14px !important;
    background: linear-gradient(180deg, #FFD100 0%, #f2c700 100%) !important;
    color: #082f33 !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em;
    box-shadow: 0 12px 28px rgba(255, 209, 0, 0.30);
    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
    margin-top: 8px;
}

#frmCheckout .btn-primary[type="submit"]:hover,
#btnCompleteOrder:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(255, 209, 0, 0.38);
    filter: brightness(1.03);
}

/* Terms checkbox area */
#frmCheckout .checkbox label,
#frmCheckout .form-check-label {
    font-size: 13px;
    color: #567074;
    font-weight: 500;
}

#frmCheckout input[type="checkbox"],
#frmCheckout input[type="radio"] {
    accent-color: #003D40;
}

/* ============================================================
   ORDER COMPLETE PAGE (Confirmation)
   ============================================================ */

.order-confirmation {
    background: #eaf4f4;
    border: 1px solid rgba(0, 61, 64, 0.18);
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    font-size: 16px;
    color: #0e3336;
    font-weight: 600;
    margin: 16px 0 20px;
}

.order-confirmation span {
    display: inline-block;
    background: #003D40;
    color: #FFD100;
    border-radius: 999px;
    padding: 2px 14px;
    font-size: 16px;
    font-weight: 900;
    margin-left: 6px;
    letter-spacing: -0.01em;
}

/* "Continue to client area" button */
#order-standard_cart .cart-body .text-center .btn-default {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1px solid rgba(0, 61, 64, 0.20) !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: #003D40 !important;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: background .14s ease, box-shadow .14s ease;
    text-decoration: none;
}

#order-standard_cart .cart-body .text-center .btn-default:hover {
    background: #f0f6f6 !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.09);
}

/* ============================================================
   CONFIGURE DOMAINS PAGE
   ============================================================ */

/* EPP code field */
#frmConfigureDomains .form-group {
    margin-bottom: 16px;
}

#frmConfigureDomains .form-group label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #567074;
    margin-bottom: 4px;
}

#frmConfigureDomains .form-control,
#frmConfigureDomains .field {
    height: 46px;
    border: 1px solid rgba(0, 61, 64, 0.18);
    border-radius: 12px;
    font-size: 14px;
    color: #0e3336;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease;
}

#frmConfigureDomains .form-control:focus,
#frmConfigureDomains .field:focus {
    border-color: #003D40;
    box-shadow: 0 0 0 3px rgba(0, 61, 64, 0.10);
    outline: none;
}

/* Domain hosting status indicators */
#frmConfigureDomains span[style*="009900"] {
    color: #0a5a2f !important;
    font-weight: 700;
}

#frmConfigureDomains a[style*="cc0000"] {
    color: #b91c1c !important;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dashed #b91c1c;
}

/* Continue button in configure domains */
#frmConfigureDomains .btn-primary[type="submit"],
#frmConfigureDomains .text-center .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    min-width: 200px;
    border: 0 !important;
    border-radius: 13px !important;
    background: linear-gradient(180deg, #FFD100 0%, #f2c700 100%) !important;
    color: #082f33 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 24px rgba(255, 209, 0, 0.28);
    transition: transform .15s ease, box-shadow .15s ease;
}

#frmConfigureDomains .btn-primary[type="submit"]:hover,
#frmConfigureDomains .text-center .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(255, 209, 0, 0.36);
}

/* ============================================================
   DOMAIN OPTIONS RESULTS (domainoptions.tpl)
   ============================================================ */

/* Domain suggestions list */
.domain-suggestions .col-sm-6 {
    margin-bottom: 10px;
}

.domain-suggestions label {
    font-size: 14px;
    font-weight: 600;
    color: #0e3336;
}

.domain-suggestions .btn-group.domain-suggestion-pricing .btn-default,
.domain-suggestions .btn.btn-default.btn-sm {
    background: #fff !important;
    border: 1px solid rgba(0, 61, 64, 0.18) !important;
    border-radius: 8px !important;
    color: #0e3336 !important;
    font-size: 12px;
    font-weight: 700;
    transition: background .12s ease;
}

.domain-suggestions .btn.btn-default.btn-sm:hover {
    background: rgba(0, 61, 64, 0.06) !important;
}

/* Continue button in domainoptions */
#order-standard_cart .text-center .btn-primary.btn-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    min-width: 220px;
    border: 0 !important;
    border-radius: 14px !important;
    background: linear-gradient(180deg, #FFD100 0%, #f2c700 100%) !important;
    color: #082f33 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 24px rgba(255, 209, 0, 0.28);
    transition: transform .15s ease, box-shadow .15s ease;
}

#order-standard_cart .text-center .btn-primary.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(255, 209, 0, 0.36);
}

/* ============================================================
   DOMAIN TRANSFER PAGE
   ============================================================ */

/* Hero text */
#order-standard_cart .text-center h2.font-size-30 {
    color: #003D40;
    font-weight: 800;
    margin-bottom: 8px;
}

#order-standard_cart .text-center > p {
    color: #4a6e71;
    font-size: 15px;
}

/* Transfer card */
#frmDomainTransfer .panel.card {
    border: 1.5px solid rgba(0, 61, 64, 0.18) !important;
    border-radius: 18px !important;
    box-shadow: 0 6px 28px rgba(0, 61, 64, 0.10) !important;
    overflow: hidden;
    background: #fff !important;
}

#frmDomainTransfer .panel-heading.card-header {
    background: linear-gradient(135deg, #003D40 0%, #005a5f 100%) !important;
    border-bottom: none !important;
    padding: 20px 24px 16px !important;
    border-radius: 0 !important;
}

#frmDomainTransfer .panel-heading.card-header .panel-title {
    color: #fff !important;
    font-weight: 800 !important;
    margin: 0 !important;
}

#frmDomainTransfer .panel-body.card-body {
    padding: 24px !important;
    background: #fff !important;
}

#frmDomainTransfer .panel-body .form-group label {
    font-weight: 700;
    color: #003D40;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

#frmDomainTransfer .panel-body .form-control {
    border-radius: 12px !important;
    border: 1.5px solid rgba(0, 61, 64, 0.22) !important;
    background: #f7fbfb !important;
    color: #082f33 !important;
    font-size: 15px !important;
    padding: 10px 14px !important;
    height: auto !important;
    transition: border-color .18s ease, box-shadow .18s ease;
}

#frmDomainTransfer .panel-body .form-control:focus {
    border-color: #003D40 !important;
    box-shadow: 0 0 0 3px rgba(0, 61, 64, 0.12) !important;
    background: #fff !important;
    outline: none !important;
}

#frmDomainTransfer .panel-body .form-control::placeholder {
    color: #9ab5b7 !important;
}

/* Auth code help link */
#frmDomainTransfer .panel-body .pull-right,
#frmDomainTransfer .panel-body .float-right {
    font-size: 12px;
    color: #003D40;
    font-weight: 600;
    opacity: 0.7;
}

/* Transfer unavailable alert */
#frmDomainTransfer #transferUnavailable {
    border-radius: 10px;
    font-weight: 600;
}

/* Panel footer */
#frmDomainTransfer .panel-footer.card-footer {
    background: #f7fbfb !important;
    border-top: 1.5px solid rgba(0, 61, 64, 0.10) !important;
    padding: 16px 24px !important;
    border-radius: 0 !important;
}

/* Add to Cart button */
#frmDomainTransfer .btn-primary.btn-transfer,
#btnTransferDomain {
    background: linear-gradient(135deg, #FFD100 0%, #f0c200 100%) !important;
    border: none !important;
    color: #082f33 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    border-radius: 14px !important;
    padding: 10px 28px !important;
    box-shadow: 0 6px 18px rgba(255, 209, 0, 0.30) !important;
    transition: transform .15s ease, box-shadow .15s ease;
}

#frmDomainTransfer .btn-primary.btn-transfer:hover,
#btnTransferDomain:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 209, 0, 0.40) !important;
}

/* Footer note */
#order-standard_cart > .row > .cart-body > p.text-center.small {
    color: #7a9ea0;
    font-size: 12px;
    margin-top: 16px;
}

/* ============================================================
   GLOBAL — Dropdown menus
   ============================================================ */

.dropdown-menu {
    border: 1px solid rgba(0, 61, 64, 0.12);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    padding: 6px;
    overflow: hidden;
}

.dropdown-menu > li > a,
.dropdown-menu .dropdown-item {
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #0e3336;
    transition: background .12s ease;
}

.dropdown-menu > li > a:hover,
.dropdown-menu .dropdown-item:hover {
    background: rgba(0, 61, 64, 0.06);
    color: #003D40;
}