/* TheTopDeal eBay Feed — Frontend Deal Cards
   Designed to blend with TheTopDeal.com's existing deal list aesthetic.
*/

/* ── v3.6 DEFENSIVE OVERRIDES ───────────────────────
   The theme's global CSS can hide or restyle our card text.
   These rules use scoped !important to keep the data visible.
*/

.ttd-ebay-deal,
.ttd-ebay-deal *,
.ttd-ebay-deals,
.ttd-ebay-deals * {
    box-sizing: border-box !important;
}

.ttd-ebay-deal .ttd-ebay-info,
.ttd-ebay-deal .ttd-ebay-title,
.ttd-ebay-deal .ttd-ebay-pricing,
.ttd-ebay-deal .ttd-ebay-price,
.ttd-ebay-deal .ttd-ebay-original,
.ttd-ebay-deal .ttd-ebay-source,
.ttd-ebay-deal .ttd-ebay-condition,
.ttd-ebay-deal .ttd-ebay-cta,
.ttd-ebay-deal .ttd-ebay-badge {
    display: revert !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: inherit !important;
    font-size: revert !important;
}

/* Explicitly set the canonical display for layout-critical elements */
.ttd-ebay-deal .ttd-ebay-info { display: flex !important; flex-direction: column !important; gap: 5px !important; padding: 12px 14px 14px !important; }
.ttd-ebay-deal .ttd-ebay-title { display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; font-size: 14px !important; font-weight: 500 !important; color: #1a1a18 !important; line-height: 1.45 !important; text-decoration: none !important; }
.ttd-ebay-deal .ttd-ebay-pricing { display: flex !important; align-items: baseline !important; gap: 8px !important; flex-wrap: wrap !important; }
.ttd-ebay-deal .ttd-ebay-price { font-size: 18px !important; font-weight: 700 !important; color: #1a1a18 !important; }
.ttd-ebay-deal .ttd-ebay-original { font-size: 13px !important; color: #888780 !important; text-decoration: line-through !important; }
.ttd-ebay-deal .ttd-ebay-source { font-size: 11px !important; font-weight: 600 !important; text-transform: uppercase !important; letter-spacing: .06em !important; color: #e84f2b !important; }
.ttd-ebay-deal .ttd-ebay-condition { display: inline-block !important; font-size: 11px !important; color: #5f5e5a !important; background: #f0efea !important; border-radius: 4px !important; padding: 2px 7px !important; width: fit-content !important; }
.ttd-ebay-deal .ttd-ebay-cta { display: inline-block !important; margin-top: 4px !important; font-size: 13px !important; font-weight: 600 !important; color: #e84f2b !important; text-decoration: none !important; width: fit-content !important; }
.ttd-ebay-deal .ttd-ebay-badge { position: absolute !important; top: 10px !important; left: 10px !important; background: #e84f2b !important; color: #fff !important; font-size: 11px !important; font-weight: 700 !important; padding: 3px 7px !important; border-radius: 4px !important; z-index: 1 !important; }

/* ── End defensive overrides ──────────────────── */

/* ── Container layouts ─────────────────────────── */

.ttd-ebay-deals {
    margin: 1.5rem 0;
}

.ttd-ebay-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ttd-ebay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

/* ── Deal card ─────────────────────────────────── */

.ttd-ebay-deal {
    position: relative;
    background: #fff;
    border: 1px solid #e8e6e0;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.ttd-ebay-deal:hover {
    border-color: #c8c6c0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

/* List layout card */
.ttd-ebay-deal--list {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
}

/* Grid layout card */
.ttd-ebay-deal--grid {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.ttd-ebay-deal--grid .ttd-ebay-img-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f7f4;
}

.ttd-ebay-deal--grid .ttd-ebay-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
}

.ttd-ebay-deal--grid:hover .ttd-ebay-img-wrap img {
    transform: scale(1.03);
}

.ttd-ebay-deal--grid .ttd-ebay-info {
    padding: 12px 14px 14px;
}

/* Widget compact */
.ttd-ebay-deal--widget {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
}

.ttd-ebay-deal--widget img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

/* ── Image wrap (list layout) ──────────────────── */

.ttd-ebay-list .ttd-ebay-img-wrap {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #f8f7f4;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ttd-ebay-list .ttd-ebay-img-wrap img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
}

/* ── Info block ────────────────────────────────── */

.ttd-ebay-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ttd-ebay-source {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #e84f2b; /* eBay brand red-orange — matches TTD accent */
}

.ttd-ebay-title {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a18;
    line-height: 1.45;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ttd-ebay-title:hover { color: #e84f2b; }

/* ── Pricing ───────────────────────────────────── */

.ttd-ebay-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.ttd-ebay-price {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a18;
}

.ttd-ebay-original {
    font-size: 13px;
    color: #888780;
    text-decoration: line-through;
}

/* ── Badges ────────────────────────────────────── */

.ttd-ebay-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e84f2b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 3px 7px;
    border-radius: 4px;
    z-index: 1;
}

.ttd-ebay-badge--inline {
    position: static;
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    background: #e84f2b;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
}

/* ── Condition pill ────────────────────────────── */

.ttd-ebay-condition {
    display: inline-block;
    font-size: 11px;
    color: #5f5e5a;
    background: #f0efea;
    border-radius: 4px;
    padding: 2px 7px;
    width: fit-content;
}

/* ── CTA button ────────────────────────────────── */

.ttd-ebay-cta {
    display: inline-block;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #e84f2b;
    text-decoration: none;
    transition: opacity 0.15s;
    width: fit-content;
}

.ttd-ebay-cta:hover { opacity: 0.75; }

/* ── Section heading ───────────────────────────── */

.ttd-ebay-heading {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #1a1a18;
    margin-bottom: 1rem;
}

/* ── Disclosure ────────────────────────────────── */

.ttd-ebay-disclosure {
    font-size: 11px;
    color: #888780;
    margin-top: 12px;
}

.ttd-ebay-disclosure a { color: #888780; }

/* ── Empty state ───────────────────────────────── */

.ttd-ebay-empty {
    color: #888780;
    font-style: italic;
}

/* ── Responsive ────────────────────────────────── */

@media (max-width: 480px) {
    .ttd-ebay-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 10px;
    }
    .ttd-ebay-list .ttd-ebay-img-wrap {
        width: 60px;
        height: 60px;
    }
    .ttd-ebay-list .ttd-ebay-img-wrap img {
        width: 60px;
        height: 60px;
    }
}

/* ── Auto-injected homepage section ──────────────── */
.ttd-ebay-auto-section {
    max-width: 1200px;
    margin: 48px auto 32px;
    padding: 0 32px;
    background: #faf8f3;
}
.ttd-ebay-auto-section .ttd-ebay-heading {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a18;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
@media (max-width: 768px) {
    .ttd-ebay-auto-section {
        margin: 32px auto 24px;
        padding: 0 20px;
    }
    .ttd-ebay-auto-section .ttd-ebay-heading {
        font-size: 22px;
    }
}
