:root {
    --ymw-ink: #17152a;
    --ymw-muted: #6f6b82;
    --ymw-line: #e8e5ef;
    --ymw-surface: #ffffff;
    --ymw-soft: #f7f6fb;
    --ymw-violet: #6d4aff;
    --ymw-violet-dark: #4c2fe0;
    --ymw-navy: #211c57;
    --ymw-gold: #f6b53f;
    --ymw-radius-sm: 12px;
    --ymw-radius-md: 20px;
    --ymw-radius-lg: 32px;
    --ymw-shadow: 0 24px 70px rgba(36, 27, 84, 0.12);
    --ymw-container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ymw-ink);
    background: var(--ymw-surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    line-height: 1.1;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
    font-size: clamp(2.15rem, 4.5vw, 4.4rem);
}

h3 {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.container {
    width: min(calc(100% - 40px), var(--ymw-container));
    margin-inline: auto;
}

.screen-reader-text,
.skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #fff;
    background: var(--ymw-ink);
}

.announcement {
    color: #fff;
    background: var(--ymw-ink);
    font-size: 0.85rem;
}

.announcement__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.announcement a {
    color: #d9d1ff;
    font-weight: 700;
}

.site-header {
    position: sticky;
    z-index: 200;
    top: 0;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--ymw-line);
    box-shadow: 0 12px 40px rgba(29, 24, 68, 0.06);
}

.site-header__inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 38px;
}

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

