/* ============================================================
   Disoh Order Form – Frontend styles
   ============================================================ */

/* Reset inside the component */
#disoh-orderform *,
#disoh-orderform *::before,
#disoh-orderform *::after {
    box-sizing: border-box;
}

#disoh-orderform {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 15px;
    color: #1a1a1a;
    max-width: 1100px;
    margin: 0 auto;
}

/* ---- Progress bar ---- */
.dof-progress {
    margin-bottom: 32px;
}

.dof-progress__track {
    height: 4px;
    background: #e5e5e5;
    border-radius: 4px;
    margin-bottom: 16px;
}

.dof-progress__fill {
    height: 100%;
    background: #2d7d2f;
    border-radius: 4px;
    transition: width 0.4s ease;
    width: 25%;
}

.dof-steps {
    display: flex;
    justify-content: space-between;
}

.dof-step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: opacity 0.25s;
}

.dof-step--active,
.dof-step--done {
    opacity: 1;
}

.dof-step__num {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    display: inline-block;
    flex-shrink: 0;
    transition: background 0.25s, transform 0.25s;
}

.dof-step--active .dof-step__num {
    background: #2d7d2f;
    transform: scale(1.3);
}

.dof-step--done .dof-step__num {
    background: #2d7d2f;
}

.dof-step__label {
    font-size: 13px;
    font-weight: 500;
}

/* ---- Layout ---- */
.dof-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

/* ---- Section ---- */
.dof-section {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
}

.dof-section--hidden {
    display: none;
}

.dof-section__title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 6px;
}

.dof-section__sub {
    color: #555;
    margin: 0 0 24px;
    font-size: 14px;
}

/* ---- Search bar ---- */
.dof-search-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.dof-input {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid #d0d0d0;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.dof-input:focus {
    border-color: #2d7d2f;
}

.dof-input--sm {
    padding: 8px 12px;
    font-size: 13px;
}

/* ---- Buttons ---- */
.dof-btn {
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.2s, opacity 0.2s, transform 0.1s;
    white-space: nowrap;
}

