/* Taversham's Homepage Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Jost:wght@300;400;500&display=swap');


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
  --black: #111111;
  --navy: #0d1f3c;
  --blue: #1e4a8a;
  --gold: #b8943a;
  --gold-lt: #d4ac52;
  --rule: #d8d4ce;
  --bg: #ffffff;
  --offwhite: #f7f5f2;
  --mid: #6b6460;
}
body { font-family: 'Jost', sans-serif; background: var(--bg); color: var(--black); overflow-x: hidden; }

/* TOP BAR */
.top-bar { background: var(--navy); padding: 0.65rem 3rem; display: flex; align-items: center; justify-content: space-between; }
.top-bar-left { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-lt); }
.top-bar-right { display: flex; gap: 2rem; align-items: center; }
.top-bar-right a { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.top-bar-right a:hover { color: var(--gold-lt); }
.top-bar-phone { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--gold-lt); }

/* NAV */
nav { position: sticky; top: 0; z-index: 200; background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.1); box-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; height: 76px; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: white; text-decoration: none; transition: color 0.2s; }
.nav-logo:hover { color: var(--gold-lt); }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; list-style: none; height: 100%; margin: 0; padding: 0; }
.nav-links li { height: 100%; display: flex; align-items: center; position: relative; }
.nav-links > li > a {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); text-decoration: none; padding: 0 1rem;
  height: 100%; display: flex; align-items: center;
  border-bottom: 2px solid transparent; transition: all 0.2s; white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--gold-lt); border-bottom-color: var(--gold-lt); }
.nav-links li:hover > .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid var(--gold);
  min-width: 240px;
  z-index: 300;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.dropdown a {
  display: block;
  padding: 0.75rem 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--gold-lt); background: rgba(255,255,255,0.05); }
.nav-actions { display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }
.btn-nav { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.65rem 1.3rem; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.btn-outline-nav { border: 1px solid rgba(255,255,255,0.4); color: white; }
.btn-outline-nav:hover { border-color: var(--gold-lt); color: var(--gold-lt); }
.btn-filled-nav { background: var(--gold); color: var(--navy); border: 1px solid var(--gold); font-weight: 500; }
.btn-filled-nav:hover { background: var(--gold-lt); border-color: var(--gold-lt); }

/* ══ HERO BANNER — SOTHEBY'S STYLE ══ */
.hero-banner {
  display: block;
  height: 600px;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
}

/* Left image column */
.hero-img-col {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide a { display: block; width: 100%; height: 100%; position: relative; z-index: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.hero-slide.cover a { position: absolute; inset: 0; z-index: 1; }
.hero-slide.cover img {
  width: 100%;
  height: auto;
  object-fit: unset;
  position: absolute;
  top: 0;
  left: 0;
}
#s1 img {
  top: -80px;
}

/* Dots legibility */
.slide-arrows { display: contents; }
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 52px; height: 52px;
  background: rgba(13,31,60,0.82);
  border: 2px solid var(--gold);
  color: var(--gold); font-size: 1.4rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  backdrop-filter: blur(6px);
  border-radius: 3px;
}
.slide-arrow:hover { background: var(--navy); color: var(--gold-lt); border-color: var(--gold-lt); }
.slide-arrow.prev { left: 1rem; }
.slide-arrow.next { right: 1rem; }

/* Dots */
.slide-dots { position: absolute; bottom: 1.8rem; left: 2rem; z-index: 20; display: flex; gap: 6px; align-items: center; }
.slide-dot { width: 22px; height: 2px; background: rgba(13,31,60,0.18); border: none; cursor: pointer; padding: 0; transition: all 0.3s; }
.slide-dot.active { background: var(--navy); width: 38px; }

/* Right text panel */
.hero-text-col {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--rule);
  background: white;
  overflow: hidden;
}
.hero-text-upper {
  flex: 1;
  padding: 2.5rem 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.hero-eyebrow { font-size: 0.53rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hero-divider { width: 36px; height: 1px; background: var(--rule); margin-bottom: 1.5rem; }
.hero-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.hero-panel-title em { font-style: italic; }
.hero-panel-sub {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mid);
  flex: 1;
}
.hero-panel-meta {
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 1rem 0;
  margin-top: 1.2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero-panel-meta b { color: var(--navy); font-weight: 500; }

/* CTA buttons */
.hero-ctas { padding: 1.5rem 2.5rem; display: flex; flex-direction: column; gap: 0.6rem; border-bottom: 1px solid var(--rule); }
.btn-block { display: block; text-align: center; padding: 0.85rem; font-size: 0.57rem; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: all 0.2s; }
.btn-block-navy { background: var(--navy); color: white; }
.btn-block-navy:hover { background: var(--blue); }
.btn-block-outline { border: 1px solid var(--rule); color: var(--navy); }
.btn-block-outline:hover { border-color: var(--navy); background: var(--offwhite); }

/* Thumbnail strip */
.hero-thumbs { display: flex; border-top: 0; }
.hero-thumb { flex: 1; height: 80px; overflow: hidden; cursor: pointer; position: relative; border-right: 1px solid var(--rule); transition: opacity 0.2s; opacity: 0.5; }
.hero-thumb:last-child { border-right: none; }
.hero-thumb.active { opacity: 1; }
.hero-thumb:hover { opacity: 0.85; }
.hero-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-thumb.active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--navy); }

