/* ==========================================================
   HAYALSTORE THEME
========================================================== */

:root {
    --primary: #111827;
    --secondary: #6b7280;
    --light: #ffffff;
    --border: #e5e5e5;
    --success: #16a34a;
    --danger: #dc2626;
    --warning: #f59e0b;
    --radius: 18px;
    --shadow: 0 8px 30px rgba(0,0,0,.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins',sans-serif;
    background: #faf9f7;
    color: #222;
    min-height: 100vh;
}

/* =======================================
    LINKS
=======================================*/

a {
    text-decoration: none;
    color: inherit;
}

/* =======================================
    HEADER
=======================================*/

.hayal-header {
    background: #faf9f7;
    border-bottom: 1px solid var(--border);
    box-shadow: none;
}

.hayal-header .navbar,
.hayal-header .navbar-collapse,
.hayal-header .navbar-nav {
    background-color: #faf9f7;
    overflow: visible;
}

.hayal-header .navbar {
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 10px;
}

.hayal-header-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.hayal-header-top {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
}

.hayal-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.hayal-gender-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hayal-gender-link {
    position: relative;
    font-size: 12px;
    letter-spacing: .16em;
    font-weight: 700;
    color: #111827;
    padding: 10px 0;
    text-transform: uppercase;
}

    .hayal-gender-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 4px;
        width: 100%;
        height: 1px;
        background: transparent;
        transition: background .2s ease;
    }

    .hayal-gender-link:hover::after,
    .hayal-gender-link:focus-visible::after {
        background: #111827;
    }

    .hayal-gender-link.is-active::after,
    .hayal-gender-link[aria-current="page"]::after {
        background: #111827;
    }

.hayal-header-mobile-top {
    display: none;
    gap: 18px;
    padding: 4px 0 10px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
}

.hayal-logo {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

    .hayal-logo span {
        color: #111827;
    }

.nav-link {
    font-weight: 500;
    color: #111827 !important;
    padding: 10px 0;
    position: relative;
}

    .nav-link:hover {
        color: #111827 !important;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 5px;
        height: 1px;
        background: transparent;
        transition: background .2s ease;
    }

    .nav-link:hover::after,
    .nav-link:focus-visible::after {
        background: #111827;
    }

.hayal-category-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 28px;
    padding-left: 0;
    margin-left: 0;
}

    .hayal-category-nav .nav-item {
        display: flex;
        align-items: center;
    }

    .hayal-category-nav .nav-link {
        padding: 10px 0;
        white-space: nowrap;
    }

.hayal-mega-root {
    position: relative;
    overflow: visible;
}

.hayal-mega-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 118px;
    width: 100vw;
    max-width: 100vw;
    min-height: 395px;
    display: flex;
    align-items: stretch;
    background: #faf9f7;
    border: 1px solid var(--border);
    border-top: 1px solid #e8e7e4;
    box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
    z-index: 1050;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .14s ease, transform .14s ease, visibility .14s ease;
}

.hayal-mega-root:hover .hayal-mega-menu,
.hayal-mega-root:focus-within .hayal-mega-menu,
.hayal-mega-root.is-open .hayal-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.hayal-mega-menu__left {
    width: min(100%, 420px);
    flex: 0 0 420px;
    padding: 18px 0 18px clamp(60px, 5vw, 92px);
    display: flex;
    flex-direction: column;
    background: #faf9f7;
}

.hayal-mega-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 22px;
    color: #111111;
    font-size: .98rem;
    font-weight: 500;
    line-height: 1.25;
}

    .hayal-mega-item i {
        color: #c7c7c7;
        font-size: .82rem;
    }

    .hayal-mega-item:hover,
    .hayal-mega-item:focus-visible,
    .hayal-mega-item.is-active {
        background: #f1f0ed;
        color: #111111;
    }

.hayal-mega-item--sale {
    color: #c81e1e;
}

    .hayal-mega-item--sale:hover,
    .hayal-mega-item--sale:focus-visible,
    .hayal-mega-item--sale.is-active {
        color: #b91c1c;
    }

.hayal-mega-menu__divider {
    width: 1px;
    background: #e5e5e5;
    margin: 18px 0;
}

.hayal-mega-menu__right {
    flex: 1;
    min-width: 0;
    padding: 18px 26px 18px 24px;
    position: relative;
    background: #faf9f7;
}