.dof-btn:active { transform: scale(0.98); }
.dof-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.dof-btn--primary {
    background: #2d7d2f;
    color: #fff;
}
.dof-btn--primary:hover:not(:disabled) { background: #236124; }

.dof-btn--ghost {
    background: transparent;
    border: 1.5px solid #d0d0d0;
    color: #333;
}
.dof-btn--ghost:hover:not(:disabled) { border-color: #999; }

.dof-btn--large {
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
}

/* ---- TLD suggestions ---- */
.dof-tld-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    min-height: 32px;
}

.dof-tld-pill {
    background: #f4f4f4;
    border: 1.5px solid #e0e0e0;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.dof-tld-pill:hover { border-color: #2d7d2f; background: #eaf5ea; }
.dof-tld-pill--checking { opacity: 0.6; }
.dof-tld-pill--available { border-color: #2d7d2f; background: #eaf5ea; color: #1a5c1c; }
.dof-tld-pill--taken { border-color: #d32f2f; background: #fff0f0; color: #8a1f11; }
.dof-tld-pill--price { font-weight: 600; }

/* ---- Domain results ---- */
.dof-domain-results { margin-bottom: 20px; }

.dof-domain-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 8px;
    gap: 12px;
    transition: border-color 0.2s;
}

.dof-domain-row--available { border-color: #2d7d2f; }
.dof-domain-row--taken { background: #fafafa; opacity: 0.75; }

.dof-domain-row__name {
    font-weight: 600;
    font-size: 15px;
    flex: 1;
}

.dof-domain-row__status {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

.dof-domain-row__status--available { background: #e8f5e9; color: #1b5e20; }
.dof-domain-row__status--taken { background: #fce4e4; color: #7f1d1d; }
.dof-domain-row__status--unknown { background: #fff8e1; color: #4a3800; }

.dof-domain-row__price { font-size: 13px; color: #555; }

.dof-domain-row__add {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 6px;
    font-weight: 600;
    border: 1.5px solid #2d7d2f;
    background: transparent;
    color: #2d7d2f;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.dof-domain-row__add:hover { background: #2d7d2f; color: #fff; }
.dof-domain-row__add--added { background: #2d7d2f; color: #fff; }

/* ---- Billing toggle ---- */
.dof-billing-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 15px;
}

.dof-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.dof-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }

.dof-toggle__track {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 12px;
    transition: background 0.2s;
}

.dof-toggle input:checked + .dof-toggle__track { background: #2d7d2f; }

.dof-toggle__thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
}

.dof-toggle input:checked ~ .dof-toggle__track .dof-toggle__thumb { transform: translateX(20px); }

.dof-badge {
    background: #e8f5e9;
    color: #1b5e20;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
}

/* ---- Packages ---- */
.dof-packages {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dof-package {
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
    cursor: pointer;
}

.dof-package:hover { border-color: #2d7d2f; }
.dof-package--selected { border-color: #2d7d2f; border-width: 2px; }

.dof-package__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    gap: 12px;
}

.dof-package__name {
    font-size: 17px;
    font-weight: 700;
}

.dof-package__discount {
    background: #e8f5e9;
    color: #1b5e20;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.dof-package__storage {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

.dof-package__price {
    text-align: right;
    flex-shrink: 0;
}

.dof-package__price-old {
    font-size: 11px;
    text-decoration: line-through;
    color: #ccc;
    text-align: right;
    margin-bottom: 2px;
}

.dof-package__price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.dof-package__price-main {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -.03em;
    white-space: nowrap;
    line-height: 1;
}

.dof-package__price-period {
    font-size: 12px;
    color: #aaa;
    font-weight: 400;
    white-space: nowrap;
}

.dof-package__save-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    background: transparent;
    color: #888;
    padding: 0;
    white-space: nowrap;
    border: none;
    letter-spacing: .1px;
}

.dof-package__choose {
    padding: 8px 18px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid #2d7d2f;
    background: transparent;
    color: #2d7d2f;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.dof-package--selected .dof-package__choose {
    background: #2d7d2f;
    color: #fff;
}

/* Package expanded features */
.dof-package__features {
    display: none;
    padding: 0 20px 20px;
    border-top: 1px solid #f0f0f0;
}

.dof-package--selected .dof-package__features { display: block; }

.dof-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    margin-top: 16px;
}

.dof-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.dof-feature::before {
    content: '✓';
    color: #2d7d2f;
    font-weight: 700;
    flex-shrink: 0;
}

/* ---- Form ---- */
.dof-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dof-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dof-field--full { grid-column: 1 / -1; }

.dof-field label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.dof-field input,
.dof-field select {
    padding: 10px 14px;
    border: 1.5px solid #d0d0d0;
    border-radius: 7px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
    width: 100%;
}

.dof-field input:focus,
.dof-field select:focus { border-color: #2d7d2f; }

.dof-field input.dof-invalid { border-color: #d32f2f; }

/* ---- Domain assignment ---- */
.dof-domain-assignment {
    margin-top: 24px;
    padding: 20px;
    border: 1.5px dashed #b0b0b0;
    border-radius: 10px;
    background: #fafafa;
}

.dof-domain-assignment h3 {
    margin: 0 0 4px;
    font-size: 15px;
}

.dof-domain-assignment p { font-size: 13px; color: #555; margin: 0 0 12px; }

.dof-domain-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    cursor: pointer;
}

/* ---- Payment methods ---- */
.dof-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.dof-payment-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.dof-payment-method:hover { border-color: #2d7d2f; }
.dof-payment-method--selected { border-color: #2d7d2f; border-width: 2px; }

.dof-payment-method__radio {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s;
}

.dof-payment-method--selected .dof-payment-method__radio {
    border-color: #2d7d2f;
}

.dof-payment-method--selected .dof-payment-method__radio::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: #2d7d2f;
    border-radius: 50%;
}

.dof-payment-method__name { font-weight: 600; font-size: 15px; }

/* ---- Cart sidebar ---- */
.dof-sidebar { position: sticky; top: 24px; }

.dof-cart {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
}

.dof-cart__title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ececec;
}

.dof-cart__items { margin-bottom: 4px; }

/* Cart items — clean grid */
.dof-cart__item {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.dof-cart__item:last-child { border-bottom: none; padding-bottom: 0; }

.dof-cart__item-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #555;
    margin-top: 1px;
}
.dof-cart__item-icon i {
    font-size: 15px;
    line-height: 1;
    color: #555;
}

.dof-cart__item-info { min-width: 0; }

.dof-cart__item-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dof-cart__item-sub {
    font-size: 11px;
    color: #999;
    margin-top: 1px;
}

.dof-cart__item-right {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.dof-cart__item-price {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
}

.dof-cart__remove {
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    color: #ccc !important;
    font-size: 14px !important;
    line-height: 1 !important;
    padding: 2px 4px !important;
    margin: 0 !important;
    border-radius: 3px !important;
    transition: color 0.15s, background 0.15s !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
}
.dof-cart__remove:hover { color: #d32f2f !important; background: #fff0f0 !important; }

.dof-cart__empty { color: #999; font-size: 14px; margin: 0; }

.dof-cart__totals { margin-top: 8px; }

.dof-cart__row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 6px;
}

.dof-cart__row--total {
    font-size: 16px;
    margin-bottom: 0;
    padding-top: 6px;
}

.dof-cart__row hr { margin: 8px 0; border-color: #ececec; }

/* ---- Currency selector ---- */
.dof-currency-wrap {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
}

.dof-select {
    padding: 6px 10px;
    border: 1.5px solid #d0d0d0;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
    flex: 1;
}

.dof-select:focus { border-color: #2d7d2f; }

/* ---- Coupon ---- */
.dof-coupon-wrap {
    margin-top: 12px;
}

/* ---- Trust badges ---- */
.dof-trust {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    color: #666;
    padding-top: 14px;
    border-top: 1px solid #ececec;
}

/* ---- Step footer ---- */
.dof-step-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #ececec;
}

/* ---- Utilities ---- */
.dof-hidden { display: none !important; }

.dof-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
    padding: 12px 0;
}

@keyframes dof-spin { to { transform: rotate(360deg); } }

.dof-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-top-color: #2d7d2f;
    border-radius: 50%;
    display: inline-block;
    animation: dof-spin 0.7s linear infinite;
    flex-shrink: 0;
}

.dof-error {
    background: #fff0f0;
    border: 1px solid #ffcdd2;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #7f1d1d;
    margin-top: 12px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .dof-layout {
        grid-template-columns: 1fr;
    }

    .dof-sidebar {
        order: -1;
        position: static;
    }
}

@media (max-width: 600px) {
    .dof-section { padding: 20px 16px; }
    .dof-form-grid { grid-template-columns: 1fr; }
    .dof-feature-grid { grid-template-columns: 1fr; }
    .dof-steps { gap: 4px; }
    .dof-step__label { display: none; }
}

/* ============================================================
   Elementor conflict fixes — force all component styles
   ============================================================ */

/* Buttons: reset Elementor overrides and re-apply our styles */
#disoh-orderform .dof-btn,
#disoh-orderform .dof-package__choose,
#disoh-orderform .dof-domain-row--loading .dof-domain-row__add {
    display: none !important;
}

#disoh-orderform .dof-domain-row__add {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: inherit !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    box-shadow: none !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    cursor: pointer !important;
    transition: background 0.2s, color 0.2s, border-color 0.2s !important;
}

/* Primary button */
#disoh-orderform .dof-btn--primary,
#disoh-orderform .dof-package--selected .dof-package__choose,
#disoh-orderform .dof-domain-row__add--added {
    background: #2d7d2f !important;
    color: #fff !important;
    border: 2px solid #2d7d2f !important;
}

#disoh-orderform .dof-btn--primary:hover:not(:disabled),
#disoh-orderform .dof-package--selected .dof-package__choose:hover {
    background: #236124 !important;
    border-color: #236124 !important;
    color: #fff !important;
}

/* Ghost button */
#disoh-orderform .dof-btn--ghost {
    background: transparent !important;
    border: 2px solid #d0d0d0 !important;
    color: #333 !important;
}

/* Package choose button (unselected) */
#disoh-orderform .dof-package__choose {
    padding: 8px 18px !important;
    border-radius: 7px !important;
    font-size: 14px !important;
    border: 2px solid #2d7d2f !important;
    background: transparent !important;
    color: #2d7d2f !important;
    min-width: 100px !important;
}

/* Domain add button */
#disoh-orderform .dof-domain-row__add {
    padding: 7px 16px !important;
    font-size: 13px !important;
    border-radius: 7px !important;
    border: 2px solid #2d7d2f !important;
    background: transparent !important;
    color: #2d7d2f !important;
    min-width: 80px !important;
}

#disoh-orderform .dof-domain-row__add:hover {
    background: #2d7d2f !important;
    color: #fff !important;
}

#disoh-orderform .dof-domain-row__add--transfer {
    border-color: #e67e22 !important;
    color: #e67e22 !important;
}

#disoh-orderform .dof-domain-row__add--transfer:hover {
    background: #e67e22 !important;
    color: #fff !important;
}

/* Continue / Back buttons extra specificity */
#disoh-orderform #dof-next-1,
#disoh-orderform #dof-next-2,
#disoh-orderform #dof-next-3,
#disoh-orderform #dof-place-order {
    background: #2d7d2f !important;
    color: #fff !important;
    border: 2px solid #2d7d2f !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
}

#disoh-orderform #dof-skip-domain,
#disoh-orderform .dof-back {
    background: transparent !important;
    border: 2px solid #d0d0d0 !important;
    color: #555 !important;
    padding: 11px 22px !important;
    border-radius: 8px !important;
}

/* Transfer domain row */
.dof-domain-row--transfer {
    border-color: #e67e22 !important;
    background: #fffbf6;
}

.dof-domain-row__status--transfer {
    background: #fef3e2;
    color: #7d4e00;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

.dof-domain-row__price--transfer {
    color: #e67e22;
    font-size: 12px;
}

/* Inputs: reset Elementor overrides */
#disoh-orderform .dof-input,
#disoh-orderform .dof-field input,
#disoh-orderform .dof-field select {
    box-sizing: border-box !important;
    display: block !important;
    width: 100% !important;
    padding: 10px 14px !important;
    font-family: inherit !important;
    font-size: 15px !important;
    border: 1.5px solid #d0d0d0 !important;
    border-radius: 7px !important;
    background: #fff !important;
    color: #1a1a1a !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

#disoh-orderform .dof-field input:focus,
#disoh-orderform .dof-field select:focus,
#disoh-orderform .dof-input:focus {
    border-color: #2d7d2f !important;
    box-shadow: 0 0 0 3px rgba(45,125,47,0.12) !important;
}

/* Select: add custom arrow back after reset */
#disoh-orderform .dof-field select,
#disoh-orderform .dof-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    padding-right: 36px !important;
}


/* ---- Categorie tabs ---- */
.dof-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.dof-tab {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    background: none !important;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    margin-bottom: -2px;
    color: #666 !important;
    cursor: pointer !important;
    border-radius: 0 !important;
    transition: color 0.2s, border-color 0.2s;
}

.dof-tab:hover {
    color: #2d7d2f !important;
}

.dof-tab--active {
    color: #2d7d2f !important;
    border-bottom-color: #2d7d2f !important;
}

/* ============================================================
   USPs in sidebar
   ============================================================ */
.dof-usps {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
}

.dof-usp {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.dof-usp:last-child { margin-bottom: 0; }

.dof-usp__icon {
    width: 22px;
    height: 22px;
    background: #2d7d2f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.dof-usp div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.dof-usp strong {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.dof-usp span {
    font-size: 12px;
    color: #777;
    line-height: 1.3;
}

/* ---- Sidebar CTA knop ---- */
.dof-sidebar-cta {
    margin-top: 14px;
}

.dof-sidebar-cta .dof-btn--large {
    width: 100% !important;
    padding: 14px !important;
    font-size: 16px !important;
}

/* ---- Valuta selector: fix dubbele pijl van Elementor ---- */
#disoh-orderform .dof-select-currency {
    padding: 7px 32px 7px 10px !important;
    border: 1.5px solid #d0d0d0 !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    background: #fff !important;
    color: #1a1a1a !important;
    cursor: pointer !important;
    flex: 1 !important;
    /* Verwijder Elementor/browser dubbele pijl */
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    /* Eigen pijl */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    box-shadow: none !important;
    outline: none !important;
}

#disoh-orderform .dof-select-currency:focus {
    border-color: #2d7d2f !important;
}

