
.eshop-page { min-height: 100vh; }
.eshop-topbar { top: 12px; }
.shop-back-link,
.shop-pill {
  color: var(--gold2) !important;
  border: 1px solid rgba(216,181,104,.28);
  background: rgba(216,181,104,.08);
}
.eshop-main { padding: 76px 0 100px; }
.eshop-heading { padding: 18px 0 34px; }
.eshop-heading h1 { font-size: clamp(46px, 8vw, 84px); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(244,217,150,.17);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(40,14,20,.86), rgba(12,5,7,.95));
  box-shadow: 0 24px 64px rgba(0,0,0,.34);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,217,150,.36);
  box-shadow: 0 32px 76px rgba(0,0,0,.46), 0 0 40px rgba(216,181,104,.08);
}
.product-image-button {
  position: relative;
  width: 100%;
  padding: 0;
  background: #080406;
  cursor: pointer;
  aspect-ratio: 4 / 4.15;
  overflow: hidden;
}
.product-image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.product-card:hover .product-image-button img { transform: scale(1.035); }
.photo-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(8,4,6,.8);
  border: 1px solid rgba(244,217,150,.2);
  color: var(--gold2);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}
.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 15px;
}
.product-type {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--gold2);
  background: rgba(216,181,104,.1);
  border: 1px solid rgba(216,181,104,.2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-card h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.12;
}
.product-card p {
  margin: 11px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 13px;
}
.product-card small {
  display: block;
  margin-top: 12px;
  color: rgba(255,248,233,.55);
  font-weight: 700;
}
.product-card-footer {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.product-card-footer > strong {
  color: var(--gold2);
  font-size: 17px;
  white-space: nowrap;
}
.product-card-footer > strong span { color: rgba(255,248,233,.35); }
.product-order-button { min-width: 96px; padding-inline: 14px; }

.shop-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.shop-modal.open { opacity: 1; visibility: visible; }
.shop-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,2,3,.78);
  backdrop-filter: blur(14px);
  cursor: pointer;
}
.shop-modal-card {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  border: 1px solid rgba(244,217,150,.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 0%, rgba(123,16,39,.28), transparent 28rem),
    linear-gradient(180deg, #1a0b0f, #090406);
  box-shadow: 0 40px 120px rgba(0,0,0,.66);
}
.shop-modal-close {
  position: sticky;
  z-index: 10;
  float: right;
  top: 14px;
  margin: 14px 14px -54px 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--text);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 25px;
  cursor: pointer;
}
.shop-order-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 28px;
  padding: 28px;
}
.shop-product-preview {
  position: sticky;
  top: 22px;
  align-self: start;
}
.shop-main-image {
  aspect-ratio: 1 / 1.05;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(244,217,150,.18);
  background: #080406;
}
.shop-main-image img { width: 100%; height: 100%; object-fit: cover; }
.shop-thumbnails { display: flex; gap: 9px; margin-top: 10px; }
.shop-thumbnail {
  width: 70px;
  height: 70px;
  padding: 0;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid rgba(244,217,150,.16);
  background: #090406;
  cursor: pointer;
  opacity: .62;
}
.shop-thumbnail.active { opacity: 1; border-color: var(--gold); }
.shop-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.shop-product-preview h2 { margin-top: 18px; font-size: 30px; }
.shop-product-preview p { color: var(--muted); line-height: 1.65; }

.shop-product-details {
  margin: 16px 0;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(244,217,150,.14);
  background: rgba(216,181,104,.055);
}
.shop-product-details h3 {
  margin: 0 0 10px;
  color: var(--gold2);
  font-family: var(--serif);
  font-size: 18px;
}
.shop-product-details ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}
.shop-product-details li::marker {
  color: var(--gold);
}
.shop-product-notice {
  margin: 14px 0 !important;
  padding: 13px 14px;
  border-radius: 15px;
  color: rgba(255,248,233,.82) !important;
  background: rgba(123,16,39,.14);
  border: 1px solid rgba(163,29,56,.24);
  font-size: 12px;
  line-height: 1.55 !important;
}

