/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --bg: #032d29;
    --bg2: #06201e;
    --gold: #d7ad58;
    --gold2: #f2d78c;
    --text: #f4eee1;
    --muted: #a8b7b0;
    --line: rgba(215, 173, 88, .28);
    --card: rgba(3, 32, 29, .72);
    --shadow: 0 30px 80px rgba(0, 0, 0, .32);
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    overflow-x: hidden;
}

body:before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.85)),
        url("/assets/tg-background.png") center/cover;
    opacity: 1;
    pointer-events: none;
    z-index: -2;
}

body:after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 30% 10%, rgba(0, 120, 104, .18), transparent 35%),
        radial-gradient(circle at 80% 75%, rgba(212, 166, 72, .07), transparent 28%);
    pointer-events: none;
    opacity: 20;
    z-index: -1;
}

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

button,
input,
select {
    font: inherit;
}

[hidden] {
    display: none !important;
}

/* ============================================
   NOISE OVERLAY
   ============================================ */
.site-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* ============================================
   TOPBAR / HEADER
   ============================================ */
.topbar {
    height: 86px;
    padding: 0 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(3, 34, 31, .86);
    backdrop-filter: blur(18px);
}

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

.brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.brand span {
    display: flex;
    flex-direction: column;
    line-height: .9;
    letter-spacing: .18em;
}

.brand b {
    font-size: 15px;
    font-weight: 500;
}

.brand small {
    font-size: 10px;
    letter-spacing: .34em;
    margin-top: 7px;
    color: var(--gold);
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

nav>a {
    color: #d6ddd7;
    transition: .25s;
}

nav>a:hover {
    color: var(--gold2);
}

.cart-button {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--gold2);
    padding: 10px 15px;
    cursor: pointer;
}

.cart-button span {
    display: inline-grid;
    place-items: center;
    margin-left: 6px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--gold);
    color: #14251e;
    font-size: 11px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 650px;
    padding: 80px 8vw 90px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 50px;
    max-width: 1500px;
    margin: auto;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .34em;
    color: var(--gold);
    margin: 0 0 22px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(54px, 7vw, 100px);
    line-height: .88;
    font-weight: 400;
    margin: 0 0 32px;
    letter-spacing: -.045em;
}

.hero h1 em {
    color: var(--gold2);
    font-style: italic;
}

.hero-text {
    max-width: 510px;
    color: var(--muted);
    font-family: Arial, sans-serif;
    line-height: 1.75;
    font-size: 15px;
}

.gold-button {
    border: 1px solid var(--gold);
    background: linear-gradient(135deg, #e6c36f, #b68a3b);
    color: #102a23;
    padding: 14px 22px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    transition: .25s;
    box-shadow: 0 10px 35px rgba(210, 164, 75, .12);
}

.gold-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 45px rgba(210, 164, 75, .2);
}

.hero-card {
    min-height: 620px;
    border: none;
    position: relative;
    display: grid;
    place-items: center;
    background: transparent;
    overflow: hidden;
    box-shadow: none;
}

.hero-gif-frame {
    position: relative;
    z-index: 2;
    width: min(96%, 880px);
    aspect-ratio: 16/11;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: none;
    background: transparent;
    box-shadow: none;
}

.hero-gif-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 22px 25px rgba(0, 0, 0, .45));
    border-radius: 16px;
}

.hero-card p {
    display: none;
}

.hero-orbit {
    display: none;
}

.hero-gif-placeholder {
    display: none;
}

/* ============================================
   CATALOG SECTION
   ============================================ */
.catalog-section {
    max-width: 1400px;
    margin: auto;
    padding: 70px 6vw 120px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-bottom: 1px solid var(--line);
    padding-bottom: 25px;
    margin-bottom: 34px;
}

.section-head h2,
.about-content h2 {
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 400;
    margin: 0;
    letter-spacing: -.04em;
}

.catalog-tools {
    display: flex;
    gap: 10px;
}

