/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black: #000000;
    --white: #FFFFFF;
    --yellow: #D7C826;
    --blue: #8BB8E8;
    --sage: #949A90;
    --gray-bg: #F7F6F2;
    --gray-text: #6B6B6B;
    --gray-line: #E8E6E1;
    --radius: 4px;
    --radius-lg: 12px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1280px;
    --header-height: 121px;        /* desktop: 80 + 40 */
    --header-height-mobile: 125px; /* mobile */
    /* Шрифты */
    --font-main: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Onest', Georgia, serif; /* если хочешь везде Onest */
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* === ANNOUNCEMENT === */
.announcement {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: 0.3px;
}

/* === HEADER === */
.header {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-line);
    z-index: 100;
    transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.05); }

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 40px;
}

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo__main { font-weight: 800; font-size: 20px; letter-spacing: 2px; }
.logo__sub { font-size: 10px; letter-spacing: 4px; color: var(--gray-text); margin-top: 4px; }
.logo--light .logo__main { color: var(--white); }
.logo--light .logo__sub { color: rgba(255,255,255,0.6); }

.nav__list { display: flex; gap: 36px; }
.nav__list a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}
.nav__list a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 1px;
    background: var(--black);
    transition: width var(--transition);
}
.nav__list a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 12px; }

.icon-btn {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--black);
    position: relative;
    transition: background var(--transition);
}
.icon-btn:hover { background: var(--gray-bg); }

.cart-count {
    position: absolute;
    top: 4px; right: 4px;
    background: var(--yellow);
    color: var(--black);
    font-size: 10px; font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}
.burger span { height: 2px; background: var(--black); transition: var(--transition); }

/* === HERO === */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gray-bg);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(247,246,242,0.85) 0%, rgba(247,246,242,0.5) 100%),
        url('https://images.unsplash.com/photo-1584917865442-de89df76afd3?w=1600') center/cover;
    z-index: 0;
}

.hero__inner { position: relative; z-index: 1; padding: 80px 24px; }
.hero__content { max-width: 640px; }

.hero__label {
    display: inline-block;
    padding: 8px 16px;
    background: var(--yellow);
    color: var(--black);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.hero__title em { font-style: italic; font-weight: 500; color: var(--sage); }

.hero__text {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero__stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 32px; font-weight: 700; line-height: 1; }
.stat span { font-size: 13px; color: var(--gray-text); margin-top: 4px; }

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}
@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn--primary { background: var(--black); color: var(--white); }
.btn--primary:hover { background: var(--yellow); color: var(--black); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--black); border-color: var(--black); }
.btn--ghost:hover { background: var(--black); color: var(--white); }
.btn--outline { background: transparent; color: var(--black); border-color: var(--gray-line); }
.btn--outline:hover { border-color: var(--black); }
.btn--small { padding: 10px 20px; font-size: 12px; }

/* === ADVANTAGES === */
.advantages { padding: 80px 0; border-bottom: 1px solid var(--gray-line); }
.advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.advantage { text-align: center; padding: 20px; transition: var(--transition); }
.advantage:hover { transform: translateY(-5px); }
.advantage svg { color: var(--sage); margin-bottom: 16px; }
.advantage h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.advantage p { font-size: 14px; color: var(--gray-text); }

/* === SECTIONS === */
.section { padding: 100px 0; }
.section--gray { background: var(--gray-bg); }

.section__head { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 16px;
}
.section__title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
}
.section__text { font-size: 16px; color: var(--gray-text); }
.section__foot { text-align: center; margin-top: 60px; }

/* === FILTERS === */
.filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.filter-btn {
    padding: 10px 22px;
    border: 1px solid var(--gray-line);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--gray-text);
    transition: var(--transition);
}
.filter-btn:hover { border-color: var(--black); color: var(--black); }
.filter-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* === PRODUCTS === */
.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.product {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-line);
}
.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: transparent;
}
.product.hidden { display: none; }

.product__image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--gray-bg);
}
.product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.product:hover .product__image img { transform: scale(1.08); }

.product__badge {
    position: absolute;
    top: 16px; left: 16px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: var(--radius);
    z-index: 2;
}
.product__badge--new { background: var(--yellow); color: var(--black); }
.product__badge--sale { background: var(--black); color: var(--white); }
.product__badge--hit { background: var(--blue); color: var(--black); }

.product__fav {
    position: absolute;
    top: 16px; right: 16px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: var(--transition);
    z-index: 2;
}
.product__fav:hover { background: var(--yellow); transform: scale(1.1); }
.product__fav.active { color: #e63946; }
.product__fav.active svg { fill: #e63946; }

.product__info { padding: 24px; }
.product__title { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.product__desc { font-size: 13px; color: var(--gray-text); margin-bottom: 20px; }

.product__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.product__price {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.product__price .old {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-text);
    text-decoration: line-through;
}

/* === ABOUT === */
.about { padding: 120px 0; background: var(--gray-bg); }
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about__img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__img-label {
    position: absolute;
    bottom: 24px; left: 24px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
}
.about__content .section__label { margin-bottom: 16px; }
.about__content .section__title { text-align: left; margin-bottom: 24px; }
.about__content p {
    color: var(--gray-text);
    margin-bottom: 16px;
    font-size: 16px;
}
.about__list { margin: 32px 0; }
.about__list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-line);
    font-size: 15px;
    font-weight: 500;
}
.about__list li:last-child { border-bottom: none; }

/* === REVIEWS === */
.reviews { padding: 100px 0; background: var(--black); color: var(--white); }
.reviews .section__title { color: var(--white); }
.reviews .section__label { color: var(--yellow); }

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.review {
    padding: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.review:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}
.review__stars {
    color: var(--yellow);
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}
.review p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    font-style: italic;
}
.review__author { display: flex; flex-direction: column; }
.review__author strong { font-size: 15px; font-weight: 600; }
.review__author span { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* === CTA === */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--yellow) 0%, #E5D93A 100%);
}
.cta__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.cta h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.cta h2 em { font-style: italic; font-weight: 600; }
.cta p {
    font-size: 16px;
    margin-bottom: 32px;
    color: rgba(0,0,0,0.7);
}
.cta__form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto 16px;
}
.cta__form input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid var(--black);
    border-radius: var(--radius);
    background: var(--white);
    font-family: inherit;
    font-size: 14px;
    outline: none;
}
.cta__form input:focus { box-shadow: 0 0 0 3px rgba(0,0,0,0.1); }
.cta small {
    font-size: 12px;
    color: rgba(0,0,0,0.6);
}

/* === DELIVERY === */
.delivery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.delivery__card {
    padding: 36px 32px;
    background: var(--white);
    border: 1px solid var(--gray-line);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.delivery__card:hover {
    border-color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.delivery__icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--black);
}
.delivery__card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.delivery__card p { font-size: 14px; color: var(--gray-text); }

/* === FAQ === */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-line);
}
.faq__item summary {
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: color var(--transition);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    transition: transform var(--transition);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--sage); }
.faq__item p {
    margin-top: 16px;
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.7;
}

/* === CONTACTS === */
.contacts { padding: 100px 0; background: var(--gray-bg); }
.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-line);
}
.contact-item svg { color: var(--sage); flex-shrink: 0; margin-top: 4px; }
.contact-item span {
    display: block;
    font-size: 12px;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.contact-item a, .contact-item p {
    font-size: 17px;
    font-weight: 500;
    color: var(--black);
}
.contact-item a:hover { color: var(--sage); }

.contacts__socials {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}
.contacts__socials a {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.contacts__socials a:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
}

.contacts__form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
}
.contacts__form h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--gray-line);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border var(--transition);
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--black); }
.contacts__form button { width: 100%; margin-bottom: 12px; }
.contacts__form small {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--gray-text);
}

