/* SG Amazon Affiliate – Frontend CSS */

/* === Produktbox === */
.sgaa-product-box {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    margin: 28px 0;
    position: relative;
    display: flex;
    gap: 0;
}
.sgaa-stil-box {
    flex-direction: column;
    max-width: 380px;
}
.sgaa-stil-kompakt {
    flex-direction: row;
    align-items: flex-start;
}
.sgaa-stil-banner {
    flex-direction: row;
    align-items: center;
    max-width: 100%;
    padding: 12px;
}

.sgaa-badge {
    position: absolute;
    top: -11px;
    left: 16px;
    background: #f97316;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .4px;
    z-index: 2;
}

.sgaa-product-img {
    background: #f8fafc;
    text-align: center;
    padding: 20px;
    flex-shrink: 0;
}
.sgaa-stil-kompakt .sgaa-product-img,
.sgaa-stil-banner .sgaa-product-img {
    width: 140px;
    padding: 12px;
}
.sgaa-product-img img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    display: inline-block;
}
.sgaa-stil-kompakt .sgaa-product-img img,
.sgaa-stil-banner .sgaa-product-img img {
    max-height: 110px;
}

.sgaa-product-info {
    padding: 20px;
    flex: 1;
}

.sgaa-product-title {
    font-size: 1.05rem;
    margin: 0 0 8px;
    line-height: 1.4;
}
.sgaa-product-title a {
    color: #1a202c;
    text-decoration: none;
}
.sgaa-product-title a:hover { color: #1a56db; }

.sgaa-product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #b91c1c;
    margin: 6px 0 10px;
    display: block;
}

/* Bewertung */
.sgaa-stars { color: #f59e0b; font-size: 1rem; }
.sgaa-star-empty { color: #d1d5db; }
.sgaa-rating-val { font-weight: 700; color: #1a202c; }
.sgaa-rating-count { color: #6b7280; font-size: .88rem; }

/* Features */
.sgaa-product-features {
    margin: 8px 0 12px;
    padding-left: 18px;
    color: #374151;
    font-size: .9rem;
}
.sgaa-product-features li { margin-bottom: 3px; }

/* Verfügbarkeit */
.sgaa-avail   { color: #16a34a; font-size: .85rem; margin-bottom: 12px; }
.sgaa-unavail { color: #dc2626; font-size: .85rem; margin-bottom: 12px; }

/* Kaufen-Button */
.sgaa-buy-button {
    display: inline-block;
    background: #f0a500;
    color: #111 !important;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none !important;
    font-size: .95rem;
    transition: background .2s;
    margin-top: 4px;
}
.sgaa-buy-button:hover { background: #d48f00; color: #111 !important; }

/* Disclaimer */
.sgaa-disclaimer {
    font-size: .75rem;
    color: #9ca3af;
    margin-top: 10px;
    margin-bottom: 0;
}

/* === Vergleichstabelle === */
.sgaa-compare-wrap { margin: 28px 0; overflow-x: auto; }
.sgaa-compare-grid {
    display: grid;
    gap: 16px;
    min-width: 320px;
}
.sgaa-compare-col {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.sgaa-compare-img img {
    max-width: 140px;
    max-height: 140px;
    object-fit: contain;
}
.sgaa-compare-title {
    font-size: .9rem;
    margin: 0;
    line-height: 1.35;
}
.sgaa-compare-title a { color: #1a202c; text-decoration: none; }
.sgaa-compare-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #b91c1c;
}
.sgaa-compare-avail { font-size: .8rem; color: #6b7280; }

/* === Bestseller === */
.sgaa-bestseller-wrap { margin: 28px 0; }
.sgaa-bestseller-title { margin-bottom: 16px; }
.sgaa-bestseller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.sgaa-bestseller-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px;
    background: #fff;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}
.sgaa-rank {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #1a56db;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 12px;
}
.sgaa-bestseller-item img {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}
.sgaa-bestseller-item h4 { font-size: .85rem; margin: 0; }
.sgaa-bestseller-item h4 a { color: #1a202c; text-decoration: none; }
.sgaa-bestseller-item .sgaa-buy-button {
    padding: 8px 14px;
    font-size: .82rem;
}

/* === Fehler-Box (nur für Admins sichtbar) === */
.sgaa-error-box {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 6px;
    padding: 10px 14px;
    color: #7f1d1d;
    font-size: .88rem;
    margin: 12px 0;
}

/* === Responsive === */
@media (max-width: 640px) {
    .sgaa-stil-kompakt,
    .sgaa-stil-banner {
        flex-direction: column;
    }
    .sgaa-stil-kompakt .sgaa-product-img,
    .sgaa-stil-banner .sgaa-product-img {
        width: 100%;
    }
    .sgaa-compare-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}
