/* ============================================================
   AG Gümüş — base theme
   Palette: monochrome — cool neutrals + graphite/black + silver
   ============================================================ */
:root {
    --bg:        #f7f8f9;
    --bg-muted:  #eceef1;
    --ink:       #1c1e23;
    --ink-soft:  #5c606a;
    --line:      #e5e7ea;
    --graphite:  #16181d;
    --silver-1:  #d9dadd;
    --silver-2:  #a9acb2;
    --accent:    #16181d;   /* monochrome: graphite as the accent */
    --accent-dk: #000000;
    --white:     #ffffff;
    --radius:    14px;
    --shadow:    0 8px 30px rgba(20, 22, 28, .08);
    --container: min(94vw, 1560px);
    --font: "Montserrat", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

/* Reveal-on-scroll (hidden only when JS is on, so no-JS still shows content) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .js .reveal { opacity: 1; transform: none; transition: none; }
}
body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(20, 22, 28, .06);
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; margin: 0 0 .5em; letter-spacing: -.01em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding: 64px 0; }
.section--muted { background: var(--bg-muted); }
.section-title { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 28px; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    transition: transform .15s ease, background .2s ease, color .2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dk); }
.btn--ghost { background: transparent; border-color: currentColor; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--bg-muted); }

/* ---------- Hero carousel ---------- */
.hero-carousel { background: var(--bg); padding-block: clamp(16px, 3vw, 32px); }
.carousel-frame {
    --frame-pad: clamp(34px, 5vw, 64px);
    position: relative;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--frame-pad);
}
.carousel-viewport { overflow: hidden; border-radius: clamp(16px, 2vw, 28px); box-shadow: var(--shadow); }
.carousel-track { display: flex; transition: transform .55s cubic-bezier(.4,.0,.2,1); will-change: transform; }
.carousel-slide { flex: 0 0 100%; min-width: 100%; }
.carousel-slide__link { display: block; }
.carousel-slide img { display: block; width: 100%; height: auto; aspect-ratio: 1600 / 490; object-fit: cover; }

.carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    width: 50px; height: 50px; border-radius: 50%; border: 0; cursor: pointer; padding: 0;
    background: rgba(255,255,255,.55); color: #000;
    backdrop-filter: blur(2px);
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.carousel-arrow svg {
    width: 26px; height: 26px; display: block;
    fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}
.carousel-arrow:hover { transform: translateY(-50%) scale(1.08); box-shadow: 0 8px 22px rgba(0,0,0,.24); background: rgba(255,255,255,.8); }
.carousel-arrow--prev { left: calc(var(--frame-pad) - 25px); }
.carousel-arrow--next { right: calc(var(--frame-pad) - 25px); }

