/* Apple-style premium redesign for KVSemenov Video Greetings */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --page: #f8f5ef;
    --page-2: #fffdf8;
    --ink: #171717;
    --muted: #6f6a63;
    --soft: #9a948b;
    --line: rgba(23, 23, 23, 0.09);
    --line-strong: rgba(23, 23, 23, 0.15);
    --glass: rgba(255, 255, 255, 0.72);
    --white: #ffffff;
    --dark: #161616;
    --gold: #d7ae54;
    --gold-2: #b98438;
    --gold-3: #fff1c4;
    --warm: #fbf4e5;
    --shadow: 0 24px 70px rgba(36, 25, 10, 0.11);
    --shadow-soft: 0 14px 44px rgba(36, 25, 10, 0.075);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 17px;
    --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", system-ui, sans-serif;
    --serif: Georgia, "Times New Roman", serif;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    font-family: var(--font);
    color: var(--ink);
    background:
        radial-gradient(circle at 7% 6%, rgba(215, 174, 84, 0.25), transparent 29%),
        radial-gradient(circle at 94% 0%, rgba(255, 221, 146, 0.34), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(190, 163, 120, 0.18), transparent 35%),
        linear-gradient(180deg, var(--page-2), var(--page));
    line-height: 1.5;
    overflow-x: hidden;
}

body.cart-open,
body.modal-open {
    overflow: hidden;
}

img,
video {
    max-width: 100%;
    display: block;
}

button,
a {
    font: inherit;
}

a {
    color: inherit;
}

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

.narrow {
    width: min(100% - 40px, 860px);
}

.section {
    padding: 74px 0;
}

.section-heading {
    margin-bottom: 34px;
}

.section-heading.centered {
    text-align: center;
}

.section-heading h2,
.payment h2,
.about h2,
.custom-card h2 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 1.05;
    font-size: clamp(2.1rem, 4vw, 3.45rem);
}

.section-heading p,
.payment p,
.about p,
.custom-card p {
    color: var(--muted);
    max-width: 720px;
    margin: 12px auto 0;
    font-size: 1.02rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-2);
    font-size: 0.76rem;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 12px;
}

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

/* Header */
.site-header {
    position: fixed;
    z-index: 1000;
    top: 18px;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.header-shell {
    pointer-events: auto;
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 18px 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    border-radius: 28px;
    box-shadow: 0 18px 55px rgba(46, 32, 10, 0.11);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: fit-content;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    position: relative;
    background: linear-gradient(135deg, #f5d98d 0%, #d5a346 45%, #9e672c 100%);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.65), 0 10px 22px rgba(178, 120, 36, 0.24);
}

.brand-mark::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 11px;
    border-left: 12px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.12));
}

.brand-text {
    display: grid;
    gap: 1px;
    line-height: 1.02;
}

.brand-text strong {
    font-family: var(--serif);
    font-size: 1.02rem;
    font-weight: 500;
}

.brand-text span {
    font-size: 0.9rem;
    color: #2c2a27;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: clamp(12px, 2vw, 26px);
}

.main-nav a {
    text-decoration: none;
    color: #3f3a34;
    font-size: 0.91rem;
    font-weight: 560;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.main-nav a:hover {
    color: var(--gold-2);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: fit-content;
}

.icon-button,
.cart-pill,
.messenger-button,
.icon-close,
.modal-close {
    border: 0;
    cursor: pointer;
    background: transparent;
}

.icon-button {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    position: relative;
    transition: background 0.2s ease, transform 0.2s ease;
}

.icon-button:hover,
.cart-pill:hover,
.messenger-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.search-button::before {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    border: 1.9px solid #171717;
    border-radius: 50%;
    left: 12px;
    top: 11px;
}

.search-button::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 2px;
    border-radius: 2px;
    background: #171717;
    transform: rotate(45deg);
    left: 24px;
    top: 25px;
}

.search-button:disabled {
    opacity: 0.16;
    cursor: default;
    pointer-events: none;
    filter: grayscale(1);
}

.music-toggle::before,
.music-toggle::after {
    content: "";
    position: absolute;
}

