/* ═══════════════════════════════════════════════════
   Orologeria — Frontend CSS
   Palette: avorio caldo · grafite · oro antico
   Font:    Cormorant Garamond (display) · DM Sans (body)
═══════════════════════════════════════════════════ */

:root {
  --ivory:      #FAF9F6;
  --ivory-alt:  #F3F1EC;
  --stone:      #E8E4DC;
  --graphite:   #1A1A1A;
  --graphite-2: #3A3A3A;
  --mid:        #888880;
  --gold:       #9A7D4A;
  --gold-light: #C4A97A;
  --white:      #FFFFFF;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --max-w:      1280px;
  --radius:     4px;
  --shadow:     0 2px 16px rgba(26,26,26,.08);
  --shadow-hover: 0 8px 32px rgba(26,26,26,.14);
  --transition: .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--ivory); color: var(--graphite);
       line-height: 1.6; -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; height: auto; }

/* Accessibile per screen reader, invisibile visivamente */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
a    { color: inherit; text-decoration: none; }

/* ── Header ─────────────────────────────────── */
.site-header {
  background: var(--ivory);
  border-bottom: 1px solid var(--stone);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; flex-direction: column; gap: .1rem; }
.logo-name {
  font-family: var(--ff-display);
  font-size: 1.5rem; font-weight: 400; letter-spacing: .04em;
  color: var(--graphite); line-height: 1;
}
.logo-tagline { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
                color: var(--gold); font-weight: 400; }
.main-nav { display: flex; gap: 2rem; }
.nav-link  { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
             color: var(--mid); transition: color var(--transition); font-weight: 400; }
.nav-link:hover, .nav-link.active { color: var(--graphite); }

/* ── Flashes ─────────────────────────────────── */
.flash-wrap { max-width: var(--max-w); margin: 1rem auto; padding: 0 2rem; }
.flash { padding: .75rem 1.25rem; border-radius: var(--radius); font-size: .875rem;
         margin-bottom: .5rem; font-family: var(--ff-body); }
.flash--success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.flash--error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.flash--warning { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }

/* ── Buttons ─────────────────────────────────── */
.btn-primary {
  display: inline-block; padding: .7rem 2rem;
  background: var(--graphite); color: var(--ivory);
  font-family: var(--ff-body); font-size: .8rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--graphite); border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn-ghost {
  display: inline-block; padding: .7rem 2rem;
  background: transparent; color: var(--graphite);
  font-family: var(--ff-body); font-size: .8rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--stone); border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition);
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--graphite); }

/* ── Section ─────────────────────────────────── */
.section { max-width: var(--max-w); margin: 0 auto; padding: 4rem 2rem; }
.section--alt { background: var(--ivory-alt); max-width: 100%; padding: 3rem 2rem; }
.section--alt > * { max-width: var(--max-w); margin: 0 auto; }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 2.5rem; }
.section-title { font-family: var(--ff-display); font-size: 2rem; font-weight: 400;
                 letter-spacing: .02em; color: var(--graphite); }
.section-link  { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
                 color: var(--gold); transition: opacity var(--transition); }
.section-link:hover { opacity: .7; }

/* ── Hero ────────────────────────────────────── */
.hero {
  max-width: var(--max-w); margin: 0 auto; padding: 6rem 2rem 5rem;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem;
  min-height: 60vh;
}
.hero-eyebrow { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
                color: var(--gold); margin-bottom: 1rem; }
.hero-title   { font-family: var(--ff-display); font-size: clamp(3.5rem, 7vw, 6rem);
                font-weight: 300; line-height: 1.05; letter-spacing: .01em;
                color: var(--graphite); margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub     { font-size: 1rem; color: var(--mid); margin-bottom: 2.5rem; font-weight: 300; }
.hero-deco    { position: relative; height: 400px; }
.hero-circle  {
  width: 320px; height: 320px; border-radius: 50%;
  border: 1px solid var(--stone);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: rotate-slow 60s linear infinite;
}
.hero-line    {
  width: 1px; height: 200px; background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
}
@keyframes rotate-slow { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* ── Watch Grid ──────────────────────────────── */
.watch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}
.watch-grid--4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }

.watch-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--stone); border-radius: var(--radius);
  overflow: hidden; background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.watch-card:hover { box-shadow: var(--shadow-hover);  }

.watch-card__img-wrap {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  background: var(--ivory-alt);
}
.watch-card__img-wrap img { width: 100%; height: 100%; object-fit: cover;
                             transition: transform .4s ease; }