/* === FOOTER === */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer__about {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}
.footer__col h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer__col ul li { margin-bottom: 12px; }
.footer__col a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer__col a:hover { color: var(--yellow); }
.footer__col li { font-size: 14px; color: rgba(255,255,255,0.6); }

.footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer__socials a {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.footer__socials a:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }

/* === SCROLL TOP === */
.scroll-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-5px);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate {
    animation: fadeInUp 0.8s ease forwards;
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === MOBILE MENU === */
.mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: var(--white);
    z-index: 1000;
    padding: 100px 40px 40px;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu ul a {
    font-size: 22px;
    font-weight: 500;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-line);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .advantages__grid { grid-template-columns: repeat(2, 1fr); }
    .products { grid-template-columns: repeat(2, 1fr); }
    .delivery__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 992px) {
    .nav { display: none; }
    .burger { display: flex; }
    .burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero { min-height: 80vh; }
    .hero__inner { padding: 60px 24px; }
    .hero__stats { gap: 32px; }
    .stat strong { font-size: 26px; }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about__img { max-width: 500px; margin: 0 auto; }

    .reviews__grid { grid-template-columns: 1fr; }

    .contacts__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section { padding: 70px 0; }
    .about { padding: 80px 0; }
    .reviews { padding: 70px 0; }
    .cta { padding: 70px 0; }
    .contacts { padding: 70px 0; }
}

@media (max-width: 768px) {
    .container { padding: 0 18px; }

    .header__inner { height: 70px; gap: 16px; }
    .logo__main { font-size: 16px; letter-spacing: 1.5px; }
    .logo__sub { font-size: 9px; }

    .icon-btn { width: 38px; height: 38px; }
    .icon-btn svg { width: 20px; height: 20px; }

    .announcement { font-size: 12px; padding: 8px 0; }
    .announcement p { padding: 0 12px; }

    .hero { min-height: 70vh; }
    .hero__title { font-size: 42px; }
    .hero__text { font-size: 16px; margin-bottom: 30px; }
    .hero__buttons { flex-direction: column; width: 100%; gap: 10px; }
    .hero__buttons .btn { width: 100%; }
    .hero__stats { gap: 24px; }
    .stat strong { font-size: 22px; }
    .stat span { font-size: 12px; }

    .advantages { padding: 50px 0; }
    .advantages__grid { gap: 24px; }

    .section__head { margin-bottom: 40px; }

    .products { grid-template-columns: 1fr; gap: 24px; }
    .delivery__grid { grid-template-columns: 1fr; }

    .filters { gap: 8px; margin-bottom: 32px; }
    .filter-btn { padding: 8px 16px; font-size: 12px; }

    .cta__form {
        flex-direction: column;
        gap: 10px;
    }
    .cta__form .btn { width: 100%; }

    .faq__item { padding: 20px 0; }
    .faq__item summary { font-size: 15px; }

    .contacts__form { padding: 28px 20px; }
    .contact-item a,
    .contact-item p { font-size: 15px; }

    .footer { padding: 60px 0 24px; }
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }
    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    .footer__links { justify-content: center; }

    .scroll-top {
        width: 42px; height: 42px;
        bottom: 20px; right: 20px;
    }
}

@media (max-width: 480px) {
    .hero__title { font-size: 34px; letter-spacing: -0.5px; }
    .hero__label { font-size: 10px; padding: 6px 12px; }

    .section__title { font-size: 28px; }
    .cta h2 { font-size: 26px; }

    .product__info { padding: 18px; }
    .product__title { font-size: 17px; }
    .product__price { font-size: 17px; }

    .btn { padding: 14px 24px; font-size: 13px; }
    .btn--small { padding: 9px 16px; font-size: 11px; }

    .review { padding: 26px 22px; }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 3px;
}

::selection {
    background: var(--yellow);
    color: var(--black);
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--gray-bg); }
::-webkit-scrollbar-thumb {
    background: var(--sage);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: var(--black); }

/* =========================================
   HERO CINEMATIC SLIDER
   ========================================= */
.hero-cinematic {
    position: relative;
    width: 100%;
    background: #0a0a0a;
    overflow: hidden;
}

.heroCinematic {
    height: calc(100vh - var(--header-height));      /* fallback */
    height: calc(100dvh - var(--header-height));
    min-height: 560px;
    max-height: 900px;
}


.hero-cine__slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

/* --- Media (фото с Ken Burns) --- */
.hero-cine__media {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-cine__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    transition: transform 8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.swiper-slide-active .hero-cine__media img {
    transform: scale(1);
}

/* --- Dark gradient overlay --- */
.hero-cine__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
            linear-gradient(180deg,
            rgba(0,0,0,0.55) 0%,
            rgba(0,0,0,0.15) 30%,
            rgba(0,0,0,0.4) 65%,
            rgba(0,0,0,0.85) 100%);
    pointer-events: none;
}

/* --- Content area --- */
.hero-cine__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-bottom: 180px;
}

.hero-cine__content {
    max-width: 720px;
    color: var(--white);
}

.hero-cine__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

.hero-cine__line {
    display: block;
    width: 48px;
    height: 1px;
    background: var(--yellow);
}

.hero-cine__title {
    font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
    font-size: clamp(44px, 6.5vw, 96px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
    color: var(--white);
}

.hero-cine__title em {
    font-style: normal;        /* было: italic */
    font-weight: 500;          /* было: 400 */
    color: var(--yellow);
}

.hero-cine__text {
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 540px;
    font-weight: 300;
}

/* --- CTA button --- */
.hero-cine__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 36px;
    background: var(--white);
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.hero-cine__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--yellow);
    transform: translateX(-101%);
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 0;
}

.hero-cine__cta:hover::before {
    transform: translateX(0);
}

.hero-cine__cta span,
.hero-cine__cta svg {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.hero-cine__cta:hover svg {
    transform: translateX(6px);
}

/* --- Arrows --- */
.hero-cine__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-cinematic:hover .hero-cine__arrow {
    opacity: 1;
}

.hero-cine__arrow:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.08);
}

.hero-cine__arrow--prev { left: 32px; }
.hero-cine__arrow--next { right: 32px; }

.hero-cine__arrow.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* --- Bottom UI --- */
.hero-cine__ui {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
}

.hero-cine__ui-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 40px;
    pointer-events: auto;
}

/* Next preview */
.hero-cine__next {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--white);
}

.hero-cine__next-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.hero-cine__next-title {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.3px;
    transition: color 0.4s ease;
}

/* Pagination dots */
.hero-cine__pagination {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-cine__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 1;
    margin: 0 !important;
    transition: all 0.4s ease;
    cursor: pointer;
}

.hero-cine__pagination .swiper-pagination-bullet-active {
    width: 36px;
    border-radius: 999px;
    background: var(--white);
}

/* Counter */
.hero-cine__counter {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--white);
    font-feature-settings: 'tnum';
}