.music-toggle::before {
    width: 14px;
    height: 18px;
    border-left: 3px solid #171717;
    border-top: 3px solid #171717;
    left: 16px;
    top: 10px;
    border-radius: 2px 5px 0 0;
}

.music-toggle::after {
    width: 10px;
    height: 7px;
    border-radius: 50%;
    background: #171717;
    left: 10px;
    top: 25px;
    box-shadow: 14px -5px 0 -1px #171717;
}

.music-toggle[aria-pressed="true"] {
    background: var(--gold-3);
}

.cart-pill {
    min-width: 54px;
    height: 42px;
    padding: 0 11px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink);
    transition: background 0.2s ease, transform 0.2s ease;
}

.cart-icon {
    width: 18px;
    height: 15px;
    border: 1.8px solid currentColor;
    border-top: 0;
    display: inline-block;
    border-radius: 0 0 4px 4px;
    position: relative;
}

.cart-icon::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 7px;
    border: 1.8px solid currentColor;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    left: -1px;
    top: -8px;
}

.cart-count {
    min-width: 18px;
    min-height: 18px;
    display: inline-grid;
    place-items: center;
    border-radius: 99px;
    background: #111;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0 5px;
}

.messenger-button {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 860;
    letter-spacing: -0.02em;
    color: #1d1a16;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(35, 31, 28, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.messenger-max {
    color: #111;
}

.messenger-tg {
    color: #111;
}

.messenger-button:hover {
    box-shadow: 0 10px 24px rgba(24, 18, 8, 0.08);
}

.messenger-button img,
.btn-with-icon img,
.footer-messenger img {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
}

.btn-with-icon img {
    width: 24px;
    height: 24px;
    margin-left: -2px;
}

.footer-messenger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.footer-messenger img {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 45px;
    padding: 12px 19px;
    border: 1px solid transparent;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 680;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-dark {
    color: #fff;
    background: #141414;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.btn-dark:hover {
    background: #000;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
}

.btn-light {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--line);
    box-shadow: 0 10px 28px rgba(36, 25, 10, 0.055);
}

.btn-light:hover {
    background: #fff;
    border-color: rgba(185, 132, 56, 0.24);
}

.btn-gold {
    color: #fff;
    background: linear-gradient(135deg, #efd27c, #c48b32 55%, #9b6428);
    box-shadow: 0 15px 34px rgba(185, 132, 56, 0.28);
}

.btn-ghost {
    color: #3d3933;
    background: transparent;
    border-color: var(--line);
}

.btn-lg {
    min-height: 54px;
    padding-inline: 27px;
    border-radius: 16px;
}

.btn-sm {
    min-height: 39px;
    padding: 10px 13px;
    font-size: 0.86rem;
    border-radius: 12px;
}

.btn-full {
    width: 100%;
}

/* Hero */
.hero {
    padding: 106px 0 10px;
}

.hero-card {
    min-height: 338px;
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.78);
    background:
        radial-gradient(circle at 91% 5%, rgba(215, 174, 84, 0.23), transparent 23%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(251, 246, 238, 0.82));
    box-shadow: var(--shadow);
}

.hero-card::before,
.hero-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero-card::before {
    width: 260px;
    height: 260px;
    right: -45px;
    top: -35px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 204, 137, 0.3), transparent 68%);
}