.carousel-dots { position: absolute; bottom: 18px; left: 0; right: 0; display: flex; justify-content: center; gap: 9px; z-index: 5; }
.carousel-dot {
    width: 9px; height: 9px; border-radius: 50%; border: 0; cursor: pointer; padding: 0;
    background: rgba(255,255,255,.45); transition: background .2s, width .2s;
}
.carousel-dot.active { background: #fff; width: 26px; border-radius: 6px; }

@media (max-width: 720px) {
    .carousel-frame { --frame-pad: 24px; }
    .carousel-arrow { width: 40px; height: 40px; }
    .carousel-arrow svg { width: 22px; height: 22px; }
    .carousel-arrow--prev { left: calc(var(--frame-pad) - 20px); }
    .carousel-arrow--next { right: calc(var(--frame-pad) - 20px); }
}

/* ---------- Top bar ---------- */
.topbar { background: #fff; color: var(--ink-soft); font-size: .92rem; border-bottom: 1px solid var(--line); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 32px; }
.topbar__link { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); font-weight: 600; white-space: nowrap; transition: color .2s; }
.topbar__link:hover { color: var(--accent); }
.topbar__link svg { width: 16px; height: 16px; flex: none; }
.topbar__promos { position: relative; flex: 1; height: 1.4em; overflow: hidden; }
.topbar__promo {
    position: absolute; inset: 0; text-align: center; white-space: nowrap;
    text-overflow: ellipsis;
    opacity: 0; transform: translateY(100%);            /* waits below, out of view */
    transition: opacity .5s ease, transform .5s ease;
    color: var(--ink); font-weight: 700; font-size: .98rem; letter-spacing: .01em;
}
.topbar__promo.active { opacity: 1; transform: translateY(0); }       /* slides up into place */
.topbar__promo.leaving { opacity: 0; transform: translateY(-100%); }  /* slides up and hides */
@media (max-width: 600px) {
    .topbar__promos { display: none; }
    .topbar__inner { justify-content: space-between; }
    .topbar__link span { font-size: .8rem; }
}

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: #121419;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 70px; }
.logo { display: inline-flex; align-items: baseline; gap: 6px; font-weight: 700; font-size: 1.35rem; letter-spacing: .02em; }
.logo-mark {
    background: linear-gradient(135deg, var(--silver-2), var(--graphite));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-weight: 800;
}
.logo-text { color: var(--ink); font-weight: 500; }
.logo-img { height: 36px; width: auto; display: block; }     /* trimmed transparent PNG, aligns to container edge */
.logo-img--footer { height: 44px; }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a { font-weight: 500; color: rgba(255,255,255,.8); position: relative; padding: 4px 0; }
.main-nav a:hover { color: #fff; }
.main-nav a::after {
    content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
    background: var(--accent); transition: width .2s ease;
}
.main-nav a:hover::after { width: 100%; }

.lang-switch { position: relative; }
.lang-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 13px; border-radius: 999px; border: 0; cursor: pointer;
    background: rgba(255,255,255,.12); color: #fff; font: inherit; font-weight: 600; font-size: .85rem; line-height: 1;
    transition: background .2s;
}
.lang-btn:hover { background: rgba(255,255,255,.22); }
.lang-btn .icon-globe { width: 18px; height: 18px; }
.lang-btn .icon-chev { width: 14px; height: 14px; transition: transform .2s; }
.lang-switch.open .lang-btn .icon-chev { transform: rotate(180deg); }
.icon-globe, .icon-chev { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.lang-menu {
    position: absolute; top: calc(100% + 8px); left: 0; right: auto; width: 100%; min-width: 0; z-index: 120;
    background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 6px; box-shadow: var(--shadow);
    display: flex; flex-direction: column; gap: 2px;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu a { padding: 9px 14px; border-radius: 8px; font-weight: 600; font-size: .85rem; color: var(--ink); }
.lang-menu a:hover { background: var(--bg-muted); }
.lang-menu a.is-active { background: var(--ink); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
    background:
        radial-gradient(1200px 500px at 80% -10%, rgba(184,146,90,.18), transparent 60%),
        linear-gradient(135deg, #1a1c22 0%, #2a2d36 60%, #3a3e49 100%);
    color: #fff;
}
.hero-inner { padding: clamp(70px, 12vw, 140px) 0; }
.hero-content { max-width: 620px; }
.hero-eyebrow { text-transform: uppercase; letter-spacing: .25em; font-size: .75rem; color: var(--silver-2); margin: 0 0 16px; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); margin-bottom: 18px; }
.hero-sub { font-size: 1.15rem; color: var(--silver-1); margin-bottom: 32px; }

/* ---------- Brands strip ---------- */
.brands { padding: 40px 0; }
.brands__row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 28px 48px; flex-wrap: wrap;
}
.brand {
    font-weight: 700; font-size: clamp(1rem, 1.6vw, 1.3rem); letter-spacing: .12em;
    text-transform: uppercase; color: #a3a1a0; white-space: nowrap;
    transition: color .2s ease;
}
.brand:hover { color: var(--ink); }
.brand-logo {
    height: 70px; width: auto; object-fit: contain;     /* original silverstyle 563x219 canvas -> uniform box */
    mix-blend-mode: multiply;            /* drop the white logo background */
    filter: grayscale(1); opacity: .6; transition: opacity .2s, filter .2s;
}
.brand-logo:hover { opacity: 1; }
@media (max-width: 720px) {
    .brands__row { justify-content: center; gap: 22px 32px; }
}

/* ---------- Category grid ---------- */
/* Category carousel: horizontal scroll; arrows live in the side gutters (not over cards) */
.cat-carousel { position: relative; padding-inline: 46px; }
.category-grid {
    --per: 6; --gap: 26px; --pad: 20px;
    display: grid; grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--per) - 1) * var(--gap)) / var(--per));
    gap: var(--gap); overflow-x: auto; scroll-behavior: smooth;
    padding: 24px var(--pad) 28px; scroll-padding-inline: var(--pad);
    scrollbar-width: none; -ms-overflow-style: none;
    scroll-snap-type: x proximity;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
}
.category-grid::-webkit-scrollbar { display: none; }
.cat-carousel .category-card { scroll-snap-align: start; }
@media (max-width: 1280px) { .category-grid { --per: 5; } }
@media (max-width: 1024px) { .category-grid { --per: 4; } }
@media (max-width: 720px)  { .category-grid { --per: 3; } }
@media (max-width: 520px)  { .category-grid { --per: 2; } }
.cat-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer; padding: 0;
    background: #fff; color: #000; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.18); transition: transform .2s, box-shadow .2s, background .2s;
}
.cat-arrow:hover { transform: translateY(-50%) scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,.24); }
.cat-arrow svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.cat-arrow--prev { left: 0; }
.cat-arrow--next { right: 0; }
.cat-arrow[hidden] { display: none; }
.category-card {
    background: #edeef0;                  /* light grey, stands out from the warm page bg */
    border: 1px solid transparent; border-radius: var(--radius);
    padding: 18px 16px 20px; text-align: center; overflow: hidden;
    box-shadow: 0 4px 16px rgba(20, 22, 28, .06);
    transition: box-shadow .25s, transform .25s;
}
.category-card:hover { box-shadow: 0 12px 30px rgba(20, 22, 28, .12); transform: translateY(-4px); }
.category-card__media { aspect-ratio: 1; margin-bottom: 14px; padding: 6px; }
.category-card__media img {
    width: 100%; height: 100%; object-fit: contain;
    mix-blend-mode: multiply;            /* dissolve the photo's backdrop into the tile */
    transition: transform .4s ease;
}
.category-card:hover .category-card__media img { transform: scale(1.05); }
.category-card__name {
    font-weight: 600; font-size: .9rem; color: var(--ink);
    letter-spacing: .04em; text-transform: uppercase;
}