.hero-cine__counter-current {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-cine__counter-divider {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.hero-cine__counter-total {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

/* Progress bar */
.hero-cine__progress {
    position: relative;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-cine__progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--yellow);
    transition: width 0.1s linear;
}

/* Scroll indicator */
.hero-cine__scroll {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    pointer-events: none;
}

.hero-cine__scroll-line {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-cine__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60px;
    width: 30px;
    height: 100%;
    background: var(--yellow);
    animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { left: -30px; }
    100% { left: 100%; }
}

/* Disable swiper default styles */
.heroCinematic .swiper-pagination-lock {
    display: flex;
}


/* =========================================
   RESPONSIVE
   ========================================= */

/* Большие экраны (1440+) */
@media (min-width: 1441px) {
    .hero-cine__inner {
        padding-bottom: 200px;
    }
}

/* Ноутбуки (1200-) */
@media (max-width: 1200px) {
    .hero-cine__arrow--prev { left: 20px; }
    .hero-cine__arrow--next { right: 20px; }

    .hero-cine__scroll {
        right: 24px;
    }

    .hero-cine__scroll-line {
        width: 40px;
    }
}

/* Планшеты (1024-) */
@media (max-width: 1024px) {
    .heroCinematic {
        height: calc(90dvh - var(--header-height));
        min-height: 540px;
    }

    .hero-cine__inner {
        padding-bottom: 160px;
    }

    .hero-cine__title {
        font-size: clamp(40px, 7vw, 72px);
    }

    .hero-cine__arrow {
        width: 48px;
        height: 48px;
    }

    .hero-cine__scroll {
        display: none;
    }
}

/* Малые планшеты (900-) */
@media (max-width: 900px) {
    .heroCinematic {
        height: calc(88dvh - var(--header-height));
        min-height: 520px;
    }

    .hero-cine__inner {
        padding-bottom: 150px;
    }

    .hero-cine__eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
        gap: 12px;
        margin-bottom: 20px;
    }

    .hero-cine__line {
        width: 32px;
    }

    .hero-cine__title {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .hero-cine__text {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero-cine__cta {
        padding: 16px 30px;
        font-size: 13px;
    }

    .hero-cine__counter-current {
        font-size: 24px;
    }
}

/* Мобильные (768-) */
@media (max-width: 768px) {
    .heroCinematic {
        height: calc(100dvh - var(--header-height-mobile));
        min-height: 500px;
        max-height: 760px;
    }

    .hero-cine__overlay {
        background:
                linear-gradient(180deg,
                rgba(0,0,0,0.4) 0%,
                rgba(0,0,0,0.2) 25%,
                rgba(0,0,0,0.5) 60%,
                rgba(0,0,0,0.92) 100%);
    }

    .hero-cine__inner {
        padding-bottom: 130px;
    }

    .hero-cine__content {
        max-width: 100%;
    }

    .hero-cine__title {
        font-size: 38px;
        line-height: 1.1;
        letter-spacing: -0.5px;
    }

    .hero-cine__text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-cine__cta {
        padding: 15px 26px;
        font-size: 12px;
        letter-spacing: 1.2px;
    }

    .hero-cine__cta svg {
        width: 16px;
        height: 16px;
    }

    /* Скрываем стрелки на мобильных — остаётся только свайп */
    .hero-cine__arrow {
        display: none;
    }

    /* Bottom UI — компактный */
    .hero-cine__ui-inner {
        padding-bottom: 24px;
        gap: 16px;
    }

    .hero-cine__next {
        display: none;
    }

    .hero-cine__counter-current {
        font-size: 20px;
    }

    .hero-cine__counter-total,
    .hero-cine__counter-divider {
        font-size: 13px;
    }

    .hero-cine__pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }

    .hero-cine__pagination .swiper-pagination-bullet-active {
        width: 28px;
    }
}

/* Малые мобильные (480-) */
@media (max-width: 480px) {
    .heroCinematic {
        height: calc(100dvh - var(--header-height-mobile));
        min-height: 460px;
    }
    .hero-cine__inner {
        padding-bottom: 110px;
    }

    .hero-cine__eyebrow {
        font-size: 10px;
        margin-bottom: 16px;
    }

    .hero-cine__title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero-cine__text {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .hero-cine__cta {
        padding: 14px 22px;
        gap: 10px;
    }

    .hero-cine__ui-inner {
        padding-bottom: 18px;
    }
}

/* Очень маленькие экраны (360-) */
@media (max-width: 360px) {
    .hero-cine__title {
        font-size: 28px;
    }
}

/* Поддержка safe-area для iPhone с чёлкой */
@supports (padding: env(safe-area-inset-bottom)) {
    .hero-cine__ui-inner {
        padding-bottom: calc(40px + env(safe-area-inset-bottom));
    }

    @media (max-width: 768px) {
        .hero-cine__ui-inner {
            padding-bottom: calc(24px + env(safe-area-inset-bottom));
        }
    }
}

/* Уменьшенная анимация для пользователей с prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .hero-cine__media img {
        transition: none;
        transform: scale(1);
    }

    .hero-cine__scroll-line::after {
        animation: none;
    }

    .hero-cine__cta::before,
    .hero-cine__cta svg,
    .hero-cine__arrow {
        transition: none;
    }
}

/* Landscape mode на мобильных (горизонтальная ориентация) */
@media (max-height: 500px) and (orientation: landscape) {
    .heroCinematic {
        height: calc(100dvh - var(--header-height-mobile));
        min-height: 360px;
    }

    .hero-cine__inner {
        padding-bottom: 100px;
    }

    .hero-cine__title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .hero-cine__text {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .hero-cine__eyebrow {
        margin-bottom: 12px;
    }

    .hero-cine__ui-inner {
        padding-bottom: 16px;
    }
}


/* =========================================
   BAG UNIVERSE (категории сумок)
   ========================================= */
.bag-universe {
    padding: 100px 0;
    background: var(--white);
}

.bag-universe .section__title em {
    font-style: italic;
    font-weight: 500;
    color: var(--sage);
}

.bag-universe__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    grid-template-areas:
        "hero small1 small2"
        "hero small3 small4";
    min-height: 680px;
}

.bag-cat {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--gray-bg);
    display: block;
    color: var(--white);
    transition: var(--transition);
}

.bag-cat--hero { grid-area: hero; }
.bag-universe__grid .bag-cat:nth-child(2) { grid-area: small1; }
.bag-universe__grid .bag-cat:nth-child(3) { grid-area: small2; }
.bag-universe__grid .bag-cat:nth-child(4) { grid-area: small3; }
.bag-universe__grid .bag-cat:nth-child(5) { grid-area: small4; }

.bag-cat:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.bag-cat__media {
    position: absolute;
    inset: 0;
}

.bag-cat__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.bag-cat:hover .bag-cat__media img {
    transform: scale(1.08);
}

.bag-cat__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.8) 100%);
    transition: var(--transition);
}

.bag-cat:hover .bag-cat__media::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.9) 100%);
}

.bag-cat__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px;
}

.bag-cat__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    margin-bottom: 14px;
}

.bag-cat__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.bag-cat--hero .bag-cat__title {
    font-size: 44px;
}

.bag-cat__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    max-width: 340px;
}

.bag-cat__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    transition: var(--transition);
}

.bag-cat__link svg {
    transition: transform var(--transition);
}

.bag-cat:hover .bag-cat__link {
    color: var(--yellow);
}

.bag-cat:hover .bag-cat__link svg {
    transform: translateX(6px);
}


/* Trust Strip */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    list-style: none;
    padding: 36px 40px;
    margin-top: 60px;
    background: var(--gray-bg);
    border-radius: var(--radius-lg);
}

.trust-strip li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-strip svg {
    color: var(--sage);
    flex-shrink: 0;
}

.trust-strip strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2px;
}

.trust-strip span {
    font-size: 12px;
    color: var(--gray-text);
}