.hero-card::after {
    width: 8px;
    height: 8px;
    left: 47%;
    top: 23%;
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow: 58px 120px 0 -1px rgba(215, 174, 84, 0.75), 112px 34px 0 -2px rgba(185, 132, 56, 0.55);
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding: clamp(34px, 6vw, 66px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(3.2rem, 6.4vw, 5.8rem);
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -0.06em;
}

.hero p {
    color: #46413b;
    max-width: 530px;
    margin-top: 22px;
    font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.hero-visual {
    min-height: 340px;
    position: relative;
    display: grid;
    place-items: center;
    padding: 42px 48px;
}

.video-postcard-card {
    position: relative;
    z-index: 3;
    width: min(305px, 58vw);
    aspect-ratio: 16 / 10;
    border-radius: 22px;
    overflow: hidden;
    transform: rotate(-7deg) translateY(-8px);
    box-shadow: 0 28px 70px rgba(74, 51, 16, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: #f0e6d4;
}

.video-postcard-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-play,
.play-small {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.36);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.hero-play {
    width: 70px;
    height: 70px;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.hero-play::after,
.play-small::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 17px solid #fff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 4px;
}

.gift-box {
    position: absolute;
    z-index: 2;
    bottom: -38px;
    right: 20%;
    width: 250px;
    height: 170px;
    border-radius: 21px 21px 0 0;
    background: linear-gradient(145deg, #fffef9, #e7dfd2);
    box-shadow: 0 -20px 60px rgba(255, 225, 148, 0.42), inset 0 1px rgba(255, 255, 255, 0.88);
}

.gift-box::before {
    content: "";
    position: absolute;
    inset: -24px 24px auto;
    height: 32px;
    border-radius: 15px 15px 5px 5px;
    background: linear-gradient(180deg, #fff, #eee2cf);
}

.gift-box span {
    position: absolute;
    right: 32px;
    top: 62px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff0b2, #c6953b);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.7), 0 8px 18px rgba(118, 78, 22, 0.2);
}

.gift-box span::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 11px;
    border-left: 15px solid #fff5cf;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.ribbon {
    position: absolute;
    z-index: 1;
    width: 72px;
    height: 300px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(229, 186, 89, 0.1), rgba(196, 139, 50, 0.7), rgba(255, 240, 181, 0.3));
    filter: blur(0.2px);
    opacity: 0.65;
}

.ribbon-left {
    left: 5%;
    top: 62px;
    transform: rotate(68deg);
}

.ribbon-right {
    right: 0;
    top: -70px;
    transform: rotate(25deg);
}

/* Collection banner */
.collection-banner {
    padding: 12px 0 20px;
}

.collection-row {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 16px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.collection-row img {
    width: 160px;
    height: 90px;
    object-fit: cover;
    border-radius: 18px;
}

.collection-row h2 {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.collection-row p {
    color: var(--muted);
    margin-top: 6px;
    max-width: 610px;
}

/* Pricing */
.price-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(130px, 1fr));
    gap: 16px;
}

.price-card {
    min-height: 204px;
    position: relative;
    padding: 22px 15px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-soft);
}

.price-card.featured {
    color: #fff;
    background: radial-gradient(circle at 50% 0%, rgba(255, 223, 117, 0.34), transparent 28%), linear-gradient(180deg, #24221f, #111);
    border-color: rgba(255, 230, 164, 0.32);
    transform: translateY(-8px);
}

.price-card h3 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.035em;
    font-size: 1.22rem;
    line-height: 1.04;
}

.price-card strong {
    font-family: var(--serif);
    font-size: 1.95rem;
    font-weight: 400;
    line-height: 1;
}

.price-card em {
    font-style: normal;
    color: var(--muted);
    font-size: 0.9rem;
}

.price-card.featured em,
.price-card.featured p {
    color: rgba(255, 255, 255, 0.74);
}

.price-card p {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.35;
    flex: 1;
}

.badge {
    position: absolute;
    top: -9px;
    left: 12px;
    right: 12px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 99px;
    background: linear-gradient(135deg, #ffe48b, #c58d34);
    color: #3d2707;
    font-size: 0.66rem;
    text-transform: uppercase;
    font-weight: 850;
    letter-spacing: 0.04em;
}

.price-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff, #efe6d7);
    color: #5f564a;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.8);
}

.price-card.featured .price-icon {
    background: linear-gradient(135deg, #ffe895, #be812d);
    color: #fff;
}

.price-icon::before {
    font-size: 1.45rem;
}

.price-icon.film::before { content: "▣"; }
.price-icon.stack::before { content: "6"; font-weight: 800; }
.price-icon.mix::before { content: "✦"; }
.price-icon.crown::before { content: "♛"; }
.price-icon.cat::before { content: "🐱"; }
.price-icon.gift::before { content: "♕"; }
.price-icon.wand::before { content: "✧"; }

/* Catalog */
.series-showcase {
    display: grid;
    grid-template-columns: repeat(7, minmax(120px, 1fr));
    gap: 14px;
    margin-bottom: 26px;
}

.series-tile {
    min-width: 0;
}

.series-tile-preview {
    width: 100%;
    aspect-ratio: 1.48 / 1;
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: #eee4d3;
    box-shadow: 0 12px 30px rgba(36, 25, 10, 0.1);
}

.series-tile-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.series-tile:hover img {
    transform: scale(1.045);
}

.play-small {
    width: 34px;
    height: 34px;
    right: 10px;
    bottom: 10px;
}

.play-small::after {
    border-left-width: 10px;
    border-top-width: 7px;
    border-bottom-width: 7px;
    margin-left: 2px;
}

.series-tile-info {
    text-align: center;
    padding-top: 8px;
}

.series-tile-info h3 {
    font-size: 0.96rem;
    font-weight: 650;
    line-height: 1.15;
}

.series-tile-info p {
    display: none;
}

.series-tile-actions {
    display: none;
}

.catalog-rules {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 18px auto 30px;
}

.catalog-rules span {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
}

.catalog-rules strong {
    color: var(--ink);
}

.series-list {
    display: grid;
    gap: 14px;
}

.series-item {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-soft);
}

.series-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    border: 0;
    text-align: left;
    cursor: pointer;
    color: var(--ink);
    background: transparent;
}

.series-header strong {
    display: block;
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 400;
    letter-spacing: -0.045em;
}

.series-header em {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-style: normal;
}

.series-header b {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 1.4rem;
    font-weight: 360;
    transition: transform 0.25s ease;
}

.series-header[aria-expanded="true"] b {
    transform: rotate(45deg);
}

.series-content {
    padding: 0 20px 24px;
}

.series-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 15px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: var(--warm);
    color: var(--muted);
}

