/* ========== Reset & Base ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #f5f5f7; color: #1d1d1f; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

:root {
    --primary: #e91e63;
    --primary-dark: #c2185b;
    --primary-light: #fce4ec;
    --accent: #ff6d00;
    --accent-light: #fff3e0;
    --success: #43a047;
    --success-light: #e8f5e9;
    --dark: #1d1d1f;
    --gray-900: #2d2d2d;
    --gray-700: #555;
    --gray-500: #888;
    --gray-300: #bbb;
    --gray-100: #e8e8e8;
    --gray-50: #f5f5f7;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 16px;
}

/* ========== Navbar ========== */
.navbar {
    position: sticky; top: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; height: 56px;
    background: var(--white); border-bottom: 1px solid var(--gray-100);
}
.nav-logo {
    font-size: 22px; font-weight: 800; color: var(--primary);
    letter-spacing: -0.5px;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
    font-size: 14px; font-weight: 600; color: var(--gray-700);
    padding: 6px 0; position: relative; transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-search-mini {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 8px;
    background: var(--gray-50); border: 1px solid var(--gray-100);
    font-size: 14px; color: var(--gray-500); cursor: pointer;
    transition: all 0.2s;
}
.nav-search-mini:hover { background: var(--gray-100); }
.nav-search-mini svg { width: 16px; height: 16px; }
.nav-hamburger { display: none; cursor: pointer; font-size: 24px; }

/* ========== Hero ========== */
.hero {
    background: var(--dark); padding: 60px 24px 48px;
    text-align: center;
}
.hero-title {
    font-size: 42px; font-weight: 800; color: var(--white);
    line-height: 1.2; margin-bottom: 12px;
}
.hero-title em { color: var(--accent); font-style: normal; }
.hero-sub {
    font-size: 16px; color: rgba(255,255,255,0.6);
    max-width: 520px; margin: 0 auto 32px; line-height: 1.5;
}
.hero-search {
    max-width: 580px; margin: 0 auto;
    display: flex; position: relative;
}
.hero-search-icon {
    position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
    color: var(--gray-500); font-size: 18px;
}
.hero-search-input {
    flex: 1; padding: 16px 48px 16px 48px; border-radius: 12px;
    background: var(--white); border: none; font-size: 16px;
    color: var(--dark); outline: none;
}
.hero-search-input::placeholder { color: var(--gray-300); }
.hero-search-btn {
    padding: 16px 28px; border-radius: 12px; margin-left: 8px;
    background: var(--primary); color: var(--white);
    font-size: 15px; font-weight: 700; border: none;
    cursor: pointer; transition: background 0.2s;
}
.hero-search-btn:hover { background: var(--primary-dark); }
.hero-popular {
    display: flex; gap: 8px; justify-content: center;
    margin-top: 20px; flex-wrap: wrap;
}
.hero-popular-tag {
    padding: 6px 14px; border-radius: 6px;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
    font-size: 13px; font-weight: 500; cursor: pointer;
    transition: all 0.2s; border: 1px solid rgba(255,255,255,0.1);
}
.hero-popular-tag:hover { background: rgba(255,255,255,0.15); color: var(--white); }

/* ========== Featured Strip ========== */
.featured-strip {
    background: var(--accent-light); padding: 16px 24px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
    border-bottom: 1px solid rgba(255,109,0,0.1);
}
.featured-strip-icon { font-size: 20px; }
.featured-strip-text {
    font-size: 14px; font-weight: 600; color: var(--dark);
}
.featured-strip-text strong { color: var(--accent); }
.featured-strip-cta {
    padding: 8px 20px; border-radius: 8px;
    background: var(--accent); color: var(--white);
    font-size: 13px; font-weight: 700; cursor: pointer;
    transition: all 0.2s;
}
.featured-strip-cta:hover { background: #e65100; }

/* ========== How It Works ========== */
.how-it-works {
    background: var(--white); padding: 48px 24px;
    border-bottom: 1px solid var(--gray-100);
}
.how-grid {
    display: flex; gap: 32px; max-width: 900px; margin: 0 auto;
    justify-content: center;
}
.how-step {
    flex: 1; max-width: 260px; text-align: center;
}
.how-step-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--primary-light); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin: 0 auto 16px;
}
.how-step-num {
    font-size: 12px; font-weight: 700; color: var(--primary);
    letter-spacing: 2px; margin-bottom: 8px;
}
.how-step-title {
    font-size: 16px; font-weight: 700; color: var(--dark);
    margin-bottom: 6px;
}
.how-step-desc {
    font-size: 13px; color: var(--gray-500); line-height: 1.5;
}

