/* Foodtippr Smart Ads - Frontend Styles */
:root {
    --ft-orange: #f26a21;
    --ft-orange-dark: #d95212;
    --ft-green: #117a65;
    --ft-bg: #fff8f0;
    --ft-surface: rgba(255, 255, 255, 0.95);
    --ft-shadow: 0 12px 30px rgba(58, 33, 10, 0.1);
    --ft-radius: 20px;
}

.ft-ad-unit {
    position: relative;
    margin: 20px 0;
    font-family: 'Manrope', sans-serif;
    border-radius: var(--ft-radius);
    overflow: hidden;
    background: var(--ft-surface);
    box-shadow: var(--ft-shadow);
    border: 1px solid rgba(78, 46, 19, 0.08);
    transition: transform 0.3s ease;
}

.ft-ad-unit:hover {
    transform: translateY(-4px);
}

/* Banner Creative */
.ft-creative-banner {
    display: flex;
    flex-direction: row;
    min-height: 120px;
}

.ft-ad-media {
    flex: 0 0 140px;
    background: #eee;
    position: relative;
    overflow: hidden;
}

.ft-ad-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ft-ad-content {
    flex: 1;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ft-ad-badge {
    display: inline-block;
    background: #fff3da;
    color: var(--ft-orange-dark);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
    margin-bottom: 8px;
    width: fit-content;
}

.ft-ad-headline {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 800;
    color: #1f1d1a;
    line-height: 1.2;
}

.ft-ad-subheadline {
    margin: 0;
    font-size: 13px;
    color: #5e5a53;
    line-height: 1.4;
}

.ft-ad-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.ft-ad-price {
    font-weight: 800;
    color: var(--ft-green);
    font-size: 15px;
}

.ft-ad-cta {
    background: var(--ft-orange);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s;
}

.ft-ad-cta:hover {
    background: var(--ft-orange-dark);
    color: #fff;
}

/* WhatsApp Card Variation */
.ft-creative-whatsapp {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
    border-top: 4px solid var(--ft-green);
}

.ft-creative-whatsapp .ft-ad-cta {
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    padding: 12px 24px;
}

.ft-creative-whatsapp .ft-ad-cta:hover {
    background: #128c7e;
}

/* Responsive */
@media (max-width: 480px) {
    .ft-creative-banner {
        flex-direction: column;
    }
    .ft-ad-media {
        flex: 0 0 160px;
        width: 100%;
    }
}
