:root {
  --paper: #f4efe6;
  --cream: #fffaf2;
  --ink: #211b17;
  --muted: #6f665d;
  --line: #d9cdbb;
  --red: #a80d18;
  --gold: #c99a3d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Shared */
.wrapper { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.grid { display: grid; gap: 28px; }

/* Navigation */
.topbar { background: rgba(244,239,230,0.96); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; justify-content: center; align-items: center; min-height: 72px; }
.nav-links { display: flex; gap: 34px; align-items: center; flex-wrap: wrap; justify-content: center; }
.nav-links a { font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 700; color: var(--ink); }
.nav-links a:hover { color: var(--red); }

/* Hero */
.hero { max-width: 1180px; margin: 0 auto; padding: 10px 22px 50px; }
.logo-wrap { display: flex; justify-content: center; margin-bottom: -10px; }
.logo-wrap img,
.logo { max-width: 760px; width: 80%; margin: 0 auto; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; margin-top: -20px; }
.hero-copy { text-align: left; }
.kicker {
  display: inline-block;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 8px 15px;
  color: #9a4c17;
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-headline { margin: 0 0 24px; font-size: clamp(54px, 7vw, 92px); line-height: .92; font-weight: 500; letter-spacing: -3px; }
.hero-headline span { color: var(--red); }
.hero-sub { margin: 0 0 20px; color: var(--red); font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; font-weight: 700; }
.hero-text { max-width: 660px; margin: 0; color: #4d463f; font-size: 21px; line-height: 1.75; }
.cta-row { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  border: 1px solid #bdb2a3;
  border-radius: 999px;
  padding: 14px 22px;
  background: white;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
}
.btn.primary { background: var(--red); border-color: var(--red); color: white; }
.hero-feature { background: var(--cream); border: 1px solid var(--line); border-radius: 26px; padding: 18px; box-shadow: 0 20px 45px rgba(0,0,0,.08); cursor: pointer; }
.hero-feature img { width: 100%; height: 460px; object-fit: cover; border-radius: 18px; }
.hero-feature-caption { padding: 18px 4px 4px; }
.hero-feature-caption small { display: block; margin-bottom: 8px; color: var(--red); font-family: Arial, sans-serif; font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; }
.hero-feature-caption strong { display: block; font-size: 24px; font-weight: 500; }

/* Sections */
.section { max-width: 1180px; margin: 0 auto; padding: 54px 22px; }
.section-title { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 24px; text-align: center; }
.section-title h2 { margin: 0; font-family: Arial, sans-serif; font-size: 28px; letter-spacing: 4px; text-transform: uppercase; }
.dot { width: 9px; height: 9px; border-radius: 999px; background: var(--gold); }

/* Cards */
.card { background: var(--cream); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,.08); }
.card img { width: 100%; height: 330px; object-fit: cover; }
.card-body { padding: 22px; }
.badge { display: inline-block; border: 1px solid #e2d2b4; border-radius: 999px; background: #fff7e8; color: #9a4c17; padding: 6px 11px; font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.card h3 { margin: 14px 0 10px; font-size: 24px; line-height: 1.15; font-weight: 500; }
.card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.price { margin-top: 16px; font-family: Arial, sans-serif; font-weight: 800; letter-spacing: 1px; }

/* Featured */
#featured {
  position: relative;
  background: linear-gradient(90deg, rgba(120,90,50,.035) 1px, transparent 1px), linear-gradient(180deg, rgba(255,255,255,.65), rgba(248,243,234,.95)), #f8f3ea;
  background-size: 18px 18px, auto, auto;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 42px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 14px 34px rgba(0,0,0,.045);
}
#featured .section-title h2::after { content: "Curator’s edit"; display: block; margin-top: 8px; font-family: Georgia, "Times New Roman", serif; font-size: 15px; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--muted); }
#featuredGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; align-items: start; }
#featuredGrid .card { position: relative; }
#featuredGrid .card:first-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch; }
#featuredGrid .card:first-child::before { content: "Curator’s Pick"; position: absolute; top: 18px; left: 18px; z-index: 2; background: var(--red); color: white; border-radius: 999px; padding: 8px 13px; font-family: Arial, sans-serif; font-size: 10px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; }
#featuredGrid .card:first-child img { height: 520px; }
#featuredGrid .card:first-child .card-body { display: flex; flex-direction: column; justify-content: center; padding: 44px; }
#featuredGrid .card:first-child h3 { font-size: 38px; }
#featuredGrid .card:first-child p { font-size: 17px; }
#featuredGrid .card:first-child .price::before { content: "Authenticated / original production piece"; display: block; margin-bottom: 10px; color: #9a4c17; font-family: Arial, sans-serif; font-size: 10px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; }
#featuredGrid .card:not(:first-child) img { height: 340px; }
#featuredGrid .card:not(:first-child) .price::before { content: "Collector piece"; display: block; margin-bottom: 8px; color: #9a4c17; font-family: Arial, sans-serif; font-size: 9px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; }

/* Arrivals, categories, guides */
#arrivalGrid, #categoryGrid { grid-template-columns: repeat(3, 1fr); }
#categoryGrid { display: grid; gap: 28px; align-items: start; }
#categoryGrid .card img { height: 320px; }
.categories { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; text-align: center; }
.cat { appearance: none; border: none; background: transparent; padding: 0; cursor: pointer; font: inherit; text-align: center; }
.cat:focus { outline: none; }
.cat-icon { width: 96px; height: 96px; margin: 0 auto 10px; border-radius: 20px; background: var(--cream); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 42px; }
.cat h3 { margin: 10px 0 0; font-family: Arial, sans-serif; font-size: 17px; font-weight: 900; }
.guides { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.guide-card { background: var(--cream); border: 1px solid var(--line); border-radius: 24px; padding: 28px; }
.guide-card small { color: #9a4c17; font-family: Arial, sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; }
.guide-card h3 { margin: 12px 0; font-size: 30px; line-height: 1.1; font-weight: 500; }
.guide-card p { color: var(--muted); line-height: 1.65; }
.guide-card a { display: inline-block; margin-top: 14px; font-weight: 700; color: var(--red); }
.guide-card a:hover { text-decoration: underline; }

/* Product pages */
#productPage { display: none; max-width: 1180px; margin: 0 auto; padding: 42px 22px 70px; }
.back { display: inline-block; margin-bottom: 26px; font-family: Arial, sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; }
.product-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; background: var(--cream); border: 1px solid var(--line); border-radius: 34px; padding: 36px; box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 18px 40px rgba(0,0,0,.05); }
.main-image { position: relative; overflow: hidden; border-radius: 18px; cursor: zoom-in; }
.main-image img { width: 100%; max-height: 620px; object-fit: contain; background: white; border-radius: 18px; display: block; }
.main-image.zooming img { transform-origin: var(--zoom-x) var(--zoom-y); transform: scale(var(--zoom-scale, 2.2)); }
.main-image.zoom-level-2 { cursor: zoom-out; }
.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.thumbs img { height: 90px; width: 100%; object-fit: cover; border-radius: 12px; cursor: pointer; border: 2px solid transparent; }
.thumbs img:hover { border-color: var(--red); }
.product-info h2 { margin: 18px 0 20px; font-size: 64px; line-height: .95; font-weight: 500; letter-spacing: -2px; }
.product-info p { color: var(--muted); font-size: 18px; line-height: 1.8; }
.product-price { margin-top: 18px; font-family: Arial, sans-serif; font-size: 30px; font-weight: 900; }
.provenance-box { margin-top: 24px; background: white; border: 1px solid var(--line); border-radius: 18px; padding: 20px; }
.provenance-box small { color: #9a4c17; font-family: Arial, sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; }
.collector-note { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); }
.collector-note small { display: block; margin-bottom: 10px; color: #9a4c17; font-family: Arial, sans-serif; font-size: 10px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; }
.collector-note p { margin: 0; color: #4d463f; font-size: 17px; line-height: 1.75; }
.shipping-note { margin-top: 26px; color: var(--muted); font-family: Arial, sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.buttons { display: flex; gap: 14px; margin-top: 28px; }
.product-image { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: #f8f7f4; padding: 20px; }

/* Articles */
.article-page { background: var(--paper); padding: 48px 0 90px; }
.article-page .wrapper { max-width: 1180px; }
.article-kicker { font-family: Arial, sans-serif; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 900; margin-bottom: 18px; }
.article-page h1 { font-family: Georgia, "Times New Roman", serif; font-size: 64px; line-height: 1; font-weight: 500; letter-spacing: -1px; max-width: 900px; margin: 0 0 30px; }
.article-deck { font-size: 24px; line-height: 1.45; color: #4d463f; max-width: 760px; margin-bottom: 18px; }
.article-meta { font-family: Arial, sans-serif; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: #7a7066; margin-bottom: 36px; }
.article-hero { width: 100%; border-radius: 0; margin: 20px 0 10px; }
.image-caption,
.article-page p.image-caption,
.article-content p.image-caption,
.article-slideshow p.image-caption {
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.75;
  color: #4d463f;
  text-align: left;
  font-style: italic;
  margin: 16px 0 34px;
  
}
.article-slideshow p.image-caption strong {
  display: block;
  margin-bottom: 6px;
  color: #9a4c17;
  font-size: 22px;
  line-height: 1.2;
}
.article-layout { max-width: 1180px; margin: 40px auto 0; display: grid; grid-template-columns: minmax(0, 760px) 320px; gap: 44px; align-items: start; }
.article-content { max-width: none; margin: 0; background: #fff; padding: 60px 70px; border-radius: 8px; }
.article-content p,
.article-content li { font-family: Georgia, "Times New Roman", serif; font-size: 21px; line-height: 1.75; color: #2c2722; max-width: none; }
.article-content > p:first-of-type::first-letter { float: left; font-size: 72px; line-height: .9; padding-right: 8px; margin-top: 6px; }
.article-content h2 { font-family: Georgia, "Times New Roman", serif; font-size: 38px; line-height: 1.1; font-weight: 500; margin: 70px 0 20px; padding-top: 20px; border-top: 1px solid #ddd4c8; }
.article-content h3 { font-family: Arial, sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #a84b17; margin: 35px 0 12px; }
.article-content ul { padding-left: 24px; }
.callout-box { margin: 36px 0; padding: 26px; background: #faf7f1; border-left: 4px solid #b1141a; border-radius: 12px; }
.callout-box h4 { margin: 0 0 12px; font-family: Arial, sans-serif; font-size: 16px; letter-spacing: 2px; text-transform: uppercase; color: #b1141a; }
.callout-box p,
.callout-box li { font-family: Arial, sans-serif; font-size: 17px; line-height: 1.6; }
.article-slideshow { margin: 30px 0 50px; }
.article-slideshow img { width: 100%; border-radius: 18px; display: block; }
.slideshow-buttons { display: flex; justify-content: center; gap: 12px; margin-top: 14px; }
.slideshow-buttons button { border: 1px solid var(--line); background: var(--cream); border-radius: 999px; padding: 10px 18px; cursor: pointer; font-weight: 700;  font-size: 15px;
letter-spacing: 0.5px; }
.article-sidebar { position: sticky; top: 90px; }
.sidebar-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; margin-bottom: 22px; }
.sidebar-card img { width: 100%; border-radius: 12px; margin-bottom: 12px; }
.sidebar-card h3 { font-family: Arial, sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin: 0 0 10px; }
.sidebar-card h4 { font-size: 22px; line-height: 1.1; margin: 0 0 10px; }
.sidebar-card p { font-size: 15px; line-height: 1.5; color: var(--muted); }
.sidebar-card a { font-family: Arial, sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 1px; color: var(--red); }
.advert-card { background: #f8f3ea; }
.related-products { margin-top: 70px; padding-top: 42px; border-top: 1px solid var(--line); }
.related-label { font-family: Arial, sans-serif; font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: #9a4c17; margin-bottom: 10px; }
.related-products h2 { font-size: 38px; line-height: 1.1; margin: 0 0 24px; font-weight: 500; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.related-card { display: grid; grid-template-columns: 160px 1fr; gap: 18px; background: var(--cream); border: 1px solid var(--line); border-radius: 18px; padding: 14px; transition: transform .2s ease, box-shadow .2s ease; }
.related-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.07); }
.related-card img { width: 160px; height: 130px; object-fit: cover; border-radius: 12px; }
.related-card span { font-family: Arial, sans-serif; font-size: 9px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: #9a4c17; }
.related-card h3 { margin: 7px 0; font-size: 22px; line-height: 1.1; }
.related-card p { margin: 0 0 8px; font-size: 14px; line-height: 1.5; color: var(--muted); }
.related-card strong { font-family: Arial, sans-serif; font-size: 13px; letter-spacing: 1px; }

footer { border-top: 1px solid var(--line); max-width: 1180px; margin: 40px auto 0; padding: 34px 22px; color: var(--muted); text-align: center; }

/* Responsive */
@media (max-width: 900px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 15px; }
  .hero-inner,
#featuredGrid .card:first-child { 
  grid-template-columns: 1fr; 
}

.product-layout {
  display: block !important;
  grid-template-columns: none !important;
}
  .hero-copy { text-align: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero-feature img { height: 360px; }
  #featuredGrid,
  #arrivalGrid,
  .guides,
  #categoryGrid { grid-template-columns: 1fr; }
  .categories { grid-template-columns: repeat(2, 1fr); }
  .product-info h2 { font-size: 38px; }
  .article-page h1 { font-size: 44px; }
  .article-layout { display: block; }
  .article-content { padding: 34px 24px; }
  .article-sidebar { display: block; position: static; margin-top: 44px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { grid-template-columns: 120px 1fr; }
  .related-card img { width: 120px; height: 110px; }
}
/* Mobile article sidebar / related items fix */

@media (max-width: 900px) {
  .article-layout {
    display: flex !important;
    flex-direction: column !important;
  }
.product-layout > div {
  width: 100% !important;
  max-width: 100% !important;
}

.product-info {
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 28px !important;
}
  .article-sidebar {
    display: block !important;
    position: static !important;
    width: 100% !important;
    margin-top: 44px !important;
  }

  .article-sidebar .sidebar-card {
    display: block !important;
  }
}
.sidebar-card hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 18px 0;
}
.hp-first-edition-gallery {
  margin: 50px 0;
  padding: 34px;
  background: #f8f3ea;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.hp-first-edition-gallery h2 {
  margin-top: 0;
}

.hp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hp-gallery-grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.hp-gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hp-gallery-grid figcaption {
  padding: 18px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #4d463f;
}

.hp-gallery-grid figcaption strong {
  color: var(--red);
}

@media (max-width: 800px) {
  .hp-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hp-gallery-grid img {
    height: auto;
  }
}
.hp-slideshow p.image-caption {
    min-height: 200px;
}
.bond-slideshow p.image-caption {
    min-height: 190px;
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 9999;
  cursor: zoom-out;
}

.lightbox img {
  max-width: 98vw;
  max-height: 98vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.zoom-image {
  position: relative;
  display: inline-block;
}

.zoom-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
  pointer-events: none;
}
.numberline-slideshow {
  margin: 40px 0;
}

.numberline-slide {
  display: none;
}

.numberline-slide.active {
  display: block;
}

.numberline-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.image-zoom-wrapper {
  position: relative;
  display: block;
  width: 100%;
}

.image-zoom-wrapper img {
  display: block;
  width: 100%;
}

.image-zoom-wrapper .zoom-icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 10;
}
.zoomable-image {
  position: relative !important;
  display: block !important;
  width: 100% !important;
}

.zoomable-image img {
  display: block !important;
  width: 100% !important;
}

.zoomable-image .zoom-icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
  cursor: pointer;
  pointer-events: auto;
}
.zoom-image {
  position: relative;
  display: block;
}

.zoom-image .zoom-icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
}
.single-zoom-image {
  position: relative;
  display: block;
  width: 100%;
  cursor: zoom-in;
}

.single-zoom-image img {
  display: block;
  width: 100%;
}

.single-zoom-image .zoom-icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
  pointer-events: none;
}
.article-sidebar {
  position: static;
  align-self: start;
}

.article-sidebar::-webkit-scrollbar {
  width: 6px;
}

.article-sidebar::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
}
/* Standard article sidebar style */

.article-sidebar {
  position: static !important;
  top: auto !important;
  align-self: start;
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.035);
}

.sidebar-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.sidebar-card h3 {
  margin: 0 0 10px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}

.sidebar-card h4 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.08;
  font-weight: 500;
}

.sidebar-card p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 12px;
}

.sidebar-card a {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
}

.sidebar-card hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 18px 0;
}

.advert-card {
  background: var(--cream);
}

@media (max-width: 900px) {
  .article-sidebar {
    display: block !important;
    position: static !important;
    width: 100% !important;
    margin-top: 44px !important;
  }
}
.back-links {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.back-links .back {
  cursor: pointer;
}
/* FINAL mobile product layout fix */
@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  #productPage {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 24px 10px 60px !important;
    overflow-x: hidden !important;
  }

  .product-layout {
    display: flex !important;
    flex-direction: column !important;
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    margin: 0 !important;
    padding: 16px !important;
    gap: 24px !important;
    border-radius: 22px !important;
    overflow: hidden !important;
  }

  .product-layout > div,
  .main-image,
  .thumbs,
  .product-info,
  .provenance-box,
  .collector-note,
  .shipping-note {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .product-info {
    margin-top: 0 !important;
  }

  .product-info h2 {
    font-size: 34px !important;
    line-height: 1.05 !important;
    letter-spacing: -1px !important;
    overflow-wrap: break-word !important;
  }

  .product-info p,
  .provenance-box p,
  .collector-note p {
    overflow-wrap: break-word !important;
  }

  .buttons,
  .back-links {
    flex-wrap: wrap !important;
  }

  .buttons {
    flex-direction: column !important;
  }

  .buttons .btn {
    width: 100% !important;
    min-width: 0 !important;
  }
}