.series-toolbar strong {
    color: var(--ink);
}

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

.sku-card {
    display: grid;
    grid-template-columns: 126px 1fr;
    gap: 15px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
}

.sku-visual {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 14px;
    background: #efe4d3;
    isolation: isolate;
}

.sku-visual img,
.site-preview-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sku-visual img {
    z-index: 1;
}

.site-preview-video {
    z-index: 2;
    background: #000;
}

.sku-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 2px 0;
}

.sku-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sku-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: #f7f1e8;
    color: #6d6255;
    font-size: 0.72rem;
    font-weight: 700;
}

.sku-info h4 {
    font-size: 1rem;
    line-height: 1.18;
}

.sku-info p {
    color: var(--muted);
    font-size: 0.84rem;
}

.sku-series-name {
    color: var(--muted);
}

.sku-description {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sku-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.full-set-block {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 24px;
    align-items: center;
    margin-top: 18px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(185, 132, 56, 0.24);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 242, 211, 0.76));
    box-shadow: var(--shadow-soft);
}

.full-set-block h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.full-set-block p {
    color: var(--muted);
    margin-top: 8px;
    max-width: 720px;
}

.full-set-block > strong {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 400;
}

/* Custom/order/payment/about */
.custom-order {
    padding-top: 28px;
}

.custom-card,
.payment-shell,
.about-grid {
    display: grid;
    gap: 28px;
    align-items: center;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
}

.custom-card {
    grid-template-columns: 92px 1fr 1.1fr auto;
    padding: 18px;
}

.ai-tile {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, #27231d, #5e4a27);
    font-size: 1.6rem;
    font-weight: 850;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.25);
}

.check-list {
    list-style: none;
    display: grid;
    gap: 10px;
    color: #4a453e;
}

.check-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    color: var(--gold-2);
    font-size: 0.75rem;
    font-weight: 900;
}

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

.steps-grid article {
    padding: 23px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow-soft);
}

.steps-grid span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #171717;
    font-weight: 850;
    margin-bottom: 18px;
}

.steps-grid h3 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.04em;
    font-size: 1.55rem;
}

.steps-grid p {
    color: var(--muted);
    margin-top: 7px;
}

.payment-shell {
    grid-template-columns: 1fr 250px;
    padding: 34px;
}

.payment h2,
.about h2 {
    margin-bottom: 12px;
}

.payment p,
.about p {
    margin-left: 0;
}

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

.small-note {
    color: var(--soft) !important;
    font-size: 0.9rem !important;
    margin-top: 16px !important;
}