/* ---------- Product grid + card ---------- */
.product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.product-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; transition: box-shadow .25s, transform .25s, border-color .25s;
    display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: transparent; }
.product-card__media {
    aspect-ratio: 1; background: #fff; overflow: hidden; padding: 14px;
}
.product-card__media img {
    width: 100%; height: 100%; object-fit: contain;
    transition: transform .45s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.06); }
.product-card__body { padding: 16px 16px 18px; border-top: 1px solid var(--line); }
.product-card__title {
    font-size: 1rem; margin-bottom: 6px; line-height: 1.3;
    transition: color .2s ease;
}
.product-card:hover .product-card__title { color: var(--ink); }
.product-card__material {
    font-size: .78rem; color: var(--ink-soft);
    letter-spacing: .04em; text-transform: uppercase;
}
.product-card--all {
    background: #edeef0; color: var(--ink);
    display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px;
    border: 2px solid rgba(28,30,35,.12);
}
.product-card--all:hover { background: #e4e6e9; border-color: rgba(28,30,35,.22); transform: translateY(-5px); }
.product-card__all-inner { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 1.05rem; }
.product-card__all-inner svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.product-card--all:hover .product-card__all-inner svg { transform: translateX(4px); }

/* ---------- Page head ---------- */
.page-head { background: var(--bg-muted); padding: 52px 0; border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(1.8rem, 4vw, 2.7rem); position: relative; display: inline-block; padding-bottom: 14px; }
.page-head h1::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 56px; height: 3px;
    background: var(--accent); border-radius: 2px;
}
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 640px; margin-top: 6px; }

