/* GRID LAYOUT FOR UPSSELLS */
.upsell-grid .col-md-6,
.upsell-grid .col-lg-5 {
    display: flex;
    justify-content: center;
}

/* CARD SIZE CONTROL */
.upsell-card {
    width: 100%;
    max-width: 420px;
    background: #0b0c1b;
    border: 1px solid #1f1f2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    transition: transform .3s ease, box-shadow .3s ease;
}

.upsell-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.compact-card {
    max-width: 350px;
}

.upsell-title-wrapper {
    text-align: center;
}

.upsell-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.4px;
}

/* Header */
.upsell-card-header {
    background: linear-gradient(135deg, rgb(37,99,235), rgb(30,58,138));
    padding: 14px 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

/* Body */
.upsell-card-body {
    padding: 18px 20px;
    text-align: center;
}

.upsell-description {
    color: #d1d1d1;
    font-size: 13px;
    margin-bottom: 12px;
}

/* Features */
.upsell-features {
    list-style: none;
    padding: 0;
    margin: 14px 0;
    text-align: left;
}

.upsell-features li {
    font-size: 13px;
    color: #cfcfcf;
    margin-bottom: 7px;
}

.upsell-features i {
    color: #2563eb;
    margin-right: 8px;
}

/* Button */
.upsell-button {
    display: inline-block;
    margin-top: 14px;
    background: linear-gradient(135deg, rgb(37,99,235), rgb(30,58,138));
    color: #fff;
    padding: 9px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all .3s ease;
}

.upsell-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* FULL-WIDTH DOMAIN OFFER CARD */
.domain-offer-card-full {
    width: 100%;
    background: #0b0c1b;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #1f1f2e;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* Header */
.domain-offer-header {
    background: linear-gradient(135deg, rgb(37,99,235), rgb(30,58,138));
    color: #fff;
    font-weight: 700;
}

/* Body */
.domain-offer-body {
    background: #1a1b2f;
    padding: 18px;
}

/* 2-column layout */
.domain-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 18px;
}

/* Feature/TLD box */
.domain-offer-feature {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 16px 14px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
}

.domain-offer-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

.domain-offer-feature i {
    color: #60a5fa;
    font-size: 1.4rem;
    margin-bottom: 6px;
}

/* Mobile */
@media (max-width: 576px) {
    .domain-offer-grid {
        grid-template-columns: 1fr;
    }
}