/* ---- Verberg lege TLD pills container ---- */
.dof-tld-list:empty { display: none; }

/* ============================================================
   USP icon fix — groen vinkje goed zichtbaar
   ============================================================ */
.dof-usp__icon {
    background: #2d7d2f !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
    margin-top: 0 !important;
}

/* Ster USP iets anders */
.dof-usp:last-child .dof-usp__icon {
    background: #f5a623 !important;
}

/* ============================================================
   Responsive verbeteringen
   ============================================================ */

/* Tabs: scroll horizontaal op kleine schermen */
.dof-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    white-space: nowrap;
    scrollbar-width: none;
}
.dof-tabs::-webkit-scrollbar { display: none; }

/* Package cards op mobile */
@media (max-width: 600px) {
    .dof-package__header {
        flex-wrap: wrap;
        gap: 10px;
    }
    .dof-package__price {
        text-align: left;
    }
    .dof-package__choose {
        width: 100% !important;
        text-align: center !important;
    }

    /* Domain rows op mobile */
    .dof-domain-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    .dof-domain-row__name {
        flex: 1 1 100%;
        font-size: 14px;
    }
    .dof-domain-row__price {
        font-size: 12px;
    }

    /* Stap footer knoppen stapelen */
    .dof-step-footer {
        flex-direction: column-reverse;
        gap: 10px;
    }
    .dof-step-footer .dof-btn {
        width: 100% !important;
        text-align: center !important;
    }

    /* Formulier: altijd 1 kolom */
    .dof-form-grid {
        grid-template-columns: 1fr !important;
    }

    /* Progress steps: alleen nummers */
    .dof-step__label {
        display: none;
    }

    /* Sidebar gaat naar boven op mobile */
    .dof-layout {
        grid-template-columns: 1fr !important;
    }
    .dof-sidebar {
        order: -1;
        position: static !important;
    }
    .dof-usps {
        display: none; /* Verberg USPs op mobile — te veel ruimte */
    }

    /* Cart compact op mobile */
    .dof-cart { padding: 16px !important; }
    .dof-cart__title { font-size: 15px !important; }

    /* Tabs: kleinere tekst */
    .dof-tab { padding: 8px 14px !important; font-size: 13px !important; }
}