/* =========================================
   RESPONSIVE
   ========================================= */

/* Планшеты */
@media (max-width: 1100px) {
    .bag-universe__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "hero hero"
            "small1 small2"
            "small3 small4";
        min-height: auto;
    }

    .bag-cat--hero { 
        min-height: 440px; 
    }
    
    .bag-cat:not(.bag-cat--hero) { 
        min-height: 300px; 
    }

    .bag-cat--hero .bag-cat__title {
        font-size: 38px;
    }

    .trust-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 28px;
    }
}

@media (max-width: 992px) {
    .heroSwiper {
        height: 78vh;
        min-height: 540px;
    }

    .hero-slide__inner {
        padding: 40px 24px 140px;
    }

    .hero-nav {
        width: 44px !important;
        height: 44px !important;
        margin-top: -22px !important;
    }

    .hero-nav::after {
        font-size: 16px !important;
    }

    .swiper-button-prev.hero-nav { left: 16px; }
    .swiper-button-next.hero-nav { right: 16px; }

    .hero-pagination {
        bottom: 100px !important;
    }

    .hero-slider__stats {
        gap: 28px;
    }

    .hero-slider__stats .stat strong {
        font-size: 20px;
    }

    .bag-universe {
        padding: 70px 0;
    }
}

/* Мобильные */
@media (max-width: 768px) {
    .heroSwiper {
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .hero-slide {
        min-height: 92vh;
    }

    /* На мобильных — градиент снизу, чтобы текст читался */
    .hero-slide__media::after {
        background: linear-gradient(
            180deg,
            rgba(247,246,242,0.2) 0%,
            rgba(247,246,242,0.6) 40%,
            rgba(247,246,242,0.92) 75%,
            rgba(247,246,242,1) 100%
        );
    }

    .hero-slide__inner {
        padding: 40px 18px 160px;
        display: flex;
        align-items: flex-end;
        min-height: 92vh;
    }

    .hero-slide__content {
        max-width: 100%;
    }

    .hero-slide__label {
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .hero-slide__title {
        font-size: 36px;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .hero-slide__text {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-slide__buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-slide__buttons .btn {
        width: 100%;
    }

    /* На мобильных скрываем стрелки — остаётся только свайп */
    .hero-nav {
        display: none !important;
    }

    .hero-pagination {
        bottom: 90px !important;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 28px;
    }

    /* Статистика — внизу в ряд */
    .hero-slider__stats {
        position: absolute;
        bottom: 24px;
        gap: 20px;
    }

    .hero-slider__stats .stat strong {
        font-size: 17px;
    }

    .hero-slider__stats .stat span {
        font-size: 10px;
    }

    /* Bag Universe */
    .bag-universe {
        padding: 56px 0;
    }

    .bag-universe__grid {
        grid-template-columns: 1fr;
        grid-template-areas: none;
        gap: 14px;
        min-height: auto;
    }

    .bag-cat,
    .bag-cat--hero,
    .bag-universe__grid .bag-cat:nth-child(2),
    .bag-universe__grid .bag-cat:nth-child(3),
    .bag-universe__grid .bag-cat:nth-child(4),
    .bag-universe__grid .bag-cat:nth-child(5) {
        grid-area: auto;
        min-height: 280px;
    }

    .bag-cat--hero {
        min-height: 380px;
    }

    .bag-cat__body {
        padding: 22px;
    }

    .bag-cat__title {
        font-size: 24px;
    }

    .bag-cat--hero .bag-cat__title {
        font-size: 32px;
    }

    .bag-cat__text {
        font-size: 13px;
        margin-bottom: 12px;
    }

    /* Trust strip */
    .trust-strip {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
        margin-top: 40px;
    }

    .trust-strip li {
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-line);
    }

    .trust-strip li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .trust-strip li:first-child {
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .hero-slide__title {
        font-size: 30px;
    }

    .bag-cat__title {
        font-size: 22px;
    }

    .bag-cat--hero .bag-cat__title {
        font-size: 28px;
    }
}

/* =========================================
   NEW ARRIVALS — Marquee Ticker + Cards
   ========================================= */
.new-arrivals {
    padding: 0 0 100px;
    background: var(--white);
    overflow: hidden;
}

/* --- Marquee Ticker --- */
.new-marquee {
    background: var(--black);
    color: var(--white);
    overflow: hidden;
    padding: 28px 0;
    margin-bottom: 80px;
    border-top: 1px solid var(--gray-line);
    border-bottom: 1px solid var(--gray-line);
}

.new-marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
    will-change: transform;
}

.new-arrivals:hover .new-marquee__track {
    animation-play-state: paused;
}

.new-marquee__group {
    display: flex;
    align-items: center;
    gap: 48px;
    padding-right: 48px;
    flex-shrink: 0;
}

.new-marquee__item {
    font-family: var(--font-main);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

.new-marquee__item--accent {
    color: var(--yellow);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -1px;
}

.new-marquee__dot {
    font-size: clamp(20px, 2vw, 28px);
    color: var(--yellow);
    flex-shrink: 0;
    line-height: 1;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Header --- */
.new-arrivals__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.new-arrivals__head .section__title {
    text-align: left;
    margin-bottom: 0;
}

.new-arrivals__head .section__label {
    margin-bottom: 12px;
}

.new-arrivals__subtitle {
    font-size: 16px;
    color: var(--gray-text);
    max-width: 360px;
    line-height: 1.5;
}

/* --- Cards Grid --- */
.new-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    list-style: none;
    margin-bottom: 60px;
}

.new-card {
    list-style: none;
}

.new-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--gray-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    color: var(--black);
}

.new-card__link:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
}

.new-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--gray-bg);
}

.new-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.new-card__link:hover .new-card__media img {
    transform: scale(1.06);
}

.new-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 10px;
    background: var(--yellow);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius);
    z-index: 2;
}

.new-card__body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.new-card__type {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 8px;
}

.new-card__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.new-card__desc {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.5;
    margin-bottom: 18px;
    flex-grow: 1;
}

.new-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-line);
}

.new-card__price {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.new-card__arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: var(--transition);
}

.new-card__link:hover .new-card__arrow {
    background: var(--black);
    color: var(--white);
    transform: translateX(4px);
}

/* --- CTA --- */
.new-arrivals__cta {
    text-align: center;
}

.new-arrivals__btn {
    padding: 18px 44px;
    font-size: 14px;
    margin-bottom: 16px;
}

.new-arrivals__btn svg {
    transition: transform var(--transition);
}

.new-arrivals__btn:hover svg {
    transform: translateX(6px);
}

.new-arrivals__hint {
    font-size: 13px;
    color: var(--gray-text);
    letter-spacing: 0.3px;
}

/* =========================================
   RESPONSIVE
   ========================================= */

/* Планшеты (1100-) */
@media (max-width: 1100px) {
    .new-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .new-marquee {
        padding: 22px 0;
        margin-bottom: 60px;
    }
}

/* Планшеты (992-) */
@media (max-width: 992px) {
    .new-arrivals {
        padding-bottom: 70px;
    }

    .new-arrivals__head {
        margin-bottom: 36px;
    }
}