/* ========== Section Common ========== */
.section { padding: 48px 24px; }
.section-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px; max-width: 1200px; margin-left: auto; margin-right: auto;
    margin-bottom: 24px;
}
.section-title {
    font-size: 22px; font-weight: 700; color: var(--dark);
}
.section-see-all {
    font-size: 14px; font-weight: 600; color: var(--primary);
    display: flex; align-items: center; gap: 4px;
    transition: gap 0.2s;
}
.section-see-all:hover { gap: 8px; }
.section-container { max-width: 1200px; margin: 0 auto; }

/* ========== Category Tabs ========== */
.cat-tabs-section { background: var(--white); padding: 0 24px; border-bottom: 1px solid var(--gray-100); }
.cat-tabs {
    display: flex; gap: 4px; max-width: 1200px; margin: 0 auto;
    overflow-x: auto; padding: 12px 0;
    scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
    padding: 10px 20px; border-radius: 8px;
    background: var(--gray-50); color: var(--gray-700);
    font-size: 14px; font-weight: 600; cursor: pointer;
    transition: all 0.2s; white-space: nowrap;
    display: flex; align-items: center; gap: 8px;
}
.cat-tab:hover { background: var(--primary-light); color: var(--primary); }
.cat-tab.active { background: var(--primary); color: var(--white); }
.cat-tab-icon { font-size: 16px; }

/* ========== Carousel ========== */
.carousel-section { background: var(--gray-50); }
.carousel-wrapper { position: relative; }
.carousel-track {
    display: flex; gap: 16px;
    transition: transform 0.4s ease;
    padding: 4px 0;
}
.carousel-card {
    flex: 0 0 calc(25% - 12px); min-width: 270px;
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.2s; position: relative; overflow: hidden;
}
.carousel-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); }
.carousel-card-top {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 16px 0;
}
.carousel-card-logo {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--gray-50); display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0;
}
.carousel-card-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.carousel-card-brand { font-size: 15px; font-weight: 700; color: var(--dark); }
.carousel-card-verified {
    display: inline-flex; align-items: center; gap: 3px;
    font-size: 11px; color: var(--success); font-weight: 600;
    margin-top: 2px;
}
.carousel-card-verified svg { width: 12px; height: 12px; }
.carousel-card-discount-badge {
    position: absolute; top: 12px; right: 12px;
    padding: 4px 10px; border-radius: 6px;
    background: var(--primary); color: var(--white);
    font-size: 12px; font-weight: 800;
}
.carousel-card-body { padding: 12px 16px 16px; }
.carousel-card-offer-title {
    font-size: 14px; font-weight: 600; color: var(--dark);
    margin-bottom: 4px; line-height: 1.4;
}
.carousel-card-desc {
    font-size: 12px; color: var(--gray-500); line-height: 1.4;
    margin-bottom: 12px;
}
/* Promo code block */
.promo-code-block {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 12px; border-radius: 8px;
    background: var(--gray-50); border: 1px dashed var(--gray-300);
    margin-bottom: 12px; cursor: pointer; transition: all 0.2s;
}
.promo-code-block:hover { border-color: var(--primary); background: var(--primary-light); }
.promo-code-text {
    font-size: 14px; font-weight: 700; color: var(--primary);
    letter-spacing: 1px;
}
.promo-code-copy {
    font-size: 11px; font-weight: 600; color: var(--gray-500);
    display: flex; align-items: center; gap: 4px;
}
.promo-code-copy svg { width: 14px; height: 14px; }
.carousel-card-footer {
    display: flex; align-items: center; justify-content: space-between;
}
.carousel-card-expiry {
    font-size: 11px; color: var(--gray-500); font-weight: 500;
    display: flex; align-items: center; gap: 4px;
}
.carousel-card-success {
    font-size: 11px; color: var(--success); font-weight: 600;
    display: flex; align-items: center; gap: 3px;
}
.carousel-card-cta {
    padding: 8px 18px; border-radius: 8px;
    background: var(--dark); color: var(--white);
    font-size: 12px; font-weight: 700;
    transition: all 0.2s; display: inline-flex; align-items: center; gap: 4px;
}
.carousel-card-cta:hover { background: var(--primary); }
.carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--white); border: 1px solid var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s; z-index: 10;
    font-size: 18px; color: var(--dark);
}
.carousel-arrow:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.carousel-arrow-left { left: -20px; }
.carousel-arrow-right { right: -20px; }