/* TICKER */
.ticker { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0.65rem 0; overflow: hidden; }
.ticker-inner { display: flex; white-space: nowrap; animation: tick 42s linear infinite; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { font-size: 0.57rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-lt); padding: 0 2.5rem; display: inline-flex; align-items: center; gap: 2.5rem; }
.ticker-item::after { content: '·'; color: var(--gold-lt); font-size: 1.2rem; line-height: 0; }

/* SECTIONS */
.wrap { padding: 4.5rem 3rem; }
.wrap.alt { background: var(--offwhite); }
.wrap.dark { background: var(--navy); }
.sec-hdr { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--rule); }
.sec-eyebrow { font-size: 0.53rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.sec-h { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 500; color: var(--navy); line-height: 1.2; }
.sec-h em { font-style: italic; }
.sec-lnk { font-size: 0.53rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--navy); padding-bottom: 1px; white-space: nowrap; }
.sec-lnk:hover { color: var(--gold); border-color: var(--gold); }

/* AUCTION CARDS */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); }
.acard { background: white; cursor: pointer; transition: box-shadow 0.25s; display: flex; flex-direction: column; }
.acard:hover { box-shadow: 0 6px 28px rgba(13,31,60,0.1); position: relative; z-index: 1; }
.acard-img { height: 240px; overflow: hidden; position: relative; background: var(--offwhite); }
.acard-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.acard:hover .acard-img img { transform: scale(1.04); }
.acard-badge { position: absolute; top: 1rem; left: 1rem; background: var(--navy); color: white; font-size: 0.48rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.28rem 0.65rem; }
.acard-body { padding: 1.4rem 1.6rem 1.8rem; flex: 1; display: flex; flex-direction: column; border-top: 2px solid var(--navy); }
.acard-date { font-size: 0.5rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.acard-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.25; }
.acard-desc { font-family: 'EB Garamond', serif; font-size: 0.95rem; color: var(--mid); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.acard-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.8rem; border-top: 1px solid var(--rule); }
.acard-lots { font-size: 0.5rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); }
.acard-cta { font-size: 0.5rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); text-decoration: none; border-bottom: 1px solid currentColor; }