@media (max-width: 480px) {
    #disoh-orderform .dof-section { padding: 16px 12px !important; }
    .dof-search-bar { gap: 6px; }
    .dof-search-bar .dof-btn { padding: 10px 14px !important; font-size: 14px !important; }
}

/* Kortingscode styling */
#dof-coupon-wrap .dof-input--sm {
    border-radius: 6px !important;
}

/* ============================================================
   Tablet (768-900px)
   ============================================================ */
@media (min-width: 601px) and (max-width: 900px) {
    .dof-layout {
        grid-template-columns: 1fr !important;
    }
    .dof-sidebar {
        order: -1;
        position: static !important;
    }
    .dof-feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* cart item styles moved to main section above */

/* ============================================================
   Login box
   ============================================================ */

.dof-login-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #555;
    padding: 10px 14px;
    background: #f8f9fa;
    border-radius: 8px;
}

.dof-btn-link {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    color: #2d7d2f !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    padding: 0 !important;
    text-decoration: underline !important;
    display: inline !important;
    line-height: inherit !important;
    border-radius: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.dof-login-box {
    background: #f8f9fa;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.dof-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 20px 0;
}

/* ============================================================
   Kortingscode toggle
   ============================================================ */

.dof-coupon-toggle {
    background: none !important;
    border: none !important;
    color: #2d7d2f !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    padding: 4px 0 !important;
    text-decoration: underline !important;
    box-shadow: none !important;
}

.dof-coupon-toggle:hover { opacity: 0.8 !important; }

/* ============================================================
   Place order overlay / loading animatie
   ============================================================ */
.dof-order-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.dof-order-overlay--visible {
    opacity: 1;
    pointer-events: all;
}
.dof-order-overlay__spinner {
    width: 52px;
    height: 52px;
    border: 4px solid #e0e0e0;
    border-top-color: #2d7d2f;
    border-radius: 50%;
    animation: dof-spin 0.8s linear infinite;
}
.dof-order-overlay__text {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
}
.dof-order-overlay__sub {
    font-size: 14px;
    color: #888;
    margin-top: -12px;
}

/* ============================================================
   Kortingscode uitklapper — fix input te klein
   ============================================================ */
#dof-coupon-fields {
    margin-top: 10px;
}
#dof-coupon-fields .dof-input--sm {
    height: 40px !important;
    font-size: 14px !important;
    padding: 10px 14px !important;
    flex: 1 !important;
    min-width: 0 !important;
}
#dof-coupon-fields > div {
    display: flex;
    gap: 8px;
    align-items: center;
}
#dof-coupon-apply {
    height: 40px !important;
    padding: 0 16px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