.shop-preview-price { color: var(--gold2); font-size: 24px; font-weight: 900; }
.shop-order-form { display: grid; gap: 14px; }
.shop-order-form h3 { font-family: var(--serif); font-size: 29px; }
.shop-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.shop-order-form label { display: grid; gap: 7px; }
.shop-order-form label > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.shop-order-form input,
.shop-order-form select,
.shop-order-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(244,217,150,.14);
  border-radius: 14px;
  outline: none;
}
.shop-order-form textarea { min-height: 92px; resize: vertical; }
.shop-order-form input:focus,
.shop-order-form select:focus,
.shop-order-form textarea:focus { border-color: rgba(244,217,150,.55); box-shadow: 0 0 0 3px rgba(216,181,104,.09); }
.shop-full { grid-column: 1 / -1; }
.shop-address-fields { display: contents; }
.shop-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(216,181,104,.08);
  border: 1px solid rgba(216,181,104,.18);
}
.shop-total span { color: var(--muted); }
.shop-total strong { color: var(--gold2); font-size: 21px; }
.shop-consent {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.shop-consent input { min-height: 0; width: 18px; height: 18px; margin-top: 1px; accent-color: var(--gold); }
.shop-consent a { color: var(--gold2); text-decoration: underline; }
.shop-form-status { min-height: 20px; color: #ffb4b4; font-size: 13px; }
.shop-success { padding: 36px; }
.shop-success h2 { font-size: clamp(34px, 5vw, 54px); }
.shop-success-lead { color: var(--muted); line-height: 1.65; }
.shop-success-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.shop-success-item { padding: 15px; border-radius: 16px; background: rgba(255,255,255,.045); border: 1px solid rgba(244,217,150,.12); }
.shop-success-item span { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }
.shop-success-item strong { display: block; margin-top: 5px; color: var(--gold2); overflow-wrap: anywhere; }
.shop-payment-note { padding: 16px; border-radius: 16px; color: rgba(255,248,233,.86); background: rgba(123,16,39,.16); border: 1px solid rgba(163,29,56,.28); line-height: 1.55; }
.eshop-footer { margin-top: 30px; }
body.shop-modal-open { overflow: hidden; }

@media (max-width: 1000px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-order-layout { grid-template-columns: 1fr; }
  .shop-product-preview { position: static; }
  .shop-main-image { max-height: 520px; }

  .eshop-topbar {
    align-items: center;
    border-radius: 999px;
  }
  .eshop-nav {
    position: static;
    display: flex;
    width: auto;
    padding: 0;
    flex-direction: row;
    align-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .eshop-nav .shop-back-link {
    display: inline-flex;
    width: auto;
    min-height: 38px;
    padding: 0 12px;
    justify-content: center;
    white-space: nowrap;
  }
}
@media (max-width: 680px) {
  .eshop-main { padding-top: 40px; }
  .eshop-heading { padding: 10px 0 22px; }
  .eshop-heading h1 { font-size: clamp(38px, 13vw, 54px); }

  .eshop-nav a:first-child { display: none; }
  .eshop-nav .shop-back-link {
    display: inline-flex !important;
    font-size: 12px;
    min-height: 36px;
    padding: 0 11px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .product-card {
    border-radius: 17px;
    box-shadow: 0 14px 34px rgba(0,0,0,.3);
  }
  .product-card:hover { transform: none; }
  .product-image-button { aspect-ratio: 1 / 1.02; }
  .photo-count {
    right: 7px;
    bottom: 7px;
    padding: 5px 7px;
    font-size: 9px;
  }
  .product-card-body { padding: 10px; }
  .product-type {
    padding: 4px 7px;
    font-size: 8px;
    letter-spacing: .08em;
  }
  .product-card h2 {
    margin-top: 9px;
    font-size: clamp(15px, 4.3vw, 18px);
    line-height: 1.16;
  }
  .product-card p {
    margin-top: 7px;
    font-size: 11px;
    line-height: 1.42;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-card small {
    margin-top: 7px;
    font-size: 9px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-card-footer {
    padding-top: 10px;
    display: grid;
    gap: 8px;
    align-items: stretch;
  }
  .product-card-footer > strong {
    font-size: 14px;
    line-height: 1.2;
  }
  .product-order-button {
    width: 100%;
    min-width: 0;
    min-height: 36px;
    padding: 0 8px;
    font-size: 11px;
  }

  .shop-modal { padding: 8px; align-items: end; }
  .shop-modal-card { max-height: 95svh; border-radius: 26px 26px 0 0; }
  .shop-order-layout { padding: 18px; gap: 20px; }
  .shop-form-grid { grid-template-columns: 1fr; }
  .shop-full { grid-column: auto; }
  .shop-success { padding: 24px 18px; }
  .shop-success-grid { grid-template-columns: 1fr; }
}
@media (max-width: 390px) {
  .logo span { display: none; }
  .eshop-topbar { padding: 8px 9px; }
  .product-grid { gap: 8px; }
  .product-card-body { padding: 9px; }
}


.shop-shipping-note {
  padding: 12px 14px;
  border: 1px solid rgba(216,181,104,.18);
  border-radius: 14px;
  background: rgba(216,181,104,.055);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.shop-price-summary {
  display: grid;
  gap: 9px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(216,181,104,.06);
  border: 1px solid rgba(216,181,104,.18);
}
.shop-price-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.shop-price-summary > div span { color: var(--muted); }
.shop-price-summary > div strong { color: var(--text); }
.shop-price-summary .shop-total {
  margin-top: 5px;
  padding: 11px 0 0;
  border: 0;
  border-top: 1px solid rgba(216,181,104,.18);
  border-radius: 0;
  background: transparent;
}
.shop-price-summary .shop-total strong {
  color: var(--gold2);
  font-size: 21px;
}


/* Premium product detail */
.shop-modal {
  padding: clamp(10px, 2vw, 24px);
}
.shop-modal-backdrop {
  background:
    radial-gradient(circle at 50% 0%, rgba(123,16,39,.22), transparent 38rem),
    rgba(3,1,2,.86);
  backdrop-filter: blur(18px);
}
.shop-modal-card {
  width: min(1120px, 100%);
  max-height: min(94svh, 960px);
  border-radius: 28px;
  overflow-x: hidden;
  border: 1px solid rgba(224,190,113,.24);
  background:
    radial-gradient(circle at 0% 0%, rgba(117,20,42,.24), transparent 30rem),
    linear-gradient(145deg, #190b0f 0%, #0b0507 48%, #070304 100%);
  box-shadow: 0 34px 100px rgba(0,0,0,.72);
  scrollbar-width: thin;
  scrollbar-color: rgba(216,181,104,.35) transparent;
}
.shop-modal-card::-webkit-scrollbar { width: 7px; }
.shop-modal-card::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(216,181,104,.32);
}
.shop-modal-close {
  position: absolute;
  float: none;
  top: 14px;
  right: 14px;
  margin: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(8,4,5,.78);
  backdrop-filter: blur(12px);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
}
.shop-modal-close:hover {
  border-color: rgba(216,181,104,.55);
  color: var(--gold2);
}
.shop-detail-header {
  min-height: 72px;
  padding: 17px 72px 17px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(216,181,104,.12);
  background: rgba(255,255,255,.018);
}
.shop-detail-header > div {
  display: grid;
  gap: 4px;
}
.shop-detail-header strong {
  color: var(--text);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.25;
}
.shop-detail-eyebrow {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.shop-detail-stock {
  flex: 0 0 auto;
  padding: 7px 11px;
  border: 1px solid rgba(216,181,104,.22);
  border-radius: 999px;
  color: var(--gold2);
  background: rgba(216,181,104,.065);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
}
.shop-order-layout {
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(20px, 3vw, 36px);
}
.shop-product-preview {
  top: 18px;
}
.shop-main-image {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  border-color: rgba(216,181,104,.22);
  background:
    radial-gradient(circle at 50% 30%, rgba(216,181,104,.08), transparent 70%),
    #080405;
  box-shadow: 0 20px 54px rgba(0,0,0,.34);
}
.shop-main-image img {
  object-fit: contain;
  padding: 8px;
}
.shop-thumbnails {
  gap: 8px;
  margin-top: 11px;
  overflow-x: auto;
  padding-bottom: 3px;
}
.shop-thumbnail {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}
.shop-thumbnail img { object-fit: contain; }
.shop-product-copy {
  margin-top: 20px;
}
.shop-product-preview h2 {
  margin: 0;
  color: var(--gold2);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}
.shop-product-preview > .shop-product-copy p {
  margin: 10px 0 0;
  color: rgba(255,247,235,.7);
  font-size: 14px;
  line-height: 1.7;
}
.shop-preview-price {
  display: inline-flex;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(216,181,104,.09);
  border: 1px solid rgba(216,181,104,.2);
  color: var(--gold2);
  font-size: 20px;
}
.shop-product-details {
  margin: 15px 0 0;
  padding: 15px 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(216,181,104,.07), rgba(255,255,255,.025));
}
.shop-product-details h3 { font-size: 16px; }
.shop-product-details ul {
  gap: 7px;
  font-size: 13px;
}
.shop-product-notice {
  font-size: 11px;
}
.shop-order-form {
  align-self: start;
  gap: 14px;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(216,181,104,.17);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(126,22,43,.13), transparent 22rem),
    rgba(255,255,255,.025);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 20px 50px rgba(0,0,0,.17);
}
.shop-form-heading {
  padding-bottom: 4px;
}
.shop-form-heading > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.shop-order-form .shop-form-heading h3 {
  margin: 5px 0 0;
  font-size: clamp(25px, 3vw, 33px);
}
.shop-form-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.shop-form-grid {
  gap: 11px;
}
.shop-order-form label {
  gap: 7px;
}
.shop-order-form label > span {
  font-size: 10px;
  letter-spacing: .08em;
}
.shop-order-form input,
.shop-order-form select,
.shop-order-form textarea {
  min-height: 48px;
  border-radius: 13px;
  background: rgba(5,2,3,.52);
  border-color: rgba(216,181,104,.15);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.shop-order-form textarea {
  min-height: 88px;
  resize: vertical;
}
.shop-order-form input:focus,
.shop-order-form select:focus,
.shop-order-form textarea:focus {
  outline: none;
  border-color: rgba(216,181,104,.58);
  background: rgba(12,6,8,.76);
  box-shadow: 0 0 0 3px rgba(216,181,104,.07);
}
.shop-address-fields {
  border-radius: 17px;
  background: rgba(255,255,255,.018);
  border-color: rgba(216,181,104,.11);
}
.shop-shipping-note {
  font-size: 11px;
  line-height: 1.5;
}
.shop-price-summary {
  padding: 14px 15px;
  border-radius: 17px;
}
.shop-price-summary > div {
  font-size: 12px;
}
.shop-price-summary .shop-total strong {
  font-size: 20px;
}
.shop-consent {
  align-items: flex-start;
  padding: 0 2px;
  font-size: 11px;
  line-height: 1.45;
}
.shop-consent input {
  min-height: auto;
}
.shop-submit-wrap {
  display: grid;
  gap: 7px;
}
.shop-submit-button {
  min-height: 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-inline: 20px;
  font-size: 13px;
}
.shop-submit-button strong {
  color: #fff7df;
  font-size: 16px;
}
.shop-submit-wrap > small {
  color: rgba(255,247,235,.47);
  text-align: center;
  font-size: 9px;
}
.shop-form-status {
  min-height: 0;
  margin: 0;
  font-size: 11px;
}

@media (max-width: 900px) {
  .shop-modal {
    align-items: stretch;
    padding: 8px;
  }
  .shop-modal-card {
    width: 100%;
    max-height: calc(100svh - 16px);
    border-radius: 24px;
  }
  .shop-detail-header {
    min-height: 64px;
    padding: 13px 62px 13px 17px;
  }
  .shop-detail-header strong {
    max-width: 56vw;
    font-size: 15px;
  }
  .shop-detail-stock {
    display: none;
  }
  .shop-modal-close {
    top: 11px;
    right: 11px;
    width: 39px;
    height: 39px;
  }
  .shop-order-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
  }
  .shop-product-preview {
    position: static;
  }
  .shop-main-image {
    width: min(100%, 520px);
    margin-inline: auto;
    aspect-ratio: 1 / .9;
  }
  .shop-product-copy {
    margin-top: 15px;
  }
  .shop-product-preview h2 {
    font-size: clamp(25px, 7vw, 34px);
  }
  .shop-order-form {
    padding: 18px;
  }
}

@media (max-width: 560px) {
  .shop-modal {
    padding: 0;
  }
  .shop-modal-card {
    max-height: 100svh;
    min-height: 100svh;
    border: 0;
    border-radius: 0;
  }
  .shop-detail-header {
    position: sticky;
    top: 0;
    z-index: 8;
    min-height: 58px;
    padding: 11px 56px 11px 14px;
    background: rgba(15,7,9,.94);
    backdrop-filter: blur(16px);
  }
  .shop-detail-header strong {
    max-width: 72vw;
    font-size: 14px;
  }
  .shop-modal-close {
    position: fixed;
    z-index: 20;
    top: 9px;
    right: 9px;
  }
  .shop-order-layout {
    padding: 12px 12px 26px;
    gap: 15px;
  }
  .shop-main-image {
    aspect-ratio: 1 / .9;
    border-radius: 18px;
  }
  .shop-main-image img {
    padding: 4px;
  }
  .shop-thumbnails {
    gap: 6px;
  }
  .shop-thumbnail {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
    border-radius: 11px;
  }
  .shop-product-copy {
    margin-top: 13px;
  }
  .shop-product-preview h2 {
    font-size: 25px;
  }
  .shop-product-preview > .shop-product-copy p {
    font-size: 12px;
    line-height: 1.55;
  }
  .shop-preview-price {
    margin-top: 12px;
    padding: 8px 11px;
    font-size: 17px;
  }
  .shop-product-details {
    padding: 13px;
  }
  .shop-product-details ul {
    font-size: 12px;
  }
  .shop-order-form {
    padding: 15px 13px;
    border-radius: 19px;
  }
  .shop-form-heading p {
    font-size: 11px;
  }
  .shop-order-form .shop-form-heading h3 {
    font-size: 26px;
  }
  .shop-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .shop-full,
  .shop-address-fields {
    grid-column: 1 / -1;
  }
  .shop-address-fields {
    grid-template-columns: 1fr 1fr;
    padding: 10px;
    gap: 8px;
  }
  .shop-order-form input,
  .shop-order-form select,
  .shop-order-form textarea {
    min-height: 45px;
    padding-inline: 11px;
    font-size: 12px;
  }
  .shop-submit-wrap {
    position: sticky;
    bottom: -1px;
    z-index: 7;
    margin: 3px -13px -15px;
    padding: 11px 13px 14px;
    background: linear-gradient(180deg, rgba(14,7,9,.1), rgba(14,7,9,.98) 30%);
  }
  .shop-submit-button {
    min-height: 52px;
  }
}

@media (max-width: 380px) {
  .shop-form-grid {
    grid-template-columns: 1fr;
  }
  .shop-address-fields {
    grid-template-columns: 1fr;
  }
  .shop-detail-header strong {
    max-width: 68vw;
  }
}


.product-card-unavailable .product-image-button {
  cursor: default;
}
.product-card-unavailable .product-image-button::after {
  content: 'NOVINKA';
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #160b0d;
  background: linear-gradient(135deg, #f3d48c, #c99b42);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}
.product-price-label {
  color: var(--gold2);
  font-size: 14px !important;
}
.product-coming-button,
.product-coming-button:disabled {
  cursor: not-allowed;
  opacity: .72;
  color: rgba(255,247,235,.72);
  border-color: rgba(216,181,104,.16);
  background: rgba(255,255,255,.04);
  box-shadow: none;
}
