:root {
  --navy: #0f2746;
  --navy-soft: #18365f;
  --gold: #c89d3d;
  --gold-soft: rgba(200, 157, 61, 0.18);
  --ivory: #f7f5ef;
  --white: #ffffff;
  --text: #1b2430;
  --muted: #5f6c7b;
  --border: rgba(15, 39, 70, 0.12);
  --shadow: 0 24px 60px rgba(8, 21, 39, 0.12);
  --radius: 24px;
  --content-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 157, 61, 0.12), transparent 28%),
    linear-gradient(180deg, #fcfbf7 0%, #f5f4ef 100%);
}

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

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

button {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 20px 0 48px;
}

body[data-page="home"] .page-shell {
  padding-top: 0;
}

body[data-page="home"] main > .section,
body[data-page="home"] .footer {
  width: auto;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

body[data-page="home"] .split-section {
  width: auto;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.hero,
.page-header {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(200, 157, 61, 0.35);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(15, 39, 70, 0.98), rgba(17, 45, 81, 0.93)),
    url("assets/shared/hero/van.jpg") center/cover;
  box-shadow: var(--shadow);
}

.hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
}

.hero::after,
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(7, 19, 36, 0.2), rgba(7, 19, 36, 0.72));
}

.topbar,
.hero-content,
.page-header > * {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 90px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 3px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(200, 157, 61, 0.55);
  box-shadow: 0 10px 24px rgba(7, 19, 36, 0.18);
}

.brand img {
  width: auto;
  height: 204px;
  object-fit: contain;
}

.brand-name {
  font-size: 1.05rem;
  text-shadow: 0 2px 12px rgba(7, 19, 36, 0.35);
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  color: rgba(255, 255, 255, 0.88);
}

.topbar-links a {
  font-size: 1.14rem;
  font-weight: 700;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.topbar-links a:hover,
.footer-links a:hover {
  border-color: var(--gold);
}

.topbar-links a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 39, 70, 0.12);
}

.hero-content {
  max-width: 100%;
  padding: 18px 0 28px;
  color: var(--white);
}

.hero-content h1 {
  max-width: 100%;
  text-align: center;
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 54px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
.statement-card h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

h1 {
  margin-top: 20px;
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  max-width: 12ch;
}

.hero-content p,
.section-heading p,
.product-copy p,
.statement-card p,
.info-card p,
.footer p {
  line-height: 1.75;
}

.hero-content p {
  margin: 20px 0 0;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 39, 70, 0.12);
}

.button-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
}

.button-primary:hover {
  background: #d8ae55;
}

.button-secondary {
  background: transparent;
  color: var(--white);
}

.product-copy .button-secondary {
  color: var(--navy);
  background: rgba(15, 39, 70, 0.04);
}

.section {
  padding: 64px 0 12px;
}

.section-tight {
  padding-top: 44px;
}

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

.section-heading h2,
.page-header h1 {
  margin-top: 14px;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.page-header h1,
.page-header p,
.page-header .eyebrow {
  position: relative;
  z-index: 1;
}

.page-header h1,
.page-header p {
  color: var(--white);
}

.page-header p {
  max-width: 58ch;
  margin-top: 14px;
}

.info-grid,
.gallery-grid,
.split-section,
.product-grid,
.footer {
  display: grid;
  gap: 24px;
}

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

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

.info-card,
.statement-card,
.product-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card,
.statement-card,
.product-copy {
  padding: 24px;
}

.info-card h3,
.product-copy h2,
.footer h3 {
  color: var(--navy);
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.gallery-tile::before,
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(200, 157, 61, 0.45);
  border-radius: 18px;
  transition: inset 220ms ease, border-color 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.gallery-tile::after {
  inset: 32px;
  border-color: rgba(255, 255, 255, 0.35);
}

.gallery-tile:hover::before {
  inset: 10px;
  border-color: var(--gold);
}

.gallery-tile:hover::after {
  inset: 22px;
  transform: scale(1.01);
}

.gallery-visual {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform 300ms ease, filter 300ms ease;
}

.gallery-tile:hover .gallery-visual {
  transform: scale(1.08);
  filter: saturate(1.05);
}

.gallery-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 26px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(4, 14, 29, 0.94));
}

.gallery-copy h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.visual-souvenirs {
  background:
    linear-gradient(135deg, rgba(15, 39, 70, 0.18), rgba(15, 39, 70, 0.4)),
    url("assets/home/general-van-accessories.png") center/cover;
}

.visual-rentals {
  background:
    linear-gradient(135deg, rgba(15, 39, 70, 0.15), rgba(15, 39, 70, 0.55)),
    url("assets/shared/hero/van.avif") center/cover;
}

.visual-kits {
  background:
    linear-gradient(135deg, rgba(15, 39, 70, 0.18), rgba(15, 39, 70, 0.38)),
    url("assets/home/camper-van-kits.png") center/cover;
}

.statement-card h2 {
  margin: 18px 0 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
}

.product-card {
  overflow: hidden;
}

