/* Fashnal — component styles on top of Bootstrap + tokens.css. */

/* ---- Navbar --------------------------------------------------------- */
.site-nav {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding-top: .85rem;
    padding-bottom: .85rem;
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--fjord);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    flex: none;
}
.navbar-brand {
    font-weight: 800;
    color: var(--ink) !important;
}

/* ---- Footer ----------------------------------------------------------- */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    margin-top: 5rem;
}
.footer-heading {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ink-faint);
    margin-bottom: .9rem;
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: .92rem;
}
.footer-links a:hover { color: var(--fjord-ink); }
.footer-bottom { border-top: 1px solid var(--border); }

/* ---- Hero --------------------------------------------------------------- */
.hero {
    background: linear-gradient(180deg, var(--fjord-soft), var(--paper) 75%);
    border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--fjord-ink);
    background: rgba(255, 255, 255, .65);
    padding: .35rem .8rem;
    border-radius: 999px;
    margin-bottom: 1.1rem;
}
.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 800;
}
.hero-lede {
    color: var(--ink-soft);
    font-size: 1.15rem;
    max-width: 55ch;
}
.hero-search { max-width: 720px; }
.hero-search .form-control {
    height: 3.2rem;
    font-size: 1.05rem;
    border-radius: .7rem 0 0 .7rem;
}
.hero-search .btn {
    border-radius: 0 .7rem .7rem 0;
    padding-inline: 1.6rem;
}

/* ---- Category cards ------------------------------------------------------ */
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    padding: 1.4rem 1rem;
    border-radius: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--ink);
    height: 100%;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.category-card:hover {
    transform: translateY(-3px);
    border-color: var(--fjord);
    box-shadow: 0 12px 24px -14px rgba(15, 76, 95, .3);
    color: var(--ink);
}
.category-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--fjord-soft);
    color: var(--fjord-ink);
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-card .label {
    font-weight: 600;
    font-size: .92rem;
    text-align: center;
}

/* ---- Value props / how it works ------------------------------------------ */
.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--berry-soft);
    color: var(--berry);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-display);
    flex: none;
}

/* ---- Product cards --------------------------------------------------- */
.product-card {
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    background: var(--surface);
    transition: box-shadow .15s ease, transform .15s ease;
}
.product-card:hover {
    box-shadow: 0 14px 28px -16px rgba(23, 34, 42, .22);
    transform: translateY(-2px);
}
.product-card .product-thumb {
    aspect-ratio: 4 / 3;
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-card .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-card .price {
    font-weight: 700;
    color: var(--ink);
}

/* ---- Seller CTA band ---------------------------------------------------- */
.cta-band {
    background: var(--ink);
    color: #fff;
    border-radius: 1.25rem;
}
