
/* ── HERO ── */
.hero {
    position: relative;
    min-height: 88vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=1600&q=80');
    background-size: cover;
    background-position: center top;
    opacity: .45;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(17, 24, 39, .95) 0%, rgba(17, 24, 39, .6) 55%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 189, 116, .15);
    border: 1px solid rgba(15, 189, 116, .4);
    color: var(--primary);
    border-radius: var(--radius-pill);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeDown .6s ease both;
}

.hero-title {
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 24px;
    animation: fadeUp .7s ease .1s both;
}

.hero-title em {
    color: var(--primary);
    font-style: italic;
}

.hero-sub {
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 36px;
    animation: fadeUp .7s ease .2s both;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .7s ease .3s both;
}

.btn-primary-cta {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-cta:hover {
    background: #0da867;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 189, 116, .4);
    color: var(--white);
}

.btn-outline-cta {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .4);
    border-radius: var(--radius-pill);
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-cta:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .1);
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 52px;
    animation: fadeUp .7s ease .4s both;
}

.stat-item {
    color: var(--white);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.hero-card {
    position: absolute;
    right: 6%;
    bottom: 10%;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius);
    padding: 18px 22px;
    color: var(--white);
    min-width: 230px;
    animation: fadeLeft .7s ease .5s both;
}

.hero-card .tag {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin: 6px 0 4px;
}

.hero-card p {
    font-size: 12px;
    color: #d1d5db;
}

.hero-card .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-top: 8px;
}

.hero-card .price span {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    margin-left: 8px;
}

/* ── TRUST STRIP ── */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.trust-text strong {
    font-size: 14px;
    display: block;
    color: var(--dark);
    font-weight: 600;
}

.trust-text span {
    font-size: 12px;
    color: var(--gray-600);
}

/* ── SECTIONS ── */
.section {
    padding: 72px 0;
}

.section-alt {
    background: var(--white);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 10px;
}

.section-sub {
    color: var(--gray-600);
    font-size: 15px;
    font-weight: 400;
    max-width: 460px;
}

/* ── CATEGORIES ── */
.cat-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
    aspect-ratio: 3/4;
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.cat-card:hover img {
    transform: scale(1.07);
}

.cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, .9) 0%, rgba(17, 24, 39, .3) 50%, transparent 100%);
}

.cat-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
}

.cat-card-content h3 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cat-card-content p {
    color: #d1d5db;
    font-size: 13px;
}

.cat-card-content .cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    text-decoration: none;
    transition: gap .2s;
}

.cat-card:hover .cat-btn {
    gap: 10px;
}

.cat-featured {
    aspect-ratio: 3/5;
}

.cat-featured .cat-card-content h3 {
    font-size: 28px;
}

/* ── PRODUCT CARDS ── */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--gray-100);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    border-radius: var(--radius-pill);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    z-index: 2;
}

.badge-new {
    background: var(--primary);
    color: var(--white);
}

.badge-hot {
    background: var(--accent);
    color: var(--white);
}

.badge-sale {
    background: #ef4444;
    color: var(--white);
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(12px);
    transition: all .25s;
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 15px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: none;
    transition: all .2s;
}

.action-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.product-info {
    padding: 16px;
}

.product-vendor {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.product-vendor a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed var(--primary);
    padding-bottom: 1px;
    transition: color .2s;
}

.product-vendor a:hover {
    color: var(--primary-dark);
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.stars {
    color: var(--accent);
    font-size: 12px;
}

.rating-count {
    font-size: 11px;
    color: var(--gray-400);
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.product-price-old {
    font-size: 13px;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 400;
}

.product-price-row {
    flex-wrap: wrap;
    gap: 8px;
}

.btn-visit-store {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border: none;
    border-radius: var(--radius-pill);
    padding: 6px 13px;
    font-size: 11.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-visit-store:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

/* ── VENDORS ── */
.vendor-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all .3s;
    cursor: pointer;
}

.vendor-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.vendor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px;
    border: 3px solid var(--gray-200);
    transition: border-color .3s;
}

.vendor-card:hover .vendor-avatar {
    border-color: var(--primary);
}

.vendor-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.vendor-cat {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.vendor-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 12px 0;
    border-top: 1px solid var(--gray-200);
    margin-top: 10px;
}

.vendor-meta-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.vendor-meta-item span {
    font-size: 11px;
    color: var(--gray-400);
}

.vendor-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 10px;
}

