/* Offer wall layout */
.aof-offer-wall {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(17, 24, 39, 0.05);
    overflow: hidden;
    font-family: inherit;
    margin: 2.5rem 0;
}

.aof-offer-wall__header,
.aof-offer-row {
    display: grid;
    grid-template-columns: 60px 1fr 120px 180px;
    gap: 12px;
    align-items: center;
    padding: 12px 16px;
}

.aof-offer-wall__header {
    background: #f8fafc;
    font-weight: 600;
    color: #475569;
    border-bottom: 1px solid #e5e7eb;
}

.aof-offer-row {
    border-bottom: 1px solid #f1f5f9;
}

.aof-offer-row:last-child {
    border-bottom: none;
}

.aof-offer-col {
    display: flex;
    align-items: center;
    gap: 10px;
}

.aof-offer-col--pos {
    font-weight: 700;
    font-size: 16px;
    color: #1f2937;
}

.aof-offer-col--brand {
    gap: 12px;
}

.aof-offer-brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    color: inherit;
}

.aof-offer-brand-link:hover .aof-offer-brand-name {
    color: #ff6b35;
}

.aof-offer-logo {
    width: 72px;
    height: 40px;
    object-fit: contain;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    padding: 4px 6px;
    transition: transform 0.15s ease;
}

.aof-offer-brand-link:hover .aof-offer-logo {
    transform: scale(1.05);
}

.aof-offer-logo-fallback {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(145deg, #f3f4f6, #e2e8f0);
    color: #1f2937;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    border: 1px solid #e5e7eb;
    transition: transform 0.15s ease;
}

.aof-offer-brand-link:hover .aof-offer-logo-fallback {
    transform: scale(1.05);
}

.aof-offer-brand-name {
    font-weight: 600;
    color: #0f172a;
    font-size: 16px;
    transition: color 0.15s ease;
}

.aof-offer-col--rating {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.aof-offer-rating-number {
    font-weight: 600;
    color: #111827;
}

.aof-offer-rating-stars {
    position: relative;
    font-size: 14px;
    line-height: 1;
    color: #d1d5db;
    letter-spacing: 2px;
}

.aof-offer-rating-stars::before {
    content: '★★★★★';
}

.aof-offer-rating-stars::after {
    content: '★★★★★';
    position: absolute;
    left: 0;
    top: 0;
    width: calc((var(--rating, 0) / 5) * 100%);
    overflow: hidden;
    color: #f59e0b;
}

.aof-offer-col--actions {
    gap: 10px;
    justify-content: flex-end;
}

.aof-offer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    font-size: 14px;
    min-width: 80px;
    color: #fff !important;
}

.aof-offer-btn--primary {
    background: #ff6b35;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
}

.aof-offer-btn--primary:hover {
    background: #ff5722;
    color: #fff !important;
}

.aof-offer-btn--secondary {
    background: #004e89;
}

.aof-offer-btn--secondary:hover {
    background: #003d6b;
    color: #fff !important;
}

/* Mobile responsive styles - Card layout */
@media (max-width: 768px) {
    .aof-offer-wall {
        margin: 1.5rem 0;
        border-radius: 12px;
    }
    
    /* Hide header on mobile */
    .aof-offer-wall__header {
        display: none !important;
    }
    
    /* Card-style rows */
    .aof-offer-row {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        grid-template-areas:
            "pos brand rating"
            "pos actions actions";
        gap: 8px 12px;
        padding: 16px;
        align-items: center;
    }
    
    /* Position badge - light background */
    .aof-offer-col--pos {
        grid-area: pos;
        width: 26px;
        height: 26px;
        background: #f1f5f9;
        color: #1f2937;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 700;
    }
    
    /* Brand: logo + name inline */
    .aof-offer-col--brand {
        grid-area: brand;
        min-width: 0;
    }
    
    .aof-offer-brand-link {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .aof-offer-logo {
        width: 64px;
        height: 40px;
        flex-shrink: 0;
        padding: 4px;
    }
    
    .aof-offer-logo-fallback {
        width: 32px;
        height: 32px;
        font-size: 14px;
        flex-shrink: 0;
        border-radius: 8px;
    }
    
    .aof-offer-brand-name {
        font-size: 15px;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Rating: compact on right */
    .aof-offer-col--rating {
        grid-area: rating;
        flex-direction: row;
        align-items: center;
        gap: 6px;
        justify-content: flex-end;
    }
    
    .aof-offer-rating-number {
        font-size: 16px;
        font-weight: 700;
        color: #1f2937;
    }
    
    .aof-offer-rating-stars {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    /* Actions: buttons row */
    .aof-offer-col--actions {
        grid-area: actions;
        display: flex;
        gap: 8px;
        justify-content: stretch;
    }
    
    .aof-offer-btn {
        flex: 1;
        text-align: center;
        padding: 10px 12px;
        font-size: 13px;
        min-width: unset;
        border-radius: 6px;
    }
    
    .aof-offer-btn--primary {
        background: #ff6b35;
    }
    
    .aof-offer-btn--secondary {
        background: #64748b;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .aof-offer-row {
        padding: 12px;
        gap: 6px 10px;
    }
    
    .aof-offer-col--pos {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }
    
    .aof-offer-logo {
        width: 56px;
        height: 36px;
    }
    
    .aof-offer-brand-name {
        font-size: 14px;
    }
    
    .aof-offer-rating-number {
        font-size: 14px;
    }
    
    .aof-offer-rating-stars {
        font-size: 10px;
    }
    
    .aof-offer-btn {
        padding: 8px 10px;
        font-size: 12px;
    }
}