.catalog-tools input,
.catalog-tools select {
    background: rgba(0, 0, 0, .18);
    border: 1px solid var(--line);
    color: var(--text);
    padding: 12px 15px;
    outline: none;
}

.catalog-tools input::placeholder {
    color: #83958e;
}

.catalog-tools select option {
    background: #06302c;
}

/* ============================================
   PRODUCT GRID
   ============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.product-card {
    background: var(--card);
    border: 1px solid rgba(215, 173, 88, .16);
    cursor: pointer;
    transition: .3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(215, 173, 88, .55);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .25);
}

.product-image {
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #061f1d, #0a4039);
    position: relative;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .5s;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-no-image {
    font-size: 70px;
    color: var(--gold);
    opacity: .5;
}

.product-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ============================================
   ABOUT — О БРЕНДЕ
   ============================================ */
.about {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 80px 8vw;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-content h2 {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 400;
    margin: 0;
    letter-spacing: -.04em;
    line-height: 1.05;
}

.about-content h2 em {
    color: var(--gold2);
    font-style: italic;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 40px;
    margin-top: 10px;
}

.about-block.gold-bg {
    background: linear-gradient(135deg, rgba(215, 173, 88, 0.12), rgba(215, 173, 88, 0.05));
    border: 1px solid rgba(215, 173, 88, 0.25);
    border-radius: 12px;
    padding: 24px 28px;
    transition: .3s;
}

.about-block.gold-bg:hover {
    background: linear-gradient(135deg, rgba(215, 173, 88, 0.2), rgba(215, 173, 88, 0.08));
    border-color: rgba(215, 173, 88, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-block.gold-bg.highlight {
    background: linear-gradient(135deg, rgba(215, 173, 88, 0.2), rgba(215, 173, 88, 0.08));
    border-color: var(--gold);
}

.about-block.gold-bg.highlight:hover {
    background: linear-gradient(135deg, rgba(215, 173, 88, 0.3), rgba(215, 173, 88, 0.12));
}

.about-block.gold-bg.cosmetics-bottom {
    grid-column: 2 / 3;
    grid-row: 2;
}

.about-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold2);
    letter-spacing: .08em;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.about-desc {
    font-family: Arial, sans-serif;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
    margin: 0 0 6px 0;
}

.about-subtitle {
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 10px 0;
    font-weight: 400;
}

.about-subtitle.gold {
    color: var(--gold2);
    font-weight: 500;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.9;
    color: var(--text);
}

.about-list li {
    padding: 2px 0;
    position: relative;
    padding-left: 16px;
}

.about-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--gold);
    opacity: .5;
}

.about-list li strong {
    color: var(--gold2);
    font-weight: 500;
}

.about-list li em {
    color: var(--gold2);
    font-style: italic;
}

.about-list li small {
    display: block;
    color: #7a8a83;
    font-size: 11px;
    margin-top: 4px;
    font-style: italic;
}

.about-stat {
    grid-column: 1 / -1;
    text-align: center;
    padding: 24px 0 8px 0;
    border-top: 1px solid rgba(215, 173, 88, .12);
    margin-top: 4px;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 400;
    color: var(--gold2);
    letter-spacing: .04em;
}

