.domain-config-nameservers
.row.domain-nameservers-container{
    display: none !important;
}

/* Global font + smoothing */
body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #f5f7fb;
    color: #1a1a1a;
}

/* Container spacing */
.container {
    max-width: 1200px;
}

/* Product Cards */
.product {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid #e6e9f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Product Title */
.product-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Pricing highlight */
.product-price {
    font-size: 28px;
    font-weight: 700;
    color: #673de6;
}

/* Buttons (Hostinger-style gradient) */
.btn-primary {
    background: linear-gradient(135deg, #673de6, #8b5cf6);
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5b34d6, #7c4df2);
    transform: translateY(-2px);
}

/* Billing cycle dropdown */
select {
    border-radius: 10px;
    border: 1px solid #dcdfea;
    padding: 10px;
}

/* Cart summary box */
#orderSummary {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e6e9f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Section headings */
h2, h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

/* Inputs */
input, select {
    border-radius: 10px !important;
    padding: 12px !important;
    border: 1px solid #dcdfea !important;
}

/* Focus states */
input:focus, select:focus {
    border-color: #673de6 !important;
    box-shadow: 0 0 0 2px rgba(103,61,230,0.1);
}

/* Remove old WHMCS harsh styling */
.panel {
    border: none;
    box-shadow: none;
}

/* Progress steps modern look */
.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.steps .step {
    flex: 1;
    text-align: center;
    font-weight: 500;
    color: #999;
}

.steps .step.active {
    color: #673de6;
    font-weight: 600;
}



.product.popular {
    border: 2px solid #673de6;
    position: relative;
}

.product.popular::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    right: 20px;
    background: #673de6;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
}
* {
    transition: all 0.2s ease-in-out;
}


/* Container grid */
#paymentGatewaysContainer .text-center {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

/* Hide default radio */
.payment-method-input {
    display: none;
}

/* Card style */
.payment-card {
    display: block;
    cursor: pointer;
    border-radius: 16px;
    border: 2px solid #e6e9f0;
    background: #ffffff;
    padding: 18px;
    transition: all 0.25s ease;
    position: relative;
}

/* Inner layout */
.payment-card-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Icon */
.payment-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #673de6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

/* Text */
.payment-title {
    font-size: 16px;
    font-weight: 600;
    display: block;
}

.payment-desc {
    font-size: 13px;
    color: #888;
}

/* Hover */
.payment-card:hover {
    transform: translateY(-3px);
    border-color: #673de6;
    box-shadow: 0 10px 25px rgba(103,61,230,0.15);
}

/* Selected state */
.payment-method-input:checked + .payment-card-inner,
.payment-method-input:checked ~ .payment-card-inner {
    /* fallback */
}

.payment-method-input:checked + .payment-card-inner,
.payment-method-input:checked + .payment-card-inner .payment-title {
    color: #673de6;
}

/* Better selected style */
.payment-method-input:checked + .payment-card-inner,
.payment-method-input:checked ~ .payment-card-inner {
    font-weight: 600;
}

.payment-method-input:checked + .payment-card-inner::before {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 15px;
    background: #673de6;
    color: #fff;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 8px;
}

/* STRONG selected highlight */
.payment-method-input:checked ~ .payment-card {
    border-color: #673de6;
    background: #f3efff;
    box-shadow: 0 10px 30px rgba(103,61,230,0.2);
}

/* Fix structure (important for WHMCS DOM) */
.payment-card input:checked + .payment-card-inner {
    border-color: #673de6;
}

/* Mobile */
@media (max-width: 576px) {
    #paymentGatewaysContainer .text-center {
        grid-template-columns: 1fr;
    }
}
.payment-card input:checked {
    outline: none;
}

.payment-card input:checked + .payment-card-inner {
    color: #673de6;
}

/* Force parent highlight */
.payment-card input:checked {
    accent-color: #673de6;
}