/* Мобильные (768-) */
@media (max-width: 768px) {
    .new-arrivals {
        padding-bottom: 56px;
    }

    .new-marquee {
        padding: 18px 0;
        margin-bottom: 44px;
    }

    .new-marquee__track {
        animation-duration: 25s;
    }

    .new-marquee__group {
        gap: 28px;
        padding-right: 28px;
    }

    .new-marquee__item {
        font-size: 36px;
        letter-spacing: -0.8px;
    }

    .new-marquee__dot {
        font-size: 16px;
    }

    .new-arrivals__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 32px;
    }

    .new-arrivals__subtitle {
        font-size: 14px;
        max-width: 100%;
    }

    .new-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .new-card__link {
        flex-direction: row;
    }

    .new-card__media {
        aspect-ratio: 1 / 1;
        width: 140px;
        flex-shrink: 0;
    }

    .new-card__body {
        padding: 16px 18px;
        justify-content: space-between;
    }

    .new-card__title {
        font-size: 18px;
    }

    .new-card__desc {
        display: none;
    }

    .new-card__bottom {
        padding-top: 12px;
    }

    .new-card__price {
        font-size: 16px;
    }

    .new-card__arrow {
        width: 32px;
        height: 32px;
    }

    .new-card__badge {
        top: 10px;
        left: 10px;
        padding: 4px 8px;
        font-size: 9px;
    }

    .new-arrivals__btn {
        width: 100%;
        padding: 16px 24px;
    }
}

/* Малые мобильные (480-) */
@media (max-width: 480px) {
    .new-marquee__item {
        font-size: 30px;
    }

    .new-card__media {
        width: 120px;
    }

    .new-card__title {
        font-size: 16px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .new-marquee__track {
        animation: none;
    }
}
/* =========================================
   PRODUCT DETAIL PAGE
   Вставляется после style.css
   Использует переменные из style.css
   ========================================= */

/* =========================================
   BREADCRUMBS
   ========================================= */

.pd-breadcrumbs {
    border-bottom: 1px solid var(--gray-line);
    background: var(--white);
}

.pd-breadcrumbs__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    padding: 14px 0;
    font-size: 13px;
    color: var(--gray-text);
}

.pd-breadcrumbs__list li {
    display: flex;
    align-items: center;
}

.pd-breadcrumbs__list li:not(:last-child)::after {
    content: "/";
    margin: 0 8px;
    color: var(--gray-line);
    font-size: 12px;
}

.pd-breadcrumbs__list a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color var(--transition);
}

.pd-breadcrumbs__list a:hover {
    color: var(--black);
}

.pd-breadcrumbs__list li[aria-current="page"] {
    color: var(--black);
    font-weight: 500;
}

/* =========================================
   PRODUCT DETAIL — GRID
   ========================================= */

.pd-detail {
    padding: 48px 0 80px;
}

.pd-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 60px;
    align-items: start;
}

/* =========================================
   GALLERY — DESKTOP
   ========================================= */

.pd-gallery__desktop {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 14px;
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.pd-gallery__mobile {
    display: none;
}

/* Thumbs */
.pd-gallery__thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-thumb {
    width: 80px;
    aspect-ratio: 3 / 4;
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-bg);
    cursor: pointer;
    padding: 0;
    transition: border-color var(--transition);
    flex-shrink: 0;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pd-thumb:hover img {
    transform: scale(1.06);
}

.pd-thumb:hover {
    border-color: rgba(0, 0, 0, 0.3);
}

.pd-thumb.active {
    border-color: var(--black);
}

/* Main image */
.pd-gallery__main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-bg);
}

.pd-gallery__zoom {
    display: block;
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
}

.pd-gallery__zoom img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.pd-gallery__zoom:hover img {
    transform: scale(1.04);
}

.pd-gallery__hint {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
    pointer-events: none;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity var(--transition), transform var(--transition);
}

.pd-gallery__zoom:hover .pd-gallery__hint {
    opacity: 1;
    transform: translateY(0);
}

/* Скрытые ссылки галереи */
.pd-gallery__hidden {
    display: none;
}

/* =========================================
   GALLERY — MOBILE SWIPER
   ========================================= */

.pd-gallery__mobile {
    display: none;
    background: var(--gray-bg);
}

.pd-gallery__mobile .swiper-slide img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.pd-mobile-pagination {
    bottom: 14px !important;
}

.pd-mobile-pagination.swiper-pagination-bullets {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.pd-mobile-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(0, 0, 0, 0.25);
    opacity: 1;
    margin: 0 !important;
    transition: background var(--transition), width var(--transition);
    border-radius: 999px;
}

.pd-mobile-pagination .swiper-pagination-bullet-active {
    width: 22px;
    background: var(--black);
}

/* =========================================
   PRODUCT INFO
   ========================================= */

.pd-info {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    max-height: calc(100vh - var(--header-height) - 48px);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-right: 2px;
    padding-bottom: 24px;
}

.pd-info::-webkit-scrollbar {
    display: none;
}

/* Top row */
.pd-info__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.pd-info__brand {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage);
}

.pd-info__fav {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--gray-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
    color: var(--black);
    transition: background var(--transition),
    border-color var(--transition),
    color var(--transition);
    flex-shrink: 0;
}

.pd-info__fav:hover {
    border-color: var(--black);
    background: var(--gray-bg);
}

.pd-info__fav.active {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.pd-info__fav.active svg {
    fill: var(--white);
}

/* Title */
.pd-info__title {
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.8px;
    margin: 0 0 16px;
    color: var(--black);
}

/* Rating */
.pd-info__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.pd-info__stars {
    color: var(--yellow);
    letter-spacing: 2px;
    font-size: 15px;
    line-height: 1;
}

.pd-info__reviews {
    font-size: 13px;
    color: var(--gray-text);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: color var(--transition);
}

.pd-info__reviews:hover {
    color: var(--black);
}

/* Price */
.pd-info__price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.pd-info__price-current {
    font-size: clamp(26px, 2.5vw, 32px);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--black);
    line-height: 1;
}

.pd-info__price-old {
    font-size: 16px;
    color: var(--gray-text);
    text-decoration: line-through;
    font-weight: 400;
}

.pd-info__discount {
    padding: 3px 8px;
    background: var(--yellow);
    color: var(--black);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Stock */
.pd-info__stock {
    font-size: 13px;
    color: #1f7a38;
    font-weight: 500;
    margin: 0 0 24px;
}

/* =========================================
   QUICK FACTS
   ========================================= */

.pd-quick {
    list-style: none;
    padding: 16px 20px;
    background: var(--gray-bg);
    border-radius: var(--radius-lg);
    margin: 0 0 24px;
}

.pd-quick li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-line);
}

.pd-quick li:first-child {
    padding-top: 0;
}

.pd-quick li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.pd-quick strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    white-space: nowrap;
}

.pd-quick span {
    font-size: 13px;
    color: var(--gray-text);
    text-align: right;
}

/* =========================================
   COLOR SELECTOR
   ========================================= */

.pd-option {
    margin-bottom: 24px;
}

.pd-option__head {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.pd-option__head span {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.pd-option__head strong {
    font-size: 13px;
    color: var(--gray-text);
    font-weight: 400;
}

.pd-colors {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-left: 2px;
}

.pd-color {
    width: 40px;
    height: 40px;
    border: 2px solid transparent;
    border-radius: 50%;
    padding: 3px;
    cursor: pointer;
    background: transparent;
    transition: border-color var(--transition), transform var(--transition);
    position: relative;
}

.pd-color::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--c, #ccc);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.pd-color:hover {
    border-color: rgba(0, 0, 0, 0.35);
    transform: scale(1.08);
}

.pd-color.active {
    border-color: var(--black);
    transform: scale(1.1);
}

/* =========================================
   CTA BUTTONS
   ========================================= */

.pd-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.pd-actions .btn {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* =========================================
   TRUST BLOCK
   ========================================= */

.pd-trust {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    border-top: 1px solid var(--gray-line);
}

.pd-trust li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-line);
}

