@font-face {
  font-family: "Oleo Local";
  src: url("../fonts/oleo-script-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --shop-ink: #141827;
  --shop-muted: #667085;
  --shop-border: #e7dccb;
  --shop-bg: #fffdf8;
  --shop-surface: #ffffff;
  --shop-surface-soft: #fbf7ef;
  --shop-orange: #b45309;
  --shop-orange-dark: #8a3f04;
  --shop-green: #0f9f73;
  --shop-purple: #7c2bd6;
  --shop-yellow: #f7c948;
  --shop-shadow: 0 18px 40px rgba(20, 24, 39, 0.1);
  --shop-radius: 8px;
  --shop-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--shop-ink);
  background: var(--shop-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.shop-sticky-open {
  padding-bottom: 92px;
}

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

[hidden] {
  display: none !important;
}

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

.shop-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 40px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(231, 220, 203, 0.8);
  backdrop-filter: blur(14px);
}

.shop-brand,
.shop-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--shop-ink);
  text-decoration: none;
  font-weight: 800;
}

.shop-brand span {
  font-family: "Oleo Local", Georgia, serif;
  font-size: 26px;
  line-height: 1;
}

.shop-brand img {
  width: 34px;
  height: 34px;
}

.shop-cart-link {
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--shop-border);
  border-radius: var(--shop-radius);
  background: var(--shop-surface);
}

.shop-cart-link strong {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--shop-purple);
  font-size: 13px;
}

.shop-page {
  overflow: hidden;
}

.shop-hero,
.shop-section,
.shop-detail,
.shop-checkout,
.shop-proof,
.shop-founder-note {
  width: min(var(--shop-max), calc(100% - 32px));
  margin: 0 auto;
}

.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(36px, 7vw, 76px) 0 34px;
}

.shop-kicker {
  margin: 0 0 12px;
  color: var(--shop-orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-hero h1,
.shop-section__head h2 {
  margin: 0;
  font-family: "Oleo Local", Georgia, serif;
  color: var(--shop-ink);
  line-height: 1.03;
}

.shop-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 88px);
}

.shop-hero__copy > p:not(.shop-kicker) {
  max-width: 720px;
  margin: 18px 0 0;
  color: #394150;
  font-size: clamp(17px, 2.2vw, 21px);
}

.shop-trust,
.shop-hero__actions,
.shop-product-card__styles,
.shop-add-row,
.shop-cart-panel__head,
.shop-totals__line,
.shop-sticky,
.shop-qty {
  display: flex;
  align-items: center;
}

.shop-trust {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.shop-trust span,
.shop-product-card__styles span,
.shop-style-option__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f2f8ea;
  color: #315b22;
  font-size: 13px;
  font-weight: 800;
}

.shop-trust span:nth-child(2) {
  background: #fef3c7;
  color: #8a4b05;
}

.shop-trust span:nth-child(3) {
  background: #e6f6f1;
  color: #065f46;
}

.shop-trust span:nth-child(4) {
  background: #efe7ff;
  color: #5b21b6;
}

.shop-hero__actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--shop-radius);
  color: var(--shop-ink);
  background: var(--shop-surface);
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.shop-btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.shop-btn:disabled {
  opacity: 0.48;
}

.shop-btn--primary {
  color: #ffffff;
  background: var(--shop-purple);
  box-shadow: 0 12px 24px rgba(124, 43, 214, 0.18);
}

.shop-btn--primary:hover:not(:disabled) {
  background: #6b21bd;
}

.shop-btn--ghost {
  border-color: var(--shop-border);
  background: #ffffff;
}

.shop-btn--wide {
  width: 100%;
}

.shop-hero__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.shop-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--shop-border);
  border-radius: var(--shop-radius);
  background: #f6efe5;
  box-shadow: 0 14px 28px rgba(20, 24, 39, 0.08);
}

.shop-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 10px;
  border: 1px solid var(--shop-border);
  border-radius: var(--shop-radius);
  overflow: hidden;
  background: var(--shop-border);
}