.hayal-mega-panel {
    display: none;
    flex-direction: column;
    gap: 10px;
    min-height: 100%;
}

.hayal-mega-panel.is-active {
    display: flex;
}

.hayal-mega-panel__title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 2px;
}

.hayal-mega-panel__link {
    display: block;
    color: #111111;
    font-size: .95rem;
    line-height: 1.35;
    padding: 4px 0;
}

    .hayal-mega-panel__link:hover,
    .hayal-mega-panel__link:focus-visible {
        color: #111111;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

/* =======================================
    SEARCH
=======================================*/

.hayal-search {
    flex: 1;
    position: relative;
    max-width: 560px;
    min-width: 280px;
}

    .hayal-search i {
        position: absolute;
        top: 15px;
        left: 18px;
        color: #999;
    }

.hayal-search input {
        padding-left: 45px;
        border-radius: 999px;
        border: 1px solid var(--border);
        background: #fff;
        height: 48px;
    }

        .hayal-search input:focus {
            box-shadow: none;
            background: white;
            border: 1px solid #111827;
        }

/* =======================================
    BUTTONS
=======================================*/

.btn {
    border-radius: 12px;
    transition: .25s;
}

.btn-dark {
    background: #111827;
}

    .btn-dark:hover {
        transform: translateY(-2px);
    }

.hayal-pill {
    border-radius: 999px;
    padding-left: 20px;
    padding-right: 20px;
    white-space: nowrap;
}

.hayal-icon-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: white;
}

.hayal-cart-badge {
    position: absolute;
    right: -3px;
    top: -3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* =======================================
    MAIN
=======================================*/

.hayal-main {
    min-height: 70vh;
    padding-top: 25px;
    background: transparent;
}

/* =======================================
    CARD
=======================================*/

.card {
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.card-header {
    background: white;
}

/* =======================================
    PRODUCT
=======================================*/

.product-card {
    border-radius: 20px;
    overflow: hidden;
    transition: .35s;
    background: white;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
    }

    .product-card img {
        transition: .4s;
    }

    .product-card:hover img {
        transform: scale(1.05);
    }

.product-image {
    position: relative;
}

.ai-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: #111;
    color: white;
    border-radius: 40px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
}

.discount-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    background: #dc2626;
    color: white;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
}

.favorite-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: white;
    box-shadow: 0 8px 18px rgba(0,0,0,.15);
}

.product-card--home {
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.product-card__body {
    padding-bottom: 1rem;
}

.product-card__brand {
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    color: #64748b;
}

.product-card__title {
    font-size: 1rem;
    line-height: 1.35;
    min-height: 2.7rem;
}

.product-card__seller {
    color: #334155;
}

.product-card__status {
    min-height: 28px;
}

.product-card__status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .01em;
    background: #f8fafc;
    color: #0f172a;
}

.product-card__status-pill--success {
    background: rgba(22, 163, 74, .10);
    color: #166534;
}

.product-card__status-pill--warning {
    background: rgba(245, 158, 11, .14);
    color: #92400e;
}

.product-card__status-pill--danger {
    background: rgba(220, 38, 38, .10);
    color: #b91c1c;
}

.product-card__price {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #0f172a;
}

.product-card__discount-inline {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: 999px;
    background: #dc2626;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
}

.product-card__colors .badge {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .73rem;
    font-weight: 600;
}

.product-card__cta {
    border-radius: 14px;
    padding-top: .8rem;
    padding-bottom: .8rem;
}

.home-trend-section {
    background: #faf9f7;
}

.home-trend-heading {
    padding-bottom: .5rem;
}

.home-trend-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #0f172a;
}

.home-trend-title {
    font-size: clamp(1.45rem, 2vw, 2rem);
    letter-spacing: -.03em;
}

.home-trend-subtitle {
    max-width: 44ch;
}

.home-trend-link {
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.home-trend-link:hover {
        color: #2563eb;
    }

.home-new-products-section {
    background: #faf9f7;
}

.home-new-products-heading {
    padding: 4px 0 2px;
}

.home-new-products-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #2563eb;
}

.home-new-products-title {
    font-size: clamp(1.45rem, 2vw, 2rem);
    letter-spacing: -.03em;
}

.home-new-products-subtitle {
    max-width: 48ch;
}