/* ============================================================
   Cart totals: compacte marges
   ============================================================ */
.dof-cart__totals {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #ececec;
}
.dof-cart__totals hr {
    margin: 8px 0;
    border: none;
    border-top: 1px solid #ececec;
}
.dof-cart__row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 4px;
    color: #555;
}
.dof-cart__row--total {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 700;
    margin-top: 4px;
}

/* ============================================================
   Domain required popup
   ============================================================ */
.dof-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}
.dof-popup-overlay--visible {
    opacity: 1;
    pointer-events: all;
}
.dof-popup {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    transform: translateY(12px);
    transition: transform 0.25s ease;
}
.dof-popup-overlay--visible .dof-popup { transform: translateY(0); }
.dof-popup__close {
    position: absolute;
    top: 16px; right: 16px;
    background: none !important; border: none !important;
    font-size: 20px; cursor: pointer; color: #aaa !important;
    width: 32px; height: 32px; border-radius: 50% !important;
    display: flex; align-items: center; justify-content: center;
}
.dof-popup__close:hover { background: #f0f0f0 !important; color: #333 !important; }
.dof-popup__title { font-size: 20px; font-weight: 700; margin: 0 0 8px; }
.dof-popup__sub   { font-size: 14px; color: #666; margin: 0 0 20px; }
.dof-popup__options { display: flex; flex-direction: column; gap: 10px; }
.dof-popup__option {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 16px; border: 1.5px solid #e0e0e0; border-radius: 10px;
    cursor: pointer; transition: border-color 0.18s, background 0.18s;
}
.dof-popup__option:hover { border-color: #2d7d2f; background: #f7fdf7; }
.dof-popup__option--minor { opacity: 0.7; }
.dof-popup__option--minor:hover { opacity: 1; }
.dof-popup__option-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.dof-popup__option div { display: flex; flex-direction: column; gap: 2px; }
.dof-popup__option strong { font-size: 14px; font-weight: 600; }
.dof-popup__option span { font-size: 12px; color: #777; }

/* ============================================================
   Ingelogd bar
   ============================================================ */
.dof-logged-in-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f0faf0;
    border: 1.5px solid #2d7d2f;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}
.dof-logged-in-bar__icon {
    background: #2d7d2f;
    color: #fff;
    border-radius: 50%;
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; flex-shrink: 0;
}

/* ============================================================
   Gratis prijs badge
   ============================================================ */
.dof-price-free {
    color: #2d7d2f;
    font-size: 20px;
    font-weight: 700;
}

/* ============================================================
   Cart cycle select
   ============================================================ */
.dof-cart__cycle-select {
    font-size: 11px !important;
    padding: 3px 20px 3px 6px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
    background: #fafafa !important;
    color: #555 !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6'%3E%3Cpath d='M1 1l3 3 3-3' stroke='%23888' stroke-width='1.2' fill='none'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 5px center !important;
}

/* ============================================================
   Rocket Loader fix — definieer alles met data-cfasync
   ============================================================ */
#disoh-orderform { contain: layout style; }

/* ============================================================
   Premium look — verbeterde kaartschaduwen en hover
   ============================================================ */
.dof-section {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.08);
}
.dof-package {
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}
.dof-package:hover {
    box-shadow: 0 4px 20px rgba(45,125,47,0.12);
    transform: translateY(-1px);
}
.dof-package--selected {
    box-shadow: 0 4px 24px rgba(45,125,47,0.2) !important;
}
.dof-domain-row {
    transition: box-shadow 0.18s, border-color 0.18s;
}
.dof-domain-row:hover { box-shadow: 0 2px 10px rgba(0,0,0,0.07); }
.dof-cart {
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.dof-usps { box-shadow: 0 2px 12px rgba(0,0,0,0.05); }

/* Payment method logo area */
.dof-payment-method__logo {
    width: 36px;
    height: 24px;
    object-fit: contain;
    margin-right: 4px;
    border-radius: 3px;
    background: #f5f5f5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.dof-payment-method {
    gap: 12px;
    align-items: center;
}

/* ============================================================
   EPP / Verhuiscode veld
   ============================================================ */
.dof-epp-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
    padding: 10px 12px;
    background: #fffbf0;
    border: 1.5px solid #f0c060;
    border-radius: 8px;
    grid-column: 1 / -1; /* span full row width in grid */
    width: 100%;
}
.dof-epp-input {
    flex: 1;
    min-width: 0;
    height: 36px !important;
    font-size: 13px !important;
    padding: 8px 12px !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 6px !important;
}
.dof-epp-confirm {
    white-space: nowrap;
    padding: 8px 14px !important;
    font-size: 13px !important;
    height: 36px !important;
}

/* Transfer domein rij: neem volledige breedte voor EPP wrap */
.dof-domain-row--transfer {
    flex-wrap: wrap;
}
.dof-domain-row--transfer .dof-epp-wrap {
    width: 100%;
    flex-basis: 100%;
}

/* ============================================================
   Featured (middelste) pakket — uitgeklapt + prominenter
   ============================================================ */
.dof-package--featured {
    border-color: #1f6e35 !important;
    border-width: 2px !important;
    position: relative;
    background: #fafffe;
}
.dof-package--featured::before {
    content: 'Meest gekozen';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #1f6e35;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: .4px;
}
.dof-package--featured .dof-package__features {
    display: block !important;
}
/* Featured pakket: grotere, boldere prijs */
.dof-package--featured .dof-package__price-main {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #1f6e35 !important;
}
.dof-package--featured .dof-package__save-badge {
    font-size: 11px !important;
    font-weight: 700 !important;
    background: #e8f7ec !important;
    color: #1f6e35 !important;
    padding: 2px 8px !important;
    border-radius: 20px !important;
    border: 1px solid #c3e8cc !important;
}
.dof-package--featured .dof-package__choose {
    background: #1f6e35 !important;
    color: #fff !important;
    border-color: #1f6e35 !important;
}
.dof-package--featured .dof-package__price-period {
    color: #666 !important;
}

/* Extra ruimte boven featured voor het badge-label */
.dof-packages {
    padding-top: 16px;
}

/* ============================================================
   Billing toggle: standaard checked styling
   ============================================================ */
#dof-billing-toggle:checked + .dof-toggle__track {
    background: #2d7d2f;
}

/* ============================================================
   Transfer cart item weergave
   ============================================================ */
.dof-cart__item-sub--transfer {
    color: #e67e22;
    font-weight: 500;
}

/* ============================================================
   RESPONSIVE OVERHAUL — volledig mobile-first
   ============================================================ */

/* ── Stappenbalk ─────────────────────────────────────────── */
@media (max-width: 480px) {
    .dof-steps {
        gap: 0;
        padding: 0 8px;
    }
    .dof-step {
        flex: 1;
        min-width: 0;
    }
    .dof-step__number {
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
    }
    .dof-step__label {
        display: none !important;
    }
    .dof-step-connector {
        flex: 1;
        min-width: 12px;
    }
}

/* ── Pakketten grid ─────────────────────────────────────── */
@media (max-width: 700px) {
    .dof-packages-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .dof-package {
        border-radius: 14px !important;
    }
    .dof-package__header {
        padding: 16px 16px 12px !important;
    }
    .dof-package__name {
        font-size: 18px !important;
    }
    .dof-package__price-amount {
        font-size: 28px !important;
    }
    .dof-package__features {
        padding: 0 16px 16px !important;
    }
    .dof-package__choose {
        width: 100% !important;
        padding: 14px !important;
        font-size: 15px !important;
    }
}

/* ── Tabs (billing cycle) ───────────────────────────────── */
@media (max-width: 480px) {
    .dof-tabs {
        gap: 4px !important;
    }
    .dof-tab {
        padding: 8px 10px !important;
        font-size: 12px !important;
    }
}

/* ── Domein zoekbalk ────────────────────────────────────── */
@media (max-width: 560px) {
    .dof-search-bar {
        flex-direction: column !important;
        gap: 8px !important;
    }
    .dof-search-bar .dof-input {
        width: 100% !important;
    }
    .dof-search-bar .dof-btn {
        width: 100% !important;
        padding: 14px !important;
    }
}

/* ── Domein rijen ───────────────────────────────────────── */
@media (max-width: 560px) {
    .dof-domain-row {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        grid-template-rows: auto auto !important;
        gap: 4px 8px !important;
        padding: 12px !important;
    }
    .dof-domain-row__name {
        grid-column: 1;
        grid-row: 1;
        font-size: 14px !important;
        font-weight: 600 !important;
    }
    .dof-domain-row__status {
        grid-column: 1;
        grid-row: 2;
        font-size: 12px !important;
    }
    .dof-domain-row__price {
        grid-column: 2;
        grid-row: 1;
        font-size: 13px !important;
        text-align: right;
    }
    .dof-domain-row__add {
        grid-column: 2;
        grid-row: 2;
        font-size: 12px !important;
        padding: 6px 10px !important;
    }
}

/* ── Klantgegevens formulier ────────────────────────────── */
@media (max-width: 600px) {
    .dof-form-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .dof-form-grid .dof-col-span-2 {
        grid-column: 1 !important;
    }
    .dof-input, .dof-select {
        font-size: 16px !important; /* Voorkomt iOS zoom */
        padding: 12px 14px !important;
    }
    .dof-label {
        font-size: 13px !important;
    }
}

/* ── Betaalmethodes ─────────────────────────────────────── */
@media (max-width: 560px) {
    #dof-payment-methods {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    .dof-payment-method {
        padding: 12px 14px !important;
        gap: 10px !important;
    }
    .dof-payment-method__name {
        font-size: 14px !important;
    }
    .dof-payment-method__logo img {
        height: 20px !important;
    }
}

/* ── Layout / sidebar ───────────────────────────────────── */
@media (max-width: 900px) {
    #disoh-orderform .dof-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }
    .dof-sidebar {
        order: -1 !important;
        position: static !important;
        width: 100% !important;
    }
    .dof-main {
        width: 100% !important;
    }
}

/* ── Cart/sidebar compact op mobile ────────────────────── */
@media (max-width: 600px) {
    .dof-cart {
        padding: 16px !important;
        border-radius: 14px !important;
    }
    .dof-cart__title {
        font-size: 15px !important;
        margin-bottom: 12px !important;
    }
    .dof-cart__item {
        gap: 8px !important;
        padding: 10px 0 !important;
    }
    .dof-cart__item-name {
        font-size: 13px !important;
    }
    .dof-cart__item-price {
        font-size: 13px !important;
    }
    .dof-cart__total {
        font-size: 16px !important;
    }
    .dof-usps {
        display: none !important;
    }
}

/* ── Order knop ─────────────────────────────────────────── */
@media (max-width: 560px) {
    .dof-step-footer {
        flex-direction: column-reverse !important;
        gap: 10px !important;
    }
    .dof-step-footer .dof-btn {
        width: 100% !important;
        padding: 15px !important;
        font-size: 16px !important;
        justify-content: center !important;
    }
    #dof-place-order {
        padding: 16px !important;
        font-size: 16px !important;
        letter-spacing: .2px !important;
    }
}

