/* ═══════════════════════════════════════════════════════════════════════════
   INDEX.CSS  —  Homepage styles + Auth modal
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Override general main for homepage ────────────────────────────────── */

.home-main {
    display: block !important;
    align-items: unset !important;
    width: 100%;
    padding: 0;
}

/* ─── Container ─────────────────────────────────────────────────────────── */

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ─── Header brand block ─────────────────────────────────────────────────── */

.header-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-brand-sep {
    width: 1px;
    height: 36px;
    background: #e0e0e0;
    flex-shrink: 0;
}

.header-brand-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.header-brand-name {
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 15px;
    color: #363636;
    letter-spacing: -0.2px;
    line-height: 1;
}

.header-brand-city {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'CenturyGothic', sans-serif;
    font-size: 12px;
    color: #aaa;
    line-height: 1;
}

.header-brand-city svg {
    stroke: #FFBC00;
    flex-shrink: 0;
}

/* ─── Header nav — абсолютно центрирован ────────────────────────────────── */

.main-nav {
    display: flex;
    gap: 36px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* ─── Header right group (cart + fav + login) ───────────────────────────── */

.header-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 15px;
    color: #555;
    text-decoration: none;
    transition: color 0.22s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFBC00;
    border-radius: 2px;
    transition: width 0.25s;
}

.nav-link:hover {
    color: #363636;
}

.nav-link:hover::after {
    width: 100%;
}

/* ─── Login button in header ─────────────────────────────────────────────── */

.btn-login {
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 12px;
    border: 2px solid #363636;
    background: transparent;
    color: #363636;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    white-space: nowrap;
}

.btn-login:hover {
    background: #363636;
    color: #fff;
}

.btn-login:hover svg {
    stroke: #fff;
}

/* ─── Reveal animation ───────────────────────────────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ─── Shared section typography ──────────────────────────────────────────── */

.section-title {
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 42px;
    color: #363636;
    text-align: center;
    margin-bottom: 10px;
}

.section-sub {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 16px;
    color: #aaa;
    text-align: center;
    margin-bottom: 52px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   1. ГОРЯЧИЕ ПРЕДЛОЖЕНИЯ
   ═══════════════════════════════════════════════════════════════════════════ */

.section-hot {
    padding: 80px 0 64px;
    background: #fff;
}

.section-title-hot {
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 48px;
    color: #FFBC00;
    margin-bottom: 44px;
    letter-spacing: -0.5px;
}

.hot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 44px;
}

/* Product card */
.hot-card {
    border-radius: 18px;
    overflow: hidden;
    background: #f7f7f7;
    transition: transform 0.3s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.hot-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.11);
}

.hot-card-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #ececec;
}

.hot-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.hot-card:hover .hot-card-img img {
    transform: scale(1.06);
}

.hot-card-no-photo {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ccc;
}

.hot-card-no-photo svg {
    opacity: 0.4;
}

.hot-card-no-photo span {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 12px;
}

.hot-card-fav,
.shop-fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.88);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
}

.hot-card-fav:hover,
.shop-fav-btn:hover {
    background: #FFBC00;
    transform: scale(1.12);
}

.shop-fav-btn svg {
    transition: fill 0.22s, stroke 0.22s, transform 0.22s;
}

/* Inactive state — white heart with gray stroke */
.hot-card-fav:not(.is-fav) svg,
.shop-fav-btn:not(.is-fav) svg {
    fill: #fff;
    stroke: #999;
}

/* Favourited state — yellow filled heart */
.shop-fav-btn.is-fav svg {
    fill: #FFBC00;
    stroke: #FFBC00;
    transform: scale(1.15);
}

/* Hot card buy button */
.hot-card-buy {
    width: 100%;
    margin-top: 10px;
    padding: 9px 8px;
    border-radius: 10px;
    border: none;
    background: #363636;
    color: #fff;
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s;
}

