/* ==========================================================
   South City Degenerates — split-image shop landing
   ========================================================== */

:root {
    --editorial-bg: #050505;
    --editorial-panel: #0e0e0f;
    --editorial-panel-2: #151517;
    --editorial-text: #f5f5f5;
    --editorial-muted: #c2bcc2;
    --editorial-soft: #b4a9b4;
    --editorial-line: rgba(255,255,255,0.08);
    --editorial-accent: var(--accent-start, #e55b2a);
    --editorial-accent-2: var(--accent-end, #ff7a33);
    --scd-logo-pink: #d32098;
    --scd-logo-gray: #9c929b;
    --editorial-max: 1240px;
    --editorial-radius: 24px;
    --editorial-shadow: 0 18px 60px rgba(0,0,0,0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.editorial-body,
.editorial-body {
    margin: 0;
    background: var(--editorial-bg);
    color: var(--editorial-text);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.editorial-body a {
    color: inherit;
    text-decoration: none;
}

.editorial-body img {
    max-width: 100%;
    display: block;
}

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

/* Header */
.editorial-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: transparent;
    border-bottom: 0;
}

.editorial-nav {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 52px;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0,0,0,.45);
}

.editorial-brand {
    position: absolute;
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.2rem, 3.8vw, 3.7rem);
    line-height: 1;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0;
}

.editorial-brand img {
    display: block;
    width: auto;
    max-width: min(210px, 30vw);
    height: var(--editorial-logo-height, 75px);
    max-height: var(--editorial-logo-height, 75px);
    object-fit: contain;
}

.editorial-nav-left,
.editorial-nav-right,
.editorial-footer-links {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 32px);
    font-size: clamp(1rem, 1.15vw, 1.35rem);
    font-weight: 500;
}

.editorial-nav-left a,
.editorial-nav-right a {
    color: #fff;
    transition: color .2s ease, opacity .2s ease;
}

.editorial-nav-left a:hover,
.editorial-nav-right a:hover {
    opacity: .78;
}

.editorial-buy-link {
    color: #d94235 !important;
}

.editorial-icon-link,
.editorial-cart,
.editorial-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
}

.editorial-cart {
    position: relative;
    font-size: 1.45rem;
}

.editorial-cart span {
    position: absolute;
    right: -11px;
    top: -11px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #050505;
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    text-shadow: none;
}

.editorial-menu-button {
    width: 34px;
    flex-direction: column;
    gap: 7px;
}

.editorial-menu-button span {
    display: block;
    width: 34px;
    height: 2px;
    background: #fff;
}

.editorial-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--editorial-accent), var(--editorial-accent-2));
    display: grid;
    place-items: center;
    font-weight: 900;
    color: white;
    box-shadow: 0 12px 24px rgba(214, 28, 160, 0.3);
    flex: 0 0 auto;
}

.editorial-logo-img {
    max-height: 52px;
    width: auto;
}

.editorial-logo-img--footer {
    max-height: 44px;
}

.editorial-nav-links,
.editorial-footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--editorial-muted);
    font-size: 0.95rem;
}

.editorial-nav-links a,
.editorial-footer-links a {
    transition: color .25s ease, opacity .25s ease;
}

.editorial-nav-links a:hover,
.editorial-footer-links a:hover {
    color: var(--editorial-text);
    opacity: 1;
}

.editorial-nav-cta,
.editorial-btn-primary,
.editorial-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 3px;
    font-weight: 800;
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.editorial-nav-cta,
.editorial-btn-primary {
    min-width: 292px;
    min-height: 76px;
    padding: 20px 34px;
    background: var(--scd-logo-pink);
    color: white;
    box-shadow: 0 14px 36px rgba(211,32,152,.26);
    text-transform: uppercase;
    font-size: clamp(1rem, 1.25vw, 1.35rem);
}

.editorial-btn-secondary {
    padding: 14px 24px;
    border: 1px solid var(--editorial-line);
    color: var(--editorial-text);
    background: transparent;
}

.editorial-nav-cta:hover,
.editorial-btn-primary:hover,
.editorial-btn-secondary:hover {
    transform: translateY(-2px);
    opacity: .95;
}

/* Hero */
.editorial-hero {
    position: relative;
    overflow: hidden;
    min-height: 94vh;
    display: grid;
    place-items: center;
    background: #111;
}