.watch-card:hover .watch-card__img-wrap img { transform: scale(1.04); }
.watch-card__no-img { width: 100%; height: 100%; display: flex; align-items: center;
                      justify-content: center; font-size: 3rem; color: var(--stone); }
.watch-card__badge  {
  position: absolute; bottom: .75rem; left: .75rem;
  background: rgba(26,26,26,.8); color: var(--ivory);
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .2rem .6rem; border-radius: 2px; backdrop-filter: blur(4px);
}
.watch-card__badge--status          { bottom: 2.5rem; background: rgba(26,26,26,.75); }
.watch-card__badge--prenotato       { background: rgba(251,191,36,.85); color: #1a1a1a; }
.watch-card__badge--venduto         { background: rgba(26,26,26,.9); color: #e5e7eb; }
.watch-card__price--reserved        { font-style: italic; font-size: 1rem;
                                      color: var(--mid); border-color: transparent; }
/* detail page */
.detail-status { display: inline-block; padding: .3rem .9rem;
                  border-radius: 3px; font-size: .8rem; letter-spacing: .1em;
                  text-transform: uppercase; margin-bottom: .75rem; font-weight: 500; }
.detail-status--prenotato { background: #fef3c7; color: #92400e; }
.detail-status--venduto   { background: #f3f4f6; color: #374151; }
.detail-price--reserved   { font-style: italic; font-size: 1.2rem; color: var(--mid);
                            border-top: 1px solid var(--stone); padding-top: .5rem; }
.watch-card__body  { padding: 1.25rem 1.25rem 1.5rem; flex: 1; }
.watch-card__brand { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
                     color: var(--gold); margin-bottom: .3rem; }
.watch-card__model { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 400;
                     color: var(--graphite); margin-bottom: .2rem; line-height: 1.3; }
.watch-card__ref   { font-size: .78rem; color: var(--mid); margin-bottom: .5rem; }
.watch-card__meta  { font-size: .78rem; color: var(--mid); margin-bottom: .5rem; }
.watch-card__price { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 500;
                     color: var(--graphite); margin-top: auto; padding-top: .5rem;
                     border-top: 1px solid var(--stone); }

/* ── Quick Filters ───────────────────────────── */
.quickfilters { text-align: center; }
.quickfilters__label { font-size: .75rem; letter-spacing: .16em; text-transform: uppercase;
                       color: var(--mid); margin-bottom: 1rem; }
.quickfilters__pills { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; }
.pill { padding: .35rem 1rem; border: 1px solid var(--stone); border-radius: 20px;
        font-size: .82rem; color: var(--graphite); background: var(--white);
        transition: background var(--transition), border-color var(--transition); }
.pill:hover { background: var(--graphite); color: var(--ivory); border-color: var(--graphite); }

/* ── Arrival List ────────────────────────────── */
.arrival-list { display: flex; flex-direction: column; gap: 0; }
.arrival-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 1.5rem; align-items: center;
  padding: 1.25rem 0; border-bottom: 1px solid var(--stone);
  transition: opacity var(--transition);
}
.arrival-item:hover { opacity: .75; }
.arrival-item__img  { width: 80px; height: 80px; border-radius: var(--radius);
                      overflow: hidden; background: var(--ivory-alt); flex-shrink: 0; }
.arrival-item__img img { width: 100%; height: 100%; object-fit: cover; }
.arrival-item__no-img  { width: 100%; height: 100%; display: flex; align-items: center;
                          justify-content: center; color: var(--stone); }
.arrival-item__brand { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
                       color: var(--gold); margin-bottom: .25rem; }
.arrival-item__model { font-family: var(--ff-display); font-size: 1.05rem; color: var(--graphite); }
.arrival-item__meta  { font-size: .78rem; color: var(--mid); margin-top: .2rem; }
.arrival-item__price { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 500;
                       white-space: nowrap; }

/* ── Catalog Layout ──────────────────────────── */
.catalog-layout {
  max-width: var(--max-w); margin: 0 auto; padding: 2rem;
  display: grid; grid-template-columns: 260px 1fr; gap: 3rem;
  align-items: start;
}
.filters-sidebar {
  position: sticky; top: 80px;
  background: var(--white); border: 1px solid var(--stone);
  border-radius: var(--radius); padding: 1.75rem;
}
.filters-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.filters-title  { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 400; }
.filters-reset  { font-size: .75rem; color: var(--gold); letter-spacing: .06em;
                  text-transform: uppercase; text-decoration: underline; }
.filter-group { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--stone); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-label { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
                color: var(--mid); margin-bottom: .65rem; }
.filter-input, .filter-select {
  display: block; width: 100%;
  padding: .5rem .75rem; font-family: var(--ff-body); font-size: .875rem;
  border: 1px solid var(--stone); border-radius: var(--radius);
  background: var(--ivory); color: var(--graphite); outline: none;
  transition: border-color var(--transition);
}
.filter-input:focus, .filter-select:focus { border-color: var(--graphite); }
.filter-input--sm  { width: calc(50% - .4rem); display: inline-block; }
.filter-select--sm { width: auto; padding: .4rem .65rem; font-size: .8rem; }
.filter-range { display: flex; align-items: center; gap: .6rem; }
.filter-range-sep { color: var(--mid); font-size: .85rem; }
.filter-check { display: flex; align-items: center; gap: .5rem; font-size: .875rem;
                color: var(--graphite); cursor: pointer; margin-bottom: .4rem; }
.filter-check input { accent-color: var(--gold); cursor: pointer; }
.btn-filter { width: 100%; margin-top: .5rem; padding: .6rem; background: var(--graphite);
              color: var(--ivory); font-family: var(--ff-body); font-size: .78rem;
              font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
              border: none; border-radius: var(--radius); cursor: pointer;
              transition: background var(--transition); }
.btn-filter:hover { background: var(--gold); }
.btn-filter-toggle { display: none; }

.catalog-bar   { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.catalog-count { font-size: .875rem; color: var(--mid); flex: 1; }
.catalog-sort  { display: flex; align-items: center; gap: .5rem; }

/* ── Empty state ─────────────────────────────── */
.empty-state { text-align: center; padding: 5rem 1.5rem; }
.empty-state__icon { font-size: 2.5rem; opacity: .2; margin-bottom: 1rem; }
.empty-state__text { color: var(--mid); margin-bottom: 2rem; }

/* ── Watch Detail ────────────────────────────── */
.detail-layout {
  max-width: var(--max-w); margin: 0 auto; padding: 3rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start;
}
.gallery-main  { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden;
                 background: var(--ivory-alt); margin-bottom: 1rem; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover;
                    transition: opacity .25s; }
.gallery-placeholder { width: 100%; height: 100%; display: flex; align-items: center;
                       justify-content: center; font-size: 5rem; color: var(--stone); }
.gallery-thumbs { display: flex; gap: .75rem; flex-wrap: wrap; }
.gallery-thumb  { width: 72px; height: 72px; border-radius: var(--radius); overflow: hidden;
                  border: 2px solid transparent; cursor: pointer; background: var(--ivory-alt);
                  padding: 0; transition: border-color var(--transition); }
.gallery-thumb img   { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb:hover  { border-color: var(--graphite); }

.detail-brand  { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
                 color: var(--gold); margin-bottom: .5rem; }
.detail-model  { font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3rem);
                 font-weight: 400; line-height: 1.1; color: var(--graphite); margin-bottom: .4rem; }
.detail-ref    { font-size: .875rem; color: var(--mid); margin-bottom: 1.5rem; }
.detail-price  { font-family: var(--ff-display); font-size: 2rem; font-weight: 500;
                 color: var(--graphite); margin-bottom: 2rem; padding-bottom: 2rem;
                 border-bottom: 1px solid var(--stone); }
.detail-specs  { margin-bottom: 2rem; }
.spec-row      { display: flex; justify-content: space-between; align-items: baseline;
                 padding: .6rem 0; border-bottom: 1px solid var(--stone); }
.spec-key      { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--mid); }
.spec-val      { font-size: .9rem; color: var(--graphite); font-weight: 400; }
.detail-desc   { font-size: .95rem; color: var(--graphite-2); line-height: 1.8;
                 margin-bottom: 2rem; font-weight: 300; }
.detail-cta    { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── About + Contacts Page ─────────────────── */
.pg-header {
  padding: 2rem 2rem;
}
.pg-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pg-header__title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--gold-light);
}
.pg-header__title em {
  font-style: italic;
  color: var(--gold-light);
}
.about-strip {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, rgba(250,249,246,0.6), transparent);
}
.about-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  padding: 0;
}
.about-strip__body {
  flex: 1;
  max-width: 70rem;
  column-count: 2;
  column-gap: 2rem;
  font-size: 1rem;
  color: var(--graphite-2);
  line-height: 1.8;
}
.about-strip__label { display: none; }
.about-strip__intro {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--graphite);
  break-inside: avoid;
}
.about-strip__body p { margin-bottom: 1rem; break-inside: avoid; }
.about-strip__image {
  width: 320px;
  flex: 0 0 320px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ivory-alt);
  display: none; /* mostrabile se si aggiunge immagine */
}
@media (max-width: 900px) {
  .about-strip__inner { flex-direction: column; }
  .about-strip__body { column-count: 1; }
  .about-strip__image { width: 100%; flex: 0 0 auto; display: block; }
}
.contacts-strip {
  background: var(--ivory-alt);
  padding: 5rem 2rem;
}
.contacts-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.ci-block__title {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--graphite);
  margin-bottom: 1.5rem;
}
.ci-dl {
  margin-bottom: 2rem;
}
.ci-row {
  padding: .8rem 0;
  border-bottom: 1px solid var(--stone);
}
.ci-row:first-child { border-top: 1px solid var(--stone); }
.ci-row dt {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: .2rem;
}
.ci-row dd {
  font-size: .95rem;
  color: var(--graphite);
}
.ci-row a { transition: color var(--transition); }
.ci-row a:hover { color: var(--gold); }
.map-wrap {
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* ── Footer ──────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--stone);
  margin-top: 4rem;
  background: var(--ivory-alt);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 2rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--stone);
}
.footer-col {
  min-width: 0;
}
.footer-col--brand {
  max-width: 40ch;
}
.footer-brand {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--graphite);
  margin-bottom: .5rem;
}
.footer-title {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.footer-text {
  color: var(--graphite-2);
  font-size: .9rem;
  margin-bottom: .4rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.footer-links li {
  color: var(--graphite-2);
  font-size: .88rem;
}
.footer-links a {
  color: var(--graphite-2);
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-legal a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}
.footer-copy {
  font-size: .78rem;
  color: var(--mid);
}
.footer-legal {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: .78rem;
  color: var(--mid);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-deco { display: none; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; display: none; }
  .filters-sidebar.open { display: block; }
  /* Unified control styles for dropdowns and small buttons */
  .filter-select, .btn-filter-toggle {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .5rem 1rem; background: var(--ivory);
    border: 1px solid var(--stone); border-radius: calc(var(--radius) + 2px);
    font-size: .9rem; color: var(--graphite); cursor: pointer;
    line-height: 1; vertical-align: middle;
  }
  .filter-select { padding-right: 1.25rem; }
  .filter-select:focus, .btn-filter-toggle:focus { outline: 2px solid rgba(154,125,74,0.15); outline-offset: 2px; }
  .detail-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-strip__inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-strip__meta { position: static; flex-direction: row; align-items: baseline; gap: 1rem; }
  .contacts-strip__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .header-inner { padding: .75rem 1rem; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center;
                 width: 40px; height: 40px; background: transparent; border: 1px solid var(--stone);
                 border-radius: 6px; margin-left: 0.5rem; cursor: pointer; }
  .nav-toggle .hamburger { width: 18px; height: 2px; background: var(--graphite); display: block; position: relative; }
  .nav-toggle .hamburger::before, .nav-toggle .hamburger::after { content: ""; position: absolute; left: 0; right: 0; height: 2px; background: var(--graphite); }
  .nav-toggle .hamburger::before { top: -6px; }
  .nav-toggle .hamburger::after  { top: 6px; }

  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--ivory); padding: 1rem 1rem; flex-direction: column; gap: .5rem; border-top: 1px solid var(--stone); z-index: 90; }
  .main-nav .nav-link { display: block; padding: .6rem 1rem; font-size: .95rem; }
  .site-header.nav-open .main-nav { display: flex; }

  /* Ombra / bordo per maggiore separazione su mobile */
  .site-header { transition: box-shadow var(--transition), border-color var(--transition); }
  .site-header { border-bottom: 1px solid rgba(26,26,26,0.04); }
  .site-header.nav-open { box-shadow: 0 12px 30px rgba(26,26,26,0.12); border-bottom-color: rgba(26,26,26,0.06); }
  .site-header.nav-open .main-nav { box-shadow: 0 8px 28px rgba(26,26,26,0.10); }
  .section { padding: 2.5rem 1rem; }
  .watch-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .arrival-item { grid-template-columns: 64px 1fr; }
  .arrival-item__price { display: none; }
  .pg-header { padding: 3rem 1rem; }
  .about-strip { padding: 3rem 1rem; }
  .contacts-strip { padding: 3rem 1rem; }
  .map-wrap iframe { height: 300px; }
  .footer-inner { padding: 2rem 1rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