.hot-card-buy:hover {
    background: #FFBC00;
    color: #000;
}

.hot-card-buy.in-cart {
    background: #22c55e;
    color: #fff;
}

.hot-card-buy.hot-card-buy-oos,
.hot-card-buy:disabled {
    background: #3a3a3a;
    color: #888;
    cursor: not-allowed;
    font-size: 11px;
    display: flex;
}
.hot-card-buy.hot-card-buy-oos:hover,
.hot-card-buy:disabled:hover { background: #3a3a3a; color: #888; }

.hot-card-fav svg,
.shop-fav-btn svg,
.pv-btn-fav svg {
    transition: fill 0.2s, stroke 0.2s;
}

/* On hover — white heart on yellow background */
.hot-card-fav:hover svg,
.shop-fav-btn:hover svg,
.pv-btn-fav:hover svg {
    fill: #fff;
    stroke: #fff;
}

.hot-card-body {
    padding: 16px 18px 20px;
}

.hot-card-name {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 13px;
    color: #555;
    line-height: 1.45;
    margin-bottom: 12px;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hot-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.hot-card-price {
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 18px;
    color: #363636;
    letter-spacing: -0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Status badges ───────────────────────────────────────────────────────── */

.item-status {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 20px;
    white-space: nowrap;
    line-height: 1;
}

.item-status-ok {
    background: rgba(34,197,94,0.1);
    color: #16a34a;
}

.item-status-warn {
    background: rgba(251,191,36,0.12);
    color: #d97706;
}

.item-status-out {
    background: rgba(239,68,68,0.1);
    color: #dc2626;
}

/* Skeleton shimmer */
.hot-skeleton {
    height: 280px;
    border-radius: 18px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e6e6e6 50%, #f0f0f0 75%);
    background-size: 300% 100%;
    animation: skeleton-shine 1.6s infinite ease-in-out;
}

@keyframes skeleton-shine {
    0%   { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Hot empty state */
.hot-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-family: 'CenturyGothic', sans-serif;
    font-size: 16px;
    color: #bbb;
}

/* More row */
.more-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
}

.more-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.more-arrow {
    flex-shrink: 0;
    transition: transform 0.25s;
}

.more-left:hover .more-arrow {
    transform: translateX(5px);
}

.more-text {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 15px;
    color: #bbb;
}

.btn-catalog {
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 15px;
    padding: 13px 36px;
    border-radius: 13px;
    background: #363636;
    color: #fff;
    text-decoration: none;
    border: 2px solid #363636;
    transition: background 0.25s, color 0.25s, transform 0.2s;
    display: inline-block;
}

.btn-catalog:hover {
    background: #FFBC00;
    border-color: #FFBC00;
    color: #000;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   2. CTA — Подбор компьютера
   ═══════════════════════════════════════════════════════════════════════════ */

.section-cta {
    background: #1c1c1c;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

/* Subtle decorative gradient blob */
.section-cta::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,188,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-eyebrow {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #FFBC00;
    margin-bottom: 18px;
}

.cta-title {
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 40px;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.cta-sub {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin-bottom: 42px;
    max-width: 440px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 15px;
    padding: 16px 40px;
    border-radius: 14px;
    background: #FFBC00;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255,188,0,0.35);
    background: #ffc914;
}

/* Media placeholder (until photos arrive) */
.cta-media {
    height: 420px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1.5px dashed rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-media-inner {
    text-align: center;
}

.cta-photo-soon {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.15);
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   3. ОТЗЫВЫ
   ═══════════════════════════════════════════════════════════════════════════ */

.section-reviews {
    padding: 88px 0 80px;
    background: #fafafa;
}

.reviews-header {
    text-align: center;
    margin-bottom: 48px;
}

.reviews-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.reviews-attr {
    text-align: center;
    margin-top: 18px;
}

.reviews-attr a {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 12px;
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s;
}

.reviews-attr a:hover {
    color: #888;
}

/* ═══════════════════════════════════════════════════════════════════════════
   4. ДОСТАВКА
   ═══════════════════════════════════════════════════════════════════════════ */

.section-delivery {
    padding: 88px 0 80px;
    background: #fff;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.delivery-card {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: box-shadow 0.25s, transform 0.25s;
}

.delivery-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.07);
    transform: translateY(-4px);
}

.delivery-card-head {
    background: #363636;
    color: #fff;
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 15px;
    padding: 20px 24px;
}

.delivery-card-body {
    background: #f8f8f8;
}

.delivery-row {
    padding: 16px 24px;
    border-bottom: 1px solid #efefef;
}

.delivery-row:last-child {
    border-bottom: none;
}

.delivery-label {
    display: block;
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 12.5px;
    color: #363636;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-bottom: 5px;
}

.delivery-val {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.45;
}

/* ═══════════════════════════════════════════════════════════════════════════
   5. НАС МОЖНО НАЙТИ
   ═══════════════════════════════════════════════════════════════════════════ */

.section-find {
    padding: 88px 0;
    background: #fafafa;
    text-align: center;
}

.find-icons {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.find-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #666;
    font-family: 'CenturyGothic', sans-serif;
    font-size: 13px;
    transition: transform 0.25s;
}

.find-icon-link:hover {
    transform: translateY(-6px);
    color: #363636;
}

.find-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: box-shadow 0.25s, transform 0.25s;
}

.find-icon-link:hover .find-icon-circle {
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.find-icon-img {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: box-shadow 0.25s, transform 0.25s;
    flex-shrink: 0;
}

.find-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.find-icon-link:hover .find-icon-img {
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   6. МЫ НА СВЯЗИ
   ═══════════════════════════════════════════════════════════════════════════ */

.section-contact {
    background: #222;
    padding: 88px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 72px;
    align-items: start;
}

.contact-heading {
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 30px;
    color: #fff;
    margin-bottom: 36px;
}

.contact-item {
    margin-bottom: 22px;
}

.contact-item-label {
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
}

.contact-item-val {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.55;
}

.contact-item-hint {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    margin-top: 2px;
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 32px;
}

.contact-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.contact-social-btn:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-3px);
}

.map-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   7. FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.site-footer {
    background: #111;
    padding-top: 64px;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px 56px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    width: 58px;
    filter: brightness(0) invert(0.6);
    display: block;
    margin-bottom: 22px;
    transition: filter 0.2s;
}

.footer-logo:hover {
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.footer-social-link:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.footer-nav-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-nav-col a {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.4;
}

.footer-nav-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 48px;
    max-width: 100%;
    text-align: center;
    font-family: 'CenturyGothic', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   AUTH OVERLAY & MODAL
   ═══════════════════════════════════════════════════════════════════════════ */

.auth-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9100;
    align-items: center;
    justify-content: center;
}

.auth-overlay.open {
    display: flex;
}

.auth-modal {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px 32px;
    width: 100%;
    max-width: 420px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.auth-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    transition: color 0.2s;
}

.auth-close:hover { color: #363636; }

/* Tabs */
.auth-tabs {
    display: flex;
    gap: 4px;
    background: #f1f1f1;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 28px;
}

.auth-tab {
    flex: 1;
    padding: 10px;
    border: none;
    background: none;
    border-radius: 9px;
    font-family: 'CenturyGothic', sans-serif;
    font-size: 14px;
    cursor: pointer;
    color: #777;
    transition: 0.2s;
}

.auth-tab.active {
    background: #fff;
    color: #363636;
    font-family: 'CenturyGothicBold', sans-serif;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

/* Form */
.auth-title {
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 22px;
    margin-bottom: 22px;
    color: #363636;
}

.auth-field { margin-bottom: 16px; }

.auth-field label {
    display: block;
    font-family: 'CenturyGothic', sans-serif;
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
}

.req { color: #e74c3c; }

.auth-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-family: 'CenturyGothic', sans-serif;
    font-size: 15px;
    color: #363636;
    background: #fafafa;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.auth-input:focus {
    border-color: #363636;
    background: #fff;
}

/* Gender grid */
.source-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.gender-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

/* Custom select */
.custom-select { position: relative; }

.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 14px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    background: #fafafa;
    cursor: pointer;
    font-family: 'CenturyGothic', sans-serif;
    font-size: 15px;
    color: #aaa;
    transition: border-color 0.2s, background 0.2s;
    user-select: none;
}

.custom-select-trigger.has-value { color: #363636; }

.custom-select-trigger.open {
    border-color: #363636;
    background: #fff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.custom-select-arrow {
    flex-shrink: 0;
    transition: transform 0.2s;
    color: #aaa;
}

.custom-select-trigger.open .custom-select-arrow {
    transform: rotate(180deg);
    color: #363636;
}

.custom-select-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid #363636;
    border-top: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 200;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.custom-select-dropdown.open { display: block; }

.custom-select-option {
    padding: 11px 14px;
    font-family: 'CenturyGothic', sans-serif;
    font-size: 15px;
    color: #363636;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid #f0f0f0;
}

.custom-select-option:last-child { border-bottom: none; }
.custom-select-option:hover { background: #f5f5f5; }

.custom-select-option.active {
    background: #363636;
    color: #fff;
    font-family: 'CenturyGothicBold', sans-serif;
}

.source-btn {
    padding: 10px 8px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    background: #fafafa;
    font-family: 'CenturyGothic', sans-serif;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
}

.source-btn:hover {
    border-color: #aaa;
    color: #363636;
}

.source-btn.active {
    border-color: #363636;
    background: #363636;
    color: #fff;
    font-family: 'CenturyGothicBold', sans-serif;
}

/* Submit */
.btn-auth-submit {
    width: 100%;
    padding: 13px;
    margin-top: 8px;
    border-radius: 12px;
    border: 2px solid #363636;
    background: #363636;
    color: #fff;
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 15px;
    cursor: pointer;
    transition: 0.25s;
}

.btn-auth-submit:hover {
    background: transparent;
    color: #363636;
}

/* Error */
.auth-error {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 13px;
    color: #e74c3c;
    min-height: 18px;
    margin-bottom: 4px;
}

/* Switch */
.auth-switch {
    text-align: center;
    margin-top: 16px;
    font-family: 'CenturyGothic', sans-serif;
    font-size: 13px;
    color: #777;
}

.link-btn {
    background: none;
    border: none;
    color: #363636;
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

/* info-error (profile page) */
.info-error {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 13px;
    color: #e74c3c;
    min-height: 18px;
    margin-bottom: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT VIEW MODAL
   ═══════════════════════════════════════════════════════════════════════════ */

.pv-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1500;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(6px);
}

.pv-overlay.open { display: flex; }

.pv-modal {
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: pv-in 0.28s cubic-bezier(.25,.8,.25,1);
    box-shadow: 0 32px 80px rgba(0,0,0,0.22);
}

@keyframes pv-in {
    from { opacity: 0; transform: scale(0.96) translateY(18px); }
    to   { opacity: 1; transform: none; }
}

.pv-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 20;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.07);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: background 0.2s, color 0.2s;
}
.pv-close:hover { background: rgba(0,0,0,0.14); color: #000; }

/* Loading spinner */
.pv-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 360px;
}

/* Content layout */
.pv-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    flex: 1;
    min-height: 0;
}

/* Gallery side */
.pv-gallery {
    background: #f3f3f3;
    display: flex;
    flex-direction: column;
    padding: 28px;
    gap: 14px;
    min-height: 0;
}

.pv-main-img-wrap {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    max-height: 400px;
}

.pv-main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pv-no-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ccc;
    font-family: 'CenturyGothic', sans-serif;
    font-size: 13px;
    height: 100%;
    min-height: 260px;
}

.pv-thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pv-thumb {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2.5px solid transparent;
    transition: border-color 0.18s, transform 0.18s;
    flex-shrink: 0;
}
.pv-thumb:hover { transform: scale(1.05); }
.pv-thumb.active { border-color: #363636; }
.pv-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Info side */
.pv-info {
    padding: 32px 30px 28px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pv-badge {
    display: inline-block;
    font-family: 'CenturyGothic', sans-serif;
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}

.pv-name {
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 19px;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 6px;
    text-align: center;
}

.pv-article {
    display: block;
    font-family: 'CenturyGothic', sans-serif;
    font-size: 12px;
    color: #bbb;
    font-weight: 300;
    text-align: center;
    margin-bottom: 22px;
    letter-spacing: 0.3px;
}

.pv-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 28px;
}

.pv-price {
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 32px;
    color: #1a1a1a;
    letter-spacing: -0.8px;
    line-height: 1;
    flex-shrink: 0;
}

.pv-price span {
    font-size: 17px;
    color: #aaa;
    font-family: 'CenturyGothic', sans-serif;
    letter-spacing: 0;
}

/* Section heading */
.pv-section {
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aaa;
    margin-bottom: 10px;
    margin-top: 22px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

/* Characteristics table */
.pv-chars {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 4px;
}
.pv-chars tr { border-bottom: 1px solid #f5f5f5; }
.pv-chars tr:last-child { border-bottom: none; }
.pv-chars td {
    padding: 7px 4px;
    font-family: 'CenturyGothic', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    vertical-align: top;
}
.pv-chars td:first-child {
    color: #aaa;
    width: 44%;
    padding-right: 12px;
}
.pv-chars td:last-child { color: #363636; font-weight: 500; }
.pv-chars tr:nth-child(odd) td { background: #fafafa; }

/* Description */
.pv-desc {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 4px;
}

/* CTA button */
.pv-cta-row {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.pv-btn-consult {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 14px;
    padding: 14px 30px;
    border-radius: 13px;
    background: #363636;
    color: #fff;
    text-decoration: none;
    border: 2px solid #363636;
    transition: background 0.22s, transform 0.18s;
    cursor: pointer;
}
.pv-btn-consult:hover {
    background: #FFBC00;
    border-color: #FFBC00;
    color: #000;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 700px) {
    .pv-content { grid-template-columns: 1fr; }
    .pv-gallery { max-height: 280px; flex-direction: row; padding: 16px; }
    .pv-main-img-wrap { min-height: 180px; max-height: 248px; }
    .pv-info { padding: 20px 20px 20px; }
    .pv-price { font-size: 26px; }
    .pv-name { font-size: 16px; }
    .pv-modal { max-height: 95vh; border-radius: 18px; }
}

@media (max-width: 1100px) {
    .hot-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cta-inner {
        gap: 48px;
    }
    .cta-title {
        font-size: 34px;
    }
    .contact-layout {
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 28px;
    }
    .hot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cta-media {
        height: 260px;
    }
    .delivery-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .find-icons {
        gap: 32px;
    }
    .main-nav {
        gap: 20px;
    }
    .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .header-brand-sep,
    .header-brand-info { display: none; }

    .container {
        padding: 0 20px;
    }
    .hot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .section-title-hot {
        font-size: 34px;
    }
    .section-hot {
        padding: 56px 0 44px;
    }
    .section-cta {
        padding: 64px 0;
    }
    .cta-title {
        font-size: 28px;
    }
    .section-title {
        font-size: 30px;
    }
    .more-row {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .find-icons {
        gap: 20px;
    }
    .find-icon-circle {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px 40px;
    }
    .footer-bottom {
        padding: 16px 20px;
    }
    .section-find,
    .section-delivery,
    .section-reviews,
    .section-contact {
        padding: 60px 0;
    }
    .main-nav {
        display: none;
    }
    .auth-modal {
        margin: 16px;
        padding: 28px 20px 24px;
    }
}

@media (max-width: 440px) {
    .hot-grid {
        grid-template-columns: 1fr;
    }
    .hot-skeleton {
        height: 260px;
    }
}

/* ─── Mobile hamburger + nav drawer ─────────────────────────────────────── */

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 4px;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #363636;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    max-width: 300px;
    height: 100%;
    background: #fff;
    z-index: 2001;
    padding: 72px 28px 32px;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 32px rgba(0,0,0,0.12);
    pointer-events: none;
    visibility: hidden;
}

.mobile-nav.open {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #363636;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-family: 'CenturyGothic', sans-serif;
    font-size: 17px;
    color: #363636;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s;
}

.mobile-nav-link:hover { color: #FFBC00; }

.mobile-nav-link--active {
    color: #FFBC00;
    font-family: 'CenturyGothicBold', sans-serif;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    visibility: hidden;
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

@media (max-width: 640px) {
    .nav-hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SHOP UI  —  Header buttons · Panels · Cart · Favorites · Viewed · Toast
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Header shop buttons ─────────────────────────────────────────────────── */

.shop-header-btns {
    display: flex;
    align-items: center;
    gap: 6px;
}

.shop-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #363636;
    transition: background 0.2s, color 0.2s;
}

.shop-icon-btn:hover {
    background: #f5f5f5;
}

.shop-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    border-radius: 20px;
    background: #FFBC00;
    color: #363636;
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    pointer-events: none;
    transform-origin: center;
}

@keyframes badge-pop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.5); }
    70%  { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.shop-badge.pop { animation: badge-pop 0.4s ease; }

/* ── Panel overlay ────────────────────────────────────────────────────────── */

.shop-panel-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1400;
    transition: opacity 0.3s;
}

.shop-panel-overlay.open {
    display: block;
}

/* ── Slide-in panel ───────────────────────────────────────────────────────── */

.shop-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(96vw, 400px);
    background: #fff;
    box-shadow: -6px 0 40px rgba(0,0,0,0.13);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    transform: translateX(110%);
    transition: transform 0.36s cubic-bezier(.25,.8,.25,1);
    border-radius: 20px 0 0 20px;
}

.shop-panel.open {
    transform: translateX(0);
}

.shop-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.shop-panel-title {
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 18px;
    color: #363636;
}

.shop-panel-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    color: #555;
    transition: background 0.2s, color 0.2s;
}

.shop-panel-close:hover {
    background: #363636;
    color: #fff;
}

.shop-panel-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12px 0;
}

.shop-panel-footer {
    flex-shrink: 0;
    padding: 16px 20px;
    border-top: 1px solid #f0f0f0;
}

/* ── Cart item ────────────────────────────────────────────────────────────── */

.sh-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.15s;
}

.sh-item:hover {
    background: #fafafa;
}

.sh-item-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: #f0f0f0;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sh-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sh-item-no-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.sh-item-info {
    flex: 1;
    min-width: 0;
}

.sh-item-name {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 13px;
    color: #363636;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.sh-item-price {
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 13px;
    color: #363636;
}

.sh-item-qty {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 11px;
    color: #aaa;
    margin-top: 2px;
}

.sh-item-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.sh-remove-btn,
.sh-add-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    color: #888;
    transition: background 0.2s, color 0.2s;
}

.sh-remove-btn:hover {
    background: #fee2e2;
    color: #dc2626;
}

.sh-add-cart-btn:hover {
    background: #FFBC00;
    color: #000;
}

.sh-add-cart-btn.in-cart {
    background: #dcfce7;
    color: #22c55e;
}

/* ── Empty state ──────────────────────────────────────────────────────────── */

.sh-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 60px 20px;
    color: #ccc;
}

.sh-empty p {
    font-family: 'CenturyGothic', sans-serif;
    font-size: 14px;
}

/* ── Checkout button ──────────────────────────────────────────────────────── */

.shop-pay-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 13px;
    border: none;
    background: #363636;
    color: #fff;
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.22s, transform 0.18s;
}

.shop-pay-btn:hover {
    background: #FFBC00;
    color: #000;
}

.shop-pay-btn:active {
    transform: scale(0.98);
}

/* ── Modal buy button (product modal) ────────────────────────────────────── */

.pv-btn-buy {
    flex: 1;
    padding: 13px 20px;
    border-radius: 12px;
    border: none;
    background: #363636;
    color: #fff;
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.22s, transform 0.18s;
}

.pv-btn-buy:hover {
    background: #FFBC00;
    color: #000;
    transform: translateY(-1px);
}

.pv-btn-buy.in-cart {
    background: #22c55e;
    color: #fff;
}

.pv-btn-buy.pv-btn-oos,
.pv-btn-buy:disabled:not(.in-cart) {
    background: #3a3a3a;
    color: #888;
    cursor: not-allowed;
    font-size: 12px;
}
.pv-btn-buy.pv-btn-oos:hover,
.pv-btn-buy:disabled:not(.in-cart):hover { background: #3a3a3a; color: #888; transform: none; }

.pv-btn-fav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.88);
    cursor: pointer;
    flex-shrink: 0;
    backdrop-filter: blur(6px);
    transition: background 0.2s, transform 0.2s;
}