.pd-trust li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--sage);
}

.pd-trust strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2px;
}

.pd-trust span {
    font-size: 12px;
    color: var(--gray-text);
    line-height: 1.5;
}

/* =========================================
   ACCORDIONS
   ========================================= */

.pd-accordions {
    border-top: 1px solid var(--gray-line);
}

.pd-accordion {
    border-bottom: 1px solid var(--gray-line);
}

.pd-accordion summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
    transition: color var(--transition);
}

.pd-accordion summary::-webkit-details-marker {
    display: none;
}

.pd-accordion summary::after {
    content: "+";
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    color: var(--gray-text);
    transition: transform var(--transition),
    color var(--transition);
}

.pd-accordion[open] > summary::after {
    transform: rotate(45deg);
    color: var(--black);
}

.pd-accordion summary:hover {
    color: var(--sage);
}

.pd-accordion__body {
    padding: 0 0 20px;
}

.pd-accordion__body p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.75;
    margin: 0 0 12px;
}

.pd-accordion__body p:last-child {
    margin-bottom: 0;
}

/* Specs table */
.pd-specs {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
}

.pd-specs > div {
    display: grid;
    grid-template-columns: minmax(140px, 0.9fr) minmax(0, 1.1fr);
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-line);
}

.pd-specs > div:last-child {
    border-bottom: none;
}

.pd-specs dt {
    font-size: 13px;
    color: var(--gray-text);
    font-weight: 400;
}

.pd-specs dd {
    font-size: 13px;
    color: var(--black);
    font-weight: 500;
    margin: 0;
}

/* List with checkmarks */
.pd-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: grid;
    gap: 8px;
}

.pd-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.55;
}

.pd-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--sage);
    font-weight: 700;
    font-size: 13px;
}

/* =========================================
   MOBILE STICKY BUY BAR
   ========================================= */

.pd-buybar {
    display: none;
}

/* =========================================
   ANIMATIONS
   ========================================= */

.pd-info__top,
.pd-info__title,
.pd-info__rating,
.pd-info__price,
.pd-info__stock,
.pd-quick,
.pd-option,
.pd-actions,
.pd-trust,
.pd-accordions {
    animation: fadeInUp 0.4s ease both;
}

.pd-info__top      { animation-delay: 0.05s; }
.pd-info__title    { animation-delay: 0.10s; }
.pd-info__rating   { animation-delay: 0.14s; }
.pd-info__price    { animation-delay: 0.18s; }
.pd-info__stock    { animation-delay: 0.21s; }
.pd-quick          { animation-delay: 0.24s; }
.pd-option         { animation-delay: 0.27s; }
.pd-actions        { animation-delay: 0.30s; }
.pd-trust          { animation-delay: 0.33s; }
.pd-accordions     { animation-delay: 0.36s; }

/* =========================================
   RESPONSIVE — 1100px
   ========================================= */

@media (max-width: 1100px) {
    .pd-grid {
        gap: 40px;
    }

    .pd-gallery__desktop {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 10px;
    }

    .pd-thumb {
        width: 70px;
    }
}

/* =========================================
   RESPONSIVE — 900px (tablet / mobile)
   ========================================= */

@media (max-width: 900px) {

    /* Grid → single column */
    .pd-grid {
        display: block;
    }

    .pd-detail {
        padding: 0 0 40px;
    }

    /* Скрываем desktop галерею */
    .pd-gallery__desktop {
        display: none;
    }

    /* Показываем mobile swiper */
    .pd-gallery__mobile {
        display: block;
    }

    /* Info */
    .pd-info {
        position: static;
        max-height: none;
        overflow-y: visible;
        padding: 24px 0 100px;
    }

    .pd-info__title {
        font-size: 26px;
    }

    .pd-info__price-current {
        font-size: 28px;
    }

    /* Actions — full width stack */
    .pd-actions {
        grid-template-columns: 1fr;
        display: none; /* скрываем, показываем в buybar */
    }

    /* Mobile buybar */
    .pd-buybar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 300;
        padding: 14px 20px;
        padding-bottom: calc(14px + env(safe-area-inset-bottom));
        background: var(--white);
        border-top: 1px solid var(--gray-line);
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
    }

    .pd-buybar__price {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .pd-buybar__price strong {
        font-size: 20px;
        font-weight: 700;
        color: var(--black);
        line-height: 1.1;
    }

    .pd-buybar__price span {
        font-size: 12px;
        color: #1f7a38;
        font-weight: 500;
    }

    .pd-buybar__btn {
        height: 48px;
        padding: 0 28px;
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
    }

    /* Breadcrumbs */
    .pd-breadcrumbs__list {
        font-size: 12px;
        padding: 12px 0;
    }

    /* Quick facts */
    .pd-quick {
        padding: 14px 16px;
    }

    /* Specs */
    .pd-specs > div {
        grid-template-columns: 1fr;
        gap: 2px;
        padding: 9px 0;
    }
}

/* =========================================
   RESPONSIVE — 640px
   ========================================= */

@media (max-width: 640px) {
    .pd-info {
        padding: 20px 0 100px;
    }

    .pd-info__title {
        font-size: 22px;
        letter-spacing: -0.4px;
    }

    .pd-info__price-current {
        font-size: 24px;
    }

    .pd-info__price-old {
        font-size: 14px;
    }

    .pd-colors {
        gap: 8px;
        padding-left:0px;
    }

    .pd-color {
        width: 36px;
        height: 36px;
    }

    .pd-trust li {
        padding: 12px 0;
    }

    .pd-accordion summary {
        font-size: 14px;
        padding: 16px 0;
    }

    .pd-accordion__body p,
    .pd-list li {
        font-size: 13px;
    }

    .pd-buybar {
        padding: 12px 16px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }

    .pd-buybar__price strong {
        font-size: 18px;
    }

    .pd-buybar__btn {
        height: 46px;
        padding: 0 20px;
        font-size: 13px;
    }
}

/* =========================================
   RESPONSIVE — 400px
   ========================================= */

@media (max-width: 400px) {
    .pd-info__title {
        font-size: 20px;
    }

    .pd-info__price-current {
        font-size: 22px;
    }

    .pd-info__price {
        gap: 8px;
    }

    .pd-info__brand {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .pd-info__fav {
        width: 38px;
        height: 38px;
    }

    .pd-quick li {
        flex-direction: column;
        gap: 2px;
        align-items: flex-start;
    }

    .pd-quick span {
        text-align: left;
    }

    .pd-color {
        width: 34px;
        height: 34px;
    }

    .pd-accordion summary {
        font-size: 13px;
        padding: 14px 0;
    }

    .pd-specs dt,
    .pd-specs dd {
        font-size: 12px;
    }

    .pd-list li {
        font-size: 13px;
    }

    .pd-buybar__price strong {
        font-size: 17px;
    }

    .pd-buybar__btn {
        height: 44px;
        padding: 0 16px;
        font-size: 12px;
    }

    .pd-breadcrumbs__list {
        font-size: 11px;
    }
}

/* =========================================
   PREFERS REDUCED MOTION
   ========================================= */

@media (prefers-reduced-motion: reduce) {
    .pd-info__top,
    .pd-info__title,
    .pd-info__rating,
    .pd-info__price,
    .pd-info__stock,
    .pd-quick,
    .pd-option,
    .pd-actions,
    .pd-trust,
    .pd-accordions {
        animation: none;
    }

    .pd-gallery__zoom img,
    .pd-thumb img {
        transition: none;
    }

    .pd-gallery__hint {
        display: none;
    }
}

/* =========================================
   CART PAGE
   Подключается после style.css
   ========================================= */

/* =========================================
   PAGE
   ========================================= */

.cart-page {
    padding: 0 0 100px;
    min-height: calc(100vh - var(--header-height));
    background: var(--white);
}

/* =========================================
   BREADCRUMBS
   ========================================= */

.cart-breadcrumbs {
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-line);
    margin-bottom: 40px;
}

