/* BidBuy Brands — Frontend Styles v1.0.0 */

/* ── Brands Directory ── */
.bidbuy-brands-dir { max-width: 1000px; margin: 30px auto; padding: 0 15px; }
.bidbuy-brands-dir__title { font-size: 22px; font-weight: 700; color: #1a1a2e; margin: 0 0 24px; padding-bottom: 12px; border-bottom: 2px solid #4CAF50; }
.bidbuy-brands-dir__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.bidbuy-brands-dir__card { display: flex; flex-direction: column; align-items: center; padding: 24px 16px; background: #fff; border: 1px solid #eee; border-radius: 12px; text-decoration: none; color: inherit; transition: box-shadow 0.2s, transform 0.2s; }
.bidbuy-brands-dir__card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.bidbuy-brands-dir__logo { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin-bottom: 12px; background: #f5f5f5; display: flex; align-items: center; justify-content: center; }
.bidbuy-brands-dir__logo img { width: 100%; height: 100%; object-fit: cover; }
.bidbuy-brands-dir__card h3 { font-size: 16px; font-weight: 700; margin: 0 0 6px; color: #1a1a2e; text-align: center; }
.bidbuy-brands-dir__tagline { font-size: 13px; color: #777; margin: 0 0 8px; text-align: center; line-height: 1.4; }
.bidbuy-brands-dir__count { font-size: 12px; color: #4CAF50; font-weight: 600; background: #e8f5e9; padding: 3px 10px; border-radius: 20px; }
.bidbuy-brands-dir__empty { color: #999; font-style: italic; }
.bidbuy-brands-dir__cta { text-align: center; margin-top: 30px; }

/* ── Brand Storefront ── */
.bidbuy-storefront { max-width: 1000px; margin: 0 auto; }
.bidbuy-storefront__banner { width: 100%; height: 240px; background-size: cover; background-position: center; border-radius: 12px 12px 0 0; }
.bidbuy-storefront__header { display: flex; align-items: flex-start; gap: 20px; padding: 24px; background: #fff; border: 1px solid #eee; border-radius: 0 0 12px 12px; margin-bottom: 24px; flex-wrap: wrap; }
.bidbuy-storefront__logo { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; border: 3px solid #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); flex-shrink: 0; margin-top: -50px; background: #fff; }
.bidbuy-storefront__logo img { width: 100%; height: 100%; object-fit: cover; }
.bidbuy-storefront__info { flex: 1; min-width: 200px; }
.bidbuy-storefront__info h1 { font-size: 24px; font-weight: 700; margin: 0 0 4px; color: #1a1a2e; display: flex; align-items: center; gap: 8px; }
.bidbuy-storefront__tagline { font-size: 14px; color: #777; margin: 0 0 10px; }
.bidbuy-storefront__social { display: flex; gap: 10px; }
.bidbuy-storefront__social a { color: #555; font-size: 20px; transition: color 0.2s; text-decoration: none; }
.bidbuy-storefront__social a:hover { color: #4CAF50; }
.bidbuy-storefront__stats { display: flex; gap: 24px; text-align: center; margin-left: auto; }
.bidbuy-storefront__stat strong { display: block; font-size: 22px; color: #1a1a2e; }
.bidbuy-storefront__stat span { font-size: 12px; color: #999; text-transform: uppercase; letter-spacing: 0.5px; }
.bidbuy-storefront__about { background: #f9f9f9; border-radius: 10px; padding: 20px; margin-bottom: 24px; }
.bidbuy-storefront__about p { margin: 0; line-height: 1.6; color: #555; font-size: 14px; }
.bidbuy-storefront__catalog-title { font-size: 18px; font-weight: 700; color: #1a1a2e; margin: 0 0 16px; padding-bottom: 8px; border-bottom: 2px solid #4CAF50; }

/* ── Product Grid ── */
.bidbuy-storefront__products { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 30px; }
.bidbuy-storefront__product-card { display: block; background: #fff; border: 1px solid #eee; border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow 0.2s; }
.bidbuy-storefront__product-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.bidbuy-storefront__product-img { position: relative; width: 100%; padding-top: 100%; background: #f5f5f5; overflow: hidden; }
.bidbuy-storefront__product-img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.bidbuy-storefront__product-img .dashicons { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 40px; color: #ccc; }
.bidbuy-storefront__product-info { padding: 12px; }
.bidbuy-storefront__product-info h4 { margin: 0 0 6px; font-size: 14px; font-weight: 600; color: #333; line-height: 1.3; }
.bidbuy-storefront__product-price { font-size: 16px; font-weight: 700; color: #4CAF50; }
.bidbuy-storefront__empty { color: #999; font-style: italic; }

/* ── Badges ── */
.bidbuy-badge { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.bidbuy-badge--verified { background: #e8f5e9; color: #2E7D32; font-size: 14px; }
.bidbuy-badge--sale { position: absolute; top: 8px; left: 8px; background: #4CAF50; color: #fff; }
.bidbuy-badge--auction { position: absolute; top: 8px; left: 8px; background: #E65100; color: #fff; }
.bidbuy-badge--exchange { position: absolute; top: 8px; left: 8px; background: #1565C0; color: #fff; }

/* ── Application Form ── */
.bidbuy-brand-apply { max-width: 600px; margin: 30px auto; }
.bidbuy-brand-apply h2 { font-size: 22px; color: #1a1a2e; margin: 0 0 8px; }
.bidbuy-brand-apply > p { color: #777; margin: 0 0 24px; font-size: 14px; }

/* ── Buttons (shared) ── */
.bidbuy-btn { display: inline-block; padding: 12px 24px; border-radius: 6px; font-size: 14px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s; }
.bidbuy-btn--primary { background: #4CAF50; color: #fff; }
.bidbuy-btn--primary:hover { background: #388E3C; color: #fff; }

/* ── Notices ── */
.bidbuy-notice { border-radius: 8px; padding: 14px 18px; margin-bottom: 16px; font-size: 14px; }
.bidbuy-notice p { margin: 0; }
.bidbuy-notice--success { background: #e8f5e9; border: 1px solid #c8e6c9; color: #2E7D32; }
.bidbuy-notice--error { background: #ffebee; border: 1px solid #ffcdd2; color: #c62828; }
.bidbuy-notice--warning { background: #fff3e0; border: 1px solid #ffe0b2; color: #E65100; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .bidbuy-storefront__header { flex-direction: column; align-items: center; text-align: center; }
    .bidbuy-storefront__logo { margin-top: -40px; }
    .bidbuy-storefront__info h1 { justify-content: center; }
    .bidbuy-storefront__social { justify-content: center; }
    .bidbuy-storefront__stats { margin-left: 0; justify-content: center; }
    .bidbuy-storefront__banner { height: 160px; }
    .bidbuy-storefront__products { grid-template-columns: repeat(2, 1fr); }
    .bidbuy-brands-dir__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .bidbuy-storefront__products { grid-template-columns: 1fr; }
    .bidbuy-brands-dir__grid { grid-template-columns: 1fr; }
}