.editorial-hero-split {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.editorial-hero-panel {
    background-size: cover;
    background-repeat: no-repeat;
    filter: saturate(.88) contrast(1.03);
}

.editorial-hero-panel-left {
    background-position: center;
}

.editorial-hero-panel-right {
    background-position: 64% center;
}

.editorial-hero-single .editorial-hero-split {
    grid-template-columns: 1fr;
}

.editorial-hero-single .editorial-hero-panel-left {
    display: none;
}

.editorial-hero-single .editorial-hero-panel-right {
    background-position: center;
}

.editorial-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.36), rgba(0,0,0,.16) 45%, rgba(0,0,0,.35)),
        linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.28));
}

.editorial-hero-content {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 36px));
    margin-top: 86px;
    text-align: center;
    color: #fff;
}

.editorial-hero-content p {
    margin: 0 0 28px;
    font-size: clamp(1rem, 1.55vw, 1.55rem);
    font-weight: 500;
}

.editorial-hero-content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(3.8rem, 8.1vw, 9.8rem);
    line-height: .92;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 7px 32px rgba(0,0,0,.36);
}

.editorial-hero-actions {
    margin-top: 56px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* Sections */
.editorial-section {
    padding: 88px 0;
}

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

.editorial-section-header h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--editorial-text);
}

.editorial-section-header p {
    margin: 0;
    color: var(--editorial-muted);
    max-width: 580px;
}

/* Drops */
.editorial-products-masonry {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(210px, 12vw);
    gap: clamp(18px, 2.2vw, 38px);
}

.editorial-product-tile {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    background: #0a0a0a;
}

.editorial-product-tile-1 {
    grid-column: span 4;
    grid-row: span 2;
}

.editorial-product-tile-2 {
    grid-column: span 4;
    grid-row: span 2;
}

.editorial-product-tile-3 {
    grid-column: span 4;
    grid-row: span 1;
}

.editorial-product-tile-4 {
    grid-column: span 4;
    grid-row: span 1;
}

.editorial-product-tile-5,
.editorial-product-tile-6 {
    grid-column: span 6;
    grid-row: span 1;
}

.editorial-product-image {
    position: absolute;
    inset: 0;
    background-color: #eceaec;
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    transition: transform .45s ease;
}

.editorial-product-image-placeholder {
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.18);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
}

.editorial-product-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 6%, rgba(0,0,0,.2) 52%, rgba(0,0,0,.78));
}

.editorial-product-tile:hover .editorial-product-image {
    transform: scale(1.045);
}

.editorial-product-overlay {
    position: absolute;
    left: clamp(20px, 2.4vw, 42px);
    right: clamp(20px, 2.4vw, 42px);
    bottom: clamp(22px, 2.8vw, 48px);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(14px, 1.5vw, 24px);
}

.editorial-product-overlay h3 {
    margin: 0;
    color: #fff;
    max-width: 13ch;
    font-size: clamp(1.35rem, 2.1vw, 2.35rem);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 4px 22px rgba(0,0,0,.45);
}

.editorial-product-tile-3 .editorial-product-overlay h3,
.editorial-product-tile-4 .editorial-product-overlay h3,
.editorial-product-tile-5 .editorial-product-overlay h3,
.editorial-product-tile-6 .editorial-product-overlay h3 {
    max-width: 18ch;
    font-size: clamp(1.2rem, 1.55vw, 1.95rem);
}

.editorial-product-button {
    display: inline-flex;
    min-width: min(232px, 100%);
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--scd-logo-pink);
    color: #fff;
    border: 2px solid var(--scd-logo-pink);
    font-size: clamp(.9rem, 1vw, 1.08rem);
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(211,32,152,.28);
    transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.editorial-product-button:hover {
    transform: translateY(-2px);
    background: #fff;
    border-color: #fff;
    color: #050505;
}

.editorial-products-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: clamp(28px, 4vw, 54px);
}

.editorial-products-pagination a {
    min-width: 54px;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 2px solid rgba(156,146,155,.42);
    color: #fff;
    background: #0a0a0a;
    font-size: .9rem;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(0,0,0,.28);
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.editorial-products-pagination a:hover,
.editorial-products-pagination a.active {
    background: var(--scd-logo-pink);
    border-color: var(--scd-logo-pink);
    color: #fff;
    transform: translateY(-2px);
}

.editorial-products-pagination a[aria-label] {
    min-width: 88px;
    border-color: #fff;
    background: #fff;
    color: #050505;
}

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

.editorial-drop-card {
    background: var(--editorial-panel);
    border: 1px solid var(--editorial-line);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--editorial-shadow);
}

.editorial-drop-image {
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
}

.editorial-drop-image-1 {
    background-image: url('../../homepages/fashion/images/parallax/222.jpg');
}

