/* ================================================
   home.css — Home Page Specific Styles
   Hero · Best Sellers · New Arrivals · All Products · Collections · About
   ================================================ */

/* ── Hero ─────────────────────────────────── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
    padding-top: var(--nav-h);
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1541643600914-78b084683601?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 50%, #050505 100%);
}
.hero__content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 56rem; }
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}
.hero__desc {
    font-size: var(--fs-10);
    color: var(--clr-gray-5);
    letter-spacing: 0.15em;
    font-weight: 300;
    max-width: 32rem;
    line-height: 1.9;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}
.hero__cta { margin-bottom: 4rem; padding: 0.75rem 7rem; border-radius: 15px;}

.hero__search { display: flex; flex-direction: column; align-items: center; gap: 1rem; width: 100%; max-width: 700px; padding-inline: 1rem; }
@media (min-width: 640px) { .hero__search { flex-direction: row; } }
.hero__search-wrap { position: relative; flex: 1; width: 100%; }
.hero__search-input {
    width: 100%;
    background: var(--clr-white);
    color: #000;
    padding: 0.65rem 3rem 0.65rem 2rem;
    border-radius: 15px;
    font-size: var(--fs-12);
    border: none;
    outline: none;
    font-family: var(--font-primary);
    font-weight: 500;
    letter-spacing: 0.05em;
}
.hero__search-input::placeholder { color: #9CA3AF; }
.hero__search-icon { position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%); color: #9CA3AF; }
[dir="rtl"] .hero__search-input { padding-inline: 2rem 3rem; }
[dir="rtl"] .hero__search-icon  { right: auto; left: 1.5rem; }
.hero__sort {
    display: flex; align-items: center; gap: 0.5rem;
    color: var(--clr-gray-5);
    cursor: pointer;
    transition: color var(--t);
    padding-inline: 0.5rem;
    white-space: nowrap;
}
.hero__sort:hover { color: var(--clr-white); }
.hero__sort-label { font-size: var(--fs-10); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; }
.hero__sort svg { width: 16px; height: 16px; }

/* ── Best Sellers Section ─────────────────── */
.section--sellers { background: var(--clr-sellers-bg); }

/* ── Collections Grid (home) ──────────────── */


/* ── About Section (home) ─────────────────── */

