@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@600;700;800&display=swap');

:root {
    --krealy-purple: #4B2BBF;
    --krealy-coral: #FF6F61;
    --krealy-green: #10B39E;
    --krealy-yellow: #FFC857;
    --krealy-cream: #F5F2EE;

    --krealy-white: #FFFFFF;
    --krealy-dark: #21133F;
    --krealy-text: #3E3A4F;
    --krealy-muted: #7A738D;

    --krealy-soft-purple: rgba(75, 43, 191, 0.10);
    --krealy-soft-green: rgba(16, 179, 158, 0.12);
    --krealy-soft-coral: rgba(255, 111, 97, 0.12);
    --krealy-soft-yellow: rgba(255, 200, 87, 0.18);

    --krealy-border: rgba(35, 22, 63, 0.10);
    --krealy-shadow: 0 18px 50px rgba(35, 22, 63, 0.09);
    --krealy-radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Inter', Arial, sans-serif;
    background: var(--krealy-cream);
    color: var(--krealy-text);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* HEADER */

.marketplace-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(245, 242, 238, 0.92);
    border-bottom: 1px solid var(--krealy-border);
    backdrop-filter: blur(18px);
}

.marketplace-header-container {
    width: min(1240px, calc(100% - 48px));
    min-height: 76px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto auto minmax(280px, 1fr) auto;
    align-items: center;
    gap: 14px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    display: block;
    width: 135px;
    height: auto;
    object-fit: contain;
}

.category-button {
    min-height: 44px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--krealy-border);
    border-radius: 14px;
    background: var(--krealy-white);
    color: var(--krealy-dark);
    font-size: 13px;
    font-weight: 800;
}

.category-button span {
    color: var(--krealy-purple);
    font-size: 15px;
}

.search-form {
    height: 50px;
    display: grid;
    grid-template-columns: 1fr 46px;
    align-items: center;
    background: var(--krealy-white);
    border: 1px solid rgba(75, 43, 191, 0.14);
    border-radius: 17px;
    box-shadow: 0 10px 26px rgba(35, 22, 63, 0.055);
    overflow: hidden;
}

.search-form input {
    width: 100%;
    height: 100%;
    padding: 0 18px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--krealy-dark);
    font-size: 14px;
    font-weight: 600;
}

.search-form input::placeholder {
    color: var(--krealy-muted);
    font-weight: 500;
}

.search-form button {
    width: 38px;
    height: 38px;
    margin-right: 7px;
    border: 0;
    border-radius: 13px;
    background: var(--krealy-purple);
    color: var(--krealy-white);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.login-link {
    font-size: 14px;
    font-weight: 800;
    color: var(--krealy-dark);
}

.icon-link {
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--krealy-border);
    border-radius: 14px;
    background: var(--krealy-white);
    color: var(--krealy-dark);
    font-size: 18px;
    font-weight: 900;
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--krealy-coral);
    color: var(--krealy-white);
    font-size: 11px;
    font-weight: 900;
}

.seller-button,
.primary-button,
.secondary-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.seller-button,
.primary-button {
    padding: 0 18px;
    background: var(--krealy-purple);
    color: var(--krealy-white);
    box-shadow: 0 14px 30px rgba(75, 43, 191, 0.24);
}

.secondary-button {
    padding: 0 18px;
    background: var(--krealy-white);
    border: 1px solid rgba(75, 43, 191, 0.18);
    color: var(--krealy-purple);
}

.seller-button:hover,
.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
}

/* MAIN */