/* ========== Trending Deals ========== */
.trending-section { background: var(--white); }
.trending-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.trending-card {
    display: flex; gap: 16px; padding: 16px;
    border-radius: var(--radius-lg); border: 1px solid var(--gray-100);
    background: var(--white); transition: all 0.2s;
}
.trending-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); }
.trending-logo {
    width: 72px; height: 72px; border-radius: 12px;
    background: var(--gray-50); display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0;
}
.trending-logo img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.trending-info { flex: 1; min-width: 0; }
.trending-top { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.trending-brand { font-size: 16px; font-weight: 700; color: var(--dark); }
.trending-badge {
    padding: 3px 8px; border-radius: 4px;
    font-size: 11px; font-weight: 700;
}
.trending-badge-hot { background: var(--accent); color: var(--white); }
.trending-badge-new { background: var(--success); color: var(--white); }
.trending-badge-vip { background: var(--primary); color: var(--white); }
.trending-badge-code { background: #5c6bc0; color: var(--white); }
.trending-offer-title {
    font-size: 14px; font-weight: 600; color: var(--dark);
    margin-bottom: 4px; line-height: 1.3;
}
.trending-desc {
    font-size: 13px; color: var(--gray-500); line-height: 1.4;
    margin-bottom: 10px;
}
.trending-meta {
    display: flex; align-items: center; justify-content: space-between;
}
.trending-verified {
    font-size: 11px; color: var(--success); font-weight: 600;
    display: flex; align-items: center; gap: 3px;
}
.trending-verified svg { width: 12px; height: 12px; }
.trending-expiry {
    font-size: 11px; color: var(--gray-500); font-weight: 500;
}
.trending-cta {
    padding: 10px 22px; border-radius: 8px;
    background: var(--primary); color: var(--white);
    font-size: 13px; font-weight: 700;
    transition: all 0.2s; display: inline-flex; align-items: center; gap: 4px;
}
.trending-cta:hover { background: var(--primary-dark); }
/* Promo code in trending card */
.trending-promo {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 10px;
}
.trending-promo-block {
    padding: 6px 10px; border-radius: 6px;
    background: var(--gray-50); border: 1px dashed var(--gray-300);
    font-size: 13px; font-weight: 700; color: var(--primary);
    letter-spacing: 1px; cursor: pointer; transition: all 0.2s;
}
.trending-promo-block:hover { border-color: var(--primary); background: var(--primary-light); }
.trending-promo-label {
    font-size: 11px; color: var(--gray-500); font-weight: 500;
}

/* ========== Category Cards ========== */
.cat-cards-section { background: var(--gray-50); }
.cat-cards-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.cat-card {
    padding: 20px 16px; border-radius: var(--radius-lg);
    background: var(--white); border: 1px solid var(--gray-100);
    text-align: center; cursor: pointer; transition: all 0.2s;
}
.cat-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); transform: translateY(-2px); }
.cat-card-icon { font-size: 36px; margin-bottom: 10px; }
.cat-card-name { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.cat-card-count { font-size: 12px; color: var(--primary); font-weight: 600; }

/* ========== Brand Wall ========== */
.brands-section { background: var(--white); }
.brands-scroll {
    display: flex; gap: 12px; overflow-x: auto;
    padding: 4px 0; scrollbar-width: none;
}
.brands-scroll::-webkit-scrollbar { display: none; }
.brand-tile {
    flex: 0 0 auto; width: 140px; padding: 16px;
    border-radius: var(--radius); background: var(--gray-50);
    border: 1px solid var(--gray-100);
    text-align: center; cursor: pointer; transition: all 0.2s;
}
.brand-tile:hover { border-color: var(--primary-light); background: var(--primary-light); }
.brand-tile-logo {
    width: 56px; height: 56px; margin: 0 auto 8px;
    border-radius: 10px; background: var(--white);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.brand-tile-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.brand-tile-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.brand-tile-offers { font-size: 11px; color: var(--primary); font-weight: 600; }

/* ========== FAQ ========== */
.faq-section { background: var(--gray-50); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-radius: var(--radius); background: var(--white);
    border: 1px solid var(--gray-100); margin-bottom: 8px;
    overflow: hidden; transition: all 0.2s;
}
.faq-item:hover { border-color: var(--gray-300); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; cursor: pointer; font-size: 15px;
    font-weight: 600; color: var(--dark);
}
.faq-question:hover { color: var(--primary); }
.faq-toggle { font-size: 18px; color: var(--gray-500); transition: transform 0.3s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    padding: 0 20px 16px; font-size: 14px;
    color: var(--gray-500); line-height: 1.6;
    display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ========== Newsletter ========== */
.newsletter {
    background: var(--dark); padding: 48px 24px;
    text-align: center;
}
.newsletter-title {
    font-size: 28px; font-weight: 800; color: var(--white);
    margin-bottom: 8px;
}
.newsletter-sub {
    font-size: 14px; color: rgba(255,255,255,0.5);
    margin-bottom: 24px; max-width: 400px; margin-left: auto; margin-right: auto;
}
.newsletter-form { display: flex; gap: 8px; max-width: 440px; margin: 0 auto; }
.newsletter-input {
    flex: 1; padding: 12px 16px; border-radius: 8px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); font-size: 14px; outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--primary); }
.newsletter-btn {
    padding: 12px 24px; border-radius: 8px;
    background: var(--primary); color: var(--white);
    font-size: 14px; font-weight: 700;
    border: none; cursor: pointer; transition: all 0.2s;
}
.newsletter-btn:hover { background: var(--primary-dark); }

/* ========== Footer ========== */
.footer { background: var(--dark); padding: 40px 24px 20px; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px; max-width: 1200px; margin: 0 auto;
}
.footer-brand { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.5; }
.footer-heading { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); letter-spacing: 1px; margin-bottom: 12px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1200px; margin: 24px auto 0;
    padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-disclosure {
    font-size: 11px; color: rgba(255,255,255,0.3);
    max-width: 600px; line-height: 1.4;
}

/* ========== Toast Notification ========== */
.toast {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px);
    padding: 12px 24px; border-radius: 10px;
    background: var(--dark); color: var(--white);
    font-size: 14px; font-weight: 600; z-index: 9999;
    opacity: 0; transition: all 0.3s;
    display: flex; align-items: center; gap: 8px;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .carousel-card { flex: 0 0 calc(33.33% - 11px); }
    .cat-cards-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
    .hero-title { font-size: 28px; }
    .hero-search { flex-direction: column; }
    .hero-search-btn { margin-left: 0; margin-top: 8px; }
    .carousel-card { flex: 0 0 calc(50% - 8px); min-width: 260px; }
    .trending-grid { grid-template-columns: 1fr; }
    .cat-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid { flex-direction: column; align-items: center; }
    .newsletter-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 18px; }
}
@media (max-width: 480px) {
    .carousel-card { flex: 0 0 100%; min-width: 100%; }
    .cat-cards-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 24px; }
    .trending-card { flex-direction: column; }
    .trending-logo { width: 100%; height: 60px; }
}