.qr-card {
    justify-self: end;
    width: 220px;
    padding: 18px;
    text-align: center;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: #fff;
}

.qr-card img {
    width: 150px;
    margin: 0 auto 12px;
    border-radius: 16px;
}

.qr-card strong,
.qr-card span {
    display: block;
}

.qr-card span {
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

.about-grid {
    grid-template-columns: 1fr 1.2fr;
    padding: 34px;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.feature-strip span {
    min-height: 78px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 12px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    color: #4a453e;
    font-weight: 650;
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 19px 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-weight: 720;
}

.faq-question b {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 1.25rem;
    font-weight: 350;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question b {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 21px 20px;
    color: var(--muted);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.footer {
    padding: 26px 0 40px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 0.92rem;
}

.footer a {
    text-decoration: none;
}

.footer a:hover {
    color: var(--gold-2);
}

/* Cart */
.floating-cart {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 950;
    display: none;
    align-items: center;
    gap: 8px;
    height: 52px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: #111;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    cursor: pointer;
}

.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 1400;
    pointer-events: none;
}

.cart-drawer[aria-hidden="false"] {
    pointer-events: auto;
}

.cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.36);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cart-drawer[aria-hidden="false"] .cart-backdrop {
    opacity: 1;
}

.cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 465px);
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    background: rgba(255, 252, 247, 0.96);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.18);
    transform: translateX(105%);
    transition: transform 0.28s ease;
}

.cart-drawer[aria-hidden="false"] .cart-panel {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 26px 24px 18px;
    border-bottom: 1px solid var(--line);
}

.cart-header h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 2.2rem;
    letter-spacing: -0.055em;
    line-height: 1;
}

.icon-close,
.modal-close {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    position: relative;
}

.icon-close::before,
.icon-close::after,
.modal-close::before,
.modal-close::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #171717;
    left: 11px;
    top: 20px;
}

.icon-close::before,
.modal-close::before {
    transform: rotate(45deg);
}

.icon-close::after,
.modal-close::after {
    transform: rotate(-45deg);
}

.cart-body {
    overflow-y: auto;
    padding: 20px 24px;
}

.cart-empty {
    display: grid;
    gap: 9px;
    padding: 22px;
    text-align: center;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line);
}

.cart-empty[hidden] {
    display: none !important;
}

.cart-empty p {
    color: var(--muted);
}

.cart-lines {
    display: grid;
    gap: 12px;
}

.cart-line {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 13px;
    padding: 15px 42px 15px 15px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.cart-line strong,
.cart-line span,
.cart-line small {
    display: block;
}

.cart-line span,
.cart-line small,
.cart-line li {
    color: var(--muted);
    font-size: 0.84rem;
}

.cart-line ul {
    margin-top: 8px;
    padding-left: 17px;
}

.cart-line b {
    align-self: start;
    white-space: nowrap;
}

.cart-discount {
    margin-top: 7px;
    color: #8f601f;
    font-size: 0.84rem;
}

.cart-discount.muted {
    color: var(--soft);
}

.line-remove {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: #f7f1e8;
    cursor: pointer;
}

.line-remove::before,
.line-remove::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: #6f6254;
    left: 8px;
    top: 13px;
}

.line-remove::before { transform: rotate(45deg); }
.line-remove::after { transform: rotate(-45deg); }

.cart-skus {
    margin-top: 16px;
}

.cart-skus strong {
    display: block;
    margin-bottom: 10px;
}

.sku-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.sku-chips span {
    padding: 6px 9px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: #6d6255;
    font-size: 0.76rem;
    font-weight: 760;
}

.cart-footer {
    padding: 18px 24px 24px;
    display: grid;
    gap: 10px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.62);
}

.cart-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    font-size: 1.05rem;
}