.marketplace-main {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

/* HERO */

.marketplace-hero {
    position: relative;
    margin-top: 24px;
    padding: 32px 36px;
    min-height: 315px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 24px;
    align-items: center;
    border: 1px solid var(--krealy-border);
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 18%, rgba(255, 200, 87, 0.34), transparent 24%),
        radial-gradient(circle at 68% 78%, rgba(16, 179, 158, 0.16), transparent 28%),
        linear-gradient(135deg, #FFFDFC, #EFE8FF);
    box-shadow: var(--krealy-shadow);
}

.marketplace-hero::before {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    right: -56px;
    top: -58px;
    border-radius: 50%;
    background: rgba(75, 43, 191, 0.12);
}

.marketplace-hero::after {
    content: '';
    position: absolute;
    width: 115px;
    height: 115px;
    left: -40px;
    bottom: -44px;
    border-radius: 50%;
    background: rgba(255, 111, 97, 0.14);
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 0 13px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--krealy-soft-purple);
    color: var(--krealy-purple);
    font-size: 12px;
    font-weight: 900;
}

.hero-content h1 {
    max-width: 520px;
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--krealy-dark);
    font-size: clamp(34px, 3.6vw, 52px);
    line-height: 1.02;
    letter-spacing: -2px;
}

.hero-content h1 strong {
    color: var(--krealy-purple);
    font-weight: 800;
}

.hero-content h1 span {
    color: var(--krealy-green);
}

.hero-content p {
    max-width: 520px;
    margin: 16px 0 0;
    color: var(--krealy-muted);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-showcase {
    position: relative;
    z-index: 2;
    min-height: 245px;
}

.hero-product {
    position: absolute;
    border-radius: 24px;
    background: var(--krealy-white);
    box-shadow: 0 18px 44px rgba(35, 22, 63, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.78);
}

.hero-product-vase {
    width: 145px;
    height: 205px;
    right: 260px;
    top: 14px;
    background:
        radial-gradient(circle at 50% 20%, #D8B07C 0 18px, transparent 19px),
        linear-gradient(180deg, #B98B63, #E4C9A8);
}

.hero-product-vase::before {
    content: '';
    position: absolute;
    width: 68px;
    height: 110px;
    left: 39px;
    top: 68px;
    border-radius: 38px 38px 26px 26px;
    background: #C59668;
    box-shadow: inset 0 -14px 0 rgba(35, 22, 63, 0.08);
}

.hero-product-vase::after {
    content: '';
    position: absolute;
    width: 78px;
    height: 88px;
    left: 33px;
    top: 17px;
    border-radius: 50%;
    border-top: 4px solid rgba(75, 43, 191, 0.38);
}

.hero-product-mug {
    width: 132px;
    height: 132px;
    right: 128px;
    top: 88px;
    background:
        radial-gradient(circle at 40% 40%, #F3E2CD, #C99B6D 72%);
}

.hero-product-mug::before {
    content: '';
    position: absolute;
    width: 68px;
    height: 68px;
    left: 29px;
    top: 38px;
    border-radius: 50% 50% 44% 44%;
    background: #C99B6D;
    box-shadow: inset 0 -11px 0 rgba(35, 22, 63, 0.08);
}

.hero-product-mug::after {
    content: '';
    position: absolute;
    width: 32px;
    height: 24px;
    right: 24px;
    top: 57px;
    border: 7px solid #C99B6D;
    border-left: 0;
    border-radius: 0 26px 26px 0;
}

.hero-product-basket {
    width: 160px;
    height: 105px;
    right: 270px;
    bottom: 8px;
    background:
        repeating-linear-gradient(45deg, rgba(35, 22, 63, 0.08) 0 7px, transparent 7px 14px),
        linear-gradient(135deg, #D8B07C, #F1D9B2);
}

.hero-product-basket::before {
    content: '';
    position: absolute;
    width: 105px;
    height: 54px;
    left: 27px;
    top: -27px;
    border: 11px solid #C59668;
    border-bottom: 0;
    border-radius: 80px 80px 0 0;
}

.hero-trust-card {
    position: absolute;
    right: 0;
    bottom: 24px;
    width: 220px;
    padding: 16px;
    display: grid;
    gap: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--krealy-border);
    box-shadow: 0 16px 44px rgba(35, 22, 63, 0.13);
    backdrop-filter: blur(16px);
}

.hero-trust-card div {
    display: grid;
    gap: 3px;
}

.hero-trust-card strong {
    color: var(--krealy-dark);
    font-size: 12px;
    font-weight: 900;
}

.hero-trust-card span {
    color: var(--krealy-muted);
    font-size: 11px;
    font-weight: 600;
}

/* SECTIONS */

.marketplace-section {
    margin-top: 32px;
}

.section-header {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.section-header h2 {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--krealy-dark);
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -0.7px;
}

.section-header a {
    color: var(--krealy-purple);
    font-size: 13px;
    font-weight: 900;
}

/* CATEGORIES */

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.category-card {
    min-height: 102px;
    padding: 15px;
    display: grid;
    place-items: center;
    gap: 10px;
    text-align: center;
    border-radius: 22px;
    background: var(--krealy-white);
    border: 1px solid var(--krealy-border);
    box-shadow: 0 12px 30px rgba(35, 22, 63, 0.055);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(35, 22, 63, 0.10);
}

.category-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 22px;
}

.category-ceramic {
    background: var(--krealy-soft-green);
}

.category-crochet {
    background: var(--krealy-soft-purple);
}

.category-paper {
    background: var(--krealy-soft-coral);
}

.category-decor {
    background: rgba(16, 179, 158, 0.10);
}

.category-fashion {
    background: rgba(75, 43, 191, 0.09);
}

.category-gifts {
    background: var(--krealy-soft-yellow);
}

.category-card strong {
    color: var(--krealy-dark);
    font-size: 13px;
    font-weight: 900;
}

/* PRODUCTS */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--krealy-white);
    border: 1px solid var(--krealy-border);
    box-shadow: 0 12px 34px rgba(35, 22, 63, 0.065);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(35, 22, 63, 0.12);
}

.favorite-button {
    position: absolute;
    z-index: 3;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.93);
    color: var(--krealy-purple);
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 9px 24px rgba(35, 22, 63, 0.12);
}

