/* ===========================================================
   استایل ویجت کارت معرفی و آفر — تم تیره (مشکی)
   =========================================================== */

.row-offer-card {
    direction: rtl;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 24px;
    background-color: #121212;
    border: 2px solid #f2c94c;
    border-radius: 16px;
    padding: 18px 28px;
    font-family: inherit;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.row-offer-card .row-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ستون بج‌ها */
.row-col-badges {
    flex: 0 0 auto;
    min-width: 230px;
    gap: 10px;
}

.row-badges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.row-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: #d8d8d8;
    border: 1.5px dashed #555;
    border-radius: 20px;
    padding: 6px 10px;
    white-space: nowrap;
    background-color: #1a1a1a;
}

.row-cta-button {
    display: block;
    text-align: center;
    background-color: #f2c94c;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    padding: 12px 10px;
    transition: opacity 0.2s ease;
}

.row-cta-button:hover {
    opacity: 0.85;
    color: #1a1a1a;
}

/* ستون ویژگی‌ها */
.row-col-features {
    flex: 1 1 260px;
    gap: 10px;
}

.row-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.row-feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #f5f5f5;
}

.row-feature-item i {
    color: #f2c94c;
}

.row-domain-bar {
    display: flex;
    align-items: stretch;
    border-radius: 8px;
    overflow: hidden;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #2e2e2e;
}

.row-domain-tag {
    background-color: #262626;
    color: #fff;
    padding: 10px 16px;
}

.row-domain-link {
    flex: 1;
    background-color: #000000;
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    text-align: center;
}

.row-domain-link:hover {
    color: #f2c94c;
}

/* ستون باکس آفر */
.row-col-bonus {
    flex: 0 0 auto;
    align-items: center;
}

.row-bonus-box {
    background-color: #5b2ce0;
    color: #fff;
    border-radius: 12px;
    padding: 12px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.row-bonus-title {
    font-size: 14px;
    font-weight: 600;
}

.row-bonus-value {
    font-size: 22px;
    font-weight: 800;
    color: #f2c94c;
}

/* ستون لوگو و امتیاز */
.row-col-logo {
    flex: 0 0 auto;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.row-logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.row-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%;
}

.row-logo-text {
    font-weight: 800;
    font-size: 15px;
    color: #f5f5f5;
    letter-spacing: 0.5px;
}

.row-rating {
    font-size: 20px;
    font-weight: 800;
    color: #f2c94c;
}

.row-rating-total {
    font-size: 13px;
    font-weight: 600;
    color: #999;
}

.row-review-text {
    font-size: 13px;
    font-weight: 700;
    color: #c9c9c9;
}

/* ریسپانسیو */
@media (max-width: 900px) {
    .row-offer-card {
        flex-direction: column;
        align-items: stretch;
    }
    .row-col-badges,
    .row-col-bonus,
    .row-col-logo {
        min-width: 0;
    }
}