.shop-proof div {
  min-height: 112px;
  padding: 20px;
  background: var(--shop-surface);
}

.shop-proof strong,
.shop-proof span {
  display: block;
}

.shop-proof span {
  margin-top: 4px;
  color: var(--shop-muted);
  font-size: 14px;
}

.shop-founder-note {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.shop-founder-note img {
  display: block;
  width: 132px;
  height: 132px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(20, 24, 39, 0.13);
}

.shop-founder-note__bubble {
  position: relative;
  padding: 20px 24px;
  border: 1px solid #decdf2;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(20, 24, 39, 0.08);
}

.shop-founder-note__bubble::before {
  position: absolute;
  top: 44px;
  left: -9px;
  width: 16px;
  height: 16px;
  border-bottom: 1px solid #decdf2;
  border-left: 1px solid #decdf2;
  background: #ffffff;
  content: "";
  transform: rotate(45deg);
}

.shop-founder-note__bubble span {
  display: block;
  margin-bottom: 8px;
  color: var(--shop-orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-founder-note__bubble strong {
  display: block;
  max-width: 720px;
  margin-bottom: 10px;
  color: var(--shop-ink);
  font-family: "Oleo Local", Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.shop-founder-note__bubble p {
  max-width: 760px;
  margin: 0;
  color: var(--shop-muted);
  font-size: 15px;
  line-height: 1.6;
}

.shop-section,
.shop-detail,
.shop-checkout {
  padding: clamp(42px, 7vw, 74px) 0 0;
}

.shop-section__head {
  max-width: 760px;
  margin-bottom: 22px;
}

.shop-section__head h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.shop-section__head p:not(.shop-kicker) {
  margin: 12px 0 0;
  color: var(--shop-muted);
  font-size: 17px;
}

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

.shop-product-card,
.shop-config-card,
.shop-cart-panel,
.shop-paybox,
.shop-how-grid article,
.shop-faq details {
  border: 1px solid var(--shop-border);
  border-radius: var(--shop-radius);
  background: var(--shop-surface);
  box-shadow: 0 10px 22px rgba(20, 24, 39, 0.055);
}

.shop-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.shop-product-card.is-selected {
  border-color: var(--shop-purple);
  box-shadow: 0 18px 38px rgba(124, 43, 214, 0.16);
}

.shop-product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shop-shadow);
}

.shop-product-card__media {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #f4ecdf;
  text-align: left;
  text-decoration: none;
}

.shop-product-card__media img,
.shop-product-card__media > span {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

.shop-product-card__media > span {
  display: grid;
  place-items: center;
  color: var(--shop-orange);
  font-weight: 900;
}

.shop-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.shop-product-card__topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--shop-orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-product-card__topline strong {
  color: var(--shop-ink);
  white-space: nowrap;
}

.shop-product-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.18;
}

.shop-product-card p {
  margin: 0;
  color: var(--shop-muted);
  font-size: 14px;
}

.shop-product-card__styles {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.shop-product-card__styles span {
  min-height: 24px;
  padding: 4px 8px;
  background: #f7f2ea;
  color: #5f4d39;
  font-size: 12px;
}

.shop-product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: 2px;
  border: 1px solid var(--shop-ink);
  border-radius: var(--shop-radius);
  color: var(--shop-ink);
  background: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.shop-product-card__cta:hover {
  color: #ffffff;
  background: var(--shop-ink);
}

.shop-backlink {
  display: inline-flex;
  margin-top: 12px;
  color: var(--shop-purple);
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
}

.shop-config-layout,
.shop-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.shop-config-card,
.shop-cart-panel,
.shop-paybox {
  padding: 18px;
}

.shop-cart-panel,
.shop-paybox {
  position: sticky;
  top: 82px;
}

.shop-config-product {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--shop-border);
}

.shop-config-product__media img,
.shop-config-product__media span {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--shop-radius);
  background: #f4ecdf;
}

.shop-config-product__media span {
  display: grid;
  place-items: center;
  color: var(--shop-orange);
  font-weight: 900;
}

.shop-config-product__copy span {
  color: var(--shop-orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-config-product h3 {
  margin: 4px 0 8px;
  font-size: 26px;
}

.shop-product-description {
  display: grid;
  grid-column: 1 / -1;
  gap: 12px;
  color: var(--shop-muted);
  font-size: 15px;
  line-height: 1.62;
}

.shop-product-description h4,
.shop-product-description h5,
.shop-product-description p {
  margin: 0;
}

.shop-product-description h4 {
  margin-top: 8px;
  color: var(--shop-ink);
  font-size: 18px;
  line-height: 1.25;
}

.shop-product-description h4.shop-product-description__intro {
  margin-top: 0;
}

.shop-product-description h5 {
  color: var(--shop-ink);
  font-size: 15px;
  line-height: 1.25;
}

.shop-product-description p {
  color: var(--shop-muted);
}

.shop-product-description__pair {
  padding-left: 12px;
  border-left: 3px solid #ead7fb;
}

.shop-product-description__pair p {
  margin-top: 3px;
}

.shop-product-description__list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
  color: var(--shop-muted);
}

.shop-product-description__list strong {
  color: var(--shop-ink);
}

.shop-field {
  margin-top: 20px;
  scroll-margin-top: 88px;
}

.shop-field.is-attention,
.shop-perso-field.is-attention {
  outline: 3px solid rgba(124, 43, 214, 0.16);
  outline-offset: 8px;
  border-radius: var(--shop-radius);
}

.shop-field label,
.shop-label {
  display: block;
  margin-bottom: 8px;
  color: var(--shop-ink);
  font-weight: 900;
}

.shop-field select,
.shop-form input,
.shop-form textarea,
.shop-perso-field input,
.shop-perso-field textarea,
#shop-dog-name {
  width: 100%;
  border: 1px solid var(--shop-border);
  border-radius: var(--shop-radius);
  background: #ffffff;
  color: var(--shop-ink);
  min-height: 46px;
  padding: 11px 12px;
  outline: none;
}

.shop-field select:focus,
.shop-form input:focus,
.shop-form textarea:focus,
.shop-perso-field input:focus,
.shop-perso-field textarea:focus,
#shop-dog-name:focus {
  border-color: var(--shop-purple);
  box-shadow: 0 0 0 3px rgba(124, 43, 214, 0.12);
}