.brand__mark {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(145deg, #7c5cff, #4f2bd8);
    box-shadow: 0 10px 24px rgba(109, 74, 255, 0.25);
    font-weight: 900;
    font-size: 1.35rem;
}

.brand__text {
    display: grid;
    line-height: 1;
}

.brand__text strong {
    font-size: 0.98rem;
    letter-spacing: -0.02em;
}

.brand__text small {
    margin-top: 5px;
    color: var(--ymw-violet);
    font-size: 0.63rem;
    font-weight: 900;
    letter-spacing: 0.24em;
}

.custom-logo-link img {
    max-height: 58px;
    width: auto;
}

.site-nav {
    justify-self: center;
}

.site-nav__list,
.site-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav a {
    position: relative;
    display: inline-block;
    padding: 8px 0;
    color: #403b55;
    font-size: 0.93rem;
    font-weight: 700;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background: var(--ymw-violet);
    transition: right 180ms ease;
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after,
.site-nav .current_page_item > a::after {
    right: 0;
}

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

.header-action {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid var(--ymw-line);
    border-radius: 999px;
    color: var(--ymw-ink);
    background: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-action:hover {
    transform: translateY(-2px);
    border-color: #c9c1e9;
    box-shadow: 0 9px 20px rgba(38, 29, 87, 0.08);
}

.header-action:first-child {
    width: 42px;
    padding: 0;
    font-size: 1.45rem;
}

.header-action--cart {
    color: #fff;
    border-color: var(--ymw-ink);
    background: var(--ymw-ink);
}

.cart-count {
    min-width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    padding: 0 5px;
    border-radius: 999px;
    color: var(--ymw-ink);
    background: #fff;
    font-size: 0.72rem;
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    border: 0;
    color: var(--ymw-ink);
    background: transparent;
    font-weight: 800;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
    width: 22px;
    height: 2px;
    display: block;
    border-radius: 99px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__icon {
    position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle__icon::before {
    top: -7px;
}

.nav-toggle__icon::after {
    top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 12% 13%, rgba(167, 139, 250, 0.24), transparent 27%),
        radial-gradient(circle at 94% 18%, rgba(251, 191, 36, 0.15), transparent 26%),
        linear-gradient(135deg, #171232 0%, #2a2168 58%, #171232 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
    pointer-events: none;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
}

.hero__glow--one {
    width: 240px;
    height: 240px;
    left: -100px;
    bottom: -100px;
    background: rgba(109, 74, 255, 0.4);
}

.hero__glow--two {
    width: 190px;
    height: 190px;
    right: 8%;
    top: 4%;
    background: rgba(251, 191, 36, 0.2);
}

.hero__grid {
    position: relative;
    z-index: 2;
    min-height: 690px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
    align-items: center;
    gap: 44px;
    padding-top: 72px;
    padding-bottom: 90px;
}

.hero__content {
    max-width: 720px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: #d6cbff;
    font-size: 0.79rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.eyebrow--dark {
    color: var(--ymw-violet);
}

.hero h1 {
    max-width: 820px;
    margin-bottom: 26px;
    font-size: clamp(3.6rem, 6.5vw, 6.4rem);
    letter-spacing: -0.065em;
}

.hero__content > p {
    max-width: 650px;
    margin-bottom: 34px;
    color: #d8d3eb;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    transform: translateY(-2px);
}

.button--primary,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
    color: #fff;
    background: linear-gradient(135deg, #7d5bff, #5f3ee7);
    box-shadow: 0 16px 34px rgba(109, 74, 255, 0.34);
}

.button--primary:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
    background: linear-gradient(135deg, #886aff, #5031d2);
    box-shadow: 0 19px 40px rgba(109, 74, 255, 0.4);
}

.button--secondary {
    color: #fff;
    border-color: rgba(255,255,255,0.23);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.button--secondary:hover {
    background: rgba(255,255,255,0.14);
}

.button--dark {
    color: #fff;
    background: var(--ymw-ink);
    box-shadow: 0 14px 30px rgba(23, 21, 42, 0.18);
}

.button--light {
    color: var(--ymw-navy);
    background: #fff;
    box-shadow: 0 14px 32px rgba(21, 15, 71, 0.2);
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 24px;
    margin-top: 34px;
    color: #c9c2de;
    font-size: 0.84rem;
    font-weight: 700;
}

.hero__visual {
    position: relative;
}

.hero__visual img {
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(11, 8, 43, 0.4));
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 190px;
    padding: 13px 16px;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 16px;
    color: var(--ymw-ink);
    background: rgba(255,255,255,0.91);
    box-shadow: 0 18px 44px rgba(11, 7, 50, 0.23);
    backdrop-filter: blur(14px);
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    font-size: 0.82rem;
}

.floating-card small {
    margin-top: 2px;
    color: var(--ymw-muted);
    font-size: 0.68rem;
}

.floating-card__icon,
.floating-card__avatar {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: var(--ymw-violet);
    font-weight: 900;
}

.floating-card__icon {
    color: #6a3f00;
    background: #fde7a5;
}

.floating-card--top {
    top: 13%;
    right: -4%;
}

.floating-card--bottom {
    left: -2%;
    bottom: 9%;
}

.market-search-section {
    position: relative;
    z-index: 10;
    margin-top: -38px;
}

.market-search {
    min-height: 76px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 10px 12px 10px 22px;
    border: 1px solid rgba(72, 55, 142, 0.12);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(43, 31, 96, 0.14);
}

.market-search__icon {
    color: var(--ymw-violet);
    font-size: 1.8rem;
}

.market-search input {
    width: 100%;
    border: 0;
    outline: none;
    color: var(--ymw-ink);
    background: transparent;
    font-size: 1rem;
}

.market-search input::placeholder {
    color: #9893a8;
}

.market-search button,
.search-submit {
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    border-radius: 15px;
    color: #fff;
    background: var(--ymw-ink);
    font-weight: 900;
    cursor: pointer;
}

.section {
    padding: 112px 0;
}

.section--categories {
    padding-top: 124px;
}

.section--featured {
    background: var(--ymw-soft);
}

.section--content:empty {
    display: none;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 42px;
}

.section-heading h2 {
    max-width: 800px;
    margin-bottom: 0;
}

.section-heading .eyebrow {
    margin-bottom: 16px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ymw-violet-dark);
    font-weight: 900;
    white-space: nowrap;
}

.text-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.category-card {
    min-height: 152px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 26px;
    border: 1px solid rgba(45, 35, 93, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.category-card__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: rgba(255,255,255,0.78);
    font-size: 1.6rem;
    font-weight: 900;
}

.category-card__content {
    display: grid;
    gap: 6px;
}

.category-card__content strong {
    font-size: 1.08rem;
}

.category-card__content small {
    color: rgba(23, 21, 42, 0.66);
    font-size: 0.83rem;
}

.category-card__arrow {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.72);
    font-weight: 900;
}

.category-card--violet { background: #eee9ff; }
.category-card--violet .category-card__icon { color: #6743e6; }
.category-card--orange { background: #fff0de; }
.category-card--orange .category-card__icon { color: #c96b00; }
.category-card--blue { background: #e7f1ff; }
.category-card--blue .category-card__icon { color: #2361b5; }
.category-card--green { background: #e4f7eb; }
.category-card--green .category-card__icon { color: #17834a; }
.category-card--pink { background: #ffe9f2; }
.category-card--pink .category-card__icon { color: #be386f; }
.category-card--gold { background: #fff4c9; }
.category-card--gold .category-card__icon { color: #9c7000; }

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

.product-card,
.woocommerce ul.products li.product {
    min-width: 0;
    margin: 0 !important;
    padding: 0 0 20px;
    border-radius: 22px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 42px rgba(39, 31, 81, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover,
.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 55px rgba(39, 31, 81, 0.14);
}

.product-card__image,
.woocommerce ul.products li.product a img {
    position: relative;
    aspect-ratio: 1 / 1.06;
    display: block;
    margin: 0 !important;
    overflow: hidden;
    background: #ece9f6;
}

.product-card__badge,
.woocommerce span.onsale {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    min-width: 0;
    min-height: 0;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    background: var(--ymw-ink);
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
}

.product-card__shape {
    position: absolute;
    inset: 22% 23%;
    border-radius: 38% 62% 60% 40% / 42% 38% 62% 58%;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.4));
    box-shadow: inset 0 -20px 50px rgba(0,0,0,0.08), 0 22px 45px rgba(31, 24, 70, 0.15);
    transform: rotate(-8deg);
}

.product-1 { background: linear-gradient(145deg, #ece5ff, #cfc1ff); }
.product-1 .product-card__shape { border-radius: 46% 46% 38% 38%; transform: rotate(2deg); }
.product-2 { background: linear-gradient(145deg, #fce7f3, #f4b9d3); }
.product-2 .product-card__shape { inset: 18% 30%; border-radius: 18px; transform: rotate(7deg); }
.product-3 { background: linear-gradient(145deg, #dbeafe, #a4c8f7); }
.product-3 .product-card__shape { inset: 32% 18%; border-radius: 999px; transform: rotate(-3deg); }
.product-4 { background: linear-gradient(145deg, #ffedd5, #f7c88b); }
.product-4 .product-card__shape { inset: 18% 29% 24%; border-radius: 20px 20px 35px 35px; transform: rotate(-4deg); }

.product-card__meta,
.product-card h3,
.product-card__price,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .star-rating,
.woocommerce ul.products li.product .button {
    margin-left: 18px !important;
    margin-right: 18px !important;
}

.product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 17px;
    color: var(--ymw-muted);
    font-size: 0.72rem;
}

.product-card__meta span:last-child {
    color: #e0a11d;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
}

.product-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    margin-top: 9px;
    margin-bottom: 9px;
    color: var(--ymw-ink);
    font-size: 1rem;
    line-height: 1.35;
}

.product-card__price,
.woocommerce ul.products li.product .price {
    display: block;
    color: var(--ymw-violet-dark) !important;
    font-size: 0.95rem !important;
    font-weight: 900 !important;
}

.woocommerce ul.products li.product .button {
    width: calc(100% - 36px);
    margin-top: 14px !important;
    color: #fff;
    background: var(--ymw-ink);
}

.section--value {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.section--value::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: -220px;
    border-radius: 50%;
    background: #f0ecff;
}

.value-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 80px;
    align-items: start;
}

.value-intro {
    position: sticky;
    top: 130px;
}

.value-intro h2 {
    margin-bottom: 24px;
}

.value-intro p {
    max-width: 520px;
    margin-bottom: 30px;
    color: var(--ymw-muted);
    font-size: 1.05rem;
}

.value-list {
    display: grid;
    gap: 15px;
}

.value-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 28px;
    border: 1px solid var(--ymw-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 38px rgba(42, 31, 88, 0.05);
}

.value-card > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--ymw-violet-dark);
    background: #eee9ff;
    font-size: 0.8rem;
    font-weight: 900;
}

.value-card h3 {
    margin-bottom: 9px;
}

.value-card p {
    margin-bottom: 0;
    color: var(--ymw-muted);
}

.seller-banner-section {
    padding-top: 30px;
}

.seller-banner {
    position: relative;
    min-height: 480px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
    align-items: center;
    gap: 30px;
    padding: 70px;
    border-radius: 36px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 78% 28%, rgba(251, 191, 36, 0.27), transparent 26%),
        linear-gradient(135deg, #5b37df, #2e237d 70%, #20174f);
    box-shadow: 0 30px 80px rgba(49, 35, 121, 0.22);
}

.seller-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image: radial-gradient(circle, #fff 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    mask-image: linear-gradient(90deg, transparent, black 55%, black);
}

.seller-banner__copy,
.seller-banner__visual {
    position: relative;
    z-index: 2;
}

.seller-banner__copy {
    max-width: 650px;
}

.seller-banner h2 {
    margin-bottom: 22px;
}

.seller-banner p {
    max-width: 610px;
    margin-bottom: 30px;
    color: #ddd7f7;
    font-size: 1.04rem;
}

.seller-banner__visual {
    min-height: 330px;
    display: grid;
    place-items: center;
}

.storefront-card {
    position: relative;
    width: 260px;
    height: 250px;
    padding-top: 42px;
    border: 11px solid rgba(255,255,255,0.85);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 32px 70px rgba(18, 11, 73, 0.35);
    transform: rotate(4deg);
}

.storefront-card__top {
    position: absolute;
    top: -35px;
    left: 20px;
    right: 20px;
    height: 58px;
    border-radius: 20px 20px 8px 8px;
    background: #f6b53f;
}

.storefront-card__awning {
    position: absolute;
    top: 24px;
    left: -11px;
    right: -11px;
    height: 38px;
    background: repeating-linear-gradient(90deg, #7d5bff 0 32px, #fff 32px 64px);
    clip-path: polygon(0 0, 100% 0, 93% 100%, 86% 72%, 79% 100%, 72% 72%, 65% 100%, 58% 72%, 51% 100%, 44% 72%, 37% 100%, 30% 72%, 23% 100%, 16% 72%, 9% 100%);
}

.storefront-card__body {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    align-items: end;
    gap: 18px;
    padding: 30px 25px 25px;
}

.storefront-card__body i {
    display: block;
    height: 100px;
    border-radius: 15px;
    background: #eee9ff;
}

.storefront-card__body i:last-child {
    height: 140px;
    background: #2e237d;
}

.seller-orbit {
    position: absolute;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--ymw-navy);
    background: #fff;
    box-shadow: 0 16px 40px rgba(16, 10, 67, 0.25);
    font-size: 1.35rem;
    font-weight: 900;
}

.seller-orbit--one { top: 5%; left: 8%; transform: rotate(-10deg); }
.seller-orbit--two { top: 12%; right: 4%; color: #7a4d00; background: #ffe9a6; transform: rotate(9deg); }
.seller-orbit--three { bottom: 3%; left: 16%; color: #fff; background: #7d5bff; transform: rotate(-5deg); }

.page-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(251,191,36,0.16), transparent 25%),
        linear-gradient(135deg, #21194f, #4b35ba);
}

.page-hero--compact .container {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-hero h1 {
    max-width: 950px;
    margin-bottom: 14px;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.page-hero p,
.archive-description {
    max-width: 650px;
    margin-bottom: 0;
    color: #ddd8f4;
    font-size: 1.05rem;
}

.entry-shell {
    max-width: 850px;
}

.entry-content {
    color: #383348;
    font-size: 1.04rem;
}

.entry-content > * + * {
    margin-top: 1.35em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--ymw-ink);
}

.entry-content a {
    color: var(--ymw-violet-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.entry-content img,
.entry-featured {
    border-radius: 24px;
}

.entry-content blockquote {
    margin-inline: 0;
    padding: 26px 28px;
    border-left: 4px solid var(--ymw-violet);
    border-radius: 0 18px 18px 0;
    background: #f4f1ff;
    font-size: 1.1rem;
}

.post-list {
    display: grid;
    gap: 28px;
}

.post-card {
    display: grid;
    grid-template-columns: minmax(230px, 0.42fr) minmax(0, 0.58fr);
    border: 1px solid var(--ymw-line);
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 35px rgba(34, 27, 71, 0.05);
}

.post-card__image {
    min-height: 280px;
    background: var(--ymw-soft);
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card__body {
    padding: 34px;
}

.post-card__meta {
    color: var(--ymw-violet-dark);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.post-card h2 {
    margin: 13px 0 14px;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.post-card__excerpt {
    color: var(--ymw-muted);
}

.navigation.pagination .nav-links {
    display: flex;
    gap: 8px;
}

.navigation.pagination a,
.navigation.pagination span {
    min-width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0 12px;
    border: 1px solid var(--ymw-line);
    border-radius: 12px;
}

.navigation.pagination .current {
    color: #fff;
    border-color: var(--ymw-violet);
    background: var(--ymw-violet);
}

.empty-state,
.not-found__inner {
    text-align: center;
}

.empty-state {
    padding: 70px 20px;
    border: 1px dashed #cac4da;
    border-radius: 24px;
    background: var(--ymw-soft);
}

.not-found {
    min-height: 680px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #f9f8fd, #eeeaff);
}

.not-found__inner {
    max-width: 760px;
    padding: 90px 0;
}

.not-found__code {
    display: block;
    margin-bottom: -20px;
    color: #e3dcff;
    font-size: clamp(7rem, 20vw, 13rem);
    font-weight: 950;
    line-height: 0.8;
    letter-spacing: -0.09em;
}

.not-found .hero__actions {
    justify-content: center;
}

.search-form {
    display: flex;
    gap: 10px;
    max-width: 640px;
    margin: 24px auto 0;
}

.search-form label {
    flex: 1;
}

.search-field {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid var(--ymw-line);
    border-radius: 14px;
    background: #fff;
}

.woocommerce-shell .woocommerce-breadcrumb {
    color: var(--ymw-muted);
    font-size: 0.85rem;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    margin-bottom: 28px;
}

.woocommerce .woocommerce-ordering select {
    min-height: 46px;
    padding: 0 34px 0 13px;
    border: 1px solid var(--ymw-line);
    border-radius: 12px;
    background: #fff;
}

.woocommerce div.product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 60px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
    width: auto;
    float: none;
}

.woocommerce div.product div.images img {
    border-radius: 24px;
}

.woocommerce div.product .product_title {
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--ymw-violet-dark);
    font-size: 1.5rem;
    font-weight: 900;
}

.woocommerce .quantity .qty {
    min-height: 52px;
    border: 1px solid var(--ymw-line);
    border-radius: 12px;
}

.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--ymw-violet);
    border-radius: 14px;
    background: #f4f1ff;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--ymw-violet);
}

.site-footer {
    padding-top: 82px;
    color: #c8c2dc;
    background: #171329;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.75fr 0.85fr 1.1fr;
    gap: 50px;
}

.brand--footer {
    color: #fff;
}

.footer-brand p {
    max-width: 340px;
    margin: 23px 0 0;
    font-size: 0.92rem;
}

.site-footer h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.footer-links ul,
.footer-menu,
.footer-menu ul {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a,
.footer-menu a {
    color: #b8b1ce;
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-menu a:hover {
    color: #fff;
}

.footer-cta {
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
}

.footer-cta p {
    margin-bottom: 18px;
    font-size: 0.88rem;
}

.footer-cta .button {
    min-height: 45px;
    padding: 0 17px;
    font-size: 0.82rem;
}

.footer-widgets {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.site-footer__bottom {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 56px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #8f88a6;
    font-size: 0.78rem;
}

@media (max-width: 1080px) {
    .site-header__inner {
        grid-template-columns: auto auto 1fr;
        gap: 20px;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .site-nav {
        position: fixed;
        top: 122px;
        left: 20px;
        right: 20px;
        max-height: calc(100vh - 145px);
        padding: 22px;
        border: 1px solid var(--ymw-line);
        border-radius: 22px;
        overflow: auto;
        background: #fff;
        box-shadow: 0 26px 70px rgba(24, 18, 62, 0.18);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav__list,
    .site-nav ul {
        display: grid;
        gap: 4px;
    }

    .site-nav a {
        width: 100%;
        padding: 13px 12px;
        border-radius: 10px;
    }

    .site-nav a:hover {
        background: var(--ymw-soft);
    }

    .site-nav a::after {
        display: none;
    }

    .header-actions {
        justify-self: end;
    }

    .hero__grid {
        grid-template-columns: 1fr 0.86fr;
        min-height: 650px;
    }

    .hero h1 {
        font-size: clamp(3.3rem, 7.5vw, 5rem);
    }

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

    .product-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__grid {
        grid-template-columns: 1.3fr 0.7fr 0.7fr;
    }

    .footer-cta {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .announcement__inner {
        justify-content: center;
        text-align: center;
    }

    .announcement__inner span {
        display: none;
    }

    .site-header__inner {
        min-height: 74px;
    }

    .site-nav {
        top: 112px;
    }

    .header-action:first-child,
    .header-action--account {
        display: none;
    }

    .hero__grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 80px;
        padding-bottom: 90px;
    }

    .hero__content {
        text-align: center;
    }

    .hero__content > p,
    .hero__content h1 {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions,
    .hero__trust {
        justify-content: center;
    }

    .hero__visual {
        max-width: 610px;
        margin: 0 auto;
    }

    .market-search-section {
        margin-top: -28px;
    }

    .section {
        padding: 88px 0;
    }

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

    .value-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .value-intro {
        position: static;
    }

    .seller-banner {
        grid-template-columns: 1fr;
        padding: 54px 40px 30px;
        text-align: center;
    }

    .seller-banner__copy {
        margin: 0 auto;
    }

    .seller-banner__copy .button {
        margin-inline: auto;
    }

    .post-card {
        grid-template-columns: 1fr;
    }

    .post-card__image {
        min-height: 240px;
    }

    .woocommerce div.product {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand,
    .footer-cta {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 28px), var(--ymw-container));
    }

    .brand__text strong {
        font-size: 0.83rem;
    }

    .brand__mark {
        width: 39px;
        height: 39px;
        border-radius: 12px;
    }

    .nav-toggle__label {
        display: none;
    }

    .header-action--cart {
        width: 42px;
        padding: 0;
        font-size: 0;
    }

    .header-action--cart::before {
        content: "🛒";
        font-size: 1rem;
    }

    .header-action--cart .cart-count {
        position: absolute;
        top: -5px;
        right: -5px;
        min-width: 19px;
        height: 19px;
        font-size: 0.62rem;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.1rem);
    }

    .hero__content > p {
        font-size: 1rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__trust {
        display: grid;
    }

    .floating-card {
        min-width: 0;
        padding: 10px 12px;
    }

    .floating-card--top {
        right: 0;
    }

    .floating-card--bottom {
        left: 0;
    }

    .floating-card small {
        display: none;
    }

    .market-search {
        min-height: 66px;
        grid-template-columns: auto 1fr;
        border-radius: 18px;
        padding-right: 10px;
    }

    .market-search button {
        grid-column: 1 / -1;
        min-height: 48px;
    }

    .section {
        padding: 72px 0;
    }

    .section--categories {
        padding-top: 98px;
    }

    .category-grid,
    .product-grid,
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 132px;
        padding: 20px;
    }

    .value-card {
        grid-template-columns: 1fr;
    }

    .seller-banner {
        padding: 45px 22px 18px;
        border-radius: 26px;
    }

    .storefront-card {
        width: 220px;
        height: 210px;
    }

    .page-hero--compact .container {
        min-height: 300px;
    }

    .post-card__body {
        padding: 24px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand,
    .footer-cta {
        grid-column: auto;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 24px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
