:root {
  --bg: #fff8ee;
  --bg-soft: #f4eadb;
  --ink: #231510;
  --muted: #715d51;
  --gold: #d4a24a;
  --gold-dark: #9b6822;
  --wine: #751e24;
  --green: #187454;
  --line: #eadcc8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(57, 33, 19, 0.16);
  --radius: 26px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(212, 162, 74, 0.22), transparent 32rem),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 40%, #fff 100%);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.top-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 8px 18px;
  color: #fff8ee;
  font-size: 0.83rem;
  font-weight: 800;
  background: #231510;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 248, 238, 0.9);
  border-bottom: 1px solid rgba(234, 220, 200, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: clamp(150px, 18vw, 230px);
  max-height: 54px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  font-weight: 950;
  letter-spacing: -0.08em;
  background: linear-gradient(135deg, var(--wine), #21100e);
  border: 2px solid rgba(212, 162, 74, 0.82);
  border-radius: 17px;
  box-shadow: 0 12px 30px rgba(117, 30, 36, 0.18);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.desktop-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.desktop-nav a:hover {
  color: var(--wine);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--white);
  cursor: pointer;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
}

.cart-button strong {
  display: grid;
  min-width: 26px;
  height: 26px;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
}

.section-pad {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.landing-hidden {
  display: none;
}

.checkout-page {
  background:
    radial-gradient(circle at 14% 0%, rgba(212, 162, 74, 0.2), transparent 26rem),
    linear-gradient(180deg, #fffdf9 0%, #fff8ee 42%, #ffffff 100%);
}

.checkout-header {
  position: static;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(30px, 6vw, 82px);
  min-height: calc(100vh - 108px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 6.4vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 10px;
}

.hero-text,
.story-card p,
.section-heading p,
.artist-copy p,
.delivery-copy p,
.quality-copy p,
.benefit-grid p,
.review-grid p,
.faq-list p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 640px;
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
}

.price-line {
  display: grid;
  gap: 4px;
  max-width: 360px;
  padding: 18px;
  margin: 28px 0;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(57, 33, 19, 0.08);
}

.price-line span,
.price-line small {
  color: var(--muted);
  font-weight: 800;
}

.price-line strong {
  color: var(--wine);
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  font-weight: 950;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--wine), #a02d34);
  border: 0;
  box-shadow: 0 18px 38px rgba(117, 30, 36, 0.25);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span,
.summary-seals span {
  padding: 9px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-media {
  position: relative;
  isolation: isolate;
  padding: clamp(18px, 4vw, 38px);
}

.product-glow {
  position: absolute;
  inset: 8%;
  z-index: -1;
  background: radial-gradient(circle, rgba(212, 162, 74, 0.6), transparent 68%);
  filter: blur(30px);
}

.hero-media img,
.gallery-grid img,
.artist-photo img,
.delivery-grid img,
.review-grid img,
.cart-item img {
  object-fit: contain;
  background: #fffaf4;
}

.hero-media img {
  aspect-ratio: 1;
  padding: clamp(10px, 2vw, 20px);
  border: 10px solid #1f1210;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  right: 5%;
  bottom: 10%;
  width: min(250px, 64%);
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge span {
  margin-top: 5px;
  color: var(--muted);
}

.social-proof {
  padding: 22px clamp(18px, 5vw, 72px);
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, var(--ink), #4a171a);
}

.social-proof p {
  max-width: 920px;
  margin: 0 auto;
  font-weight: 850;
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 34px;
  text-align: center;
}

.story {
  background: #fff;
}

.story-card {
  max-width: 980px;
  padding: clamp(28px, 5vw, 58px);
  margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 238, 0.86)),
    radial-gradient(circle at top right, rgba(212, 162, 74, 0.2), transparent 22rem);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(36, 22, 17, 0.1);
}

.gallery-grid img {
  aspect-ratio: 1;
  padding: 10px;
}

.gallery-grid figcaption {
  min-height: 58px;
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.benefits,
.reviews,
.faq {
  background: var(--white);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-grid article,
.certificate,
.artist,
.review-grid article,
.cart-summary,
.checkout-card,
.delivery-copy,
.quality-grid article,
.faq-list details {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(57, 33, 19, 0.08);
}

.benefit-grid article {
  padding: 26px;
}

.benefit-grid span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--wine);
  font-weight: 950;
  background: #fff1d7;
  border-radius: 16px;
}

.certificate {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.certificate-icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: var(--white);
  font-size: 2.3rem;
  font-weight: 950;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
}

.artist {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.artist-photo img {
  aspect-ratio: 0.9;
  border-radius: 28px;
}

.buyers {
  background: linear-gradient(135deg, #271613, #681c22);
  color: var(--white);
}

.buyers .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.buyer-marquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}

.buyer-marquee span {
  padding: 12px 16px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.delivery {
  background: var(--bg-soft);
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.delivery-grid img {
  min-height: 320px;
  max-height: 420px;
  padding: 14px;
  border-radius: 24px;
}

.delivery-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.check-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.check-list li::before {
  margin-right: 8px;
  color: var(--green);
  content: "✓";
  font-weight: 950;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-grid article {
  overflow: hidden;
}

.review-grid img {
  aspect-ratio: 1.1;
  padding: 10px;
}

.review-grid strong,
.review-grid span,
.review-grid p {
  display: block;
  padding: 0 22px;
}

.review-grid strong {
  margin-top: 20px;
  font-size: 1.1rem;
}

.review-grid span {
  margin: 4px 0 10px;
  color: var(--gold-dark);
  font-weight: 850;
}

.review-grid p {
  padding-bottom: 22px;
}

.quality {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  background: #fff8ee;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.quality-grid article {
  padding: 24px;
}

.quality-grid strong,
.quality-grid span {
  display: block;
}

.quality-grid strong {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.quality-grid span {
  color: var(--muted);
}

.checkout-shell {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.cart-summary,
.checkout-card {
  padding: 24px;
}

.cart-summary {
  position: sticky;
  top: 100px;
}

.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--bg);
  border-radius: 20px;
}

.cart-item img {
  aspect-ratio: 1;
  padding: 6px;
  border-radius: 16px;
}

.cart-item small {
  display: block;
  margin: 4px 0 10px;
  color: var(--muted);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.qty-control button {
  width: 34px;
  height: 32px;
  cursor: pointer;
  background: var(--white);
  border: 0;
}

.qty-control span {
  min-width: 34px;
  text-align: center;
  font-weight: 950;
}

.totals {
  margin: 22px 0 0;
}

.totals div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.totals dt {
  color: var(--muted);
}

.totals dd {
  margin: 0;
  font-weight: 950;
  text-align: right;
}

.totals .total {
  align-items: center;
  border-bottom: 0;
}

.totals .total dd {
  color: var(--wine);
  font-size: 1.55rem;
}

.summary-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.steps li {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 14px 10px;
  color: var(--muted);
  font-weight: 950;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.steps li.active {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.steps span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--wine);
  background: #fff1d7;
  border-radius: 999px;
}

.steps li.active span {
  color: var(--ink);
  background: var(--gold);
}

.steps strong,
.steps small {
  display: block;
}

.steps small {
  color: inherit;
  font-size: 0.78rem;
  opacity: 0.78;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.step-title {
  display: grid;
  gap: 5px;
  padding: 18px;
  margin-bottom: 2px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.step-title > span {
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step-title h3 {
  margin: 0;
  font-size: 1.42rem;
  font-weight: 950;
}

.step-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.step-panel {
  display: none;
}

.step-panel.active {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
}

input,
select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: 0;
}

textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  resize: vertical;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: 0;
}

input:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 162, 74, 0.16);
}

textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 162, 74, 0.16);
}

.field-title {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 950;
}

.option-group {
  display: grid;
  gap: 10px;
}

.option-card {
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.option-card input {
  width: 20px;
  min-height: 20px;
}

.option-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.option-card b {
  color: var(--wine);
}

.product-note {
  padding: 16px;
  margin: 0;
  color: var(--muted);
  background: var(--bg);
  border-radius: 18px;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cep-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.cep-button {
  min-width: 142px;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--wine);
  font-weight: 850;
}

.form-message.success {
  color: var(--green);
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.payment-method {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.payment-method.active {
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(117, 30, 36, 0.08);
}

.payment-method input {
  width: 20px;
  min-height: 20px;
}

.payment-method strong,
.payment-method small {
  display: block;
}

.payment-method small {
  margin-top: 3px;
  color: var(--muted);
}

.payment-method b {
  color: var(--wine);
  font-size: 0.86rem;
}

.pix-box,
.card-preview {
  padding: 22px;
  border-radius: 22px;
}

.pix-box {
  background: #f5fbf7;
  border: 1px solid #ccebd9;
}

.card-preview {
  display: grid;
  gap: 14px;
  background: #fff8ee;
  border: 1px solid var(--line);
}

.card-preview[hidden] {
  display: none;
}

.pix-box span,
.card-preview span {
  display: inline-flex;
  padding: 6px 12px;
  margin-bottom: 12px;
  font-weight: 950;
  border-radius: 999px;
}

.pix-box span {
  color: var(--green);
  background: #ddf7e8;
}

.card-preview span {
  color: var(--wine);
  background: #fff1d7;
}

.card-preview p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.card-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0;
  margin: 2px 0 4px;
  list-style: none;
}

.card-steps li {
  padding: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.card-steps li.active {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.card-review {
  display: grid;
  gap: 3px;
  padding: 14px;
  background: #fff;
  border: 1px dashed var(--gold);
  border-radius: 16px;
}

.card-review strong,
.card-review small {
  display: block;
}

.card-review small {
  color: var(--muted);
}

.pix-box code {
  color: var(--wine);
  font-weight: 950;
}

.pix-result {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.pix-result[hidden] {
  display: none;
}

.pix-result img {
  width: min(240px, 100%);
  height: auto;
  padding: 12px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.pix-result small {
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  margin: 12px 0 0;
}

.mobile-buy-bar {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.mobile-buy-bar span {
  font-weight: 950;
}

.site-footer {
  padding: 34px clamp(18px, 5vw, 72px) 110px;
  color: var(--muted);
  text-align: center;
}

.site-footer strong {
  display: block;
  color: var(--ink);
}

@media (max-width: 1060px) {
  .benefit-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    gap: 12px;
  }

  .hero,
  .artist,
  .checkout-shell,
  .delivery-grid,
  .quality,
  .certificate {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero-copy {
    text-align: center;
  }

  .price-line,
  .hero-actions,
  .trust-row {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-media {
    padding: 0;
  }

  .hero-media img {
    max-height: 520px;
  }

  .cart-summary {
    position: static;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .mobile-buy-bar {
    display: flex;
  }
}

@media (max-width: 620px) {
  .top-strip {
    gap: 8px;
    padding: 7px 10px;
    font-size: 0.72rem;
  }

  .site-header {
    padding: 12px 14px;
  }

  .cart-button span {
    display: none;
  }

  .brand-logo {
    width: 150px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .section-pad {
    padding-right: 16px;
    padding-left: 16px;
  }

  .gallery-grid,
  .benefit-grid,
  .two-columns,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(4, minmax(72px, 1fr));
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .steps li {
    min-width: 72px;
    padding: 10px 8px;
    border-radius: 14px;
  }

  .steps span {
    width: 24px;
    height: 24px;
    font-size: 0.78rem;
  }

  .steps strong {
    font-size: 0.78rem;
  }

  .steps small {
    display: none;
  }

  .checkout-card,
  .cart-summary {
    padding: 18px;
    border-radius: 22px;
  }

  .cep-row {
    grid-template-columns: 1fr;
  }

  .cep-button,
  .button-row .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .payment-method {
    grid-template-columns: auto 1fr;
  }

  .payment-method b {
    grid-column: 2;
  }

  .card-steps {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    padding: 8px;
  }

  .delivery-grid img,
  .review-grid img,
  .artist-photo img {
    max-height: 360px;
  }

  .hero-badge {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .option-card {
    grid-template-columns: auto 1fr;
  }

  .option-card b {
    grid-column: 2;
  }
}