.shop-style-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.shop-style-choice {
  display: grid;
  gap: 6px 12px;
  align-content: start;
  padding: 10px;
  border: 1px solid var(--shop-border);
  border-radius: var(--shop-radius);
  background: #ffffff;
}

.shop-style-choice.is-selected {
  border-color: var(--shop-purple);
  box-shadow: 0 0 0 3px rgba(124, 43, 214, 0.12);
}

.shop-style-option {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  min-height: 94px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.shop-style-option:focus-visible {
  outline: 2px solid var(--shop-purple);
  outline-offset: 4px;
}

.shop-style-option__media img,
.shop-style-option__placeholder {
  width: 78px;
  height: 78px;
  border-radius: 6px;
  object-fit: cover;
}

.shop-style-option__placeholder {
  display: block;
}

.shop-style-option__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.shop-style-option__body strong {
  line-height: 1.16;
}

.shop-style-option__body small {
  color: var(--shop-muted);
  font-size: 13px;
  line-height: 1.3;
}

.shop-style-option__badge {
  align-self: flex-start;
  min-height: 21px;
  padding: 3px 7px;
  background: #fff3bf;
  color: #7a4a00;
  font-size: 11px;
}

.shop-style-examples-link {
  justify-self: start;
  margin-left: 90px;
  color: var(--shop-purple);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-style-examples-link.is-open,
.shop-style-examples-link:hover {
  color: #5b1cb0;
}

.shop-style-examples {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--shop-border);
  border-radius: var(--shop-radius);
  background: var(--shop-surface-soft);
}

.shop-style-examples__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.shop-style-examples__head strong,
.shop-style-examples__head span {
  display: block;
}

.shop-style-examples__head span {
  color: var(--shop-muted);
  font-size: 13px;
}

.shop-style-examples__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.shop-style-examples__grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--shop-border);
  border-radius: 6px;
  background: #f4ecdf;
}

