:root {
  --bg: #fffdf8;
  --surface: #ffffff;
  --surface-warm: #f4efe4;
  --text: #25312d;
  --muted: #64716b;
  --line: #ded8ca;
  --river: #2f7186;
  --river-dark: #1e5667;
  --field: #6f815d;
  --clay: #b56645;
  --clay-soft: #ead6c8;
  --shadow: 0 18px 45px rgba(60, 48, 32, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.cart-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(222, 216, 202, 0.72);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-name {
  font-family: "Radio Canada", "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a,
.paypal-cart-nav {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
  padding: 9px 12px;
}

.site-nav a:hover,
.paypal-cart-nav:hover {
  background: var(--surface-warm);
}

.paypal-cart-nav {
  min-width: 96px;
  justify-content: center;
  padding: 4px 8px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(222, 216, 202, 0.9);
  background: rgba(255, 253, 248, 0.96);
}

.site-footer-inner {
  width: min(var(--max), calc(100% - 36px));
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 14px 0;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero {
  max-width: var(--max);
  min-height: calc(100vh - 73px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(34px, 7vw, 84px) clamp(18px, 4vw, 28px) 42px;
}

.hero-copy h1,
.section-heading h1,
.section-heading h2,
.split-copy h2 {
  margin: 0;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 12ch;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(3.8rem, 9vw, 6.8rem);
  font-weight: 700;
  line-height: 1.02;
}

.hero-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  padding: 12px 18px;
}

.button.primary {
  color: white;
  background: var(--river);
}

.button.primary:hover {
  background: var(--river-dark);
}

.button.secondary {
  color: var(--text);
  background: var(--surface);
  border-color: var(--line);
}

.social-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}

.social-icon-facebook {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 0.9;
  text-align: center;
}

.social-icon-instagram {
  border: 2px solid currentColor;
  border-radius: 6px;
}

.social-icon-instagram::before,
.social-icon-instagram::after {
  content: "";
  position: absolute;
  display: block;
}

.social-icon-instagram::before {
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.social-icon-instagram::after {
  top: 3px;
  right: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: var(--surface);
}

.social-links a:hover {
  border-color: var(--river);
  color: var(--river-dark);
}

.social-links a:focus-visible {
  outline: 3px solid var(--river);
  outline-offset: 3px;
}

.contact-section {
  max-width: var(--max);
  scroll-margin-top: 92px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) clamp(18px, 4vw, 28px);
}

.contact-panel {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-socials a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-warm);
  font-weight: 800;
}

.contact-socials a:hover {
  border-color: var(--river);
  color: var(--river-dark);
}

.contact-socials .social-icon {
  flex: 0 0 auto;
}

.contact-panel p {
  margin: 0;
  color: var(--muted);
}

.contact-panel p a {
  color: var(--river-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--clay-soft);
}

.hero-media picture,
.events-feature picture,
.split-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  aspect-ratio: 5 / 4;
  height: 100%;
  object-fit: cover;
}

.category-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px clamp(18px, 4vw, 28px) 34px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.category-chip {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  padding: 10px 16px;
  white-space: nowrap;
}

.category-chip.active,
.category-chip:hover {
  background: var(--field);
  border-color: var(--field);
  color: white;
}

.shop-section,
.split-section {
  max-width: var(--max);
  scroll-margin-top: 92px;
  margin: 0 auto;
  padding: 76px clamp(18px, 4vw, 28px);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h1,
.section-heading h2,
.split-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.section-heading p {
  max-width: 430px;
  margin: 10px 0 0;
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.category-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.category-card picture {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-warm);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-card-content {
  flex: 1;
  padding: 18px;
}

.category-card-content span,
.page-kicker {
  color: var(--field);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-card-content h3 {
  margin: 6px 0 8px;
  font-size: 1.35rem;
}

.category-card-content p {
  margin: 0;
  color: var(--muted);
}

.category-page-section {
  padding-top: 46px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 800;
}

.back-link:hover {
  color: var(--text);
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 28px;
}

.category-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  padding: 10px 16px;
}

.category-links a.active,
.category-links a:hover {
  background: var(--field);
  border-color: var(--field);
  color: white;
}

.empty-category {
  grid-column: 1 / -1;
  max-width: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface);
}

.empty-category h3,
.empty-category p {
  margin: 0;
}

.empty-category p {
  margin-top: 8px;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.product-image-button {
  width: 100%;
  display: block;
  border: 0;
  background: var(--surface-warm);
  cursor: pointer;
  padding: 0;
}

.product-image-button:focus-visible {
  outline: 3px solid var(--river);
  outline-offset: -3px;
}

.product-image-button img {
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--surface-warm);
  transition: none;
}

.image-coming-soon {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(135deg, #f5f0e7 0%, #e6ded0 100%);
  color: #5f6f5a;
}

.image-coming-soon-mug {
  position: absolute;
  width: 38%;
  height: 31%;
  border: 10px solid rgba(95, 111, 90, 0.2);
  border-top-width: 13px;
  border-radius: 10px 10px 18px 18px;
  transform: translateY(-10%);
}

.image-coming-soon-mug::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -33%;
  width: 33%;
  height: 48%;
  border: 9px solid rgba(95, 111, 90, 0.18);
  border-left: 0;
  border-radius: 0 999px 999px 0;
}

.image-coming-soon-text {
  position: relative;
  z-index: 1;
  max-width: 70%;
  padding: 10px 14px;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(249, 246, 239, 0.82);
  color: #52634d;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.product-content h3 {
  margin: 0;
  font-size: 1.02rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 7px 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.add-button {
  width: 100%;
  min-height: 43px;
  margin-top: auto;
  border: 0;
  border-radius: var(--radius);
  background: var(--text);
  color: white;
  cursor: pointer;
  font-weight: 700;
}

.add-button:hover {
  background: var(--river-dark);
}

.add-button.disabled,
.add-button:disabled {
  cursor: not-allowed;
  background: #d7d0c3;
  color: #736a5d;
}

.add-button.details-button {
  background: #d7d0c3;
  color: #736a5d;
  font-weight: 650;
}

.add-button.details-button:hover {
  background: #cbc2b4;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 36px);
  background: rgba(37, 49, 45, 0);
  opacity: 0;
  pointer-events: none;
  transition: background 180ms ease, opacity 180ms ease;
}

.product-modal.open {
  background: rgba(37, 49, 45, 0.54);
  opacity: 1;
  pointer-events: auto;
}

.product-modal-panel {
  position: relative;
  width: min(880px, 100%);
  max-height: min(760px, calc(100vh - 32px));
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(340px, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(16px) scale(0.98);
  transition: transform 180ms ease;
}

.product-modal.open .product-modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
}

.product-modal-media {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: clamp(14px, 2vw, 22px);
  background: var(--surface-warm);
}

.product-modal-media img {
  width: 100%;
  height: auto;
  min-height: 420px;
  max-height: calc(100vh - 96px);
  object-fit: contain;
  border-radius: calc(var(--radius) - 4px);
}

.product-modal-media .image-coming-soon {
  min-height: 420px;
  max-height: calc(100vh - 96px);
  border-radius: calc(var(--radius) - 4px);
}

.product-modal-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  min-height: 0;
  overflow-y: auto;
  padding: clamp(24px, 3vw, 36px);
}

.product-modal-content span {
  color: var(--field);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-modal-content h2 {
  margin: 8px 54px 10px 0;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.product-modal-content strong {
  font-size: 1.35rem;
}

.product-modal-content p {
  margin: 18px 0 28px;
  color: var(--muted);
}

.modal-actions {
  display: grid;
  justify-items: stretch;
  gap: 0;
  width: 100%;
}

.modal-paypal-action {
  min-height: 128px;
  overflow: visible;
}

.modal-paypal-action paypal-add-to-cart-button {
  display: block;
  width: 100%;
  max-width: 100%;
}

.product-modal.paypal-product-modal .product-modal-panel {
  width: min(430px, 100%);
  height: auto;
  max-height: calc(100vh - 32px);
  grid-template-columns: 1fr;
  overflow: auto;
}

.product-modal.paypal-product-modal .product-modal-media {
  display: none;
}

.product-modal.paypal-product-modal .product-modal-content {
  align-items: stretch;
  overflow: visible;
  padding: clamp(20px, 4vw, 28px);
}

.product-modal.paypal-product-modal .product-modal-content h2 {
  font-size: clamp(1.7rem, 5vw, 2.35rem);
}

.product-modal.paypal-product-modal .modal-paypal-action {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 360px;
  overflow: visible;
}

.product-modal.paypal-product-modal .modal-paypal-action paypal-add-to-cart-button {
  width: 100%;
  margin: 0 auto;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: clamp(28px, 6vw, 68px);
}

.events-section {
  max-width: var(--max);
  scroll-margin-top: 92px;
  margin: 0 auto;
  padding: 76px clamp(18px, 4vw, 28px);
  border-top: 1px solid var(--line);
}

.events-feature {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface-warm);
}

.events-feature img {
  aspect-ratio: 1800 / 809;
  height: auto;
  object-fit: cover;
}

.events-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.about-section {
  padding-top: 50px;
}

.split-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface-warm);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.event-list article {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.event-list time {
  display: grid;
  place-items: center;
  min-height: 54px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--clay-soft);
  color: #6d3d2c;
  font-weight: 900;
}

.event-list h3,
.event-list p {
  margin: 0;
}

.event-list h3 a,
.availability-list a {
  color: var(--text);
  text-decoration-color: rgba(46, 63, 58, 0.28);
  text-underline-offset: 3px;
}

.event-list h3 a:hover,
.availability-list a:hover {
  color: var(--river-dark);
}

.availability-list {
  margin-top: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.availability-list h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.availability-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.availability-list li {
  display: grid;
  gap: 2px;
}

.availability-list span {
  color: var(--muted);
  font-size: 0.94rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  justify-content: flex-end;
  background: rgba(37, 49, 45, 0);
  opacity: 0;
  pointer-events: none;
  transition: background 180ms ease, opacity 180ms ease;
}

.cart-drawer.open {
  background: rgba(37, 49, 45, 0.34);
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  width: min(430px, 100%);
  height: 100dvh;
  max-height: 100dvh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: var(--bg);
  box-shadow: -24px 0 45px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-header,
.cart-footer {
  padding: 20px;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.cart-header h2,
.cart-header p {
  margin: 0;
}

.cart-header p {
  color: var(--muted);
}

.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.cart-items {
  min-height: 0;
  overflow: auto;
  padding: 14px 20px;
  -webkit-overflow-scrolling: touch;
}

.empty-cart {
  margin: 24px 0;
  color: var(--muted);
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  object-fit: cover;
}

.cart-item h3,
.cart-item p {
  margin: 0;
}

.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.qty-controls button {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.cart-footer {
  max-height: 58dvh;
  overflow: auto;
  border-top: 1px solid var(--line);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}

.order-summary {
  display: grid;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}

.order-summary h3 {
  margin: 0 0 2px;
  font-size: 0.98rem;
}

.order-summary div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.order-summary strong {
  color: var(--text);
  text-align: right;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.paypal-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #fbfaf6;
}

.paypal-shell p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

#paypal-button-container {
  min-height: 0;
}

.checkout-message {
  display: none;
  margin: 0 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: white;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.checkout-message.visible {
  display: block;
}

.checkout-message.error {
  border-color: #d7a39b;
  background: #fff7f5;
  color: #7a2e25;
}

.checkout-message.success {
  border-color: #9dbd9b;
  background: #f5fbf4;
  color: #315d31;
}

.paypal-preview.hidden {
  display: none;
}

.paypal-preview {
  display: grid;
  gap: 10px;
}

.paypal-button-preview {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 900;
  line-height: 1;
}

.paypal-main {
  background: #ffc439;
  color: #123984;
  font-size: 1.35rem;
  font-style: italic;
}

.paypal-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.paypal-later {
  border: 1px solid #b9b9b9;
  background: white;
  color: #2c2e2f;
}

.paypal-apple,
.paypal-card {
  background: #101820;
  color: white;
}

.paypal-divider {
  position: relative;
  display: flex;
  justify-content: center;
  color: var(--muted);
  font-size: 0.78rem;
}

.paypal-divider::before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  content: "";
  border-top: 1px solid var(--line);
}

.paypal-divider span {
  position: relative;
  z-index: 1;
  background: #fbfaf6;
  padding: 0 10px;
}

.paypal-preview small {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
  text-align: center;
}

.paypal-preview b {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.paypal-button-preview.paypal-card {
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .events-content,
  .event-list {
    grid-template-columns: 1fr;
  }

  .events-feature img {
    aspect-ratio: 1800 / 809;
    height: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: 10ch;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 10px;
  }

  .about-section .split-copy {
    order: 2;
  }

  .product-modal-panel {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .product-modal-media img {
    min-height: 0;
    max-height: 40vh;
  }

  .product-modal-content {
    justify-content: start;
  }

  .product-modal.paypal-product-modal .product-modal-panel {
    height: auto;
    max-height: calc(100vh - 32px);
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .product-modal.paypal-product-modal .product-modal-content {
    overflow: visible;
  }
}

@media (min-width: 681px) {
  .brand-name {
    font-size: 24pt;
    line-height: 1;
  }
}

@media (max-width: 680px) {
  .brand-name {
    font-size: 1.35rem;
    line-height: 1.1;
  }

  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .paypal-cart-nav {
    justify-content: space-between;
    background: var(--surface);
    border: 1px solid var(--line);
  }

  .site-footer-inner {
    min-height: 0;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
  }

  .hero-actions {
    display: grid;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-page-section .category-links {
    display: none;
  }

  .shop-section,
  .split-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .product-modal {
    align-items: end;
    padding: 12px;
  }

  .product-modal-panel {
    max-height: calc(100vh - 24px);
  }

  .product-modal-media img {
    max-height: 32vh;
  }

  .product-modal-content h2 {
    margin-right: 48px;
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }

  .cart-panel {
    width: 100%;
  }

  .cart-header,
  .cart-footer {
    padding: 14px 16px;
  }

  .cart-items {
    padding: 10px 16px;
  }

  .cart-footer {
    max-height: 48dvh;
  }

  .order-summary {
    gap: 6px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .cart-total {
    margin-bottom: 10px;
  }

  .paypal-shell {
    padding: 10px;
  }

  .paypal-preview {
    gap: 8px;
  }

  .paypal-button-preview {
    min-height: 42px;
  }

  .paypal-preview small,
  .paypal-preview b {
    display: none;
  }
}