.home-new-products-link {
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

    .home-new-products-link:hover {
        color: #2563eb;
    }

.home-new-products-grid {
    align-items: stretch;
}

.home-featured-stores-section {
    background: #faf9f7;
}

.home-featured-stores-heading {
    padding-top: 2px;
}

.home-featured-stores-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #2563eb;
}

.home-featured-stores-title {
    font-size: clamp(1.45rem, 2vw, 2rem);
    letter-spacing: -.03em;
}

.home-featured-stores-subtitle {
    max-width: 50ch;
}

.home-featured-stores-link {
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

    .home-featured-stores-link:hover {
        color: #2563eb;
    }

.home-store-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .home-store-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 36px rgba(15, 23, 42, .08);
        border-color: rgba(37, 99, 235, .16);
    }

.home-store-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-store-card__logo {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border-radius: 18px;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

    .home-store-card__logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.home-store-card__meta {
    min-width: 0;
}

.home-store-card__title {
    margin: 0 0 4px;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.02em;
    color: #0f172a;
}

.home-store-card__count {
    font-size: .84rem;
    color: #475569;
    font-weight: 600;
}

.home-store-card__description {
    margin: 0;
    color: #475569;
    line-height: 1.65;
    min-height: 3.2em;
}

.home-store-card__footer {
    margin-top: auto;
}

.home-store-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .7rem 1rem;
    border-radius: 14px;
    background: #111827;
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
}

.home-brands-section {
    background: #faf9f7;
}

.home-brands-heading {
    padding-top: 2px;
}

.home-brands-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #2563eb;
}

.home-brands-title {
    font-size: clamp(1.45rem, 2vw, 2rem);
    letter-spacing: -.03em;
}

.home-brands-subtitle {
    max-width: 50ch;
}

.home-brands-link {
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

    .home-brands-link:hover {
        color: #2563eb;
    }

.home-brand-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 22px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .home-brand-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 36px rgba(15, 23, 42, .08);
        border-color: rgba(37, 99, 235, .16);
    }

.home-brand-card__visual {
    height: 96px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(15, 23, 42, .06);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
}

    .home-brand-card__visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.home-brand-card__initial {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -.03em;
}

.home-brand-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.home-brand-card__name {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -.02em;
    color: #0f172a;
}

.home-brand-card__description {
    color: #475569;
    line-height: 1.6;
    min-height: 3.2em;
}

.home-brand-card__cta {
    margin-top: 2px;
    font-size: .88rem;
    font-weight: 700;
    color: #2563eb;
}

.home-trust-section {
    background: #faf9f7;
}

.home-trust-shell {
    padding: 4px 0 0;
}

.home-trust-heading {
    padding-top: 2px;
}

.home-trust-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #2563eb;
}

.home-trust-title {
    font-size: clamp(1.45rem, 2vw, 2rem);
    letter-spacing: -.03em;
}

.home-trust-subtitle {
    max-width: 56ch;
}

.home-trust-card {
    height: 100%;
    padding: 22px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .home-trust-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 30px rgba(15, 23, 42, .08);
        border-color: rgba(37, 99, 235, .16);
    }

.home-trust-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 16px;
}

.home-trust-card__title {
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #0f172a;
}

.home-trust-card__text {
    margin: 0;
    color: #475569;
    line-height: 1.65;
}

@media (max-width: 767.98px) {
    .home-trend-heading {
        align-items: flex-start !important;
        gap: 12px;
        flex-direction: column;
    }

    .product-card__title {
        min-height: auto;
    }

    .product-card__price {
        font-size: 1.05rem;
    }

    .home-new-products-heading {
        align-items: flex-start !important;
        gap: 12px;
        flex-direction: column;
    }

    .home-featured-stores-heading {
        align-items: flex-start !important;
        gap: 12px;
        flex-direction: column;
    }

    .home-brands-heading {
        align-items: flex-start !important;
        gap: 12px;
        flex-direction: column;
    }

    .home-trust-heading {
        align-items: flex-start !important;
        gap: 12px;
        flex-direction: column;
    }
}

/* =======================================
    TABLE
=======================================*/

.table {
    vertical-align: middle;
}

    .table thead {
        background: #f8fafc;
    }

    .table th {
        font-weight: 600;
    }

/* =======================================
    BADGES
=======================================*/

.badge {
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 12px;
}

/* =======================================
    FOOTER
=======================================*/

