:root {
  --page: #fbf6ee;
  --surface: #ffffff;
  --surface-soft: #f3ecdf;
  --surface-blue: #eef6ff;
  --ink: #1f2430;
  --muted: #747077;
  --line: #eadfcc;
  --brand: #1868db;
  --brand-dark: #0f4faa;
  --accent: #f0784a;
  --green: #0b8a62;
  --yellow: #f7bf45;
  --red: #d94747;
  --shadow: 0 24px 58px rgba(72, 54, 32, 0.12);
  --shadow-soft: 0 12px 30px rgba(72, 54, 32, 0.08);
  --radius: 22px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(240, 120, 74, 0.12), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(24, 104, 219, 0.12), transparent 30%),
    linear-gradient(180deg, #fffaf3 0%, var(--page) 42%, #f7efe4 100%);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.top-strip {
  overflow: hidden;
  padding: 10px 0;
  color: #ffffff;
  background: linear-gradient(90deg, #1868db, #0b8a62 52%, #f0784a);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.top-strip-track {
  display: flex;
  width: max-content;
  animation: topStripMarquee 24s linear infinite;
}

.top-strip:hover .top-strip-track {
  animation-play-state: paused;
}

.top-strip-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
}

.top-strip-group span {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.top-strip-group span::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

@keyframes topStripMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  width: min(calc(100% - 20px), 1240px);
  margin: 10px auto 0;
  padding: 12px;
  border: 1px solid rgba(234, 223, 204, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(72, 54, 32, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #45b98f 55%, var(--accent));
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.brand strong,
h1,
h2,
h3,
.button,
.cart-button,
.store-kicker,
.category-pill,
.product-price strong {
  font-family: "Sora", sans-serif;
}

.brand strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.desktop-nav {
  display: none;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(24, 104, 219, 0.18);
  border-radius: 999px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(24, 104, 219, 0.08);
  font-size: 0.86rem;
  font-weight: 700;
}

.cart-button strong {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand);
  font-size: 0.76rem;
}

main,
.site-footer {
  width: min(calc(100% - 24px), 1240px);
  margin: 0 auto;
}

.hero-carousel {
  padding: 18px 0 28px;
}

.carousel-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(234, 223, 204, 0.92);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(24, 104, 219, 0.08), rgba(240, 120, 74, 0.10)),
    #fffaf3;
  box-shadow: var(--shadow);
}

.carousel-track {
  position: relative;
  aspect-ratio: 16 / 5.6;
  min-height: 310px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.012);
  transition:
    opacity 520ms ease,
    transform 720ms ease;
}

.carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.carousel-slide picture,
.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.carousel-slide img {
  position: relative;
  z-index: 1;
  object-fit: cover;
}

.carousel-slide img.is-missing {
  opacity: 0;
}

.banner-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.90), transparent 18%),
    radial-gradient(circle at 86% 18%, rgba(24, 104, 219, 0.26), transparent 26%),
    linear-gradient(135deg, #eaf4ff 0%, #fff7e9 45%, #ffe4d6 100%);
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(72, 54, 32, 0.16);
  backdrop-filter: blur(12px);
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel-prev {
  left: 14px;
}

.carousel-next {
  right: 14px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(31, 36, 48, 0.08);
}

.carousel-dots button.active {
  width: 28px;
  background: var(--brand);
}

.store-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 2.6rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.catalog-heading > p,
.product-card p,
.detail-description,
.product-info-section p,
.payment-method-note,
.gateway-result-copy,
.cart-item p {
  color: var(--muted);
  line-height: 1.55;
}

.catalog-section,
.related-section,
.checkout-page {
  padding: 8px 0 44px;
}

.catalog-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid rgba(234, 223, 204, 0.86);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.catalog-heading h2,
.checkout-title h1 {
  margin: 6px 0 0;
  font-size: 1.9rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.catalog-tools {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--surface);
  outline: none;
  box-shadow: 0 8px 18px rgba(72, 54, 32, 0.04);
}

textarea {
  min-height: 110px;
  padding: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(24, 104, 219, 0.12);
}

.category-rail,
.active-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 14px;
  padding-bottom: 2px;
}

.category-pill,
.active-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 18px rgba(72, 54, 32, 0.04);
  white-space: nowrap;
}