.stat-label {
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ============================================
   COSMETICS SECTION
   ============================================ */
.cosmetics-section {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 80px 8vw;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cosmetics-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cosmetics-content h2 {
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 400;
    margin: 0 0 40px;
    letter-spacing: -.04em;
}

.cosmetics-message {
    max-width: 650px;
    width: 100%;
    background: rgba(3, 32, 29, .62);
    border: 1px solid rgba(215, 173, 88, .18);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    transition: .3s;
}

.cosmetics-message:hover {
    border-color: rgba(215, 173, 88, .45);
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .3);
}

.message-icon {
    font-size: 48px;
    line-height: 1;
    opacity: .8;
    margin-bottom: 8px;
}

.message-text {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
    margin: 0;
    max-width: 480px;
}

.cosmetics-message .gold-button {
    margin-top: 10px;
    padding: 14px 30px;
}

/* ============================================
   CONTACTS — НОВАЯ ВЕРСИЯ (ЗАГОЛОВОК ПО ЦЕНТРУ)
   ============================================ */
.contacts-section {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 80px 8vw;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.contacts-head {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 34px;
    text-align: center;
}

.contacts-head h2 {
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 400;
    margin: 0 0 14px;
    letter-spacing: -.04em;
}

/* НОВАЯ СЕТКА — 2 КОЛОНКИ */
.contacts-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contacts-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contacts-column-title {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 8px 0;
    font-weight: 400;
    border-bottom: 1px solid rgba(215, 173, 88, .2);
    padding-bottom: 12px;
}

/* СТИЛИ ДЛЯ КОНТАКТНЫХ ПЛИТОК (КАК В СТАРОМ КОДЕ) */
.contact-tile {
    min-height: 100px;
    border: 1px solid rgba(215, 173, 88, .18);
    background: rgba(3, 32, 29, .62);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: .25s;
}

.contact-tile:hover {
    border-color: rgba(215, 173, 88, .55);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}

.contact-tile > div:last-child {
    display: grid;
    gap: 4px;
}

.contact-tile span {
    font-size: 9px;
    letter-spacing: .25em;
    color: var(--gold);
}

.contact-tile strong {
    font-size: 16px;
    font-weight: 400;
}

.contact-tile small {
    font: 11px Arial, sans-serif;
    color: var(--muted);
}

.contact-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: transparent;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.contact-icon {
    color: var(--gold2);
    font-size: 20px;
    letter-spacing: .08em;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 30px 6vw 40px;
    display: flex;
    justify-content: space-between;
    color: #81948e;
    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-brand {
    color: var(--gold);
}

/* ============================================
   MODAL (Product)
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: grid;
    place-items: center;
    padding: 25px;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 10, 9, .78);
    backdrop-filter: blur(12px);
}

.product-modal {
    position: relative;
    z-index: 1;
    max-width: 950px;
    width: 100%;
    background: #062f2b;
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .5);
    max-height: 90vh;
    overflow: auto;
}

.modal-image-wrap {
    min-height: 500px;
    background: #021f1d;
    display: grid;
    place-items: center;
}

.modal-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.modal-info {
    padding: 52px 45px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-info h2 {
    font-size: 44px;
    font-weight: 400;
    margin: 0;
    line-height: .95;
}

.modal-description {
    font-family: Arial, sans-serif;
    color: var(--muted);
    line-height: 1.7;
}

.label {
    font-size: 10px;
    letter-spacing: .2em;
    color: var(--gold);
    margin: 10px 0;
}

.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-option {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    padding: 10px 14px;
    cursor: pointer;
}

.size-option.active {
    background: var(--gold);
    color: #122b24;
    border-color: var(--gold);
}

.modal-buy {
    margin-top: auto;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.modal-buy small {
    display: block;
    color: var(--muted);
    font-family: Arial, sans-serif;
    font-size: 10px;
    text-transform: uppercase;
}

.modal-buy strong {
    font-size: 25px;
    color: var(--gold2);
}

.close {
    background: transparent;
    border: 0;
    color: var(--gold2);
    font-size: 30px;
    cursor: pointer;
}

.product-modal>.close {
    position: absolute;
    right: 15px;
    top: 10px;
    z-index: 2;
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-drawer {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(460px, 100%);
    background: #052a26;
    border-left: 1px solid var(--line);
    z-index: 60;
    transform: translateX(105%);
    transition: .35s;
    box-shadow: -25px 0 70px rgba(0, 0, 0, .35);
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

.drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
}

.drawer-head h3 {
    font-size: 26px;
    font-weight: 400;
    margin: 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 14px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(215, 173, 88, .12);
    align-items: center;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.cart-item-name {
    font-size: 16px;
}

.cart-item-meta {
    font: 11px Arial, sans-serif;
    color: var(--muted);
    margin-top: 6px;
}

.cart-item-price {
    color: var(--gold2);
    white-space: nowrap;
}

.remove {
    background: none;
    border: 0;
    color: #85948f;
    cursor: pointer;
}

.drawer-bottom {
    margin-top: auto;
    border-top: 1px solid var(--line);
    padding-top: 18px;
}

.drawer-bottom>div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.drawer-bottom strong {
    color: var(--gold2);
    font-size: 24px;
}

.drawer-bottom .gold-button {
    width: 100%;
    justify-content: center;
}

.hint {
    font: 10px Arial, sans-serif;
    color: #728680;
    line-height: 1.5;
    text-align: center;
}

/* ============================================
   CONTACT MODAL (Preorder)
   ============================================ */
.contact-card {
    position: relative;
    width: min(92vw, 520px);
    background: #0b1916;
    border: 1px solid rgba(212, 175, 55, .35);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .5);
    color: #f5f1e7;
}

.contact-card h2 {
    margin: 6px 0 10px;
}

.contact-text {
    color: #b9c0bb;
    line-height: 1.6;
}

.contact-card form {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.contact-card label {
    display: grid;
    gap: 7px;
    font-size: 13px;
    letter-spacing: .04em;
}

.contact-card label span {
    color: #9ca49f;
    font-weight: 400;
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .14);
    background: #07110f;
    color: #fff;
    border-radius: 12px;
    padding: 13px 14px;
    font: inherit;
}

.contact-card textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-card .gold-button {
    width: 100%;
    margin-top: 4px;
}

.contact-modal[hidden] {
    display: none;
}

/* ============================================
   UTILITY / SECONDARY BUTTONS
   ============================================ */
.secondary-button {
    width: 100%;
    margin-top: 9px;
    padding: 13px 16px;
    border: 1px solid rgba(211, 174, 95, .35);
    border-radius: 12px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
}

.secondary-button:hover {
    background: rgba(211, 174, 95, .08);
}

.gold-button:disabled {
    opacity: .6;
    cursor: wait;
}

.thrirdy-button {
    width: 100%;
    margin-top: 9px;
    padding: 13px 16px;
    border: 1px solid rgba(211, 174, 95, .35);
    border-radius: 12px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
}

.thrirdy-button:hover {
    background: rgba(211, 174, 95, .08);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    nav>a {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 55px;
    }

    .hero-card {
        min-height: 480px;
    }

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

    .section-head {
        align-items: start;
        gap: 20px;
        flex-direction: column;
    }

    .catalog-tools {
        width: 100%;
    }

    .catalog-tools input,
    .catalog-tools select {
        flex: 1;
        min-width: 0;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-block.gold-bg.highlight {
        grid-column: 1 / -1;
    }

    .about-block.gold-bg.cosmetics-bottom {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .contacts-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 620px) {
    .topbar {
        padding: 0 16px;
        height: 70px;
    }

    .hero {
        padding: 40px 16px 60px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-card {
        min-height: 320px;
    }

    .catalog-section {
        padding: 40px 16px 60px;
    }

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

    .catalog-tools {
        flex-direction: column;
    }

    .about {
        padding: 40px 16px;
        margin-bottom: 40px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-block.gold-bg {
        padding: 18px 20px;
    }

    .about-block.gold-bg.highlight {
        grid-column: 1;
    }

    .about-block.gold-bg.cosmetics-bottom {
        grid-column: 1;
        grid-row: auto;
    }

    .about-list {
        font-size: 13px;
    }

    .stat-number {
        font-size: 32px;
    }

    .cosmetics-section {
        padding: 40px 16px;
        margin-bottom: 40px;
    }

    .cosmetics-content h2 {
        font-size: 36px;
        margin-bottom: 28px;
    }

    .cosmetics-message {
        padding: 30px 20px;
        gap: 18px;
    }

    .message-text {
        font-size: 14px;
    }

    .cosmetics-message .gold-button {
        width: 100%;
        justify-content: center;
        padding: 14px 16px;
    }

    .contacts-section {
        padding: 40px 16px;
        margin-bottom: 40px;
    }

    .contacts-grid-new {
        gap: 20px;
    }

    .contact-tile {
        padding: 16px;
        min-height: 80px;
        gap: 14px;
    }

    .contact-tile strong {
        font-size: 14px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
    }

    footer {
        padding: 20px 16px;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .modal {
        padding: 0;
    }

    .product-modal {
        height: 100%;
        max-height: none;
        grid-template-columns: 1fr;
        border-radius: 0;
    }

    .modal-image-wrap,
    .modal-image-wrap img {
        min-height: 200px;
        max-height: 35vh;
    }

    .modal-info {
        padding: 24px 20px;
    }

    .modal-info h2 {
        font-size: 28px;
    }

    .modal-buy {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .modal-buy .gold-button {
        justify-content: center;
    }

    .cart-drawer {
        padding: 16px 18px;
        width: 100%;
    }

    .drawer-head h3 {
        font-size: 18px;
    }

    .cart-item {
        padding: 12px 0;
        grid-template-columns: 50px 1fr auto;
    }

    .cart-item img {
        width: 50px;
        height: 50px;
    }

    .cart-item-name {
        font-size: 14px;
    }

    .cart-item-price {
        font-size: 14px;
    }

    .drawer-bottom strong {
        font-size: 18px;
    }

    .contact-card {
        padding: 24px 20px;
        border-radius: 16px;
        width: 95vw;
    }
}


/* ============================================
   PRODUCT MULTI-PHOTO GALLERY
   ============================================ */
.product-photo-dots{
    position:absolute;
    left:12px;
    bottom:12px;
    display:flex;
    gap:5px;
    padding:6px 8px;
    border-radius:20px;
    background:rgba(0,0,0,.52);
    backdrop-filter:blur(5px);
}
.product-photo-dots span{
    width:6px;
    height:6px;
    border-radius:50%;
    background:rgba(255,255,255,.38);
}
.product-photo-dots span.active{background:var(--gold2)}
.product-photo-count{
    position:absolute;
    right:12px;
    bottom:12px;
    padding:5px 8px;
    border:1px solid rgba(215,173,88,.35);
    border-radius:20px;
    background:rgba(0,0,0,.58);
    color:var(--gold2);
    font:10px Arial,sans-serif;
}
.modal-media{
    min-height:500px;
    background:#021f1d;
    display:flex;
    flex-direction:column;
}
.modal-media .modal-image-wrap{
    min-height:0;
    height:calc(100% - 94px);
    flex:1;
}
.modal-media .modal-image-wrap img{
    min-height:0;
    height:100%;
    object-fit:contain;
    padding:18px;
}
.modal-gallery{
    display:flex;
    gap:9px;
    padding:10px 14px 14px;
    overflow-x:auto;
    background:rgba(0,0,0,.18);
    border-top:1px solid rgba(215,173,88,.12);
}
.modal-thumb{
    width:68px;
    height:68px;
    flex:0 0 68px;
    padding:0;
    border:1px solid rgba(215,173,88,.22);
    background:#061b19;
    cursor:pointer;
    overflow:hidden;
    opacity:.62;
    transition:.2s;
}
.modal-thumb:hover{opacity:.9}
.modal-thumb.active{
    opacity:1;
    border-color:var(--gold);
    box-shadow:0 0 0 1px rgba(215,173,88,.25);
}
.modal-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
@media(max-width:620px){
    .modal-media{min-height:0;height:auto}
    .modal-media .modal-image-wrap{
        min-height:200px;
        height:28vh;
        flex:none;
    }
    .modal-media .modal-image-wrap img{
        min-height:0;
        height:100%;
        padding:10px;
    }
    .modal-gallery{padding:8px 10px 10px}
    .modal-thumb{width:58px;height:58px;flex-basis:58px}
}
