/* Fashion discovery front-end styles (original design) – NO SHOP ICON */
body { background: #030305; color: #f0f0f0; font-family: 'Inter', sans-serif; margin: 0; }
.fashion-hero { text-align: center; padding: 80px 20px 40px; }
.hero-title { font-family: 'Instrument Serif', serif; font-size: 4rem; background: linear-gradient(135deg, #fff, #aaa); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 1rem; }
.hero-sub { max-width: 600px; margin: 0 auto; color: rgba(255,255,255,0.5); }
.search-section { max-width: 700px; margin: 0 auto 40px; }
.search-bar-glass { display: flex; gap: 12px; background: rgba(255,255,255,0.05); backdrop-filter: blur(12px); border-radius: 60px; padding: 8px 16px; align-items: center; border: 1px solid rgba(255,255,255,0.1); }
.search-bar-glass input { background: transparent; border: none; flex: 1; color: white; outline: none; font-size: 1rem; }
.white-search-btn { background: white; border: none; border-radius: 40px; padding: 8px 20px; display: flex; align-items: center; gap: 8px; cursor: pointer; color: black; }
.cat-pill { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 40px; padding: 8px 20px; color: rgba(255,255,255,0.7); cursor: pointer; transition: 0.2s; margin: 5px; display: inline-block; }
.cat-pill.active { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); color: white; }
.trending-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 20px; }
.product-card { background: rgba(255,255,255,0.03); border-radius: 24px; padding: 16px; cursor: pointer; transition: 0.2s; }
@media (max-width: 768px) { .trending-grid { grid-template-columns: repeat(2,1fr); } .hero-title { font-size: 2.5rem; } }
.suggestions-panel { background: #0a0a10; border-radius: 20px; margin-top: 8px; overflow: hidden; display: none; }
.suggestions-panel ul { list-style: none; margin: 0; padding: 0; }
.suggestions-panel li { padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); cursor: pointer; }
.suggestions-panel li:hover { background: rgba(255,255,255,0.05); }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; text-align: center; margin-top: 4rem; }
.stat-num { font-size: 2rem; font-family: 'Instrument Serif', serif; color: rgba(255,255,255,0.8); }
.stat-label { font-size: 0.7rem; letter-spacing: 2px; color: rgba(255,255,255,0.25); margin-top: 0.5rem; }
@media (max-width: 640px) { .hero-title { font-size: 2rem; } .stats-grid { gap: 1rem; } .stat-num { font-size: 1.5rem; } }