.shop-style-examples__grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.shop-upload {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 172px;
  padding: 22px;
  border: 2px dashed #d8c7ad;
  border-radius: var(--shop-radius);
  background: var(--shop-surface-soft);
  text-align: center;
}

.shop-upload input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.shop-upload.is-uploading {
  border-color: var(--shop-purple);
}

.shop-upload__icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--shop-green);
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}

.shop-upload small {
  color: var(--shop-muted);
}

.shop-upload__progress {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(124, 43, 214, 0.12);
}

.shop-upload__progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--shop-purple);
  transition: width 0.16s ease;
}

.shop-uploaded {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--shop-border);
  border-radius: var(--shop-radius);
  background: #ffffff;
}

.shop-uploaded img {
  width: 112px;
  height: 112px;
  border-radius: 6px;
  object-fit: cover;
}

.shop-uploaded strong {
  display: block;
  margin-bottom: 8px;
}

.shop-uploaded label {
  margin-bottom: 6px;
  color: var(--shop-muted);
  font-size: 13px;
  font-weight: 800;
}

.shop-uploaded label span,
.shop-form label span {
  color: var(--shop-muted);
  font-weight: 600;
}

.shop-linkbtn {
  margin-top: 8px;
  padding: 0;
  border: 0;
  color: var(--shop-purple);
  background: transparent;
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
}

.shop-status {
  min-height: 22px;
  margin-top: 8px;
  color: var(--shop-green);
  font-size: 14px;
  font-weight: 800;
}

.shop-status.is-error {
  color: #b42318;
}

.shop-perso-field {
  display: block;
  margin-top: 10px;
  color: var(--shop-ink);
  font-weight: 900;
}

.shop-perso-field small {
  display: block;
  margin-top: 5px;
  color: var(--shop-muted);
  font-weight: 600;
}

.shop-add-row {
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--shop-border);
}

.shop-qty {
  min-height: 44px;
  border: 1px solid var(--shop-border);
  border-radius: var(--shop-radius);
  overflow: hidden;
  background: #ffffff;
}