.editorial-drop-image-2 {
    background-image: url('../../homepages/fashion/images/parallax/_5.jpg');
}

.editorial-drop-image-3 {
    background-image: url('../../images/shop-bg.jpg');
}

.editorial-drop-image-placeholder {
    display: grid;
    place-items: center;
    background: var(--editorial-panel-2);
    color: rgba(255,255,255,.18);
    font-size: 3rem;
    font-weight: 900;
}

.editorial-drop-content {
    padding: 22px;
}

.editorial-tag {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    background: rgba(214, 28, 160, 0.1);
    border: 1px solid rgba(214, 28, 160, 0.25);
    color: #ffd0ef;
    margin-bottom: 12px;
}

.editorial-drop-content h3 {
    margin: 0 0 8px;
    font-size: 1.35rem;
    text-transform: uppercase;
    color: var(--editorial-text);
}

.editorial-drop-content p {
    margin: 0 0 18px;
    color: var(--editorial-muted);
}

.editorial-shopify-embed {
    margin-top: 18px;
}

.editorial-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--scd-logo-pink);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.editorial-category-grid {
    display: grid;
    grid-template-columns: 1.25fr .85fr .85fr;
    gap: clamp(16px, 2vw, 28px);
}

.editorial-category-card {
    min-height: 360px;
    padding: clamp(24px, 3vw, 42px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 14px;
    background: linear-gradient(150deg, #111 0%, #050505 50%, rgba(211,32,152,.2) 100%);
    border: 1px solid rgba(255,255,255,.1);
    overflow: hidden;
    position: relative;
}

.editorial-category-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255,255,255,.1);
    pointer-events: none;
}

.editorial-category-card-large {
    min-height: 460px;
    background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.74)), url('../../homepages/fashion/images/parallax/22.jpg');
    background-size: cover;
    background-position: center;
}

.editorial-category-card span,
.editorial-service-grid span {
    color: var(--scd-logo-gray);
    font-weight: 900;
}

.editorial-category-card h3,
.editorial-service-grid h4 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.6rem, 2.6vw, 3rem);
    line-height: 1;
    text-transform: uppercase;
}

.editorial-category-card p,
.editorial-service-grid p {
    margin: 0;
    color: var(--editorial-muted);
    max-width: 300px;
}

.editorial-marquee {
    overflow: hidden;
    border-block: 1px solid rgba(255,255,255,.1);
    background: #fff;
    color: #050505;
}

.editorial-marquee div {
    min-width: max-content;
    display: flex;
    gap: clamp(34px, 6vw, 88px);
    padding: 22px 0;
    animation: editorial-marquee 28s linear infinite;
}

.editorial-marquee span {
    font-size: clamp(1.2rem, 2.6vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
}

@keyframes editorial-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.editorial-lookbook {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(20px, 3vw, 48px);
    align-items: stretch;
}

.editorial-lookbook-copy {
    padding: clamp(28px, 4vw, 56px);
    background: #fff;
    color: #050505;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.editorial-lookbook-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4.4vw, 4.6rem);
    line-height: .94;
    text-transform: uppercase;
}

.editorial-lookbook-copy p {
    margin: 0 0 28px;
    max-width: 520px;
    color: #292529;
    font-weight: 600;
}

.editorial-lookbook-copy .editorial-btn-secondary {
    border-color: #050505;
    color: #050505;
}

.editorial-lookbook-grid {
    min-height: 560px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

.editorial-lookbook-grid div {
    background-color: #eceaec;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.editorial-lookbook-grid div:first-child {
    grid-row: span 2;
}

/* Story + Store */
.editorial-story-wrap {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
}

.editorial-story-panel,
.editorial-embed-shell,
.editorial-footer-panel {
    background: var(--editorial-panel);
    border: 1px solid var(--editorial-line);
    border-radius: 28px;
    box-shadow: var(--editorial-shadow);
}

.editorial-story-panel {
    padding: 34px;
}

.editorial-story-panel h3 {
    margin: 0 0 12px;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: var(--editorial-text);
}

.editorial-story-panel p,
.editorial-story-list li {
    color: var(--editorial-muted);
}

.editorial-story-list {
    padding-left: 18px;
    margin: 20px 0 0;
    display: grid;
    gap: 10px;
}

.editorial-quote {
    margin-top: 24px;
    padding: 18px 20px;
    border-left: 3px solid var(--editorial-accent);
    background: rgba(255,255,255,0.03);
    border-radius: 0 18px 18px 0;
    color: #f0d7e8;
    font-weight: 600;
}

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

.editorial-service-grid article {
    min-height: 320px;
    padding: clamp(22px, 2.4vw, 34px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--editorial-panel);
    border: 1px solid var(--editorial-line);
}

.editorial-embed-shell {
    padding: 18px;
}

.editorial-embed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 10px 18px;
    border-bottom: 1px solid var(--editorial-line);
    margin-bottom: 18px;
}

.editorial-embed-header h3 {
    margin: 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--editorial-text);
}