.cart-total strong {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.cart-hint {
    color: var(--muted);
    font-size: 0.86rem;
    margin-bottom: 3px;
}

.cart-messenger-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.cart-messenger-actions .btn {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    white-space: nowrap;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 1600;
    max-width: calc(100% - 40px);
    padding: 12px 17px;
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 17, 17, 0.9);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
    transform: translate(-50%, 20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: grid;
    place-items: center;
    padding: 20px;
}

.modal[hidden] {
    display: none;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    z-index: 1;
    width: min(100%, 440px);
    padding: 16px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.modal-close {
    position: absolute;
    right: -12px;
    top: -12px;
    z-index: 2;
}

.modal-video-container {
    overflow: hidden;
    border-radius: 18px;
    background: #000;
}

.modal-video-container video {
    width: 100%;
    max-height: min(76vh, 760px);
    object-fit: contain;
    background: #000;
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.modal-actions .btn {
    flex: 1;
    padding-left: 12px;
    padding-right: 12px;
}

/* Responsive */
@media (max-width: 1120px) {
    .main-nav {
        display: none;
    }

    .header-shell {
        justify-content: space-between;
    }

    .price-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .series-showcase {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .custom-card {
        grid-template-columns: 74px 1fr;
    }

    .custom-card .check-list,
    .custom-card .btn {
        grid-column: 1 / -1;
    }
}

@media (max-width: 840px) {
    .container,
    .narrow {
        width: min(100% - 28px, 1200px);
    }

    .site-header {
        top: 10px;
    }

    .header-shell {
        min-height: 62px;
        padding: 10px 12px;
        border-radius: 22px;
    }

    .brand-text span {
        display: none;
    }

    .search-button {
        display: none;
    }

    .hero {
        padding-top: 86px;
    }

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

    .hero-copy {
        padding: 36px 26px 18px;
    }

    .hero-visual {
        min-height: 280px;
        padding: 15px 26px 38px;
    }

    .gift-box {
        right: 8%;
        width: 220px;
    }

    .collection-row {
        grid-template-columns: 92px 1fr;
        gap: 14px;
    }

    .collection-row .btn {
        grid-column: 1 / -1;
        width: 100%;
    }

    .collection-row img {
        width: 92px;
        height: 72px;
    }

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

    .price-card.featured {
        transform: none;
    }

    .series-showcase {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
    }

    .series-tile {
        flex: 0 0 180px;
        scroll-snap-align: start;
    }

    .series-tile-actions {
        display: grid;
        gap: 7px;
        margin-top: 9px;
    }

    .series-tile-info p {
        display: block;
        color: var(--muted);
        font-size: 0.82rem;
        line-height: 1.3;
        margin-top: 4px;
    }

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

    .full-set-block {
        grid-template-columns: 1fr;
    }

    .custom-card,
    .payment-shell,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .payment-shell,
    .about-grid {
        padding: 24px;
    }

    .qr-card {
        justify-self: stretch;
        width: 100%;
    }

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

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .floating-cart {
        display: inline-flex;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 54px 0;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 11px;
    }

    .brand-text strong {
        font-size: 0.94rem;
    }

    .music-toggle {
        display: none;
    }

    .cart-pill {
        min-width: 48px;
    }

    .messenger-button {
        width: 38px;
        height: 38px;
        border-radius: 13px;
        font-size: 0.66rem;
    }

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

    .hero-actions,
    .payment-actions,
    .modal-actions {
        flex-direction: column;
    }

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

    .hero-actions .btn,
    .payment-actions .btn {
        width: 100%;
    }

    .price-grid,
    .steps-grid,
    .feature-strip {
        grid-template-columns: 1fr;
    }

    .sku-card {
        grid-template-columns: 112px 1fr;
    }

    .sku-actions .btn {
        width: 100%;
        white-space: normal;
    }

    .series-header {
        padding: 18px;
    }

    .series-content {
        padding: 0 12px 16px;
    }

    .series-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .full-set-block h3 {
        font-size: 1.65rem;
    }

    .cart-panel {
        width: 100%;
    }
}

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

.cart-line li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 4px;
}

.mini-remove {
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 50%;
    background: #f7f1e8;
    position: relative;
    cursor: pointer;
    flex: 0 0 auto;
}

.mini-remove::before,
.mini-remove::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    border-radius: 2px;
    background: #6f6254;
    left: 6px;
    top: 10px;
}

.mini-remove::before { transform: rotate(45deg); }
.mini-remove::after { transform: rotate(-45deg); }