.cart-breadcrumbs ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    font-size: 13px;
    color: var(--gray-text);
}

.cart-breadcrumbs li {
    display: flex;
    align-items: center;
}

.cart-breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin: 0 8px;
    color: var(--gray-line);
}

.cart-breadcrumbs a {
    color: var(--gray-text);
    transition: color var(--transition);
}

.cart-breadcrumbs a:hover {
    color: var(--black);
}

.cart-breadcrumbs li:last-child {
    color: var(--black);
    font-weight: 500;
}

/* =========================================
   HEADER
   ========================================= */

.cart-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cart-header__left {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.cart-header__title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 1.1;
}

.cart-header__count {
    font-size: 14px;
    color: var(--gray-text);
    font-weight: 400;
}

.cart-header__clear {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--gray-text);
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 8px 0;
    transition: color var(--transition);
    background: none;
    border: none;
    cursor: pointer;
}

.cart-header__clear:hover {
    color: #c0392b;
}

/* =========================================
   STEPS
   ========================================= */

.cart-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 48px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cart-steps::-webkit-scrollbar {
    display: none;
}

.cart-step {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cart-step__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-text);
    transition: all var(--transition);
    flex-shrink: 0;
}

.cart-step__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-text);
    white-space: nowrap;
    transition: color var(--transition);
}

.cart-step--active .cart-step__num {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.cart-step--active .cart-step__label {
    color: var(--black);
}

.cart-step--done .cart-step__num {
    background: var(--sage);
    border-color: var(--sage);
    color: var(--white);
}

.cart-step__line {
    flex: 1;
    min-width: 40px;
    max-width: 80px;
    height: 1px;
    background: var(--gray-line);
    margin: 0 12px;
}

/* =========================================
   GRID
   ========================================= */

.cart-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 40px;
    align-items: start;
}

/* =========================================
   CART ITEMS
   ========================================= */

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ОДНА КАРТОЧКА ТОВАРА */
.cart-item {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-line);
    position: relative;
    transition: opacity var(--transition);
}

.cart-item:first-child {
    border-top: 1px solid var(--gray-line);
}

.cart-item.removing {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Фото */
.cart-item__img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-bg);
    aspect-ratio: 3 / 4;
    display: block;
    align-self: start;
}

.cart-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cart-item__img-wrap:hover .cart-item__img {
    transform: scale(1.05);
}

.cart-item__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 9px;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
}

.cart-item__badge--new {
    background: var(--yellow);
    color: var(--black);
}

/* Тело */
.cart-item__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.cart-item__top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.cart-item__brand {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 6px;
}

.cart-item__name {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.3px;
    line-height: 1.2;
    display: block;
    margin-bottom: 12px;
    transition: color var(--transition);
}

.cart-item__name:hover {
    color: var(--sage);
}

/* Атрибуты */
.cart-item__attrs {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item__attrs li {
    font-size: 13px;
    color: var(--gray-text);
}

.cart-item__attrs span {
    color: var(--black);
    font-weight: 500;
}
/* Кнопка удалить */
.cart-item__remove {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    align-self: flex-start;
}

.cart-item__remove:hover {
    background: #fee2e2;
    color: #c0392b;
    transform: rotate(90deg);
}

/* Нижняя часть карточки */
.cart-item__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

/* Цена */
.cart-item__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}

.cart-item__price-current {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--black);
    line-height: 1;
}

.cart-item__price-old {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-text);
    text-decoration: line-through;
}

.cart-item__price-note {
    font-size: 12px;
    color: var(--gray-text);
}

/* В избранное */
.cart-item__fav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-text);
    font-weight: 500;
    letter-spacing: 0.3px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color var(--transition);
    align-self: flex-start;
}

.cart-item__fav:hover {
    color: var(--black);
}

.cart-item__fav svg {
    transition: fill var(--transition), stroke var(--transition);
}

.cart-item__fav.active svg {
    fill: #e63946;
    stroke: #e63946;
}

.cart-item__fav.active {
    color: #e63946;
}

/* =========================================
   СЧЁТЧИК КОЛИЧЕСТВА
   ========================================= */

.cart-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--gray-line);
    border-radius: var(--radius);
    overflow: hidden;
    height: 44px;
    background: var(--white);
    transition: border-color var(--transition);
}

.cart-qty:focus-within {
    border-color: var(--black);
}

.cart-qty__btn {
    width: 44px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black);
    transition: background var(--transition);
    flex-shrink: 0;
}

.cart-qty__btn:hover {
    background: var(--gray-bg);
}

.cart-qty__btn:active {
    background: var(--gray-line);
}

.cart-qty__btn--minus:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.cart-qty__input {
    width: 48px;
    height: 100%;
    text-align: center;
    border: none;
    border-left: 1px solid var(--gray-line);
    border-right: 1px solid var(--gray-line);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    background: var(--white);
    outline: none;
    -moz-appearance: textfield;
}

.cart-qty__input::-webkit-outer-spin-button,
.cart-qty__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* =========================================
   SUMMARY (правая колонка)
   ========================================= */

.cart-summary {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    background: var(--gray-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    border: 1px solid var(--gray-line);
}

/* =========================================
   ПРОМОКОД
   ========================================= */

.cart-promo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-promo__label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--black);
}

.cart-promo__row {
    display: flex;
    gap: 8px;
}

.cart-promo__input {
    flex: 1;
    height: 44px;
    padding: 0 16px;
    border: 1px solid var(--gray-line);
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--black);
    background: var(--white);
    outline: none;
    transition: border-color var(--transition);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cart-promo__input::placeholder {
    text-transform: none;
    letter-spacing: 0;
    color: var(--gray-text);
    font-size: 13px;
}

.cart-promo__input:focus {
    border-color: var(--black);
}

.cart-promo__input.promo--success {
    border-color: #1f7a38;
    background: #f0fff4;
}

.cart-promo__input.promo--error {
    border-color: #c0392b;
    background: #fff5f5;
}

.cart-promo__btn {
    height: 44px;
    padding: 0 18px;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 12px;
}

.cart-promo__msg {
    font-size: 12px;
    font-weight: 500;
    min-height: 16px;
    transition: color var(--transition);
}

.cart-promo__msg--success {
    color: #1f7a38;
}

.cart-promo__msg--error {
    color: #c0392b;
}

/* =========================================
   ИТОГ
   ========================================= */

.cart-total {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-total__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-text);
}

.cart-total__row span:first-child,
.cart-total__row em {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    color: var(--sage);
    background: rgba(148,154,144,0.12);
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: 6px;
    letter-spacing: 0.5px;
}

.cart-total__row--final {
    font-size: 18px;
    color: var(--black);
    padding-top: 4px;
}