.product-image {
  min-height: 250px;
  background-color: #dbe2ea;
  border-bottom: 1px solid var(--border);
  background-position: center;
  background-size: cover;
}

.product-card-large .product-image {
  min-height: 320px;
}

.product-copy p {
  margin: 12px 0 24px;
  color: var(--muted);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-meta strong {
  color: var(--navy);
}

.placeholder-shirt,
.placeholder-cap,
.placeholder-keychain,
.placeholder-magnet,
.placeholder-kit-starter,
.placeholder-kit-pro,
.placeholder-kit-custom,
.placeholder-coming-soon {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.placeholder-shirt {
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.45) 0 24px, transparent 25px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 80%),
    linear-gradient(135deg, #173862, #284f80);
}

.placeholder-shirt::after {
  content: "T-Shirt";
}

.placeholder-cap {
  background: linear-gradient(135deg, #182d49, #b99036);
}

.placeholder-cap::after {
  content: "Cap";
}

.placeholder-keychain {
  background: linear-gradient(135deg, #0f2746, #577296);
}

.placeholder-keychain::after {
  content: "Keychain";
}

.placeholder-magnet {
  background: linear-gradient(135deg, #51657d, #0f2746);
}

.placeholder-magnet::after {
  content: "Magnet";
}

.photo-ram {
  background:
    linear-gradient(180deg, rgba(15, 39, 70, 0.16), rgba(15, 39, 70, 0.38)),
    url("assets/shared/vehicles/ram.png") center/cover;
}

.photo-kit-overhead-3 {
  background:
    linear-gradient(180deg, rgba(15, 39, 70, 0.08), rgba(15, 39, 70, 0.22)),
    url("assets/products/camper-van-kits/overhead-cabinet-3-door.png") center/cover;
}

.photo-kit-overhead-2 {
  background:
    linear-gradient(180deg, rgba(15, 39, 70, 0.08), rgba(15, 39, 70, 0.22)),
    url("assets/products/camper-van-kits/overhead-cabinet-2-door.png") center/cover;
}

.photo-kit-overhead-single {
  background:
    linear-gradient(180deg, rgba(15, 39, 70, 0.08), rgba(15, 39, 70, 0.22)),
    url("assets/products/camper-van-kits/overhead-cabinet-single-door.png") center/cover;
}

.photo-kit-grey-water {
  background:
    linear-gradient(180deg, rgba(15, 39, 70, 0.08), rgba(15, 39, 70, 0.22)),
    url("assets/products/camper-van-kits/undermount-grey-water-tank-and-mounts-for-ram-promaster.jpeg") center/cover;
}

.photo-kit-rear-panel {
  background:
    linear-gradient(180deg, rgba(15, 39, 70, 0.08), rgba(15, 39, 70, 0.22)),
    url("assets/products/camper-van-kits/rear-door-full-panel-set.png") center/cover;
}

.photo-kit-floor-trim {
  background:
    linear-gradient(180deg, rgba(15, 39, 70, 0.16), rgba(15, 39, 70, 0.38)),
    url("assets/shared/vehicles/ram.png") center/cover;
}

.placeholder-coming-soon {
  background: linear-gradient(135deg, #394e69, #9caabf);
}

.placeholder-coming-soon::after {
  content: "Coming Soon";
}

.placeholder-kit-starter {
  background: linear-gradient(135deg, #1f3a5e, #8ea3bf);
}

.placeholder-kit-starter::after {
  content: "Starter";
}

.placeholder-kit-pro {
  background: linear-gradient(135deg, #0f2746, #c89d3d);
}

.placeholder-kit-pro::after {
  content: "Pro";
}

.placeholder-kit-custom {
  background: linear-gradient(135deg, #284f80, #7c8fa8);
}

.placeholder-kit-custom::after {
  content: "Custom";
}

.footer {
  align-items: center;
  padding: 40px 0 14px;
}

.footer h3 {
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: var(--navy);
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-link::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.contact-facebook::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f2746'%3E%3Cpath d='M13.5 22v-8h2.7l.4-3h-3.1V9.1c0-.9.3-1.6 1.6-1.6H16.7V4.8c-.3 0-1.2-.1-2.3-.1-2.3 0-3.9 1.4-3.9 4V11H8v3h2.5v8h3Z'/%3E%3C/svg%3E");
}

.contact-instagram::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f2746' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='%230f2746' stroke='none'/%3E%3C/svg%3E");
}

.contact-email::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f2746' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
}

.contact-phone::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f2746' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1.9.3 1.8.7 2.6a2 2 0 0 1-.4 2.1L8.1 9.9a16 16 0 0 0 6 6l1.5-1.3a2 2 0 0 1 2.1-.4c.8.4 1.7.6 2.6.7A2 2 0 0 1 22 16.9z'/%3E%3C/svg%3E");
}

.cart-panel {
  position: fixed;
  right: 18px;
  bottom: 96px;
  z-index: 20;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cart-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 64px;
  width: auto;
  min-height: 64px;
  border: 1px solid rgba(200, 157, 61, 0.6);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(15, 39, 70, 0.96);
  color: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, width 180ms ease, padding 180ms ease, border-radius 180ms ease;
  touch-action: manipulation;
}

.cart-toggle::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 0;
  flex: 0 0 24px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c89d3d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1.5'/%3E%3Ccircle cx='18' cy='20' r='1.5'/%3E%3Cpath d='M3 4h2l2.2 9.2a1 1 0 0 0 1 .8h8.9a1 1 0 0 0 1-.8L20 7H7.4'/%3E%3C/svg%3E");
}

.cart-toggle:hover {
  transform: translateY(-2px);
}

.cart-panel:not(.is-open) .cart-toggle {
  position: relative;
  width: 64px;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  border-radius: 50%;
  font-size: 0;
  color: transparent;
}

.cart-panel:not(.is-open) .cart-count {
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  min-width: 30px;
  min-height: 30px;
  padding: 0 6px;
  font-size: 0.95rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(15, 39, 70, 0.2);
}

.cart-panel:not(.is-open) .cart-toggle::before {
  transform: translateX(4px);
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  min-height: 32px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
}

.cart-content {
  display: none;
  margin-top: 12px;
  width: min(360px, calc(100vw - 36px));
  padding: 20px;
  border: 1px solid rgba(200, 157, 61, 0.28);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.cart-panel.is-open .cart-content {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cart-items {
  display: grid;
  gap: 14px;
  margin: 18px 0 20px;
}

.cart-empty,
.cart-header p,
.cart-item small {
  color: var(--muted);
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.cart-item strong,
.cart-header h2,
.cart-total {
  color: var(--navy);
}

.cart-item button {
  border: none;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  padding: 0;
}

.cart-footer {
  display: grid;
  gap: 16px;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.full-width {
  width: 100%;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  min-width: min(560px, calc(100vw - 32px));
  padding: 15px 18px;
  border-radius: 16px;
  background: rgba(15, 39, 70, 0.96);
  border: 1px solid rgba(200, 157, 61, 0.45);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .info-grid,
  .gallery-grid,
  .split-section,
  .product-grid,
  .product-grid-two,
  .footer {
    grid-template-columns: 1fr;
  }

  .topbar-links {
    gap: 18px;
  }

  .topbar-links a {
    font-size: 1rem;
    padding: 8px 14px;
  }

  .hero-content h1 {
    font-size: clamp(2.8rem, 8vw, 4.4rem);
  }

  .gallery-tile {
    min-height: 340px;
  }

  .topbar {
    margin-bottom: 48px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--content-width));
  }

  .hero,
  .page-header {
    padding: 18px;
  }

  .topbar {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin-bottom: 36px;
  }

  .brand {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .brand img {
    height: 124px;
  }

  .brand-name {
    font-size: 0.92rem;
    padding: 8px 12px;
  }

  .topbar-links {
    justify-content: center;
    gap: 10px;
  }

  .topbar-links a {
    font-size: 0.92rem;
    padding: 8px 12px;
  }

  .hero-content {
    padding: 6px 0 16px;
  }

  .hero-content h1 {
    margin-top: 16px;
    font-size: clamp(2.2rem, 12vw, 3.3rem);
    line-height: 1;
  }

  .hero-content p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    justify-content: center;
  }

  .eyebrow::before {
    width: 34px;
  }

  .section {
    padding: 44px 0 10px;
  }

  .section-tight {
    padding-top: 28px;
  }

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

  .section-heading h2,
  .page-header h1,
  .statement-card h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .gallery-tile {
    min-height: 260px;
  }

  .gallery-copy {
    padding: 18px;
  }

  .gallery-copy h3 {
    font-size: 1.28rem;
  }

  .product-image {
    min-height: 220px;
  }

  .product-card-large .product-image {
    min-height: 240px;
  }

  .product-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-panel {
    right: 10px;
    bottom: 88px;
    left: auto;
    width: auto;
    align-items: flex-end;
  }

  .cart-panel.is-open {
    left: 10px;
    align-items: stretch;
  }

  .cart-content {
    width: 100%;
  }

  .toast {
    min-width: auto;
    width: calc(100vw - 20px);
  }
}

@media (max-width: 480px) {
  .hero,
  .page-header {
    padding: 16px;
  }

  .brand img {
    height: 108px;
  }

  .topbar-links {
    gap: 8px;
  }

  .topbar-links a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-content h1 {
    font-size: clamp(1.95rem, 11vw, 2.7rem);
  }

  .hero-content p {
    font-size: 0.94rem;
  }

  .button {
    min-height: 46px;
    padding: 0 16px;
  }

  .info-card,
  .statement-card,
  .product-copy {
    padding: 18px;
  }

  .cart-toggle {
    padding: 12px 14px;
  }

  .cart-panel:not(.is-open) .cart-toggle {
    width: 58px;
    min-height: 58px;
  }

  .cart-panel:not(.is-open) .cart-count {
    left: -10px;
    min-width: 28px;
    min-height: 28px;
    font-size: 0.88rem;
  }

  .cart-content {
    padding: 16px;
  }
}