.category-pill.active {
  color: #ffffff;
  border-color: var(--brand);
  background: linear-gradient(135deg, var(--brand), #2b8ced);
}

.category-pill span,
.active-filter {
  color: var(--muted);
  font-size: 0.82rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(234, 223, 204, 0.88);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card:hover {
  border-color: rgba(24, 104, 219, 0.22);
  box-shadow: 0 22px 46px rgba(72, 54, 32, 0.13);
  transform: translateY(-3px);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.86;
  overflow: hidden;
  margin: 10px 10px 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.84), transparent 42%),
    linear-gradient(135deg, #edf6ff, #fff0df);
}

.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media-placeholder {
  color: var(--muted);
  font-size: 0.92rem;
}

.product-card-body {
  display: grid;
  gap: 12px;
  padding: 17px 16px 16px;
}

.product-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-card-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(31, 36, 48, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 8px 18px rgba(31, 36, 48, 0.13);
  backdrop-filter: blur(14px) saturate(1.2);
  font-size: 0.76rem;
  font-weight: 700;
}

.product-card-media-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  align-items: flex-start;
}

.product-card-media-tags span:first-child {
  color: #153f70;
  background: rgba(239, 247, 255, 0.82);
}

.product-card-media-tags span:nth-child(2) {
  color: #7b3b19;
  background: rgba(255, 238, 221, 0.84);
}

.product-rating-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  color: #2c2114;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 22px rgba(31, 36, 48, 0.14);
  backdrop-filter: blur(14px) saturate(1.25);
}

.product-rating-badge strong {
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
}

.rating-stars {
  position: relative;
  display: inline-block;
  width: 74px;
  height: 16px;
  font-size: 0.86rem;
  letter-spacing: 1px;
  line-height: 1;
}

.rating-stars-base,
.rating-stars-fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
  white-space: nowrap;
}

.rating-stars-base {
  color: rgba(44, 33, 20, 0.18);
}

.rating-stars-fill {
  width: var(--rating-width);
  color: #f5a623;
  text-shadow: 0 1px 6px rgba(245, 166, 35, 0.22);
}

.product-card h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.product-card p {
  margin: 0;
  font-size: 0.92rem;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-price strong {
  color: var(--brand-dark);
  font-size: 1.48rem;
}

.product-price small {
  color: var(--muted);
  text-decoration: line-through;
}

.product-stock {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
}

.product-actions,
.detail-actions,
.gateway-result-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #2d8ef0);
  box-shadow: 0 12px 24px rgba(24, 104, 219, 0.18);
}

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

.button-secondary,
.button-quiet {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.button:disabled {
  cursor: not-allowed;
  color: var(--muted);
  background: var(--surface-soft);
}

.empty-state {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.76);
  text-align: center;
}

.inline-link {
  display: block;
  margin-top: 8px;
  color: var(--brand);
  font-weight: 700;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
}

.cart-drawer.open {
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(20, 20, 20, 0.46);
  transition: opacity 160ms ease;
}

.cart-drawer.open .cart-backdrop {
  opacity: 1;
}

.cart-panel {
  position: absolute;
  inset: 0 0 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 420px);
  padding: 16px;
  transform: translateX(100%);
  transition: transform 180ms ease;
  background: #fffaf3;
  box-shadow: var(--shadow);
}

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

.cart-panel-head,
.summary-head,
.gateway-result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.cart-panel-head h2,
.summary-head h2,
.gateway-result-head h2 {
  margin: 4px 0 0;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  font-weight: 700;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding: 14px 0;
}