.hayal-footer {
    background: white;
    margin-top: 80px;
    padding: 70px 0 20px;
    border-top: 1px solid var(--border);
}

    .hayal-footer h6 {
        margin-bottom: 18px;
    }

    .hayal-footer a {
        display: block;
        margin-bottom: 10px;
        color: #666;
    }

        .hayal-footer a:hover {
            color: #2563eb;
        }

.hayal-social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
}

    .hayal-social:hover {
        background: #2563eb;
        color: white;
    }

.hayal-ai-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 18px;
}

.home-hero {
    background: #faf9f7;
}

.home-hero-shell {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    padding: 28px;
}

.home-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 18px;
}

.home-hero-title {
    font-size: clamp(2.2rem, 4vw, 4.1rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.03em;
    color: #0f172a;
    max-width: 12ch;
    margin-bottom: 18px;
}

.home-hero-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    max-width: 54ch;
    margin-bottom: 28px;
}

.home-hero-visual {
    position: relative;
    min-height: 420px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.home-hero-visual-card {
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
    padding: 22px;
}

.home-hero-visual-card-main {
    background:
        linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(15, 23, 42, 0.9));
    color: #fff;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    grid-column: 1;
    grid-row: 1 / span 2;
}

.home-hero-visual-eyebrow {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    opacity: .75;
    margin-bottom: 10px;
}

.home-hero-visual-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
}

.home-hero-visual-text {
    color: rgba(255, 255, 255, .8);
    line-height: 1.6;
    max-width: 28ch;
}

.home-hero-visual-card-secondary,
.home-hero-visual-card-tertiary {
    width: 220px;
    align-self: end;
    justify-self: end;
}

.home-hero-visual-card-secondary {
    grid-column: 2;
    grid-row: 1;
    width: min(100%, 240px);
}

.home-hero-visual-card-tertiary {
    grid-column: 2;
    grid-row: 2;
    width: min(100%, 240px);
}

.home-category-section {
    background: #faf9f7;
}

.home-section-heading {
    gap: 18px;
}

.home-section-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #0f172a;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.home-section-title {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    line-height: 1.15;
    letter-spacing: -.02em;
    font-weight: 800;
    color: #0f172a;
}

.home-section-subtitle {
    color: #64748b;
    max-width: 42ch;
}

.home-section-link {
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.home-section-link:hover {
    color: #2563eb;
}

.home-category-card {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    background: #fff;
    padding: 16px 18px;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    min-height: 92px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.home-category-card:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 23, 42, 0.16);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
}

.home-category-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex: 0 0 auto;
}

.home-category-content {
    min-width: 0;
}

.home-category-name {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 4px;
}

.home-category-meta {
    font-size: .82rem;
    color: #64748b;
}

.home-hero-visual-stat {
    font-weight: 800;
    font-size: 1.45rem;
    color: #111827;
    line-height: 1;
    margin-bottom: 6px;
}

.home-hero-visual-label {
    color: #64748b;
    font-size: .95rem;
}

.hayal-ai-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111827;
    color: white;
    font-size: 22px;
}