.shop-qty button {
  width: 42px;
  min-height: 44px;
  border: 0;
  color: var(--shop-ink);
  background: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.shop-qty span {
  display: grid;
  min-width: 42px;
  min-height: 44px;
  place-items: center;
  border-left: 1px solid var(--shop-border);
  border-right: 1px solid var(--shop-border);
  font-weight: 900;
}

.shop-selection-price {
  text-align: right;
}

.shop-selection-price span {
  display: block;
  color: var(--shop-muted);
  font-size: 13px;
  font-weight: 800;
}

.shop-selection-price strong {
  display: block;
  font-size: 24px;
}

.shop-help {
  margin: 10px 0 0;
  color: var(--shop-muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.shop-help.is-error {
  color: #9a3412;
}

.shop-cart-panel__head {
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--shop-border);
}

.shop-cart-panel__head span {
  color: var(--shop-orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-cart-panel__head strong {
  text-align: right;
}

.shop-cart-items {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.shop-cart-empty {
  padding: 18px;
  border: 1px dashed var(--shop-border);
  border-radius: var(--shop-radius);
  color: var(--shop-muted);
  background: var(--shop-surface-soft);
  font-weight: 800;
  text-align: center;
}

.shop-cart-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--shop-border);
  border-radius: var(--shop-radius);
  background: #ffffff;
}

.shop-cart-item img {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  object-fit: cover;
}

.shop-cart-item__body strong,
.shop-cart-item__body span {
  display: block;
}

.shop-cart-item__body strong {
  line-height: 1.22;
}

.shop-cart-item__body span {
  margin-top: 3px;
  color: var(--shop-muted);
  font-size: 13px;
}

.shop-cart-item__foot {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
}

.shop-cart-item__foot button {
  padding: 0;
  border: 0;
  color: #b42318;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
}

.shop-cart-miniqty {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--shop-border);
  border-radius: 6px;
  overflow: hidden;
}

.shop-cart-miniqty button {
  width: 30px;
  min-height: 30px;
  color: var(--shop-ink);
  text-decoration: none;
  background: #ffffff;
}

.shop-cart-miniqty b {
  display: grid;
  min-width: 30px;
  min-height: 30px;
  place-items: center;
  border-left: 1px solid var(--shop-border);
  border-right: 1px solid var(--shop-border);
  font-size: 13px;
}

.shop-totals {
  display: grid;
  gap: 7px;
  margin: 16px 0;
  padding-top: 14px;
  border-top: 1px solid var(--shop-border);
}

.shop-totals__line {
  justify-content: space-between;
  gap: 12px;
  color: var(--shop-muted);
  font-size: 14px;
}

.shop-totals__line strong {
  color: var(--shop-ink);
  font-size: 18px;
}

.shop-totals__delivery {
  color: var(--shop-green);
  font-size: 13px;
  font-weight: 800;
}

.shop-checkout-grid {
  grid-template-columns: minmax(0, 1fr) 390px;
}

.shop-form,
.shop-paybox {
  border: 1px solid var(--shop-border);
  border-radius: var(--shop-radius);
  background: var(--shop-surface);
}

.shop-form {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.shop-form label {
  color: var(--shop-ink);
  font-weight: 900;
}

.shop-form input,
.shop-form textarea {
  margin-top: 7px;
}

.shop-form textarea {
  min-height: 92px;
  resize: vertical;
}

.shop-form__split {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
}

.shop-form .is-error {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

.shop-paybox {
  padding: 18px;
}

.shop-order-line {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--shop-border);
}

.shop-order-line img {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  object-fit: cover;
}

.shop-order-line span {
  display: block;
  margin-top: 3px;
  color: var(--shop-muted);
  font-size: 13px;
}

.shop-order-line__price {
  white-space: nowrap;
}

.shop-guarantee {
  margin: 14px 0;
  padding: 12px;
  border-left: 4px solid var(--shop-green);
  border-radius: var(--shop-radius);
  background: #ecfdf3;
}

.shop-guarantee strong,
.shop-guarantee span {
  display: block;
}

.shop-guarantee span {
  margin-top: 3px;
  color: #067647;
  font-size: 14px;
}

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

.shop-how-grid article {
  padding: 18px;
}

.shop-how-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--shop-orange);
  font-weight: 900;
}

.shop-how-grid h3 {
  margin: 14px 0 6px;
  font-size: 20px;
}

.shop-how-grid p {
  margin: 0;
  color: var(--shop-muted);
  font-size: 14px;
}

.shop-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.shop-gallery-grid figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--shop-border);
  border-radius: var(--shop-radius);
  background: #f4ecdf;
}

.shop-gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-faq {
  padding-bottom: 70px;
}

.shop-faq details {
  margin-top: 10px;
  padding: 16px 18px;
}

.shop-faq summary {
  cursor: pointer;
  font-weight: 900;
}

.shop-faq p {
  margin: 10px 0 0;
  color: var(--shop-muted);
}

.shop-sticky {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  left: 16px;
  z-index: 50;
  justify-content: space-between;
  gap: 12px;
  max-width: 620px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(20, 24, 39, 0.14);
  border-radius: var(--shop-radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(20, 24, 39, 0.2);
  backdrop-filter: blur(14px);
}

.shop-sticky strong,
.shop-sticky span {
  display: block;
}

.shop-sticky span {
  color: var(--shop-muted);
  font-size: 13px;
}

.shop-sticky button {
  min-width: 132px;
  min-height: 44px;
  border: 0;
  border-radius: var(--shop-radius);
  color: #ffffff;
  background: var(--shop-purple);
  font-weight: 900;
}

.shop-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 24px 16px 38px;
  color: var(--shop-muted);
  background: #ffffff;
  border-top: 1px solid var(--shop-border);
  font-size: 14px;
}

.shop-footer a {
  color: var(--shop-muted);
}

.shop-footer a.shop-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid var(--shop-border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--shop-purple);
  font-weight: 800;
}