/* ── Sectie padding mobiel ──────────────────────────────── */
@media (max-width: 480px) {
    .dof-section {
        padding: 16px 14px !important;
        border-radius: 14px !important;
    }
    .dof-section__title {
        font-size: 17px !important;
    }
}

/* ── Overlay / spinner ──────────────────────────────────── */
@media (max-width: 560px) {
    .dof-overlay__box {
        padding: 32px 24px !important;
        margin: 16px !important;
        border-radius: 16px !important;
    }
}


/* ============================================================
   Domein USP blok (uitgelichte extensies)
   ============================================================ */
.dof-domain-usp {
    background: linear-gradient(135deg, #f0faf2 0%, #e8f7ec 100%);
    border: 1.5px solid #c3e8cc;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 24px;
    animation: dofFadeIn .25s ease both;
}
@keyframes dofFadeIn { from{opacity:0;transform:translateY(4px)} to{opacity:1;transform:none} }
.dof-domain-usp__left { flex: 1; min-width: 0; }
.dof-domain-usp__domain {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -.02em;
    margin-bottom: 4px;
    word-break: break-all;
}
.dof-domain-usp__domain em { color: #1f6e35; font-style: normal; }
.dof-domain-usp__price-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.dof-domain-usp__price-old { font-size: 13px; text-decoration: line-through; color: #aaa; }
.dof-domain-usp__price-main { font-size: 20px; font-weight: 800; color: #1a1a1a; }
.dof-domain-usp__price-period { font-size: 12px; color: #888; }
.dof-domain-usp__add {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 12px 22px; background: #1f6e35; color: #fff;
    border: none; border-radius: 100px; font-size: 14px; font-weight: 600;
    cursor: pointer; transition: background .15s, transform .1s;
    white-space: nowrap;
}
.dof-domain-usp__add:hover { background: #2d9e4a; }
.dof-domain-usp__add.added { background: #155724; pointer-events: none; }
.dof-domain-usp__right {
    flex-shrink: 0; min-width: 220px;
}
.dof-domain-usp__label {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; color: #1f6e35; margin-bottom: 10px;
}
.dof-domain-usp__points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.dof-domain-usp__points li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #333;
}
.dof-domain-usp__points li::before {
    content: '✓'; color: #1f6e35; font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.dof-domain-usp__badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: #1f6e35; color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 6px; margin-bottom: 10px;
}
@media (max-width: 600px) {
    .dof-domain-usp { flex-direction: column; gap: 16px; }
    .dof-domain-usp__right { min-width: 0; width: 100%; }
    .dof-domain-usp__domain { font-size: 18px; }
}

/* ── Prijs spinner in domeinrijen ────────────────────────── */
.dof-price-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #e0e0e0;
    border-top-color: #1f6e35;
    border-radius: 50%;
    animation: dofSpin .7s linear infinite;
    vertical-align: middle;
}
@keyframes dofSpin { to { transform: rotate(360deg); } }

/* USP spinner */
.dof-usp-spinner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 14px;
}
.dof-usp-spinner::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #c3e8cc;
    border-top-color: #1f6e35;
    border-radius: 50%;
    animation: dofSpin .7s linear infinite;
    flex-shrink: 0;
}

/* USP transfer knop */
.dof-domain-usp__add--transfer {
    background: #1a3a6e !important;
}
.dof-domain-usp__add--transfer:hover {
    background: #254d8f !important;
}
