/* Cleatz Promo Card ------------------------------------------ */
.cleatz-promo-card {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    max-width: 780px;
    margin: 1.5rem auto;
    background: #ffffff;
}

/* Header band */
.cleatz-promo-header {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.cleatz-promo-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cleatz-promo-logo {
    background: #ffffff;
    border-radius: 8px;
    padding: 4px 14px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.3px;
}
.cleatz-promo-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}
.cleatz-stars {
    color: #FFD700;
    font-size: 15px;
    letter-spacing: 1px;
}
.cleatz-rating {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
}
.cleatz-approved-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* Body */
.cleatz-promo-body {
    padding: 18px 20px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cleatz-promo-left {
    flex: 1;
    min-width: 220px;
}
.cleatz-promo-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 180px;
}

/* Offer type pill */
.cleatz-offer-type {
    display: inline-block;
    background: #EAF3DE;
    color: #3B6D11;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.cleatz-offer-headline {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.25;
    text-transform: uppercase;
}

/* Trust badges */
.cleatz-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.cleatz-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 3px 9px;
    font-size: 11px;
    font-weight: 500;
    color: #555;
}

/* Partner note */
.cleatz-partner-note {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
}
.cleatz-partner-note strong {
    color: #111;
}

/* Promo code box */
.cleatz-code-box {
    border: 1.5px dashed #1D9E75;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.cleatz-code-text {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #111;
}
.cleatz-copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    line-height: 1;
}
.cleatz-copy-btn:hover {
    opacity: 0.7;
}

/* CTA button */
.cleatz-cta-btn {
    display: block;
    text-align: center;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 8px;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: opacity 0.15s ease;
}
.cleatz-cta-btn:hover {
    opacity: 0.88;
}

/* T&C */
.cleatz-tc {
    text-align: center;
    font-size: 11px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 540px) {
    .cleatz-promo-body {
        flex-direction: column;
    }
    .cleatz-promo-right {
        width: 100%;
    }
    .cleatz-cta-btn {
        width: 100%;
        box-sizing: border-box;
    }
}