.hayal-footer-bottom {
    margin-top: 45px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* =======================================
    RESPONSIVE
=======================================*/

@media(max-width:992px) {

    .hayal-header-top {
        flex-wrap: wrap;
    }

    .hayal-header-actions {
        order: 4;
        width: 100%;
        justify-content: flex-start;
        margin-left: 0;
    }

    .hayal-search {
        order: 3;
        max-width: 100%;
        margin: 0;
        width: 100%;
    }

    .hayal-header-mobile-top {
        display: flex;
        order: 1;
        width: 100%;
        flex-wrap: wrap;
    }

    .hayal-gender-nav {
        display: none !important;
    }

    .hayal-footer-bottom {
        gap: 10px;
        text-align: center;
        justify-content: center;
    }

    .hayal-category-nav {
        gap: 8px 18px;
        padding-bottom: 6px;
    }

    .hayal-mega-menu {
        display: none !important;
    }

    .hayal-mega-root.is-open .hayal-mega-menu {
        display: none !important;
    }
}

@media(max-width:768px) {

    .hayal-logo {
        font-size: 28px;
    }

    .hayal-header-top {
        gap: 14px;
    }

    .hayal-search input {
        height: 46px;
    }

    .hayal-category-nav {
        gap: 6px 14px;
        margin-top: 0;
    }

        .hayal-category-nav .nav-item {
            width: auto;
        }

        .hayal-category-nav .nav-link {
            display: inline-flex;
            width: auto;
            padding: 10px 0;
            white-space: nowrap;
        }

    .card {
        border-radius: 16px;
    }

    .home-hero-shell {
        padding: 20px;
        border-radius: 24px;
    }

    .home-hero-visual {
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .home-hero-visual-card-secondary,
    .home-hero-visual-card-tertiary {
        width: 100%;
        justify-self: stretch;
    }

    .home-hero-visual-card-secondary {
        grid-column: 1;
        grid-row: auto;
    }

    .home-hero-visual-card-tertiary {
        grid-column: 1;
        grid-row: auto;
    }

    .home-section-heading {
        align-items: flex-start !important;
        flex-direction: column;
    }

    .home-category-card {
        padding: 14px 14px;
        border-radius: 18px;
        min-height: 84px;
    }

    .home-category-icon {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        font-size: 1.35rem;
    }
}
.seller-hero {
    background: radial-gradient(circle at top right, rgba(37,99,235,.14), transparent 35%), linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}

.seller-hero-card {
    background: white;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, .12);
}

.seller-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

    .seller-stat-grid > div {
        background: #f8fafc;
        border-radius: 20px;
        padding: 24px;
    }

    .seller-stat-grid h3 {
        font-weight: 800;
        margin-bottom: 4px;
    }

    .seller-stat-grid p {
        margin: 0;
        color: #6b7280;
    }

.seller-benefit-box {
    background: #111827;
    color: white;
    border-radius: 22px;
    padding: 24px;
}

    .seller-benefit-box li {
        margin-bottom: 10px;
    }
/* ==========================================================
   CUSTOMER ACCOUNT PANEL
========================================================== */

.account-body {
    background: #f5f6fa;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.account-shell {
    min-height: 100vh;
    display: flex;
}

.account-sidebar {
    width: 285px;
    background: #111827;
    color: white;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0 auto 0 0;
}

.account-logo {
    font-size: 30px;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
}

    .account-logo span {
        color: #60a5fa;
    }

.account-user-box {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}

    .account-user-box small {
        display: block;
        color: #9ca3af;
    }

.account-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: white;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.account-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .account-menu a {
        color: #d1d5db;
        padding: 13px 14px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 500;
    }

        .account-menu a:hover {
            background: rgba(255,255,255,.08);
            color: white;
        }

.account-sidebar-footer {
    margin-top: auto;
}

.account-main {
    margin-left: 285px;
    width: calc(100% - 285px);
    min-height: 100vh;
}

.account-topbar {
    height: 76px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account-content {
    padding: 36px;
}

.account-panel-card {
    border: none;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(15,23,42,.06);
}

.account-stat-card {
    background: white;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 12px 35px rgba(15,23,42,.06);
}

    .account-stat-card span {
        color: #6b7280;
        font-size: 14px;
    }

    .account-stat-card h3 {
        font-weight: 800;
        margin: 8px 0 0;
    }

@media(max-width: 992px) {
    .account-sidebar {
        position: static;
        width: 100%;
    }

    .account-shell {
        display: block;
    }

    .account-main {
        margin-left: 0;
        width: 100%;
    }
}
/* TRENDYOL STYLE CUSTOMER PANEL */

.account-user-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px 18px;
    font-weight: 600;
}

.account-menu-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.account-menu-title {
    padding: 15px 18px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.account-menu-card a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    color: #374151;
    font-size: 14px;
    border-bottom: 1px solid #f3f4f6;
}

    .account-menu-card a:hover {
        background: #fff7ed;
        color: #f97316;
    }

    .account-menu-card a:last-child {
        border-bottom: none;
    }

.account-content-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 24px;
}

.account-page-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
}
/* ORDER PAGE */

.order-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #ececec;
    overflow: hidden;
    transition: .25s;
}

    .order-card:hover {
        box-shadow: 0 20px 45px rgba(0,0,0,.08);
    }