.product-image {
    min-height: 158px;
    background-size: cover;
    background-position: center;
}

.product-image-ceramic {
    background:
        radial-gradient(circle at 50% 52%, #C99B6D 0 34px, transparent 35px),
        radial-gradient(circle at 63% 52%, transparent 0 30px, #C99B6D 31px 40px, transparent 41px),
        linear-gradient(135deg, #F5D9B8, #C59668);
}

.product-image-crochet {
    background:
        radial-gradient(circle at 35% 44%, rgba(255,255,255,0.45), transparent 32%),
        repeating-linear-gradient(45deg, rgba(75,43,191,0.14) 0 8px, transparent 8px 16px),
        linear-gradient(135deg, #D8C6FF, #F0E7FF);
}

.product-image-paper {
    background:
        linear-gradient(135deg, rgba(255,111,97,0.22), transparent 40%),
        linear-gradient(45deg, transparent 0 38%, rgba(255,255,255,0.72) 38% 68%, transparent 68%),
        linear-gradient(135deg, #FFE1DE, #F6C5BE);
}

.product-image-vase {
    background:
        radial-gradient(circle at 50% 46%, #C59668 0 38px, transparent 39px),
        linear-gradient(135deg, #CDEFEA, #EAF8F5);
}

.product-content {
    padding: 15px;
}

.product-content span {
    display: block;
    margin-bottom: 6px;
    color: var(--krealy-green);
    font-size: 11px;
    font-weight: 900;
}

.product-content h3 {
    min-height: 42px;
    margin: 0;
    color: var(--krealy-dark);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 900;
}

.product-content p {
    margin: 8px 0 7px;
    color: var(--krealy-muted);
    font-size: 12px;
    font-weight: 700;
}

.product-content strong {
    display: block;
    color: var(--krealy-green);
    font-size: 20px;
    font-weight: 900;
}

.product-content small {
    display: block;
    margin-top: 8px;
    color: var(--krealy-muted);
    font-size: 11px;
    line-height: 1.35;
    font-weight: 600;
}

/* SELLERS */

.seller-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.seller-card {
    padding: 16px;
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    gap: 14px;
    border-radius: 24px;
    background: var(--krealy-white);
    border: 1px solid var(--krealy-border);
    box-shadow: 0 12px 34px rgba(35, 22, 63, 0.065);
}

.seller-avatar {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.seller-avatar-one {
    background:
        radial-gradient(circle at 50% 40%, #C59668 0 21px, transparent 22px),
        linear-gradient(135deg, #F5D9B8, #C59668);
}

.seller-avatar-two {
    background:
        repeating-linear-gradient(45deg, rgba(75,43,191,0.20) 0 7px, transparent 7px 14px),
        linear-gradient(135deg, #E7DBFF, #CDBBFF);
}

.seller-avatar-three {
    background:
        radial-gradient(circle at 50% 50%, #10B39E 0 23px, transparent 24px),
        linear-gradient(135deg, #D8F6F1, #B9EDE5);
}

.seller-card h3 {
    margin: 0;
    color: var(--krealy-dark);
    font-size: 16px;
    font-weight: 900;
}

.seller-card p {
    margin: 5px 0;
    color: var(--krealy-muted);
    font-size: 12px;
    font-weight: 600;
}

.seller-card span {
    color: var(--krealy-purple);
    font-size: 12px;
    font-weight: 900;
}

.seller-card a {
    min-height: 36px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--krealy-soft-purple);
    color: var(--krealy-purple);
    font-size: 12px;
    font-weight: 900;
}

/* BENEFITS */

.marketplace-benefits {
    margin-top: 32px;
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    border-radius: 26px;
    background: var(--krealy-white);
    border: 1px solid var(--krealy-border);
    box-shadow: 0 12px 34px rgba(35, 22, 63, 0.065);
}

.marketplace-benefits div {
    padding: 8px 10px;
    display: grid;
    gap: 4px;
}

.marketplace-benefits strong {
    color: var(--krealy-dark);
    font-size: 13px;
    font-weight: 900;
}

.marketplace-benefits span {
    color: var(--krealy-muted);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
}

/* NEWSLETTER */

.newsletter-section {
    position: relative;
    margin: 32px 0 52px;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 1fr minmax(330px, 0.75fr);
    gap: 24px;
    align-items: center;
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 20%, rgba(255, 200, 87, 0.35), transparent 22%),
        linear-gradient(135deg, var(--krealy-purple), #321B8D);
    color: var(--krealy-white);
}

.newsletter-section h2 {
    max-width: 620px;
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 27px;
    line-height: 1.18;
    letter-spacing: -0.8px;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px;
    padding: 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.newsletter-form input {
    min-height: 46px;
    padding: 0 15px;
    border: 0;
    outline: 0;
    border-radius: 15px;
    background: var(--krealy-white);
    color: var(--krealy-dark);
    font-size: 14px;
    font-weight: 700;
}

.newsletter-form button {
    min-height: 46px;
    padding: 0 17px;
    border: 0;
    border-radius: 15px;
    background: var(--krealy-yellow);
    color: var(--krealy-dark);
    font-size: 14px;
    font-weight: 900;
}

/* MOBILE NAV */

.mobile-bottom-nav {
    display: none;
}

/* TABLET */

@media (max-width: 960px) {
    .marketplace-header-container {
        grid-template-columns: auto 1fr auto;
    }

    .category-button {
        display: none;
    }

    .seller-button {
        display: none;
    }

    .marketplace-hero {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        min-height: 230px;
    }

    .hero-product-vase {
        left: 70px;
        right: auto;
    }

    .hero-product-mug {
        left: 250px;
        right: auto;
    }

    .hero-product-basket {
        left: 390px;
        right: auto;
    }

    .hero-trust-card {
        right: 36px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .seller-grid {
        grid-template-columns: 1fr;
    }

    .marketplace-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-section {
        grid-template-columns: 1fr;
    }
}

/* MOBILE */

@media (max-width: 760px) {
    body {
        padding-bottom: 82px;
    }

    .marketplace-header-container {
        width: min(100% - 24px, 1240px);
        min-height: auto;
        padding: 14px 0;
        grid-template-columns: 1fr auto auto;
        gap: 10px;
    }

    .brand-logo {
        width: 118px;
    }

    .search-form {
        grid-column: 1 / -1;
        grid-row: 2;
        height: 48px;
        border-radius: 16px;
    }

    .login-link {
        display: none;
    }

    .icon-link {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .marketplace-main {
        width: min(100% - 24px, 1240px);
    }

    .marketplace-hero {
        margin-top: 18px;
        padding: 24px;
        min-height: auto;
        border-radius: 28px;
        gap: 20px;
    }

    .hero-tag {
        min-height: 30px;
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 33px;
        letter-spacing: -1.5px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.55;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 22px;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-showcase {
        min-height: 200px;
    }

    .hero-product-vase {
        width: 112px;
        height: 152px;
        left: 4px;
        top: 24px;
        border-radius: 22px;
    }

    .hero-product-vase::before {
        width: 52px;
        height: 78px;
        left: 30px;
        top: 52px;
    }

    .hero-product-vase::after {
        width: 58px;
        height: 64px;
        left: 27px;
        top: 18px;
    }

    .hero-product-mug {
        width: 112px;
        height: 112px;
        left: 118px;
        top: 70px;
        border-radius: 22px;
    }

    .hero-product-mug::before {
        width: 56px;
        height: 56px;
        left: 26px;
        top: 32px;
    }

    .hero-product-mug::after {
        width: 27px;
        height: 19px;
        right: 19px;
        top: 48px;
        border-width: 6px;
    }

    .hero-product-basket {
        display: none;
    }

    .hero-trust-card {
        width: 168px;
        right: 0;
        bottom: 0;
        padding: 13px;
        gap: 10px;
        border-radius: 20px;
    }

    .hero-trust-card strong {
        font-size: 11px;
    }

    .hero-trust-card span {
        font-size: 10px;
    }

    .section-header {
        align-items: flex-end;
    }

    .section-header h2 {
        font-size: 23px;
    }

    .section-header a {
        font-size: 12px;
    }

    .category-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
    }

    .category-grid::-webkit-scrollbar {
        display: none;
    }

    .category-card {
        min-width: 118px;
        min-height: 112px;
        scroll-snap-align: start;
        border-radius: 22px;
    }

    .product-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
    }

    .product-grid::-webkit-scrollbar {
        display: none;
    }

    .product-card {
        min-width: 245px;
        scroll-snap-align: start;
        border-radius: 24px;
    }

    .product-image {
        min-height: 170px;
    }

    .product-content h3 {
        min-height: 42px;
        font-size: 16px;
    }

    .seller-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
    }

    .seller-grid::-webkit-scrollbar {
        display: none;
    }

    .seller-card {
        min-width: 285px;
        grid-template-columns: 58px 1fr;
        scroll-snap-align: start;
    }

    .seller-avatar {
        width: 58px;
        height: 58px;
        border-radius: 19px;
    }

    .seller-card a {
        grid-column: 1 / -1;
        width: 100%;
    }

    .marketplace-benefits {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .newsletter-section {
        grid-template-columns: 1fr;
        padding: 24px;
        border-radius: 28px;
    }

    .newsletter-section h2 {
        font-size: 24px;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 80;
        height: 66px;
        padding: 8px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: center;
        gap: 4px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid var(--krealy-border);
        box-shadow: 0 18px 50px rgba(35, 22, 63, 0.16);
        backdrop-filter: blur(18px);
    }

    .mobile-bottom-nav a {
        height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        color: var(--krealy-muted);
        font-size: 11px;
        font-weight: 900;
    }

    .mobile-bottom-nav a:first-child {
        background: var(--krealy-soft-purple);
        color: var(--krealy-purple);
    }
}

@media (max-width: 420px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-showcase {
        min-height: 190px;
    }

    .hero-trust-card {
        display: none;
    }

    .hero-product-vase {
        left: 18px;
    }

    .hero-product-mug {
        left: auto;
        right: 18px;
    }
}
