/* GAZAB — Premium Editorial Hero v6 */

.hero-editorial {
    position: relative;
    min-height: 100svh;
    padding-top: var(--header-total-offset, 138px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #f7f5f2;
    isolation: isolate;
}

/* ─── Ambient background ─── */
.hero-editorial__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-editorial__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 15% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 75%, rgba(10, 10, 10, 0.04) 0%, transparent 50%),
        linear-gradient(165deg, #faf9f7 0%, #f0eeea 45%, #f7f5f2 100%);
}

.hero-editorial__grain {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-editorial__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: heroOrbFloat 12s ease-in-out infinite alternate;
}

.hero-editorial__orb--1 {
    top: 8%;
    left: 5%;
    width: 280px;
    height: 280px;
    background: rgba(201, 169, 98, 0.12);
}

.hero-editorial__orb--2 {
    bottom: 10%;
    right: 20%;
    width: 220px;
    height: 220px;
    background: rgba(10, 10, 10, 0.05);
    animation-delay: -4s;
}

.hero-editorial__grid-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-editorial__grid-line {
    position: absolute;
    background: rgba(0, 0, 0, 0.06);
}

.hero-editorial__grid-line--v {
    top: 0;
    bottom: 0;
    left: 46%;
    width: 1px;
}

.hero-editorial__grid-line--h {
    left: 0;
    right: 0;
    top: 72%;
    height: 1px;
}

.hero-editorial__watermark {
    position: absolute;
    top: 50%;
    left: 38%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(6rem, 16vw, 14rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(0, 0, 0, 0.025);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 0;
}

.hero-editorial__glow {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at 60% 35%, rgba(201, 169, 98, 0.14) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: heroGlowPulse 8s ease-in-out infinite alternate;
}

.hero-editorial__season {
    position: absolute;
    right: clamp(16px, 2vw, 32px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    opacity: 0;
}

.hero-editorial__season span {
    font-family: var(--font-display);
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: var(--gray-400);
    text-transform: uppercase;
}

.hero-editorial__layout {
    position: relative;
    z-index: 1;
    flex: 1;
    display: grid;
    grid-template-columns: minmax(320px, 46%) 1fr;
    align-items: center;
    width: 100%;
    min-height: 0;
}

.hero-editorial__content {
    position: relative;
    z-index: 3;
    padding: clamp(24px, 4vw, 56px) clamp(20px, 4vw, 56px);
    padding-right: clamp(16px, 2vw, 32px);
}

.hero-editorial__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--black);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 18px 10px 14px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(16px);
}

.hero-editorial__pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(201, 169, 98, 0.6);
    animation: heroDotPulse 2s ease-in-out infinite;
}

.hero-editorial__rule {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(201, 169, 98, 0.3));
    margin: 24px 0 28px;
}

.hero-editorial__title {
    margin-bottom: 24px;
    line-height: 1;
}

.hero-editorial__line {
    display: block;
    overflow: visible;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--black);
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
}

.hero-editorial__line-inner {
    display: block;
    transform: translateY(24px);
    opacity: 0;
}

.hero-editorial__line--stroke .hero-editorial__line-inner:not(.hero-editorial__line-inner--gold) {
    color: var(--black);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.5px var(--black);
}

.hero-editorial__line-inner--gold {
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
    -webkit-text-stroke: 0;
    background: linear-gradient(120deg, #a8893f 0%, var(--gold) 40%, #e8d5a3 60%, var(--gold) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: heroGoldShimmer 5s ease-in-out infinite alternate;
}

@supports (-webkit-background-clip: text) {
    .hero-editorial__line-inner--gold {
        -webkit-text-fill-color: transparent;
    }
}

.hero-editorial__desc {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.8;
    color: var(--gray-500);
    max-width: 400px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(16px);
}

.hero-editorial__desc em {
    font-style: italic;
    color: var(--black);
}

.hero-editorial__stats {
    display: flex;
    gap: clamp(20px, 3vw, 40px);
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(16px);
}

.hero-editorial__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-editorial__stat strong {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--black);
    line-height: 1;
}

.hero-editorial__stat span {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.hero-editorial__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(16px);
}

.hero-editorial__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--black);
    color: #fff;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    --mag-x: 0px;
    --mag-y: 0px;
    transform: translate(var(--mag-x), var(--mag-y));
}

.hero-editorial__btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold) 0%, #d4b978 100%);
    transform: translateX(-101%);
    transition: transform 0.5s var(--ease-out);
}

.hero-editorial__btn-text {
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

.hero-editorial__btn svg {
    position: relative;
    z-index: 1;
    width: 14px;
    height: 14px;
    transition: transform 0.4s var(--ease-out), color 0.4s;
}

.hero-editorial__btn:hover {
    transform: translate(var(--mag-x), calc(var(--mag-y) - 3px));
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.hero-editorial__btn:hover .hero-editorial__btn-bg {
    transform: translateX(0);
}

.hero-editorial__btn:hover .hero-editorial__btn-text,
.hero-editorial__btn:hover svg {
    color: var(--black);
}

.hero-editorial__btn:hover svg {
    transform: translateX(4px);
}

.hero-editorial__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s, gap 0.3s;
}

.hero-editorial__link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s var(--ease-out);
}