.editorial-embed-header p {
    margin: 4px 0 0;
    color: var(--editorial-muted);
    font-size: 0.92rem;
}

.editorial-store-frame {
    width: 100%;
    min-height: 920px;
    border: 0;
    border-radius: 22px;
    background: #fff;
}

.editorial-embed-note {
    margin-top: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--editorial-line);
    color: var(--editorial-soft);
    font-size: 0.95rem;
}

/* CTA */
.editorial-cta-band {
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(214,28,160,0.16), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.editorial-cta-band h3 {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: var(--editorial-text);
}

.editorial-cta-band p {
    margin: 0;
    color: var(--editorial-muted);
    max-width: 620px;
}

.editorial-newsletter {
    display: flex;
    min-width: min(100%, 460px);
    border: 2px solid rgba(255,255,255,.2);
    background: #050505;
}

.editorial-newsletter input,
.editorial-newsletter button {
    min-height: 60px;
    border: 0;
    font: inherit;
}

.editorial-newsletter input {
    width: 100%;
    padding: 0 18px;
    background: transparent;
    color: #fff;
}

.editorial-newsletter button {
    padding: 0 28px;
    background: var(--scd-logo-pink);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.editorial-product-detail {
    padding: 150px 0 76px;
}

.editorial-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: clamp(22px, 3vw, 38px);
    color: var(--scd-logo-gray);
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.editorial-breadcrumbs a {
    color: #fff;
    transition: color .2s ease;
}

.editorial-breadcrumbs a:hover {
    color: var(--scd-logo-pink);
}

.editorial-breadcrumbs span[aria-current="page"] {
    max-width: min(680px, 100%);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.editorial-product-detail-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: clamp(28px, 4vw, 70px);
    align-items: start;
}

.editorial-product-gallery {
    display: grid;
    gap: 18px;
}

.editorial-product-main-image {
    min-height: min(760px, 70vw);
    background-color: #eceaec;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

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

.editorial-product-thumbs button {
    aspect-ratio: 1;
    border: 2px solid transparent;
    background-color: #eceaec;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: border-color .2s ease, transform .2s ease;
}

.editorial-product-thumbs button:hover,
.editorial-product-thumbs button.active {
    border-color: var(--scd-logo-pink);
    transform: translateY(-2px);
}

.editorial-product-purchase {
    position: sticky;
    top: 120px;
    padding: clamp(28px, 4vw, 52px);
    background: #0b0b0b;
    border: 1px solid rgba(255,255,255,.1);
}

.editorial-product-purchase h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 5.8rem);
    line-height: .92;
    text-transform: uppercase;
}

.editorial-product-purchase p {
    color: var(--editorial-muted);
}

.editorial-product-price {
    margin: 0 0 24px;
    color: #fff !important;
    font-size: 1.5rem;
    font-weight: 900;
}

.editorial-variant-picker {
    display: grid;
    gap: 22px;
    margin-top: 28px;
}

.editorial-option-group {
    display: grid;
    gap: 12px;
}

.editorial-option-group > span {
    color: #fff;
    font-size: .84rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.editorial-option-group > div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.editorial-variant-picker button {
    min-width: 58px;
    min-height: 48px;
    padding: 0 16px;
    border: 2px solid rgba(156,146,155,.42);
    background: #050505;
    color: #fff;
    font: inherit;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.editorial-variant-picker button:hover,
.editorial-variant-picker button.active {
    background: var(--scd-logo-pink);
    border-color: var(--scd-logo-pink);
    color: #fff;
    transform: translateY(-2px);
}

.editorial-variant-picker button:disabled {
    cursor: not-allowed;
    opacity: .38;
    text-decoration: line-through;
}

.editorial-product-buy-now {
    width: 100%;
    min-height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    background: var(--scd-logo-pink);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 16px 38px rgba(211,32,152,.28);
}

.editorial-product-buy-now-disabled {
    background: #2a252a;
    color: var(--scd-logo-gray);
    box-shadow: none;
    cursor: not-allowed;
}

.editorial-product-assurance {
    display: grid;
    gap: 10px;
    color: var(--scd-logo-gray);
    font-size: .92rem;
    font-weight: 800;
    text-transform: uppercase;
}

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

.editorial-related-card {
    display: grid;
    gap: 14px;
    padding-bottom: 18px;
    background: #0b0b0b;
    border: 1px solid rgba(255,255,255,.08);
}

.editorial-related-card div {
    aspect-ratio: 1;
    background-color: #eceaec;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.editorial-related-card h3,
.editorial-related-card span {
    margin: 0 18px;
}

.editorial-related-card h3 {
    color: #fff;
    font-size: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.editorial-related-card span {
    color: var(--scd-logo-gray);
    font-weight: 900;
}

/* Footer */
.editorial-footer {
    padding: 34px 52px 48px;
    background: var(--editorial-bg);
}

.editorial-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--editorial-soft);
}

.editorial-footer-inner > span {
    color: var(--editorial-text);
    font-weight: 900;
    text-transform: uppercase;
}

.editorial-footer-panel {
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--editorial-soft);
}

/* Compatibility with old layout classes so previous template styles don't fight this layout */
.scd-header,
.scd-footer {
    display: none !important;
}

/* Responsive */
@media (max-width: 1080px) {
    .editorial-nav {
        padding: 0 28px;
    }

    .editorial-nav-left {
        gap: 18px;
        font-size: .94rem;
    }
}

@media (max-width: 840px) {
    .editorial-nav {
        min-height: 74px;
        padding: 0 18px;
    }

    .editorial-nav-left {
        display: none;
    }

    .editorial-brand {
        left: 18px;
        top: 19px;
        transform: none;
        font-size: 2rem;
    }

    .editorial-brand img {
        max-width: 120px;
        max-height: 42px;
    }

    .editorial-nav-right {
        margin-left: auto;
        gap: 18px;
        font-size: 1rem;
    }

    .editorial-hero {
        min-height: 92vh;
    }

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

    .editorial-hero-panel-left {
        display: none;
    }

    .editorial-hero-panel-right {
        background-position: 58% center;
    }

    .editorial-hero-content {
        margin-top: 64px;
    }

    .editorial-hero-content h1 {
        font-size: clamp(3.3rem, 13vw, 6.3rem);
    }

    .editorial-hero-actions {
        gap: 16px;
        margin-top: 38px;
    }

    .editorial-btn-primary {
        min-width: min(292px, 100%);
        min-height: 62px;
    }

    .editorial-drops-grid {
        grid-template-columns: 1fr;
    }

    .editorial-category-grid,
    .editorial-lookbook,
    .editorial-story-wrap,
    .editorial-product-detail-grid {
        grid-template-columns: 1fr;
    }

    .editorial-service-grid,
    .editorial-related-grid {
        grid-template-columns: 1fr 1fr;
    }

    .editorial-lookbook-grid {
        min-height: 420px;
    }

    .editorial-product-purchase {
        position: static;
    }

    .editorial-products-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .editorial-product-tile,
    .editorial-product-tile-1,
    .editorial-product-tile-2,
    .editorial-product-tile-3,
    .editorial-product-tile-4,
    .editorial-product-tile-5,
    .editorial-product-tile-6 {
        grid-column: auto;
        grid-row: auto;
        min-height: min(680px, 112vw);
    }

    .editorial-footer-inner,
    .editorial-section-header,
    .editorial-embed-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .editorial-container {
        width: min(var(--editorial-max), calc(100% - 24px));
    }

    .editorial-brand span:last-child {
        font-size: 1.75rem;
    }

    .editorial-signin {
        display: none;
    }

    .editorial-menu-button {
        width: 30px;
    }

    .editorial-menu-button span {
        width: 30px;
    }

    .editorial-hero-content {
        width: min(100% - 24px, 520px);
    }

    .editorial-hero-content h1 {
        font-size: clamp(3rem, 17vw, 4.7rem);
    }

    .editorial-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .editorial-category-grid,
    .editorial-service-grid,
    .editorial-related-grid,
    .editorial-product-thumbs {
        grid-template-columns: 1fr;
    }

    .editorial-category-card,
    .editorial-category-card-large {
        min-height: 300px;
    }

    .editorial-lookbook-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        min-height: auto;
    }

    .editorial-lookbook-grid div,
    .editorial-lookbook-grid div:first-child {
        min-height: 320px;
        grid-row: auto;
    }

    .editorial-newsletter {
        flex-direction: column;
    }

    .editorial-footer {
        padding: 30px 18px 42px;
    }
}