/* ---------- Catalog layout ---------- */
.section--catalog { padding-top: 40px; }
.catalog-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
.catalog-filters { position: sticky; top: 90px; }
.catalog-filters h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin-bottom: 14px; }
.catalog-filters ul { list-style: none; padding: 0; margin: 0; }
.catalog-filters li { margin: 3px 0; }
.catalog-filters a {
    display: block; padding: 10px 14px; border-radius: 10px; color: var(--ink-soft);
    font-weight: 500; transition: background .2s, color .2s, padding .2s;
}
.catalog-filters a:hover { background: var(--bg-muted); color: var(--ink); padding-left: 18px; }
.catalog-filters a.active { background: var(--graphite); color: #fff; }
.empty { color: var(--ink-soft); padding: 40px 0; text-align: center; }

/* ---------- Product detail ---------- */
.breadcrumbs { display: flex; gap: 8px; font-size: .9rem; color: var(--ink-soft); margin-bottom: 24px; }
.breadcrumbs a:hover { color: var(--accent); }
.product-detail { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 48px; align-items: start; }
.product-detail__media { background: var(--bg-muted); border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; }
.product-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__info h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.product-meta { display: flex; flex-direction: column; gap: 8px; margin: 22px 0; }
.product-meta > div { display: flex; gap: 10px; }
.product-meta dt { color: var(--ink-soft); min-width: 90px; margin: 0; }
.product-meta dd { margin: 0; font-weight: 600; }
.product-description { font-size: 1.05rem; }
.product-note { background: var(--bg-muted); border-left: 3px solid var(--accent); padding: 14px 16px; border-radius: 8px; color: var(--ink-soft); margin: 22px 0; }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.related { margin-top: 72px; }

/* ---------- About ---------- */
.about-content { max-width: 760px; font-size: 1.1rem; }
.about-content p { margin-bottom: 1.2em; }
/* About intro: text + image */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-intro__title { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 18px; }
.about-intro__text p { font-size: 1.08rem; color: var(--ink-soft); margin-bottom: 1.1em; }
.about-intro__text .btn { margin-top: 10px; }
.about-intro__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
/* About stats */
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.about-stat__num { display: block; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; line-height: 1; color: var(--ink); }
.about-stat__label { display: block; margin-top: 10px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .07em; font-size: .85rem; }
@media (max-width: 820px) {
    .about-intro { grid-template-columns: 1fr; gap: 28px; }
    .about-intro__media { order: -1; }
    .about-stats { gap: 18px; }
}
@media (max-width: 520px) { .about-stats { grid-template-columns: 1fr; gap: 28px; } }
/* Store CTA band (full-bleed store photo + overlay) */
.store-cta {
    position: relative; display: grid; place-items: center; text-align: center;
    min-height: clamp(420px, 46vw, 600px);
    background: #11161c center top / cover no-repeat;
    color: #fff; margin-top: 40px;
}
.store-cta::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,12,16,.35) 0%, rgba(10,12,16,.6) 100%);
}
.store-cta__inner { position: relative; z-index: 2; max-width: 620px; padding: 48px 24px; }
.store-cta h2 {
    color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.7rem);
    text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px;
}
.store-cta p { color: rgba(255,255,255,.92); font-size: 1.12rem; margin-bottom: 28px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: transparent; }
.value-card__icon {
    width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
    background: var(--bg-muted); color: var(--ink); margin-bottom: 20px;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.value-card:hover .value-card__icon { background: var(--graphite); color: #fff; transform: rotate(-4deg) scale(1.06); }
.value-card__icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { color: var(--ink-soft); }

/* ---------- Gift promo ---------- */
.gift-promo {
    position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: center;
    background: linear-gradient(120deg, #f3f4f5 0%, #e8e9eb 55%, #dfe1e3 100%);
    /* large, soft, slightly asymmetric rounded corners (TL TR BR BL) like the reference */
    border-radius: clamp(20px, 3vw, 36px) clamp(60px, 9vw, 140px) clamp(20px, 3vw, 36px) clamp(60px, 9vw, 140px);
    padding: clamp(34px, 5vw, 70px); overflow: hidden;
}
.gift-promo__content { max-width: 540px; }
.gift-promo h2 {
    font-size: clamp(1.6rem, 3.4vw, 2.7rem); line-height: 1.1; text-transform: uppercase;
    letter-spacing: .01em; margin-bottom: 14px;
}
.gift-promo p { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 28px; max-width: 36ch; }
.gift-promo .btn--primary { background: #16181d; color: #fff; }
.gift-promo .btn--primary:hover { background: #000; }
.gift-promo__media {
    position: relative; display: flex; align-items: center; justify-content: center; min-height: 230px;
}
.gift-promo__media img {
    width: 38%; height: auto; object-fit: contain; mix-blend-mode: multiply;
    filter: drop-shadow(0 16px 30px rgba(80,60,30,.18));
}
.gift-promo__media img:nth-child(1) { transform: translateY(12%) rotate(-5deg); }
.gift-promo__media img:nth-child(2) { width: 46%; z-index: 2; margin-inline: -5%; }
.gift-promo__media img:nth-child(3) { transform: translateY(10%) rotate(5deg); }

@media (max-width: 720px) {
    .gift-promo { grid-template-columns: 1fr; text-align: center; gap: 6px; }
    .gift-promo__content { max-width: 100%; }
    .gift-promo p { margin-inline: auto; }
    .gift-promo__media { min-height: 0; margin-top: 18px; }
}

/* ---------- Contacts ---------- */
.contacts-layout { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: start; }
.contacts-info { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.contact-item__label { text-transform: uppercase; letter-spacing: .08em; font-size: .75rem; color: var(--ink-soft); }
.contact-item__value { font-size: 1.1rem; font-weight: 600; }
a.contact-item__value:hover { color: var(--accent); }
.contact-item__value--icon { display: inline-flex; align-items: center; gap: 10px; }
.contact-icon { width: 20px; height: 20px; flex: none; }
.contact-icon--wa { color: #25D366; }   /* WhatsApp green */
.contacts-map .section-title { text-align: left; margin-bottom: 16px; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); height: 300px; max-width: 560px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-link { display: inline-block; margin-top: 12px; color: var(--accent-dk); font-weight: 600; }

/* ---------- Error ---------- */
.error-page { text-align: center; padding: 100px 0; }
.error-page h1 { font-size: 5rem; color: var(--silver-2); margin-bottom: 0; }
.error-page p { color: var(--ink-soft); margin-bottom: 28px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--graphite); color: var(--silver-1); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; padding: 56px 20px 36px; }
.site-footer .logo-text { color: #fff; }
.footer-brand p { color: var(--silver-2); max-width: 280px; margin-top: 12px; }
.site-footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px; font-size: .85rem; color: var(--silver-2); display: flex; justify-content: space-between; align-items: center; gap: 12px 24px; flex-wrap: wrap; }
.footer-credit a { color: var(--silver-1); font-weight: 600; }
.footer-credit a:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
    .product-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
    .nav-toggle { display: flex; order: 3; }
    .main-nav {
        position: fixed; inset: 70px 0 auto 0; flex-direction: column; gap: 0;
        background: #fff; border-bottom: 1px solid var(--line); padding: 8px 20px;
        transform: translateY(-120%); transition: transform .3s ease; margin-left: 0;
    }
    .main-nav.open { transform: translateY(0); }
    .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
    .main-nav a:hover { color: var(--ink); }
    .header-inner { gap: 14px; }
    .lang-switch { margin-left: auto; order: 2; }
    .catalog-layout { grid-template-columns: 1fr; }
    .catalog-filters { position: static; }
    .catalog-filters ul { display: flex; flex-wrap: wrap; gap: 8px; }
    .catalog-filters a { background: var(--white); border: 1px solid var(--line); }
    .catalog-filters a:hover { padding-left: 14px; }
    .catalog-filters a.active { background: var(--graphite); border-color: var(--graphite); color: #fff; }
    .product-detail { grid-template-columns: 1fr; gap: 28px; }
    .contacts-layout { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 44px 0; }
}

/* ---------- Mobile polish (phones) ---------- */
@media (max-width: 520px) {
    /* Category carousel: rely on swipe; reclaim the gutters used by arrows */
    .cat-carousel { padding-inline: 0; }
    .cat-arrow { display: none; }
    .category-grid { --gap: 14px; --pad: 16px; padding-block: 16px 22px; }
    .category-card { padding: 14px 12px 16px; }
    .category-card__name { font-size: .82rem; }

    /* Product detail CTAs: full-width, thumb-friendly */
    .product-actions { gap: 10px; }
    .product-actions .btn { flex: 1 1 auto; text-align: center; padding-inline: 16px; }

    /* A touch more breathing room between stacked sections' inner cards */
    .product-card__body { padding: 12px 12px 14px; }
    .product-card__title { font-size: .92rem; }
}
@media (max-width: 400px) {
    .container { padding-inline: 16px; }
    .section-title { margin-bottom: 22px; }
}