/* ── COLLECTIONS ── */
.collection-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all .3s;
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.collection-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .5s;
}

.collection-card:hover img {
    transform: scale(1.06);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, .85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.collection-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.collection-info p {
    font-size: 13px;
    color: #d1d5db;
}

.collection-info .coll-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 8px;
}

/* ── PROMO BANNERS ── */
.promo-card {
    border-radius: var(--radius);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .2;
}

.promo-1 {
    background: linear-gradient(135deg, #0fbd74, #064e3b);
}

.promo-1::before {
    background-image: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?w=800&q=80');
}

.promo-2 {
    background: linear-gradient(135deg, #f59e0b, #92400e);
}

.promo-2::before {
    background-image: url('https://images.unsplash.com/photo-1548036328-c9fa89d128fa?w=800&q=80');
}

.promo-3 {
    background: linear-gradient(135deg, #111827, #374151);
}

.promo-3::before {
    background-image: url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?w=800&q=80');
}

.promo-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 8px;
}

.promo-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.promo-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.btn-promo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, .5);
    color: var(--white);
    border-radius: var(--radius-pill);
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.btn-promo:hover {
    background: rgba(255, 255, 255, .35);
    color: var(--white);
}

/* ── TESTIMONIALS ── */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all .3s;
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.testi-quote {
    color: var(--primary);
    font-size: 32px;
    line-height: 1;
    margin-bottom: 14px;
    font-family: Georgia, serif;
}

.testi-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
}

.testi-user strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
    font-weight: 600;
}

.testi-user span {
    font-size: 12px;
    color: var(--gray-400);
}

.testi-stars {
    color: var(--accent);
    font-size: 13px;
    margin-bottom: 4px;
}

/* ── NEWSLETTER ── */
.newsletter {
    background: linear-gradient(135deg, var(--dark) 0%, #1f2937 100%);
    border-radius: var(--radius);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 189, 116, .15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.newsletter h2 {
    font-size: 36px;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 10px;
}

.newsletter p {
    color: #9ca3af;
    font-size: 15px;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    border: 1.5px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    border-radius: var(--radius-pill);
    padding: 13px 22px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    min-width: 220px;
    transition: border-color .2s;
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form input::placeholder {
    color: #6b7280;
}

.btn-subscribe {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    white-space: nowrap;
}

.btn-subscribe:hover {
    background: #0da867;
    transform: translateY(-1px);
}

.newsletter-perks {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.perk {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 13px;
}

.perk i {
    color: var(--primary);
}

/* ── VENDOR CTA ── */
.vendor-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--radius);
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
}

.vendor-cta::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.vendor-cta h2 {
    font-size: 36px;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 12px;
}

.vendor-cta p {
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.vendor-perks {
    list-style: none;
    margin-bottom: 32px;
}

.vendor-perks li {
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vendor-perks li i {
    color: rgba(255, 255, 255, .7);
}

.btn-start-selling {
    background: var(--white);
    color: var(--primary-dark);
    border: none;
    border-radius: var(--radius-pill);
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-start-selling:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    color: var(--primary-dark);
}



/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-card {
        display: none;
    }

    .newsletter {
        padding: 36px 24px;
    }

    .vendor-cta {
        padding: 36px 24px;
    }

    .promo-card {
        padding: 28px 24px;
    }

    .promo-card h3 {
        font-size: 22px;
    }

    .nav-links {
        display: none;
    }

    .search-wrap select {
        display: none;
    }

    .topbar .d-md-flex {
        display: none !important;
    }
}