.order-header {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr auto;
    gap: 25px;
    padding: 22px 28px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

    .order-header small {
        display: block;
        color: #999;
    }

    .order-header strong {
        display: block;
        margin-top: 6px;
    }

.order-body {
    padding: 24px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.order-image {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    overflow: hidden;
    background: #fafafa;
}

    .order-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media(max-width:768px) {

    .order-header {
        grid-template-columns: 1fr;
    }

    .order-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* CUSTOMER ORDER DETAIL */

.order-detail-status {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .order-detail-status small {
        color: #777;
    }

    .order-detail-status h4 {
        margin: 4px 0 0;
        font-weight: 700;
    }

.order-timeline {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 26px;
    display: flex;
    align-items: center;
}

.timeline-step {
    text-align: center;
    min-width: 100px;
    color: #9ca3af;
}

    .timeline-step span {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #e5e7eb;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .timeline-step strong {
        display: block;
        font-size: 13px;
    }

    .timeline-step.active {
        color: #111827;
    }

        .timeline-step.active span {
            background: #111827;
            color: #fff;
        }

.timeline-line {
    height: 2px;
    background: #e5e7eb;
    flex: 1;
    margin: 0 8px;
}

.order-detail-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #f1f1f1;
}

    .order-detail-item:last-child {
        border-bottom: none;
    }

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1;
}

    .summary-row span {
        color: #6b7280;
    }

    .summary-row.total {
        border-bottom: none;
        font-size: 18px;
    }

@media(max-width:768px) {
    .order-timeline {
        overflow-x: auto;
    }

    .order-detail-item {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* ACCOUNT DASHBOARD */

.account-summary-box {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 22px;
}

    .account-summary-box span {
        display: block;
        color: #777;
        font-size: 14px;
    }

    .account-summary-box strong {
        display: block;
        margin-top: 8px;
        font-size: 30px;
        font-weight: 800;
    }

.account-action-link {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #111827;
    font-weight: 600;
}

    .account-action-link:hover {
        border-color: #111827;
        color: #111827;
    }

    .account-action-link.active {
        background: #111827;
        color: #fff;
    }

.account-ai-banner {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.address-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 22px;
    height: 100%;
}
/* SELLER PANEL */

.seller-body {
    margin: 0;
    background: #f5f6fa;
    font-family: 'Poppins', sans-serif;
}

.seller-shell {
    min-height: 100vh;
    display: flex;
}

.seller-sidebar {
    width: 285px;
    background: #0f172a;
    color: white;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0 auto 0 0;
}

.seller-logo {
    color: white;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.1;
}

    .seller-logo span {
        color: #38bdf8;
    }

    .seller-logo small {
        display: block;
        font-size: 12px;
        color: #94a3b8;
        font-weight: 500;
        margin-top: 4px;
    }

.seller-store-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

    .seller-store-card small {
        display: block;
        color: #94a3b8;
    }

.seller-store-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: white;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.seller-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .seller-menu a {
        color: #cbd5e1;
        padding: 13px 14px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 500;
    }

        .seller-menu a:hover {
            background: rgba(255,255,255,.08);
            color: white;
        }

.seller-sidebar-footer {
    margin-top: auto;
}

.seller-main {
    margin-left: 285px;
    width: calc(100% - 285px);
    min-height: 100vh;
}

.seller-topbar {
    height: 76px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .seller-topbar small {
        display: block;
        color: #6b7280;
        font-size: 13px;
    }

.seller-content {
    padding: 36px;
}

.seller-card {
    background: white;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 24px;
}

.seller-stat-card {
    background: white;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 22px;
}

    .seller-stat-card span {
        color: #6b7280;
        font-size: 14px;
    }

    .seller-stat-card strong {
        display: block;
        font-size: 30px;
        margin-top: 8px;
    }

@media(max-width: 992px) {
    .seller-sidebar {
        position: static;
        width: 100%;
    }

    .seller-shell {
        display: block;
    }

    .seller-main {
        margin-left: 0;
        width: 100%;
    }
}
/* SELLER ORDERS */

.seller-order-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.seller-order-card {
    display: grid;
    grid-template-columns: 2.4fr .7fr .9fr .9fr 1fr auto;
    gap: 18px;
    align-items: center;
    border: 1px solid #edf0f4;
    border-radius: 18px;
    padding: 18px;
    background: #fff;
    transition: .2s;
}

    .seller-order-card:hover {
        box-shadow: 0 16px 35px rgba(15,23,42,.08);
        transform: translateY(-2px);
    }

.seller-order-product {
    display: flex;
    align-items: center;
    gap: 14px;
}

.seller-order-image {
    width: 66px;
    height: 66px;
    border-radius: 14px;
    background: #f8fafc;
    overflow: hidden;
    border: 1px solid #edf0f4;
}

    .seller-order-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media(max-width: 992px) {
    .seller-order-card {
        grid-template-columns: 1fr;
    }
}
.seller-order-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.seller-order-card {
    display: grid;
    grid-template-columns: 2.4fr .7fr .9fr .9fr 1fr auto;
    gap: 18px;
    align-items: center;
    border: 1px solid #edf0f4;
    border-radius: 18px;
    padding: 18px;
    background: #fff;
    transition: .2s;
}

    .seller-order-card:hover {
        box-shadow: 0 16px 35px rgba(15,23,42,.08);
        transform: translateY(-2px);
    }

@media(max-width: 992px) {
    .seller-order-card {
        grid-template-columns: 1fr;
    }
}
.seller-order-card-new {
    display: grid !important;
    grid-template-columns: 3fr .7fr 1fr 1fr 1fr auto;
    gap: 20px;
    align-items: center;
    border: 1px solid #edf0f4;
    border-radius: 18px;
    padding: 20px;
    background: #fff;
    transition: .2s;
}

    .seller-order-card-new:hover {
        box-shadow: 0 16px 35px rgba(15,23,42,.08);
        transform: translateY(-2px);
    }

.seller-order-info strong,
.seller-order-info span,
.seller-order-info small,
.seller-order-meta small,
.seller-order-meta strong {
    display: block;
}

.seller-order-info span,
.seller-order-info small,
.seller-order-meta small {
    color: #6b7280;
}

@media(max-width: 992px) {
    .seller-order-card-new {
        grid-template-columns: 1fr;
    }
}
/* SELLER PRODUCT CARDS V2 */

.seller-product-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.seller-product-card-v2 {
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 22px;
    padding: 18px;
    display: grid;
    grid-template-columns: 92px 2.5fr 1fr 1fr 1fr auto;
    gap: 18px;
    align-items: center;
    transition: .25s;
}

    .seller-product-card-v2:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(15,23,42,.08);
    }

.seller-product-cover {
    width: 92px;
    height: 110px;
    border-radius: 18px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #edf0f4;
}

    .seller-product-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.seller-product-info h5 {
    line-height: 1.3;
}

.seller-product-mini small,
.seller-product-mini strong {
    display: block;
}

.seller-product-mini small {
    color: #6b7280;
    margin-bottom: 4px;
}

.seller-product-mini strong {
    font-size: 18px;
}

.seller-product-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

@media(max-width: 1200px) {
    .seller-product-card-v2 {
        grid-template-columns: 92px 1fr 1fr;
    }
}

@media(max-width: 768px) {
    .seller-product-card-v2 {
        grid-template-columns: 1fr;
    }

    .seller-product-cover {
        width: 100%;
        height: 240px;
    }

    .seller-product-actions {
        justify-content: flex-start;
    }
}
/* SELLER PRODUCT EDIT */

.seller-product-tabs {
    gap: 10px;
}

    .seller-product-tabs .nav-link {
        border-radius: 14px;
        color: #111827 !important;
        font-weight: 600;
    }

        .seller-product-tabs .nav-link.active {
            background: #111827;
            color: #fff !important;
        }

.seller-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
}

.seller-image-card {
    border: 1px solid #edf0f4;
    border-radius: 18px;
    padding: 14px;
    background: #fff;
}

    .seller-image-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 14px;
        background: #f8fafc;
    }

.seller-variant-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.seller-variant-card {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 18px;
    align-items: center;
    border: 1px solid #edf0f4;
    border-radius: 18px;
    padding: 18px;
    background: #fff;
}

    .seller-variant-card small,
    .seller-variant-card strong {
        display: block;
    }

    .seller-variant-card small {
        color: #6b7280;
    }

@media(max-width: 768px) {
    .seller-variant-card {
        grid-template-columns: 1fr;
    }
}
/* SELLER VARIANT CREATE */

.variant-option-grid,
.variant-size-grid {
    display: grid;
    gap: 14px;
}

.variant-option-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.variant-size-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
}

.variant-option-card,
.variant-size-card {
    border: 1px solid #edf0f4;
    border-radius: 16px;
    padding: 16px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .2s;
}

.variant-size-card {
    justify-content: center;
}

    .variant-option-card:hover,
    .variant-size-card:hover {
        border-color: #111827;
        transform: translateY(-2px);
    }

    .variant-option-card input,
    .variant-size-card input {
        width: 18px;
        height: 18px;
    }

.variant-color-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    display: inline-block;
}