/* STATS */
.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); background: var(--navy); }
.stat { padding: 2.8rem 2rem; border-right: 1px solid rgba(255,255,255,0.1); text-align: center; }
.stat:last-child { border-right: none; }
.stat-n { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 400; color: var(--gold-lt); line-height: 1; margin-bottom: 0.35rem; }
.stat-l { font-size: 0.5rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.split-img { overflow: hidden; }
.split-img img, .split-img-bg { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 500px; background-size: cover; background-position: center; }
.split-panel { padding: 4rem 3.5rem; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255,255,255,0.1); background: var(--navy); }
.split-panel .sec-h { margin-bottom: 1rem; color: white; }
.split-panel .sec-eyebrow { color: var(--gold-lt); }
.split-body { font-family: 'EB Garamond', serif; font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 2.2rem; }
.step { display: flex; gap: 1.2rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); align-items: flex-start; }
.step:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.step-num { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold-lt); min-width: 1.4rem; line-height: 1.3; }
.step strong { display: block; font-size: 0.57rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 0.2rem; font-weight: 500; }
.step p { font-family: 'EB Garamond', serif; font-size: 0.93rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.btn-solid { display: inline-block; padding: 0.85rem 2rem; background: var(--gold); color: var(--navy); font-size: 0.57rem; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: background 0.2s; align-self: flex-start; }
.btn-solid:hover { background: var(--gold-lt); }

.wrap.dark .sec-hdr { border-bottom-color: rgba(255,255,255,0.1); }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); }
.how-card { background: var(--offwhite); padding: 2.8rem 2.2rem; position: relative; }
.how-bg-n { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 400; color: rgba(13,31,60,0.06); position: absolute; top: 1.2rem; right: 1.8rem; line-height: 1; }
.how-icon { width: 34px; height: 34px; border: 1px solid var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.how-icon svg { width: 14px; height: 14px; stroke: var(--navy); fill: none; stroke-width: 1.5; }
.how-h { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 500; color: var(--navy); margin-bottom: 0.6rem; }
.how-p { font-family: 'EB Garamond', serif; font-size: 0.93rem; line-height: 1.7; color: var(--mid); }

/* QUOTE / TESTIMONIALS */
.quote-wrap { padding: 5rem 3rem; background: var(--navy); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
.testimonial-item {
  background: var(--navy);
  padding: 3rem 2.5rem;
  text-align: center;
}
.testimonial-item--center {
  background: #0a1a30;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.testi-stars {
  color: var(--gold-lt);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.testi-txt {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-style: italic;
  color: white;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.testi-attr {
  font-size: 0.53rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* NEWS */
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); }
.ncard { background: white; padding: 2rem 1.8rem 2.2rem; cursor: pointer; transition: background 0.2s; }
.ncard:hover { background: var(--offwhite); }
.ncard-date { font-size: 0.5rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.ncard-h { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 500; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.3; }
.ncard-p { font-family: 'EB Garamond', serif; font-size: 0.93rem; line-height: 1.65; color: var(--mid); margin-bottom: 1rem; }
.ncard-lnk { font-size: 0.5rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); text-decoration: none; border-bottom: 1px solid currentColor; }

/* CTA BAND */
.cta-band { display: flex; align-items: center; justify-content: space-between; padding: 3rem 3rem; background: white; border-top: 1px solid var(--rule); gap: 2rem; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 500; color: var(--navy); margin-bottom: 0.3rem; }
.cta-band p { font-family: 'EB Garamond', serif; font-size: 1rem; color: var(--mid); }
.cta-btns { display: flex; gap: 0.8rem; flex-shrink: 0; }
.btn-outline { display: inline-block; padding: 0.82rem 1.8rem; border: 1px solid var(--navy); color: var(--navy); font-size: 0.57rem; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; transition: all 0.2s; }
.btn-outline:hover { background: var(--navy); color: white; }

/* AUCTION ALERTS */
.alerts-section {
  background: #0d1f3c;
  padding: 3.5rem 3rem;
  text-align: center;
}
.alerts-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.5rem;
}
.alerts-sub {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: white;
  margin-bottom: 2rem;
}
.alerts-form-row {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 1rem;
}
.alerts-field {
  flex: 1;
  padding: 0.9rem 1rem;
  background: white;
  border: 1px solid rgba(255,255,255,0.25);
  border-right: none;
  color: #0d1f3c;
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.alerts-field::placeholder { color: rgba(13,31,60,0.45); }
.alerts-field:focus { border-color: #2a62b8; }
.alerts-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(13,31,60,0.5)' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: white;
  cursor: pointer;
  color: rgba(13,31,60,0.5);
}
.alerts-select option { background: white; color: #0d1f3c; }
.alerts-btn {
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  font-weight: 500;
}
.alerts-btn:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.alerts-disclaimer {
  font-family: 'EB Garamond', serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.alerts-disclaimer a { color: white; text-decoration: underline; }

/* FOOTER */
footer { background: var(--navy); border-top: 3px solid var(--gold); padding: 4rem 3rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: white; margin-bottom: 0.8rem; display: block; text-decoration: none; }
.footer-tag { font-family: 'EB Garamond', serif; font-size: 0.93rem; line-height: 1.7; color: rgba(255,255,255,0.38); max-width: 240px; }
.footer-col h4 { font-size: 0.5rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-family: 'EB Garamond', serif; font-size: 0.93rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-contact p { font-family: 'EB Garamond', serif; font-size: 0.93rem; line-height: 1.8; color: rgba(255,255,255,0.4); }
.footer-contact strong { display: block; font-size: 0.48rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 400; margin-top: 0.8rem; margin-bottom: 0.2rem; }
.footer-app-badges { display: flex; gap: 0.8rem; align-items: center; margin-top: 1.2rem; }
.footer-app-badges a { display: block; transition: opacity 0.2s; }
.footer-app-badges a:hover { opacity: 0.75; }
.footer-app-badges img { height: 38px; width: auto; display: block; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.48rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a { font-size: 0.48rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.2s; }
.footer-social a:hover { color: var(--gold-lt); }
/* ALERTS SUCCESS / ERROR */
.alerts-success {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 0.8rem 1.5rem;
  margin-bottom: 1.5rem;
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  border-radius: 2px;
  display: inline-block;
}
.alerts-error {
  background: rgba(180,50,50,0.2);
  border: 1px solid rgba(255,100,100,0.4);
  color: rgba(255,200,200,0.9);
  padding: 0.8rem 1.5rem;
  margin-bottom: 1.5rem;
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  border-radius: 2px;
  display: inline-block;
}
.alerts-error a { color: var(--gold-lt); }

/* ── APP DOWNLOAD SLIDE ── */
.hero-app-slide { background: #e8e5e0; }
.hero-app-slide > a { position: absolute; inset: 0; display: block; z-index: 1; }
.hero-app-slide > a img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.app-slide-stores {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 20;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.app-slide-badge-link {
  display: block;
  border: 2px solid white;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.app-slide-badge-link:hover { border-color: var(--gold-lt); transform: translateY(-2px); }
.app-slide-badge-link img { height: 40px; width: auto; display: block; }

/* Smart Slider wrapper */
.tav-smart-slider-wrap { width: 100%; overflow: hidden; }
.tav-smart-slider-wrap .n2-ss-slider-wrapper { margin: 0 !important; }