/* ========== Brand Logo Text System ========== */
.bl {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%; text-align: center;
    line-height: 1; user-select: none;
    cursor: pointer; transition: opacity 0.2s ease, transform 0.2s ease;
}
.bl:hover { opacity: 0.65; transform: scale(1.06); }

/* Brand name link (clickable brand name in cards) */
.brand-name-link { color: inherit; text-decoration: none; }
.brand-name-link:hover { color: var(--primary); }

/* Visit Store link */
.visit-store-link {
    font-size: 11px; font-weight: 600; color: var(--primary);
    text-decoration: none; margin-left: 6px;
    white-space: nowrap; opacity: 0.85; transition: opacity 0.2s;
}
.visit-store-link:hover { opacity: 1; text-decoration: underline; }

/* Brand tile hover enhancement */
.brand-tile { cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.brand-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Footer external link indicator */
.footer-links a[target="_blank"] { color: var(--gray-500); transition: color 0.2s; }
.footer-links a[target="_blank"]:hover { color: var(--primary); }
/* Brand-specific styles */
.bl-zara     { font-family: 'Times New Roman', serif; font-size: 13px; font-weight: 700; color: #1d1d1f; letter-spacing: 3px; }
.bl-hm       { font-size: 17px; font-weight: 900; color: #E50010; letter-spacing: -1px; }
.bl-asos     { font-size: 15px; font-weight: 900; color: #111; letter-spacing: 2px; }
.bl-mango    { font-family: 'Times New Roman', serif; font-size: 14px; font-weight: 700; color: #1d1d1f; letter-spacing: 2px; text-transform: uppercase; }
.bl-nike     { font-size: 24px; font-weight: 900; color: #111; font-style: italic; }
.bl-shein    { font-size: 14px; font-weight: 900; color: #111; letter-spacing: 1px; }
.bl-levis    { font-size: 15px; font-weight: 900; color: #C8102E; font-style: italic; }
.bl-fp       { font-family: 'Times New Roman', serif; font-size: 17px; font-weight: 700; color: #6B4226; }
.bl-gucci    { font-family: 'Times New Roman', serif; font-size: 14px; font-weight: 700; color: #1d1d1f; letter-spacing: 2px; }
.bl-adidas   { font-size: 14px; font-weight: 900; color: #111; letter-spacing: 1px; }
.bl-versace  { font-family: 'Times New Roman', serif; font-size: 12px; font-weight: 700; color: #C4A35A; letter-spacing: 1px; }
.bl-ck       { font-size: 20px; font-weight: 900; color: #111; letter-spacing: -1px; }
.bl-rl       { font-family: 'Times New Roman', serif; font-size: 20px; font-weight: 700; color: #0F2D52; }
.bl-coach    { font-size: 14px; font-weight: 800; color: #1d1d1f; letter-spacing: 1px; }

/* Trending card logo (72px) — slightly larger */
.trending-logo .bl { font-size: inherit; }
.trending-logo .bl-zara    { font-size: 16px; }
.trending-logo .bl-hm      { font-size: 22px; }
.trending-logo .bl-asos    { font-size: 20px; }
.trending-logo .bl-mango   { font-size: 18px; }
.trending-logo .bl-nike    { font-size: 32px; }
.trending-logo .bl-shein   { font-size: 18px; }
.trending-logo .bl-levis   { font-size: 20px; }
.trending-logo .bl-fp      { font-size: 24px; }
.trending-logo .bl-gucci   { font-size: 18px; }
.trending-logo .bl-adidas   { font-size: 18px; }
.trending-logo .bl-versace { font-size: 15px; }
.trending-logo .bl-ck       { font-size: 26px; }
.trending-logo .bl-rl       { font-size: 26px; }
.trending-logo .bl-coach    { font-size: 18px; }

/* Brand tile logo (56px) */
.brand-tile-logo .bl { font-size: inherit; }
.brand-tile-logo .bl-zara    { font-size: 12px; }
.brand-tile-logo .bl-hm      { font-size: 16px; }
.brand-tile-logo .bl-asos    { font-size: 14px; }
.brand-tile-logo .bl-mango   { font-size: 12px; }
.brand-tile-logo .bl-nike    { font-size: 22px; }
.brand-tile-logo .bl-shein   { font-size: 13px; }
.brand-tile-logo .bl-levis   { font-size: 14px; }
.brand-tile-logo .bl-fp      { font-size: 18px; }
.brand-tile-logo .bl-gucci   { font-size: 13px; }
.brand-tile-logo .bl-adidas   { font-size: 14px; }
.brand-tile-logo .bl-versace { font-size: 11px; }
.brand-tile-logo .bl-ck       { font-size: 18px; }
.brand-tile-logo .bl-rl       { font-size: 18px; }
.brand-tile-logo .bl-coach    { font-size: 13px; }

/* ========== Scroll Animations ========== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.4s ease, transform 0.4s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