.cart-item {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.cart-item h3 {
  margin: 0 0 3px;
  font-size: 0.98rem;
  letter-spacing: 0;
}

.cart-item p {
  margin: 0;
}

.quantity-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.quantity-controls button {
  min-width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
}

.remove-button {
  width: auto;
  padding: 0 10px;
  color: var(--red) !important;
}

.cart-summary {
  display: grid;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.cart-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.product-detail {
  display: grid;
  gap: 20px;
  padding: 28px 0 42px;
}

.detail-gallery,
.detail-copy {
  min-width: 0;
}

.detail-media {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.92;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #e8edf3;
}

.detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-copy {
  display: grid;
  gap: 14px;
}

.back-link {
  color: var(--brand);
  font-weight: 700;
}

.detail-copy h1 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.detail-description {
  margin: 0;
}

.detail-price {
  margin: 0;
}

.service-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.service-list div {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: var(--surface);
}

.service-list span {
  color: var(--muted);
}

.product-info-section {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.product-info-section h2 {
  margin: 0;
  font-size: 1.15rem;
}

.specs-grid {
  display: grid;
  gap: 8px;
}

.spec-card {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.spec-card span {
  color: var(--muted);
}

.checkout-page {
  padding-top: 28px;
}

.checkout-layout {
  display: grid;
  gap: 18px;
}

.checkout-main,
.order-summary {
  display: grid;
  gap: 16px;
  align-content: start;
}

.checkout-title h1 {
  max-width: 640px;
}

.checkout-form,
.form-section {
  display: grid;
  gap: 14px;
}

.form-section {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.form-section h2 {
  margin: 0;
  font-size: 1.05rem;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.payment-method-card {
  --method-color: var(--brand);
  --method-ring: rgba(24, 104, 219, 0.18);
  position: relative;
  display: block;
  cursor: pointer;
}

.payment-method-pix {
  --method-color: #0b8a62;
  --method-ring: rgba(11, 138, 98, 0.18);
}

.payment-method-cardao {
  --method-color: #1868db;
  --method-ring: rgba(24, 104, 219, 0.18);
}

.payment-method-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.payment-method-card-inner {
  display: grid;
  min-height: 134px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 10%, var(--method-ring), transparent 32%),
    #ffffff;
  box-shadow: var(--shadow-soft);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.payment-method-card:hover .payment-method-card-inner {
  transform: translateY(-2px);
}

.payment-method-card input:checked + .payment-method-card-inner,
.payment-method-card.is-selected .payment-method-card-inner {
  border-color: var(--method-color);
  box-shadow: 0 0 0 4px var(--method-ring), var(--shadow-soft);
}

.payment-method-card input:focus-visible + .payment-method-card-inner {
  outline: 3px solid var(--method-ring);
  outline-offset: 3px;
}

.payment-method-card.is-disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.payment-method-card.is-disabled .payment-method-card-inner {
  box-shadow: none;
}

.payment-method-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: var(--method-color);
  background: var(--method-ring);
}

.payment-method-icon svg {
  width: 30px;
  height: 30px;
}

.payment-method-icon path,
.payment-method-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.payment-method-copy {
  display: grid;
  gap: 3px;
  align-self: end;
}

.payment-method-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.payment-method-copy small {
  color: var(--muted);
  font-size: 0.8rem;
}

.payment-fields,
.gateway-result-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.payment-fields-head,
.gateway-code-block,
.gateway-card-summary {
  display: grid;
  gap: 6px;
}

.payment-fields-head span,
.gateway-card-summary span {
  color: var(--muted);
}

.checkout-message {
  margin: 0;
  color: var(--muted);
}

.checkout-message.error {
  color: var(--red);
}

.checkout-message.success {
  color: var(--green);
}

.order-summary {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.gateway-result-card {
  margin-top: 16px;
  background: var(--surface);
}

.status-badge {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.status-badge.paid {
  color: #ffffff;
  background: var(--green);
}

.gateway-code-block code {
  display: block;
  padding: 12px;
  overflow-wrap: anywhere;
  border-radius: var(--radius);
  color: var(--brand-dark);
  background: #e8efff;
  font-size: 0.88rem;
}

@media (min-width: 700px) {
  .store-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 18px;
  }

  .desktop-nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    color: var(--muted);
    font-weight: 700;
  }

  .catalog-heading,
  .catalog-tools {
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: end;
  }

  .search-field {
    min-width: 320px;
  }

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

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

  .form-grid .full {
    grid-column: 1 / -1;
  }

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

@media (min-width: 980px) {
  h1 {
    font-size: 4rem;
  }

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

  .product-detail {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
    padding-top: 42px;
  }

  .detail-copy h1 {
    font-size: 3.2rem;
  }

  .service-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: start;
  }

  .order-summary {
    position: sticky;
    top: 90px;
  }
}

@media (max-width: 699px) {
  .top-strip {
    font-size: 0.78rem;
  }

  .top-strip-track {
    animation-duration: 20s;
  }

  .store-header {
    top: 8px;
    width: min(calc(100% - 16px), 1240px);
    grid-template-columns: minmax(0, 1fr) auto;
    margin-top: 8px;
  }

  .brand small {
    display: none;
  }

  .cart-button span {
    display: none;
  }

  .hero-carousel {
    padding: 14px 0 22px;
  }

  .carousel-shell {
    border-radius: 28px;
  }

  .carousel-track {
    aspect-ratio: 4 / 5;
    min-height: 470px;
  }

  .carousel-control {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .catalog-heading {
    padding: 18px;
    border-radius: 24px;
  }

  .catalog-heading h2,
  .checkout-title h1 {
    font-size: 1.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-strip-track {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}