.hero-editorial__link:hover {
    color: var(--black);
    gap: 12px;
}

.hero-editorial__link:hover svg {
    transform: translate(2px, -2px);
}

.hero-editorial__trust {
    display: flex;
    gap: 16px 28px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(16px);
}

.hero-editorial__trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.hero-editorial__trust span::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

/* ─── Visual column ─── */
.hero-editorial__visual {
    position: relative;
    z-index: 1;
    align-self: stretch;
    min-height: clamp(420px, 52vh, 680px);
    height: auto;
    opacity: 0;
    transform: translateX(24px);
    --hero-tilt-x: 0deg;
    --hero-tilt-y: 0deg;
    --hero-shift-x: 0px;
    --hero-shift-y: 0px;
}

.hero-editorial__index {
    position: absolute;
    top: clamp(12px, 2vw, 24px);
    right: clamp(24px, 4vw, 48px);
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.hero-editorial__frame-shadow {
    position: absolute;
    inset: clamp(36px, 4.5vw, 60px) clamp(0px, 0.5vw, 8px) clamp(12px, 2vw, 28px) clamp(24px, 3vw, 40px);
    background: linear-gradient(145deg, rgba(201, 169, 98, 0.25), rgba(0, 0, 0, 0.08));
    z-index: 0;
    transform: translate(12px, 16px);
    opacity: 0.5;
}

.hero-editorial__frame {
    position: absolute;
    inset: clamp(24px, 3.5vw, 48px) clamp(8px, 1.5vw, 20px) clamp(24px, 3.5vw, 48px) clamp(8px, 1.5vw, 16px);
    overflow: hidden;
    background: var(--gray-200);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.04),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    transform: perspective(1200px) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y));
    transition: transform 0.15s ease-out;
    z-index: 1;
    border-left: 3px solid var(--gold);
}

.hero-editorial__corner {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 4;
    pointer-events: none;
}

.hero-editorial__corner--tl { top: 16px; left: 16px; border-top: 1px solid rgba(255,255,255,0.7); border-left: 1px solid rgba(255,255,255,0.7); }
.hero-editorial__corner--tr { top: 16px; right: 16px; border-top: 1px solid rgba(255,255,255,0.7); border-right: 1px solid rgba(255,255,255,0.7); }
.hero-editorial__corner--bl { bottom: 16px; left: 16px; border-bottom: 1px solid rgba(255,255,255,0.7); border-left: 1px solid rgba(255,255,255,0.7); }
.hero-editorial__corner--br { bottom: 16px; right: 16px; border-bottom: 1px solid rgba(255,255,255,0.7); border-right: 1px solid rgba(255,255,255,0.7); }

.hero-editorial__img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-editorial__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    transform: scale(1.08) translate(var(--hero-shift-x), var(--hero-shift-y));
    transition: transform 0.2s ease-out;
}

body.loaded .hero-editorial__img {
    animation: heroKenBurns 18s ease-in-out infinite alternate;
}

.hero-editorial__frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 40%),
        linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, transparent 30%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

.hero-editorial__chip {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
    font-family: var(--font-display);
    font-size: 0.5rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-editorial__frame-shine {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.08) 45%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.08) 55%,
        transparent 60%
    );
    transform: translateX(-100%);
    animation: heroShine 6s ease-in-out infinite;
}

.hero-editorial__badge {
    position: absolute;
    bottom: clamp(48px, 7vw, 80px);
    left: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 18px 28px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    z-index: 5;
    border-left: 3px solid var(--gold);
    opacity: 0;
    transform: translateY(12px);
}

.hero-editorial__badge span {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.hero-editorial__badge strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    color: var(--black);
}

.hero-editorial__product-card {
    position: absolute;
    top: clamp(32px, 5vw, 56px);
    right: clamp(-8px, 1vw, 12px);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px 12px 12px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: inherit;
    z-index: 6;
    max-width: 260px;
    opacity: 0;
    transform: translateY(-8px) translateX(8px);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.hero-editorial__product-card:hover {
    transform: translateY(-12px) translateX(0);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.16);
}

.hero-editorial__product-thumb {
    width: 56px;
    height: 68px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--gray-100);
}

.hero-editorial__product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-editorial__product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.hero-editorial__product-label {
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.hero-editorial__product-info strong {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-editorial__product-price {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--gray-700);
}

.hero-editorial__product-arrow {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    transition: background 0.3s, border-color 0.3s;
}

.hero-editorial__product-arrow svg {
    width: 12px;
    height: 12px;
}

.hero-editorial__product-card:hover .hero-editorial__product-arrow {
    background: var(--black);
    border-color: var(--black);
    color: #fff;
}

.hero-editorial__scroll {
    position: absolute;
    bottom: 32px;
    left: clamp(20px, 4vw, 56px);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    opacity: 0;
}

.hero-editorial__scroll-text {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.hero-editorial__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--black), transparent);
    animation: heroScrollPulse 2.5s ease-in-out infinite;
}