.pv-btn-fav:hover {
    background: #FFBC00;
    transform: scale(1.08);
}

.pv-btn-fav.is-fav svg {
    fill: #FFBC00;
    stroke: #FFBC00;
}

.pv-btn-fav.is-fav {
    background: rgba(255,255,255,0.88);
}

/* Reset absolute positioning when fav button is inside modal CTA row */
.pv-cta-row .shop-fav-btn {
    position: static;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}



.pv-cta-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}

/* ── Cart qty controls ────────────────────────────────────────────────────── */

.sh-cart-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.sh-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.sh-qty-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: #f5f5f5;
    color: #363636;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    flex-shrink: 0;
}

.sh-qty-btn:hover { background: #FFBC00; color: #000; }

.sh-qty-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.sh-qty-btn:disabled:hover { background: #e0e0e0; color: #999; }

.sh-item-max-note {
    font-size: 11px;
    color: #f59e0b;
    margin: 0;
}

.sh-qty-val {
    min-width: 26px;
    text-align: center;
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 13px;
    color: #363636;
    padding: 0 2px;
    background: #fff;
    line-height: 28px;
}

/* ── Floating side widget group ───────────────────────────────────────────── */

.float-group {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 200;
    align-items: flex-end;
}

.float-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #363636;
    color: #fff;
    width: 44px;
    padding: 14px 0;
    border-radius: 12px 0 0 12px;
    cursor: pointer;
    box-shadow: -4px 0 16px rgba(0,0,0,0.12);
    transition: background 0.2s, width 0.2s;
    user-select: none;
    border: none;
}

.float-btn:hover {
    background: #FFBC00;
    color: #000;
    width: 50px;
}

.float-btn svg { flex-shrink: 0; }

.float-count,
.viewed-float-count {
    font-family: 'CenturyGothicBold', sans-serif;
    font-size: 13px;
    line-height: 1;
}

/* cart-float shown via JS when cart has items */
#cart-float  { display: none; }
#viewed-float { display: none; }

@media (max-width: 480px) {
    .float-btn { width: 38px; padding: 10px 0; }
    .float-btn:hover { width: 42px; }
    .float-count, .viewed-float-count { font-size: 11px; }
}

/* ── Toast notification ───────────────────────────────────────────────────── */

.shop-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 14px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'CenturyGothic', sans-serif;
    font-size: 14px;
    color: #363636;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    white-space: nowrap;
}

.shop-toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