.shop-footer p {
  flex-basis: 100%;
  margin: 0;
  text-align: center;
}

@media (max-width: 980px) {
  .shop-hero,
  .shop-config-layout,
  .shop-checkout-grid {
    grid-template-columns: 1fr;
  }

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

  .shop-cart-panel,
  .shop-paybox {
    position: static;
  }

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

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

@media (max-width: 720px) {
  .shop-nav {
    padding: 10px 12px;
  }

  .shop-brand span {
    font-size: 24px;
  }

  .shop-brand img {
    width: 32px;
    height: 32px;
  }

  .shop-cart-link span {
    display: none;
  }

  .shop-hero,
  .shop-section,
  .shop-detail,
  .shop-checkout,
  .shop-proof,
  .shop-founder-note {
    width: min(100% - 24px, var(--shop-max));
  }

  .shop-hero {
    gap: 18px;
    padding: 20px 0 24px;
  }

  .shop-kicker {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .shop-hero h1 {
    font-size: clamp(38px, 11.2vw, 50px);
    line-height: 0.99;
  }

  .shop-hero__copy > p:not(.shop-kicker) {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.42;
  }

  .shop-trust {
    gap: 7px;
    margin-top: 16px;
  }

  .shop-trust span {
    min-height: 26px;
    padding: 4px 8px;
    font-size: 12px;
  }

  .shop-hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .shop-hero__actions .shop-btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 10px 8px;
    font-size: clamp(13px, 4vw, 15px);
    line-height: 1.12;
  }

  .shop-hero__media {
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.82fr);
    grid-template-rows: repeat(2, clamp(86px, 24vw, 132px));
    gap: 8px;
  }

  .shop-hero__media img {
    height: 100%;
    aspect-ratio: auto;
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(20, 24, 39, 0.08);
  }

  .shop-hero__media img:first-child {
    grid-row: 1 / span 2;
  }

  .shop-hero__media img:nth-child(n+4) {
    display: none;
  }

  .shop-sticky {
    right: 12px;
    left: 12px;
    gap: 10px;
    padding: 10px;
  }

  .shop-sticky strong,
  .shop-sticky span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .shop-sticky strong {
    font-size: 15px;
  }

  .shop-sticky span {
    font-size: 12px;
  }

  .shop-sticky button {
    min-width: 126px;
  }

  .shop-proof,
  .shop-founder-note,
  .shop-product-grid,
  .shop-style-grid,
  .shop-how-grid,
  .shop-gallery-grid {
    grid-template-columns: 1fr;
  }

  .shop-founder-note {
    justify-items: center;
    gap: 14px;
    margin-top: 16px;
  }

  .shop-founder-note img {
    width: 118px;
    height: 118px;
  }

  .shop-founder-note__bubble {
    padding: 18px;
    text-align: center;
  }

  .shop-founder-note__bubble::before {
    top: -9px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .shop-founder-note__bubble strong {
    font-size: 30px;
  }

  .shop-founder-note__bubble p {
    font-size: 14px;
  }

  .shop-product-card {
    min-height: 0;
  }

  .shop-product-card__media img,
  .shop-product-card__media > span {
    aspect-ratio: 1.35 / 1;
  }

  .shop-config-product,
  .shop-uploaded {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .shop-config-product__media img,
  .shop-config-product__media span,
  .shop-uploaded img {
    width: 96px;
    height: 96px;
  }

  .shop-config-product h3 {
    font-size: 22px;
  }

  .shop-style-option {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .shop-style-examples-link {
    margin-left: 84px;
  }

  .shop-style-option__media img,
  .shop-style-option__placeholder {
    width: 72px;
    height: 72px;
  }

  .shop-style-examples__head {
    display: block;
  }

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

  .shop-add-row {
    align-items: stretch;
    flex-direction: column;
  }

  .shop-selection-price {
    text-align: left;
  }

  .shop-form__split {
    grid-template-columns: 1fr;
  }

  .shop-order-line {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .shop-order-line__price {
    grid-column: 2;
  }
}