/* ─── Animations (after loader) ─── */
body.loaded .hero-editorial__pill { animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.1s; }
body.loaded .hero-editorial__rule { animation: heroRuleGrow 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s; }
body.loaded .hero-editorial__line:nth-child(1) .hero-editorial__line-inner { animation: heroReveal 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.35s; }
body.loaded .hero-editorial__line:nth-child(2) .hero-editorial__line-inner { animation: heroReveal 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s; }
body.loaded .hero-editorial__desc { animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.62s; }
body.loaded .hero-editorial__stats { animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.72s; }
body.loaded .hero-editorial__actions { animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.85s; }
body.loaded .hero-editorial__trust { animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.98s; }
body.loaded .hero-editorial__visual { animation: heroVisualIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.15s; }
body.loaded .hero-editorial__badge { animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.9s; }
body.loaded .hero-editorial__product-card { animation: heroProductIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards 1.05s; }
body.loaded .hero-editorial__season { animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 1.2s; }
body.loaded .hero-editorial__scroll { animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 1.15s; }

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroReveal {
    to { transform: translateY(0); opacity: 1; }
}

@keyframes heroRuleGrow {
    to { width: 64px; }
}

@keyframes heroVisualIn {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes heroProductIn {
    to { opacity: 1; transform: translateY(0) translateX(0); }
}

@keyframes heroScrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

@keyframes heroKenBurns {
    0% { transform: scale(1.08) translate(var(--hero-shift-x), var(--hero-shift-y)); }
    100% { transform: scale(1.14) translate(calc(var(--hero-shift-x) - 8px), calc(var(--hero-shift-y) - 12px)); }
}

@keyframes heroGoldShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes heroGlowPulse {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

@keyframes heroShine {
    0%, 70%, 100% { transform: translateX(-100%); }
    85% { transform: translateX(100%); }
}

@keyframes heroDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes heroOrbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, -16px) scale(1.08); }
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
    .hero-editorial__season { display: none; }
    .hero-editorial__grid-line--v { left: 50%; }
}

@media (max-width: 1024px) {
    .hero-editorial__layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-editorial {
        min-height: auto;
        padding-top: var(--header-total-offset, 138px);
        padding-bottom: 48px;
    }

    .hero-editorial__grid-line--v,
    .hero-editorial__grid-line--h { display: none; }

    .hero-editorial__visual {
        order: -1;
        height: clamp(380px, 72vw, 520px);
        min-height: 0;
        transform: none;
    }

    body.loaded .hero-editorial__visual {
        animation: heroFadeUp 0.8s ease forwards 0.15s;
    }

    .hero-editorial__frame {
        inset: 0 clamp(20px, 4vw, 48px);
        transform: none;
    }

    .hero-editorial__frame-shadow,
    .hero-editorial__index {
        display: none;
    }

    .hero-editorial__content {
        text-align: center;
        padding-top: 12px;
    }

    .hero-editorial__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-editorial__stats {
        justify-content: center;
    }

    .hero-editorial__actions,
    .hero-editorial__trust {
        justify-content: center;
    }

    .hero-editorial__scroll { display: none; }

    .hero-editorial__watermark {
        left: 50%;
        font-size: clamp(4rem, 14vw, 8rem);
    }

    .hero-editorial__product-card {
        right: clamp(20px, 4vw, 48px);
        top: auto;
        bottom: 24px;
        max-width: calc(100% - 80px);
    }

    .hero-editorial__badge {
        bottom: auto;
        top: 24px;
        left: clamp(20px, 4vw, 48px);
    }
}

@media (max-width: 640px) {
    .hero-editorial__line {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .hero-editorial__stats {
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .hero-editorial__stat {
        flex: 1 1 calc(33% - 16px);
        min-width: 80px;
    }

    .hero-editorial__btn {
        width: 100%;
        justify-content: center;
    }

    .hero-editorial__actions {
        flex-direction: column;
        gap: 16px;
    }

    .hero-editorial__product-card {
        padding: 10px 12px 10px 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-editorial__pill,
    .hero-editorial__desc,
    .hero-editorial__stats,
    .hero-editorial__actions,
    .hero-editorial__trust,
    .hero-editorial__visual,
    .hero-editorial__badge,
    .hero-editorial__product-card,
    .hero-editorial__season,
    .hero-editorial__scroll,
    .hero-editorial__line-inner {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .hero-editorial__rule { width: 64px; }

    .hero-editorial__img,
    .hero-editorial__frame-shine,
    .hero-editorial__glow,
    .hero-editorial__line-inner--gold,
    .hero-editorial__pill-dot,
    .hero-editorial__orb {
        animation: none !important;
    }

    .hero-editorial__frame { transform: none !important; }
}
