:root {
  --blue: #0757c8;
  --blue-dark: #082d72;
  --blue-light: #e9f2ff;
  --ink: #10213c;
  --muted: #66758c;
  --line: #dfe7f1;
  --white: #fff;
  --green: #1fab61;
  --shadow: 0 20px 60px rgba(12, 45, 92, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }

.announcement {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 20px;
  color: #fff;
  background: var(--blue-dark);
  font-size: 12px;
  letter-spacing: .02em;
}
.announcement__dot { width: 6px; height: 6px; border-radius: 50%; background: #6be59d; box-shadow: 0 0 0 4px rgba(107,229,157,.12); }

.header {
  height: 78px;
  max-width: 1200px;
  margin: auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.92);
}
.brand { display: flex; align-items: center; gap: 10px; font-family: "Manrope"; font-weight: 700; letter-spacing: .02em; }
.brand b { color: var(--blue); }
.brand__mark {
  width: 34px; height: 34px; display: grid; place-items: center; color: #fff;
  background: var(--blue); border-radius: 9px 2px 9px 2px; font-size: 18px; font-weight: 800;
}
.nav { display: flex; gap: 36px; color: #45566f; font-size: 14px; font-weight: 600; }
.nav a { position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--blue); transition: .2s; }
.nav a:hover::after { right: 0; }
.cart-trigger {
  border: 0; border-radius: 999px; padding: 10px 13px; display: flex; align-items: center; gap: 8px;
  color: var(--ink); background: #f4f7fb; cursor: pointer; font-weight: 700; font-size: 13px;
}
.cart-trigger svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-count { min-width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: #dce6f3; font-size: 11px; }
.cart-count--active { color: #fff; background: var(--blue); }

.hero {
  min-height: 575px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center;
  overflow: hidden; background: linear-gradient(110deg, #f4f8fd 0%, #f8fbff 57%, #edf5ff 100%);
}
.hero__content { width: 100%; max-width: 600px; justify-self: end; padding: 70px 50px 80px 32px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow i { width: 18px; height: 2px; background: currentColor; }
.hero h1, .section-heading h2, .faq h2 {
  margin: 20px 0; color: var(--ink); font-family: "Manrope"; font-weight: 800; line-height: 1.03; letter-spacing: -.045em;
}
.hero h1 { font-size: clamp(48px, 5vw, 72px); }
.hero h1 em, .section-heading h2 em { color: var(--blue); font-style: normal; }
.hero__content > p { max-width: 530px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.hero__actions { margin-top: 32px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.button { min-height: 48px; border: 0; border-radius: 7px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 15px; cursor: pointer; font-weight: 700; transition: transform .18s, box-shadow .18s; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--blue); box-shadow: 0 12px 25px rgba(7,87,200,.24); }
.button--primary span { font-size: 20px; }
.button--outline { color: var(--blue); background: #fff; border: 1px solid var(--line); }
.hero__note { color: #63748a; font-size: 12px; font-weight: 600; }
.hero__note b { color: var(--green); margin-right: 5px; }

.hero__visual { position: relative; height: 100%; min-height: 575px; overflow: hidden; background: #dce9f7; }
.hero__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.hero__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,41,92,.12), transparent 40%, rgba(4,27,63,.08)); pointer-events: none; }
.hero-campaign-link { position: absolute; z-index: 1; inset: 0; display: block; }
.hero__visual--campaign .hero__photo { object-position: center; }
.hero__visual--campaign::after { display: none; }
.hero__visual--campaign .hero-product,
.hero__visual--campaign .quality-pill { display: none; }
.hero-product {
  position: absolute; z-index: 3; left: 24px; right: 24px; bottom: 24px; min-height: 118px; padding: 14px 54px 14px 14px;
  display: grid; grid-template-columns: 62px 1fr; gap: 14px; align-items: center; color: var(--ink);
  border: 1px solid rgba(255,255,255,.72); border-radius: 15px; background: rgba(255,255,255,.92);
  box-shadow: 0 20px 45px rgba(7,32,71,.22); backdrop-filter: blur(14px);
}
.hero-product > img { width: 62px; height: 92px; object-fit: cover; border-radius: 6px; box-shadow: 0 8px 18px rgba(6,35,75,.2); transition: opacity .18s, transform .18s; }
.hero-product__details { min-width: 0; display: grid; gap: 4px; }
.hero-product__details > span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-product__details > strong { overflow: hidden; font: 800 13px/1.25 "Manrope", sans-serif; text-overflow: ellipsis; white-space: nowrap; }
.hero-product__details > small { color: var(--blue-dark); font-size: 13px; font-weight: 800; }
.hero-product .add-button { width: fit-content; min-height: 30px; margin-top: 3px; }
.hero-product__controls { position: absolute; top: 12px; right: 12px; display: grid; gap: 6px; }
.hero-product__controls button { width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); background: #fff; cursor: pointer; font-size: 22px; line-height: 1; }
.hero-product__controls button:hover { color: #fff; background: var(--blue); }
.quality-pill { position: absolute; z-index: 3; top: 24px; left: 24px; min-width: 78px; height: 78px; padding: 10px; display: grid; place-content: center; text-align: center; border-radius: 50%; color: var(--blue); background: #fff; box-shadow: var(--shadow); font-size: 8px; letter-spacing: .08em; transform: rotate(-6deg); }
.quality-pill b { font-size: 13px; }

.benefits { max-width: 1136px; margin: -31px auto 0; position: relative; z-index: 4; min-height: 94px; padding: 0 44px; display: grid; grid-template-columns: repeat(3,1fr); align-items: center; gap: 28px; border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
.benefits article { display: flex; align-items: center; gap: 16px; }
.benefits article > span { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue); background: var(--blue-light); border-radius: 10px; }
.benefits strong, .benefits small { display: block; }
.benefits strong { margin-bottom: 4px; font-size: 13px; }
.benefits small { color: var(--muted); font-size: 10px; }

.trust-proof { max-width: 1136px; margin: 88px auto 0; padding: 42px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 54px; border: 1px solid #d8e6f7; border-radius: 24px; background: linear-gradient(135deg, #f7fbff, #edf5ff); }
.trust-proof h2 { margin: 14px 0 16px; color: var(--navy); font: 800 clamp(1.8rem, 3.2vw, 2.7rem)/1.1 "Manrope", sans-serif; letter-spacing: -.035em; }
.trust-proof__content > p { max-width: 680px; color: var(--muted); font-size: .9rem; line-height: 1.75; }
.trust-proof__badges { margin-top: 22px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 18px; }
.trust-proof__badges span { color: #315376; font-size: .75rem; font-weight: 700; }
.trust-proof__marketplace { margin: 0; padding: 18px; border-radius: 18px; background: #fff; box-shadow: 0 18px 45px rgba(8, 52, 112, .12); text-align: center; }
.trust-proof__marketplace img { display: block; width: 100%; height: auto; border: 1px solid #edf0f4; border-radius: 8px; }
.trust-proof__marketplace figcaption { margin-top: 11px; color: var(--muted); font-size: .65rem; }

.buying-steps { max-width: 1180px; margin: auto; padding: 105px 32px 10px; text-align: center; }
.buying-steps__heading { max-width: 720px; margin: 0 auto 38px; }
.buying-steps h2 { margin: 13px 0 12px; color: var(--navy); font: 800 clamp(2rem, 4vw, 3rem)/1.08 "Manrope", sans-serif; letter-spacing: -.035em; }
.buying-steps__heading > p { color: var(--muted); font-size: .9rem; line-height: 1.7; }
.buying-steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; text-align: left; }
.buying-steps__grid article { padding: 25px 22px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.buying-steps__grid article > span { display: inline-grid; place-items: center; width: 35px; height: 35px; border-radius: 9px; color: #fff; background: var(--blue); font: 800 .72rem "Manrope", sans-serif; }
.buying-steps__grid h3 { margin: 18px 0 9px; color: var(--navy); font: 800 .95rem "Manrope", sans-serif; }
.buying-steps__grid p { color: var(--muted); font-size: .75rem; line-height: 1.6; }
.buying-steps__cta { margin-top: 28px; }

.products-section { max-width: 1200px; margin: auto; padding: 112px 32px 120px; }
.section-heading { margin-bottom: 44px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(34px,4vw,50px); }
.section-heading > p { max-width: 330px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: #fff; transition: transform .2s, box-shadow .2s; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card--customizable { border-color: rgba(7,87,200,.38); box-shadow: 0 14px 32px rgba(7,87,200,.1); }
.product-card--customizable .product-card__image { background: linear-gradient(145deg, #eaf3ff, #f8fbff); }
.product-card__image { position: relative; min-height: 280px; display: grid; place-items: center; overflow: hidden; background: #f4f7fb; }
.product-card__image::after { content: ""; position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(transparent,rgba(10,39,83,.04)); }
.product-card__image img { width: 150px; height: 238px; position: relative; z-index: 1; filter: drop-shadow(0 16px 16px rgba(6,40,91,.22)); transition: transform .25s; }
.product-card--phone-stand .product-card__image { background: #fff; }
.product-card--phone-stand .product-card__image img { width: 100%; height: 280px; object-fit: contain; filter: none; }
.product-card:hover img { transform: rotate(-2deg) scale(1.025); }
.product-badge { position: absolute; z-index: 2; top: 16px; left: 16px; padding: 6px 9px; color: #fff; background: var(--blue); border-radius: 999px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.product-card__body { padding: 20px; }
.product-card h3 { min-height: 42px; margin: 0 0 8px; font-family: "Manrope"; font-size: 16px; line-height: 1.3; }
.product-card p { min-height: 51px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.product-card__footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-card__footer > strong { color: var(--blue-dark); font-family: "Manrope"; font-size: 19px; }
.add-button { min-height: 36px; padding: 0 11px; display: flex; align-items: center; gap: 6px; border: 0; border-radius: 7px; color: var(--blue); background: var(--blue-light); cursor: pointer; font-size: 11px; font-weight: 800; }
.add-button svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.add-button:hover { color: #fff; background: var(--blue); }

.manifesto { min-height: 295px; padding: 70px 30px; text-align: center; color: #fff; background: linear-gradient(135deg,#06377f,#061f4d); }
.manifesto__mark { height: 55px; color: #4788dc; font-family: Georgia; font-size: 82px; line-height: 1; }
.manifesto blockquote { max-width: 780px; margin: 0 auto 16px; font-family: "Manrope"; font-size: clamp(26px,4vw,42px); font-weight: 700; letter-spacing: -.03em; }
.manifesto p { color: #a8bdd9; font-size: 13px; }

.print-guide { max-width: 1180px; margin: auto; padding: 100px 32px 35px; }
.print-guide__heading { max-width: 720px; margin-bottom: 38px; }
.print-guide__heading h2 { margin: 13px 0 14px; color: var(--navy); font: 800 clamp(2rem, 4vw, 3rem)/1.08 "Manrope", sans-serif; }
.print-guide__heading p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.print-guide__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.print-guide__grid article { padding: 25px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.print-guide__grid article > span { display: inline-grid; place-items: center; width: 31px; height: 31px; border-radius: 8px; color: var(--blue); background: var(--blue-light); font: 800 .7rem "Manrope", sans-serif; }
.print-guide__grid h3 { margin: 17px 0 9px; color: var(--navy); font: 800 .95rem "Manrope", sans-serif; }
.print-guide__grid p { color: var(--muted); font-size: .78rem; line-height: 1.65; }
.print-guide__contact { display: flex; justify-content: space-between; align-items: center; gap: 25px; margin-top: 20px; padding: 23px 25px; border-radius: 15px; background: var(--blue-light); }
.print-guide__contact > div { display: grid; gap: 4px; }
.print-guide__contact strong { color: var(--navy); font: 800 1rem "Manrope", sans-serif; }
.print-guide__contact small { color: var(--muted); font-size: .75rem; }
.print-guide__contact .button { white-space: nowrap; }

.faq { max-width: 1040px; margin: auto; padding: 100px 32px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.faq h2 { font-size: 42px; }
.faq__list details { border-bottom: 1px solid var(--line); }
.faq__list summary { padding: 21px 4px; cursor: pointer; font-family: "Manrope"; font-weight: 700; list-style: none; }
.faq__list summary::after { content: "+"; float: right; color: var(--blue); font-size: 20px; }
.faq__list details[open] summary::after { content: "−"; }
.faq__list p { margin: -5px 0 20px; padding-right: 35px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.faq__list p a, .footer-contact { color: var(--blue); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.policy { max-width: 1040px; margin: auto; padding: 25px 32px 110px; }
.policy__heading { max-width: 780px; margin-bottom: 34px; }
.policy__heading h2 { margin: 13px 0 14px; color: var(--navy); font: 800 clamp(2rem, 4vw, 3rem)/1.08 "Manrope", sans-serif; letter-spacing: -.03em; }
.policy__heading > p { color: var(--muted); font-size: 14px; line-height: 1.75; }
.policy__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; align-items: start; }
.policy__list details { border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; }
.policy__list summary { padding: 20px 52px 20px 22px; position: relative; cursor: pointer; color: var(--navy); font: 800 .92rem "Manrope", sans-serif; list-style: none; }
.policy__list summary::-webkit-details-marker { display: none; }
.policy__list summary::after { content: "+"; position: absolute; top: 16px; right: 19px; color: var(--blue); font-size: 22px; }
.policy__list details[open] summary { background: var(--blue-light); }
.policy__list details[open] summary::after { content: "−"; }
.policy__content { padding: 18px 22px 22px; color: var(--muted); font-size: .8rem; line-height: 1.7; }
.policy__content p { margin: 0 0 12px; }
.policy__content p:last-child { margin-bottom: 0; }
.policy__content ul { margin: 2px 0 14px; padding-left: 19px; }
.policy__content li + li { margin-top: 5px; }
.policy__contact { margin-top: 22px; padding: 28px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-radius: 16px; color: #fff; background: var(--blue-dark); }
.policy__contact-label { color: #9fc8ff; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.policy__contact h3 { margin: 7px 0; font: 800 1.25rem "Manrope", sans-serif; }
.policy__contact p { margin: 0 0 10px; color: #d2e2f7; font-size: .78rem; }
.policy__contact strong { font-size: .85rem; }
.policy__contact strong a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.policy__contact .button { flex: none; background: #fff; color: var(--blue); }

footer { min-height: 170px; padding: 40px 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-top: 1px solid var(--line); text-align: center; }
.brand--footer { font-size: 14px; }
footer p { margin: 14px 0 25px; color: var(--muted); font-size: 12px; }
footer small { color: #9aa7b8; font-size: 9px; }
.footer-contact { margin: -12px 0 22px; font-size: .78rem; }
.footer-contact + .footer-contact { margin-top: -14px; }

.cart-overlay { position: fixed; z-index: 20; inset: 0; background: rgba(5,20,42,.48); opacity: 0; visibility: hidden; transition: .25s; }
.cart-overlay--open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; z-index: 21; top: 0; right: 0; width: min(450px,100%); height: 100%; padding: 28px;
  display: flex; flex-direction: column; background: #fff; box-shadow: -20px 0 60px rgba(7,28,60,.2);
  transform: translateX(102%); transition: transform .28s ease; overflow-y: auto;
}
.cart-drawer--open { transform: translateX(0); }
.cart-drawer__header { display: flex; align-items: start; justify-content: space-between; }
.cart-drawer__header h2 { margin: 7px 0 0; font-family: "Manrope"; font-size: 29px; }
.icon-button { width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 50%; background: #f2f5f9; cursor: pointer; color: var(--ink); font-size: 26px; line-height: 1; }
.shipping-box { margin: 25px 0 5px; padding: 15px; border-radius: 8px; background: var(--blue-light); }
.shipping-box__message { margin-bottom: 10px; color: #47617e; font-size: 12px; line-height: 1.4; }
.shipping-box__message b { color: var(--blue); }
.progress { height: 5px; overflow: hidden; border-radius: 999px; background: #ccdcf1; }
.progress span { display: block; width: 0; height: 100%; border-radius: inherit; background: var(--blue); transition: width .35s; }
.cart-items { flex: 1; padding: 10px 0; }
.cart-item { padding: 17px 0; display: flex; gap: 16px; border-bottom: 1px solid var(--line); }
.cart-item img { width: 68px; height: 108px; object-fit: cover; border-radius: 5px; box-shadow: 0 7px 18px rgba(10,40,80,.14); }
.cart-item__content { position: relative; flex: 1; padding-right: 25px; }
.cart-item h3 { margin: 3px 0 7px; padding-right: 15px; font-family: "Manrope"; font-size: 14px; }
.cart-item strong { color: var(--blue); font-size: 13px; }
.remove-button { position: absolute; right: 0; top: -3px; border: 0; background: none; color: #9aa8b8; cursor: pointer; font-size: 20px; }
.quantity { width: 93px; margin-top: 13px; display: grid; grid-template-columns: repeat(3,1fr); align-items: center; border: 1px solid var(--line); border-radius: 5px; text-align: center; }
.quantity button { height: 28px; border: 0; background: #f7f9fc; cursor: pointer; color: var(--blue); font-weight: 800; }
.quantity span { font-size: 12px; font-weight: 700; }
.empty-cart { margin: auto; text-align: center; }
.empty-cart[hidden], .cart-summary[hidden], .cart-items[hidden] { display: none; }
.empty-cart > span { width: 70px; height: 70px; margin: auto; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: var(--blue-light); font-size: 30px; }
.empty-cart h3 { margin: 20px 0 7px; font-family: "Manrope"; }
.empty-cart p { margin: 0 0 22px; color: var(--muted); font-size: 13px; }
.cart-summary { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.cart-summary > div { margin-bottom: 11px; display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; }
.cart-summary > div:first-child { color: var(--ink); font-size: 16px; }
.cart-summary > div:first-child strong { font-family: "Manrope"; font-size: 21px; }
.button--whatsapp { width: 100%; margin-top: 12px; color: #fff; background: var(--green); box-shadow: 0 10px 23px rgba(31,171,97,.2); }
.button--whatsapp svg { width: 20px; fill: currentColor; }
.cart-summary > small { display: block; margin-top: 12px; color: #8795a7; text-align: center; font-size: 9px; }
.toast { position: fixed; z-index: 30; left: 50%; bottom: 25px; padding: 13px 20px; color: #fff; background: #10213c; border-radius: 8px; box-shadow: var(--shadow); font-size: 13px; transform: translate(-50%,30px); opacity: 0; pointer-events: none; transition: .25s; }
.toast--show { transform: translate(-50%,0); opacity: 1; }

@media (max-width: 900px) {
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero__content { max-width: none; padding: 65px 32px 30px; text-align: center; }
  .hero__content > p { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { min-height: 490px; width: min(530px,100%); margin: auto; }
  .benefits { width: calc(100% - 40px); grid-template-columns: 1fr; padding: 25px; gap: 22px; }
  .trust-proof { margin: 70px 20px 0; grid-template-columns: 1fr; gap: 30px; }
  .buying-steps__grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .print-guide__grid { grid-template-columns: repeat(2, 1fr); }
  .faq { grid-template-columns: 1fr; gap: 25px; }
  .policy__list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .announcement { font-size: 10px; }
  .header { height: 66px; padding: 0 18px; }
  .brand { font-size: 13px; }
  .brand__mark { width: 30px; height: 30px; }
  .cart-trigger { padding: 9px; }
  .cart-trigger__label { display: none; }
  .hero__content { padding: 53px 20px 12px; }
  .hero h1 { margin: 17px 0; font-size: 45px; }
  .hero__content > p { font-size: 15px; }
  .hero__actions { flex-direction: column; gap: 16px; }
  .hero__visual { min-height: 455px; width: 100%; transform: none; margin-bottom: 0; }
  .hero__photo { object-position: 63% center; }
  .hero-product { left: 12px; right: 12px; bottom: 12px; }
  .benefits { margin-top: -5px; }
  .trust-proof { margin: 55px 18px 0; padding: 28px 20px; }
  .trust-proof__badges { grid-template-columns: 1fr; }
  .buying-steps { padding: 75px 18px 0; }
  .buying-steps__grid { grid-template-columns: 1fr; }
  .buying-steps__cta { width: 100%; }
  .products-section { padding: 80px 18px; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading h2 { font-size: 36px; }
  .section-heading > p { margin-top: 18px; }
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card { display: grid; grid-template-columns: 43% 57%; }
  .product-card__image { min-height: 250px; }
  .product-card__image img { width: 125px; height: 198px; }
  .product-card__body { padding: 17px 15px; display: flex; flex-direction: column; }
  .product-card h3, .product-card p { min-height: 0; }
  .product-card h3 { font-size: 14px; }
  .product-card p { font-size: 10px; }
  .product-card__footer { margin-top: auto; display: block; }
  .product-card__footer > strong { display: block; margin-bottom: 10px; }
  .add-button { width: 100%; justify-content: center; }
  .manifesto { padding: 60px 22px; }
  .print-guide { padding: 75px 20px 25px; }
  .print-guide__grid { grid-template-columns: 1fr; }
  .print-guide__contact { align-items: stretch; flex-direction: column; }
  .print-guide__contact .button { width: 100%; }
  .faq { padding: 75px 20px; }
  .faq h2 { font-size: 36px; }
  .policy { padding: 10px 20px 80px; }
  .policy__contact { align-items: stretch; flex-direction: column; }
  .policy__contact .button { width: 100%; }
  .cart-drawer { padding: 22px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

.checkout-form { padding: 0 24px 18px; }
.checkout-form__section { padding: 18px 0; border-top: 1px solid var(--line); }
.checkout-form__section h3 { margin: 0 0 14px; color: var(--navy); font: 700 .92rem/1.2 "Manrope", sans-serif; }
.field { display: flex; flex: 1; flex-direction: column; gap: 6px; margin-bottom: 11px; }
.field span { color: var(--muted); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.field input { width: 100%; min-height: 43px; padding: 10px 12px; color: var(--navy); background: #fff; border: 1px solid #d8e0ec; border-radius: 9px; outline: none; font: 500 .9rem "DM Sans", sans-serif; }
.field input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(7, 87, 200, .1); }
.field-row { display: flex; gap: 10px; }
.field-row--action { align-items: flex-end; }
.field--number { max-width: 105px; }
.field--state { max-width: 72px; }
.quote-button { min-height: 43px; margin-bottom: 11px; padding-inline: 15px; }
.shipping-options { display: grid; gap: 8px; }
.shipping-option { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; padding: 12px; background: #f7f9fc; border: 1px solid #e1e7f0; border-radius: 10px; cursor: pointer; }
.shipping-option:has(input:checked) { background: #eef5ff; border-color: var(--blue); }
.shipping-option input { accent-color: var(--blue); }
.shipping-option span { display: grid; gap: 2px; }
.shipping-option strong, .shipping-option b { color: var(--navy); font-size: .84rem; }
.shipping-option small, .form-message { color: var(--muted); font-size: .72rem; }
.production-options { display: grid; gap: 9px; }
.production-option { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: start; padding: 13px; background: #f7f9fc; border: 1px solid #e1e7f0; border-radius: 10px; cursor: pointer; }
.production-option:has(input:checked) { background: #eef5ff; border-color: var(--blue); box-shadow: 0 0 0 1px rgba(7,87,200,.08); }
.production-option input { margin-top: 3px; accent-color: var(--blue); }
.production-option span { display: grid; gap: 4px; }
.production-option strong, .production-option b { color: var(--navy); font-size: .8rem; }
.production-option small { color: var(--muted); font-size: .68rem; line-height: 1.45; }
.production-option > b { white-space: nowrap; }
.production-note { margin: 9px 2px 0; color: #73839a; font-size: .62rem; line-height: 1.45; }
.cart-total { padding-top: 12px; border-top: 1px solid var(--line); font-size: 1.05rem; }
.cart-total strong { color: var(--blue); font-size: 1.22rem; }
.button--payment { width: 100%; color: #fff; background: #078d4e; border-color: #078d4e; }
.button--payment:hover { background: #057642; border-color: #057642; }
.button:disabled { cursor: wait; opacity: .65; }

@media (max-width: 480px) {
  .checkout-form { padding-inline: 18px; }
  .field-row:not(.field-row--action) { gap: 8px; }
}

.personalizer[hidden] { display: none; }
.personalizer { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.personalizer__overlay { position: absolute; inset: 0; background: rgba(5, 18, 41, .72); backdrop-filter: blur(5px); }
.personalizer__dialog { position: relative; width: min(940px, 100%); max-height: calc(100vh - 40px); overflow: auto; padding: 32px; border-radius: 22px; background: #fff; box-shadow: 0 30px 80px rgba(0, 20, 60, .3); }
.personalizer__close { position: absolute; top: 14px; right: 14px; }
.personalizer__content { display: grid; grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr); gap: 34px; }
.personalizer__content h2 { margin: 8px 0; color: var(--navy); font: 800 2rem/1.1 "Manrope", sans-serif; }
.personalizer__content > div > p, .personalizer__note { color: var(--muted); font-size: .8rem; line-height: 1.5; }
.custom-preview { position: relative; aspect-ratio: 1.586; display: grid; grid-template-columns: 31% 1fr; gap: 20px; overflow: hidden; margin-top: 24px; padding: 40px 25px 25px; border: 1px solid #dde4ed; border-radius: 16px; color: #13233d; background: #fff; box-shadow: 0 20px 40px rgba(3, 43, 105, .14); }
.custom-preview__background { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: fill; pointer-events: none; }
.custom-preview[data-background-detail="tecnologico-azul"] .custom-preview__background,
.custom-preview[data-background-detail="neon-tecnologico"] .custom-preview__background { top: -4%; left: -6%; width: 112%; height: 108%; }
.custom-preview__logo { position: absolute; z-index: 2; right: 23px; bottom: 18px; display: flex; justify-content: flex-end; align-items: center; width: 25%; height: 17%; min-width: 0; color: #93a0b2; font-size: .55rem; font-weight: 800; letter-spacing: .08em; text-align: right; }
.custom-preview__logo img { width: 100%; height: 100%; object-fit: contain; object-position: right bottom; }
.custom-preview__photo { display: grid; place-items: center; overflow: hidden; border-radius: 10px; color: #9aa7b7; background: #f0f3f7; font-size: .7rem; font-weight: 800; }
.custom-preview__photo img { width: 100%; height: 100%; object-fit: cover; }
.custom-preview__photo, .custom-preview__details { position: relative; z-index: 1; }
.custom-preview__details { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.custom-preview__details strong { overflow: hidden; color: #13233d; font: 800 clamp(1rem, 2.3vw, 1.55rem)/1.05 "Manrope", sans-serif; text-overflow: ellipsis; text-transform: uppercase; }
.custom-preview__details span { margin-top: 10px; color: #455978; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.custom-preview__details small { margin-top: 8px; color: #6a7b94; font-size: .62rem; font-weight: 700; text-transform: uppercase; }
.custom-preview__details::after { content: ""; width: 54px; height: 4px; margin-top: 17px; border-radius: 4px; background: var(--blue); }
.custom-preview--vertical { display: block; width: min(280px, 100%); aspect-ratio: 54 / 85.6; margin-inline: auto; padding: 0; }
.custom-preview--vertical .custom-preview__logo { right: 25%; bottom: 6.5%; width: 50%; height: 6%; justify-content: center; }
.custom-preview--vertical .custom-preview__logo img { object-position: center; }
.custom-preview--vertical .custom-preview__photo { position: absolute; top: 21%; left: 24%; width: 52%; height: 38%; border-radius: 12px; }
.custom-preview--vertical .custom-preview__photo img { object-position: center top; }
.custom-preview--vertical .custom-preview__details { position: absolute; top: 65%; left: 8%; width: 84%; height: 23%; align-items: center; justify-content: flex-start; text-align: center; }
.custom-preview--vertical .custom-preview__details strong { max-width: 100%; font-size: 1.24rem; }
.custom-preview--vertical .custom-preview__details span { margin-top: 11px; font-size: .72rem; }
.custom-preview--vertical .custom-preview__details small { margin-top: 9px; font-size: .64rem; }
.custom-preview--vertical .custom-preview__details::after { margin-top: 15px; }
.custom-preview--image { grid-template-columns: 50% 1fr; gap: 0; padding: 0; }
.custom-preview--image .custom-preview__photo { width: 100%; height: 100%; border-radius: 0; }
.custom-preview--image .custom-preview__details { padding: 50px 24px 55px; background: transparent; }
.custom-preview--image .custom-preview__logo { right: 20px; bottom: 14px; width: 20%; height: 15%; }
.custom-preview--visitor { display: block; width: min(280px, 100%); aspect-ratio: 54 / 85.6; margin-inline: auto; padding: 0; text-align: center; background: #fff; }
.custom-preview--visitor .custom-preview__photo,
.custom-preview--visitor .custom-preview__logo { display: none; }
.custom-preview--visitor .custom-preview__details { position: absolute; top: 21%; left: 10%; display: flex; width: 80%; height: 70%; align-items: center; justify-content: flex-start; gap: 0; }
.custom-preview--visitor .custom-preview__details strong { margin-top: 30%; color: var(--navy); font-size: clamp(1.65rem, 5vw, 2.2rem); letter-spacing: .04em; line-height: 1; }
.custom-preview--visitor .custom-preview__details span { order: -1; margin-top: 0; color: var(--blue); font-size: .65rem; letter-spacing: .14em; }
.custom-preview--visitor .custom-preview__details small { margin-top: 9%; color: var(--navy); font: 800 1.15rem/1 "Manrope", sans-serif; }
.custom-preview--visitor .custom-preview__details::after { display: none; }
.visitor-barcode { display: none; width: 100%; margin-top: 9%; }
.custom-preview--visitor .visitor-barcode { display: grid; gap: 7px; }
.visitor-barcode__bars { display: flex; width: 100%; height: 78px; padding: 7px 0; background: #fff; }
.visitor-barcode__bars i { display: block; height: 100%; }
.visitor-barcode b { color: var(--navy); font: 600 .72rem/1 monospace; letter-spacing: .14em; }
.visitor-product-preview { position: relative; display: block; width: 52%; min-height: 0; aspect-ratio: 54 / 85.6; padding: 0; overflow: hidden; border: 1px solid #dce4ef; border-radius: 13px; background: #fff; box-shadow: 0 16px 32px rgba(4, 34, 77, .15); text-align: center; }
.visitor-product-preview span { position: absolute; top: 21%; left: 8%; width: 84%; color: var(--blue); font-size: .48rem; font-weight: 800; letter-spacing: .12em; }
.visitor-product-preview strong { position: absolute; top: 40%; left: 8%; width: 84%; color: var(--navy); font: 800 1.1rem/1 "Manrope", sans-serif; }
.visitor-product-preview b { position: absolute; top: 52%; left: 8%; width: 84%; color: var(--navy); font: 800 .7rem/1 "Manrope", sans-serif; }
.visitor-product-barcode { position: absolute; top: 62%; left: 10%; width: 80%; height: 38px; background: repeating-linear-gradient(90deg, #13233d 0 2px, transparent 2px 4px, #13233d 4px 5px, transparent 5px 8px); }
.visitor-product-preview small { position: absolute; top: 79%; left: 8%; width: 84%; color: var(--navy); font: 600 .48rem/1 monospace; letter-spacing: .13em; }
.card-size-note { margin: 16px 0 0; padding: 10px 12px; border-radius: 9px; color: #596b84 !important; background: #f3f6fa; font-size: .68rem !important; }
.personalizer__form { display: grid; gap: 14px; }
.personalizer__form--visitor #custom-data-fields { grid-template-columns: 1fr; }
.visitor-steps { padding: 16px; border: 1px solid #d8e7fb; border-radius: 12px; background: #f5f9ff; }
.visitor-steps > strong { color: var(--navy); font: 800 1rem/1.2 "Manrope", sans-serif; }
.visitor-steps ol { display: grid; gap: 9px; margin: 13px 0 0; padding: 0; list-style: none; counter-reset: visitor-step; }
.visitor-steps li { position: relative; display: grid; gap: 2px; min-height: 30px; padding-left: 40px; counter-increment: visitor-step; }
.visitor-steps li::before { content: counter(visitor-step); position: absolute; top: 0; left: 0; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: #fff; background: var(--blue); font-size: .72rem; font-weight: 800; }
.visitor-steps li b { color: var(--navy); font-size: .78rem; }
.visitor-steps li span { color: var(--muted); font-size: .68rem; line-height: 1.35; }
.required-note { margin-left: 5px; color: #c34040; font-size: .62rem; font-weight: 700; }
.finish-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.finish-options label { cursor: pointer; }
.finish-options input { position: absolute; opacity: 0; pointer-events: none; }
.finish-options span { display: grid; gap: 5px; min-height: 88px; padding: 14px; border: 2px solid #dce5f0; border-radius: 11px; background: #fff; transition: .18s ease; }
.finish-options b { color: var(--navy); font-size: .82rem; }
.finish-options small { color: var(--muted); font-size: .67rem; line-height: 1.4; }
.finish-options input:checked + span { border-color: var(--blue); background: #eef6ff; box-shadow: 0 0 0 3px rgba(7, 87, 200, .1); }
.finish-options input:focus-visible + span { outline: 3px solid rgba(7, 87, 200, .25); outline-offset: 2px; }
.detail-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.detail-options label { cursor: pointer; }
.detail-options input { position: absolute; opacity: 0; }
.detail-options label > span { display: grid; grid-template-columns: 54px 1fr; gap: 10px; align-items: center; padding: 9px; border: 2px solid var(--line); border-radius: 10px; background: #fff; }
.detail-options input:checked + span { border-color: var(--blue); background: #f3f8ff; box-shadow: 0 0 0 2px rgba(7,87,200,.1); }
.detail-options b { color: var(--navy); font-size: .72rem; }
.detail-sample { width: 54px; height: 36px; border: 1px solid #dce4ed; border-radius: 5px; background: #fff; }
.detail-sample--tech { background: url("assets/template-tecnologico-azul.png") center/cover no-repeat; }
.detail-sample--executivo { background: url("assets/template-executivo-marinho.png") center/cover no-repeat; }
.detail-sample--circuito { background: url("assets/template-circuito-cobre.png") center/cover no-repeat; }
.detail-sample--geometrico { background: url("assets/template-geometrico-premium.png") center/cover no-repeat; }
.detail-sample--organico { background: url("assets/template-organico-vibrante.png") center/cover no-repeat; }
.detail-sample--natureza { background: url("assets/template-natureza-elegante.png") center/cover no-repeat; }
.detail-sample--ondas { background: url("assets/template-ondas-azuis.png") center/cover no-repeat; }
.detail-sample--neon { background: url("assets/template-neon-tecnologico.png") center/cover no-repeat; }
.detail-sample--vinho { background: url("assets/template-vinho-elegante.png") center/cover no-repeat; }
.detail-sample--mosaico { background: url("assets/template-mosaico-colorido.png") center/cover no-repeat; }
.detail-sample--rosa { background: url("assets/template-geometria-rosa.png") center/cover no-repeat; }
.product-options { position: fixed; z-index: 110; inset: 0; display: grid; place-items: center; padding: 18px; }
.product-options[hidden] { display: none; }
.product-options__dialog { position: relative; z-index: 1; display: grid; gap: 16px; width: min(500px, 100%); padding: 30px; border: 0; border-radius: 18px; background: #fff; box-shadow: 0 28px 80px rgba(5, 28, 64, .28); }
.product-options__dialog h2 { margin: 0; color: var(--navy); font: 800 1.65rem/1.1 "Manrope", sans-serif; }
.product-options__dialog p { margin: -7px 0 0; color: var(--muted); font-size: .78rem; }
.product-options__close { position: absolute; top: 12px; right: 12px; }
.product-options__dialog > .button { width: 100%; }
.cart-item__finish { display: block; margin-top: 4px; color: var(--muted); font-size: .62rem; }
.cart-item__finish-button { width: fit-content; margin-top: 6px; padding: 4px 7px; border: 1px solid #e3a9a9; border-radius: 6px; color: #a52d2d; background: #fff7f7; font-size: .58rem; font-weight: 700; cursor: pointer; }
.personalizer__form fieldset { margin: 0; padding: 0; border: 0; }
.personalizer__form legend { margin-bottom: 9px; color: var(--navy); font-size: .78rem; font-weight: 700; }
.kit-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.kit-options label { position: relative; cursor: pointer; }
.kit-options input { position: absolute; opacity: 0; }
.kit-options label > span { display: flex; justify-content: space-between; gap: 10px; padding: 13px; border: 1px solid var(--line); border-radius: 10px; background: #f8fafc; }
.kit-options input:checked + span { color: var(--blue); border-color: var(--blue); background: var(--blue-light); box-shadow: 0 0 0 1px var(--blue); }
.kit-options small { color: var(--muted); }
.kit-option--recommended em { position: absolute; z-index: 1; top: -7px; right: 8px; padding: 2px 7px; border-radius: 99px; color: #fff; background: var(--blue); font-size: .55rem; font-style: normal; font-weight: 800; text-transform: uppercase; }
.employee-editor__header { display: flex; justify-content: space-between; gap: 12px; align-items: center; padding: 12px; border-radius: 10px; background: #f4f7fb; }
.employee-editor__header > div:first-child { display: grid; gap: 2px; }
.employee-editor__header b { color: var(--navy); font-size: .82rem; }
.employee-editor__header small { color: var(--muted); font-size: .65rem; }
.employee-tabs { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 5px; max-width: 245px; }
.employee-tabs button { width: 28px; height: 28px; padding: 0; border: 1px solid #ced8e6; border-radius: 7px; color: #60728c; background: #fff; font-size: .68rem; font-weight: 800; cursor: pointer; }
.employee-tabs button.complete { color: #087445; border-color: #82d3ad; background: #eefbf5; }
.employee-tabs button.active { color: #fff; border-color: var(--blue); background: var(--blue); }
.personalizer-assistant { display: grid; gap: 10px; padding: 14px; border: 1px solid #cfe0f7; border-radius: 14px; background: linear-gradient(145deg, #f4f9ff, #eef5ff); }
.personalizer-assistant__heading { display: flex; align-items: center; gap: 9px; color: var(--navy); }
.personalizer-assistant__heading > span { display: grid; place-items: center; width: 30px; height: 30px; flex: 0 0 auto; border-radius: 9px; color: #fff; background: var(--blue); }
.personalizer-assistant__heading div { display: grid; gap: 1px; }
.personalizer-assistant__heading b { font-size: .78rem; }
.personalizer-assistant__heading small { color: var(--muted); font-size: .64rem; }
.personalizer-assistant__answer { padding: 10px 11px; border-radius: 9px; color: #334b6d; background: #fff; font-size: .72rem; line-height: 1.45; box-shadow: 0 4px 14px rgba(3, 43, 105, .06); }
.personalizer-assistant__suggestions { display: flex; flex-wrap: wrap; gap: 6px; }
.personalizer-assistant__suggestions button { padding: 6px 9px; border: 1px solid #b9d1ef; border-radius: 99px; color: #245589; background: #fff; font: 700 .62rem "DM Sans", sans-serif; cursor: pointer; }
.personalizer-assistant__suggestions button:hover { border-color: var(--blue); color: var(--blue); }
.personalizer-assistant__ask { display: grid; grid-template-columns: 1fr auto; gap: 7px; }
.personalizer-assistant__ask input { min-width: 0; padding: 9px 10px; border: 1px solid #c9d7e8; border-radius: 8px; font: inherit; font-size: .72rem; }
.personalizer-assistant__ask button { padding: 9px 12px; border: 0; border-radius: 8px; color: #fff; background: var(--navy); font: 700 .68rem "DM Sans", sans-serif; cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; margin: -1px; padding: 0; border: 0; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.no-scroll { overflow: hidden; }
.order-success[hidden] { display: none; }
.order-success { position: fixed; z-index: 140; inset: 0; display: grid; place-items: center; padding: 18px; }
.order-success__overlay { position: absolute; inset: 0; background: rgba(5, 18, 41, .78); backdrop-filter: blur(6px); }
.order-success__dialog { position: relative; z-index: 1; display: grid; gap: 14px; width: min(520px, 100%); max-height: calc(100vh - 36px); overflow: auto; padding: 32px; border-radius: 22px; background: #fff; box-shadow: 0 30px 90px rgba(0, 20, 60, .36); text-align: center; }
.order-success__icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto; border-radius: 50%; color: #fff; background: #078d4e; font: 800 1.8rem "Manrope", sans-serif; }
.order-success__dialog h2 { margin: 0; color: var(--navy); font: 800 1.7rem/1.12 "Manrope", sans-serif; }
.order-success__dialog > p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.55; }
.order-success__summary { display: grid; gap: 6px; padding: 15px; border: 1px solid #dbe5f0; border-radius: 12px; background: #f7faff; text-align: left; }
.order-success__summary b { color: var(--navy); font-size: .82rem; }
.order-success__summary span { color: #536983; font-size: .74rem; }
.order-success__summary strong { margin-top: 5px; color: #078d4e; font-size: .82rem; }
.order-success__whatsapp { color: #fff; background: #078d4e; border-color: #078d4e; }
.order-success__whatsapp:hover { background: #057642; border-color: #057642; }
.order-success__dialog small { color: var(--muted); font-size: .66rem; }
.order-success__later { width: fit-content; margin: -3px auto 0; padding: 4px; border: 0; color: #60728c; background: transparent; font: 700 .7rem "DM Sans", sans-serif; cursor: pointer; text-decoration: underline; }
.personalizer__actions { display: flex; justify-content: flex-end; gap: 10px; }
.custom-product-visual { position: relative; display: grid; grid-template-columns: 25% 1fr 20%; align-items: center; gap: 12px; width: 88%; min-height: 150px; padding: 28px 20px 20px; color: #13233d; background: #fff; border: 1px solid #dce4ef; border-radius: 13px; box-shadow: 0 16px 32px rgba(4, 34, 77, .15); }
.custom-product-label { position: absolute; top: -21px; left: 50%; padding: 5px 11px; color: #fff; background: var(--blue); border-radius: 999px; font: 800 .48rem "Manrope", sans-serif; letter-spacing: .09em; transform: translateX(-50%); white-space: nowrap; }
.custom-product-label::after { content: ""; position: absolute; top: 100%; left: 50%; width: 2px; height: 13px; background: var(--blue); transform: translateX(-50%); }
.custom-product-visual strong { font: 800 1rem/1.05 "Manrope", sans-serif; }
.custom-product-visual strong span { display: block; margin-top: 7px; color: #6d7c91; font: 700 .52rem/1.2 "DM Sans", sans-serif; }
.custom-product-photo { display: grid; place-items: center; aspect-ratio: .8; color: #8b99aa; background: #edf1f5; border-radius: 7px; font-size: .55rem; font-weight: 800; }
.custom-product-logo { color: #7b899c; font-size: .58rem; font-weight: 800; text-align: right; }
.custom-product-visual--vertical { display: block; width: 52%; min-height: 0; aspect-ratio: 54 / 85.6; padding: 0; text-align: center; }
.custom-product-visual--vertical .custom-product-photo { position: absolute; top: 21%; left: 24%; width: 52%; height: 38%; border-radius: 8px; }
.custom-product-visual--vertical strong { position: absolute; top: 65%; left: 8%; width: 84%; }
.custom-product-visual--vertical .custom-product-logo { position: absolute; right: 25%; bottom: 6.5%; width: 50%; text-align: center; }
.custom-product-visual--image { position: relative; grid-template-columns: 50% 1fr; gap: 0; padding: 0; overflow: hidden; }
.custom-product-visual--image .custom-product-photo { width: 100%; height: 100%; border-radius: 0; }
.custom-product-visual--image strong { padding: 20px; }
.custom-product-visual--image .custom-product-logo { position: absolute; right: 12px; bottom: 9px; }
.custom-cart-thumb { display: flex; flex-direction: column; justify-content: center; width: 74px; min-width: 74px; aspect-ratio: 1.586; padding: 7px; border: 1px solid #dce4ef; border-radius: 7px; color: #13233d; background: #fff; text-align: left; text-transform: uppercase; }
.custom-cart-thumb b { overflow: hidden; font-size: .45rem; text-overflow: ellipsis; white-space: nowrap; }
.custom-cart-thumb span { margin-top: 3px; color: #7b899c; font-size: .34rem; }
@media (max-width: 760px) {
  .order-success__dialog { padding: 26px 18px; }
  .personalizer { padding: 10px; }
  .personalizer__dialog { max-height: calc(100vh - 20px); padding: 26px 18px; }
  .personalizer__content { grid-template-columns: 1fr; }
  .kit-options { grid-template-columns: 1fr; }
  .personalizer__actions { flex-direction: column; }
}