.cart-total__row--final strong {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cart-total__discount {
    color: #1f7a38;
    font-weight: 600;
}

.cart-total__free {
    color: #1f7a38;
    font-weight: 600;
}

.cart-total__divider {
    height: 1px;
    background: var(--gray-line);
    margin: 4px 0;
}

.cart-total__save {
    font-size: 12px;
    color: var(--gray-text);
    background: rgba(31,122,56,0.08);
    border-radius: var(--radius);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}

.cart-total__save strong {
    color: #1f7a38;
    font-weight: 600;
}

/* =========================================
   КНОПКИ ОФОРМЛЕНИЯ
   ========================================= */

.cart-summary__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-summary__checkout {
    width: 100%;
    height: 52px;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cart-summary__checkout::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--yellow);
    transform: translateX(-101%);
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 0;
}

.cart-summary__checkout:hover::after {
    transform: translateX(0);
}

.cart-summary__checkout span,
.cart-summary__checkout svg {
    position: relative;
    z-index: 1;
}

.cart-summary__checkout:hover {
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.cart-summary__back {
    width: 100%;
    height: 48px;
    font-size: 13px;
    color: var(--gray-text);
    border-color: var(--gray-line);
}

.cart-summary__back:hover {
    color: var(--black);
    border-color: var(--black);
    background: transparent;
}

/* =========================================
   ДОВЕРИЕ
   ========================================= */

.cart-trust {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--gray-line);
    padding-top: 4px;
}

.cart-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--gray-text);
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-line);
    font-weight: 500;
}

.cart-trust li:last-child {
    border-bottom: none;
}

.cart-trust svg {
    color: var(--sage);
    flex-shrink: 0;
}

/* =========================================
   СПОСОБЫ ОПЛАТЫ
   ========================================= */

.cart-pay {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-pay__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-text);
}

.cart-pay__icons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.cart-pay__icon {
    height: 28px;
    padding: 0 10px;
    border: 1px solid var(--gray-line);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   ПУСТАЯ КОРЗИНА
   ========================================= */

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 120px;
    max-width: 440px;
    margin: 0 auto;
    animation: fadeInUp 0.5s ease both;
}

.cart-empty__icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--gray-text);
}

.cart-empty__title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.cart-empty__text {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 36px;
}

/* =========================================
   УВЕДОМЛЕНИЕ (toast)
   ========================================= */

.cart-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--black);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    padding: 14px 24px;
    border-radius: 999px;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.cart-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.cart-toast--green {
    background: #1f7a38;
}

/* =========================================
   МОБИЛЬНАЯ STICKY-ПАНЕЛЬ
   ========================================= */

.cart-mobile-bar {
    display: none;
}

/* =========================================
   АНИМАЦИИ
   ========================================= */

.cart-item {
    animation: fadeInUp 0.4s ease both;
}

.cart-item:nth-child(1) { animation-delay: 0.05s; }
.cart-item:nth-child(2) { animation-delay: 0.10s; }
.cart-item:nth-child(3) { animation-delay: 0.15s; }
.cart-item:nth-child(4) { animation-delay: 0.20s; }
.cart-item:nth-child(5) { animation-delay: 0.25s; }

.cart-summary {
    animation: fadeInUp 0.5s ease 0.1s both;
}

/* =========================================
   RESPONSIVE — 1100px
   ========================================= */

@media (max-width: 1100px) {
    .cart-grid {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 28px;
    }

    .cart-summary {
        padding: 24px;
    }
}

/* =========================================
   RESPONSIVE — 900px (таблет → стек)
   ========================================= */

@media (max-width: 900px) {
    .cart-page {
        padding-bottom: 120px;
    }

    /* Грид → одна колонка */
    .cart-grid {
        display: block;
    }

    /* Summary скрываем — переезжает в sticky бар */
    .cart-summary {
        display: none;
    }

    /* Мобильная sticky-панель */
    .cart-mobile-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 200;
        padding: 16px 20px;
        padding-bottom: calc(16px + env(safe-area-inset-bottom));
        background: var(--white);
        border-top: 1px solid var(--gray-line);
        box-shadow: 0 -8px 40px rgba(0,0,0,0.08);
    }

    .cart-mobile-bar__info {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .cart-mobile-bar__label {
        font-size: 11px;
        color: var(--gray-text);
        font-weight: 500;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .cart-mobile-bar__price {
        font-size: 22px;
        font-weight: 700;
        letter-spacing: -0.5px;
        color: var(--black);
        line-height: 1;
    }

    .cart-mobile-bar__btn {
        height: 50px;
        padding: 0 28px;
        font-size: 13px;
        flex-shrink: 0;
    }

    /* Карточка — адаптация */
    .cart-item {
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 18px;
        padding: 22px 0;
    }

    .cart-item__name {
        font-size: 16px;
    }

    .cart-item__price-current {
        font-size: 18px;
    }

    /* Steps — компактнее */
    .cart-steps {
        margin-bottom: 32px;
    }

    .cart-step__label {
        font-size: 13px;
    }

    .cart-step__line {
        min-width: 24px;
        margin: 0 8px;
    }
}

/* =========================================
   RESPONSIVE — 640px
   ========================================= */

@media (max-width: 640px) {
    .cart-page {
        padding-bottom: 100px;
    }

    .cart-breadcrumbs {
        margin-bottom: 24px;
    }

    .cart-header {
        margin-bottom: 24px;
    }

    .cart-header__title {
        font-size: 26px;
    }

    .cart-header__clear {
        font-size: 12px;
    }

    .cart-item {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 14px;
        padding: 18px 0;
    }

    .cart-item__brand {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .cart-item__name {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .cart-item__attrs li {
        font-size: 12px;
    }

    .cart-qty {
        height: 40px;
    }

    .cart-qty__btn {
        width: 38px;
    }

    .cart-qty__input {
        width: 40px;
        font-size: 14px;
    }

    .cart-item__price-current {
        font-size: 17px;
    }

    .cart-item__fav {
        font-size: 11px;
    }

    .cart-mobile-bar__price {
        font-size: 20px;
    }

    .cart-mobile-bar__btn {
        height: 46px;
        padding: 0 20px;
    }
}

/* =========================================
   RESPONSIVE — 400px
   ========================================= */

@media (max-width: 400px) {
    .cart-item {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 12px;
    }

    .cart-item__name {
        font-size: 14px;
    }

    .cart-item__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cart-item__price {
        align-items: flex-start;
    }

    .cart-mobile-bar {
        padding: 14px 16px;
        padding-bottom: calc(14px + env(safe-area-inset-bottom));
        gap: 12px;
    }

    .cart-mobile-bar__price {
        font-size: 18px;
    }

    .cart-mobile-bar__btn {
        height: 44px;
        padding: 0 16px;
        font-size: 12px;
    }

    .cart-step__label {
        display: none;
    }

    .cart-step__line {
        min-width: 20px;
    }
}

/* =========================================
   PREFERS REDUCED MOTION
   ========================================= */

@media (prefers-reduced-motion: reduce) {
    .cart-item,
    .cart-summary {
        animation: none;
    }

    .cart-item__remove:hover {
        transform: none;
    }

    .cart-summary__checkout::after {
        transition: none;
    }
}
.cart-steps { display:flex; gap:24px; margin-bottom:32px; }
.cart-steps__item { display:flex; align-items:center; gap:8px; cursor:default; color:#999; }
.cart-steps__item[data-step="1"] { cursor:pointer; }
.cart-steps__num {
    width:28px; height:28px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    border:1px solid #ccc; font-size:14px;
}
.cart-steps__item.active { color:#000; }
.cart-steps__item.active .cart-steps__num { background:#000; color:#fff; border-color:#000; }
.cart-steps__item.done .cart-steps__num { background:#000; color:#fff; border-color:#000; }
