:root {
  --bg: #07100f;
  --forest: #0d1818;
  --forest-2: #132020;
  --panel: rgba(10, 15, 15, .82);
  --panel-solid: #101817;
  --card: rgba(240, 238, 230, .90);
  --card-dark: rgba(15, 22, 21, .86);
  --paper: rgba(230, 229, 220, .92);
  --text: #e9e7de;
  --ink: #161a19;
  --muted: #a8aea9;
  --muted-dark: #67706c;
  --line: rgba(232, 235, 224, .18);
  --line-dark: rgba(20, 28, 27, .26);
  --red: #c40000;
  --red-dark: #8f0000;
  --fog: rgba(192, 207, 213, .10);
  --shadow: 0 18px 55px rgba(0, 0, 0, .38);
  --radius: 22px;
  --radius-sm: 14px;
}


* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(180deg, rgba(5, 10, 10, .24), rgba(5, 10, 10, .72)),
    url('/uploads/forest_mist.png') center / cover fixed,
    var(--bg);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 40% 0%, rgba(174, 196, 216, .18), transparent 35%),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px) 0 0 / 5px 5px;
  mix-blend-mode: screen;
  opacity: .55;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: rgba(4, 8, 8, .22);
  backdrop-filter: saturate(.72) contrast(.96);
}
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.hidden { display: none !important; }

.splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  background:
    linear-gradient(180deg, rgba(6,10,10,.56), rgba(6,10,10,.90)),
    url('/uploads/forest_mist.png') center / cover;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  animation: splashOut .8s ease 1.15s forwards;
}
.splash-logo-img {
  width: min(84vw, 520px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.45));
}
.splash-caption {
  padding: 7px 14px;
  color: #d8d8cf;
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: 10px;
  border-top: 1px solid rgba(196,0,0,.62);
  border-bottom: 1px solid rgba(196,0,0,.62);
  background: rgba(0,0,0,.22);
}
@keyframes splashOut { to { opacity: 0; visibility: hidden; } }

.app {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(9, 14, 14, .86), rgba(8, 12, 12, .92));
  box-shadow: 0 0 0 1px rgba(255,255,255,.05), 0 0 70px rgba(0,0,0,.58);
  padding-bottom: 58px;
  overflow: hidden;
}
.screen { display: none; }
.screen.active { display: block; }

.brand-hero {
  position: relative;
  min-height: 360px;
  padding: 54px 24px 44px;
  background:
    linear-gradient(180deg, rgba(10, 17, 17, .28), rgba(10, 17, 17, .88)),
    url('/uploads/forest_mist.png') center / cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.brand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(200, 215, 230, .18), transparent 32%),
    linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  opacity: .70;
}
.brand-hero::after { display: none; }
.hero-logo-img {
  position: relative;
  z-index: 1;
  width: min(92%, 500px);
  height: auto;
  object-fit: contain;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.58));
}
.hero-subtitle,
.hero-note { display: none; }
.drop-banner {
  height: 220px;
  margin: 0;
  background-position: center;
  background-size: cover;
  filter: grayscale(.72) saturate(.55) contrast(.94) brightness(.66);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section { padding: 30px 18px 0; }
h2 {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text);
}
h2 span {
  color: var(--red);
  font-size: 11px;
  letter-spacing: .16em;
  border-left: 2px solid var(--red);
  padding: 4px 0 4px 8px;
  line-height: 1;
}
h2 small { display: none; }

.categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.folder-card {
  min-height: 132px;
  border: 1px solid rgba(232,235,224,.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(206, 218, 216, .08), rgba(0,0,0,.16)),
    rgba(8, 15, 15, .70);
  color: var(--text);
  text-align: left;
  padding: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 46px rgba(0,0,0,.30);
}
.folder-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px auto;
  width: 44px;
  height: 1px;
  background: rgba(196,0,0,.60);
  transform: rotate(-34deg);
  opacity: .65;
}
.folder-card:active { transform: translateY(1px); }
.folder-icon { display: block; }
.folder-icon::before { display: none; }
.folder-icon span {
  display: block;
  color: var(--text);
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}
.tile-caption,
.folder-card > div:last-child {
  margin-top: 18px;
  color: rgba(232,235,224,.62);
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.folder-card small { color: #e7e5db; font-size: 14px; }
.info-section { padding-bottom: 28px; }
.info-buttons { display: grid; grid-template-columns: 1fr; gap: 8px; }
.info-buttons button {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232,235,224,.16);
  border-left: 3px solid var(--red-dark);
  background: rgba(7, 13, 13, .72);
  color: var(--text);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.info-buttons button:active,
.card-buy-btn:active,
.submit-order:active,
.big-grey-btn:active { transform: translateY(1px); }

.page-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 76px;
  display: grid;
  grid-template-columns: 48px 1fr 96px;
  align-items: center;
  padding: 9px 16px;
  background: rgba(7, 12, 12, .88);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(232,235,224,.14);
}
.icon-btn {
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  font-size: 42px;
  line-height: 1;
  font-weight: 200;
  padding: 0;
}
.page-logo-img {
  justify-self: center;
  width: min(230px, 56vw);
  max-height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.55));
}
.cart-header-btn {
  justify-self: end;
  border: 1px solid rgba(196,0,0,.72);
  background: rgba(196,0,0,.14);
  color: var(--text);
  border-radius: 0;
  padding: 8px 9px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
}
.cart-header-btn span,
.floating-cart span { color: #fff; font-weight: 900; }
.header-spacer { width: 1px; }

.catalog-section { padding-top: 22px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.product-card {
  border-radius: var(--radius);
  border: 1px solid rgba(232,235,224,.14);
  background: rgba(11, 17, 17, .76);
  padding: 0;
  min-height: 314px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-card::before { display: none; }
.product-image {
  border-radius: var(--radius) var(--radius) 0 0;
  height: 204px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(238,238,228,.72), rgba(188,195,187,.74)),
    rgba(230,229,220,.72);
  overflow: hidden;
  border-bottom: 1px solid rgba(232,235,224,.12);
}
.product-image img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 13px;
  filter: saturate(.75) contrast(.96);
}
.placeholder,
.detail-placeholder,
.order-placeholder,
.cart-placeholder {
  border: 1px solid rgba(232,235,224,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(196,0,0,.8);
  font-weight: 900;
  letter-spacing: .05em;
  background: rgba(230,229,220,.82);
}
.placeholder { width: 76px; height: 76px; }
.product-info { padding: 12px; }
.product-title {
  color: var(--text);
  font-size: 19px;
  line-height: 1;
  min-height: 40px;
  letter-spacing: .01em;
  font-weight: 900;
}
.product-subtitle {
  color: var(--muted);
  min-height: 20px;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 3px;
}
.product-price {
  font-size: 18px;
  margin-top: 6px;
  font-weight: 900;
  color: #eee9df;
}
.card-buy-btn {
  border-radius: var(--radius);
  width: 100%;
  border: 1px solid rgba(232,235,224,.28);
  background: rgba(232,235,224,.10);
  color: var(--text);
  padding: 10px 5px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.product-card:hover .card-buy-btn,
.card-buy-btn:hover { background: rgba(196,0,0,.72); border-color: rgba(196,0,0,.88); }

.product-detail-photo-wrap {
  height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(10,16,16,.45), rgba(10,16,16,.88)),
    url('/uploads/forest_mist.png') center / cover;
  padding: 32px 26px;
  border-bottom: 1px solid rgba(232,235,224,.14);
}
.product-detail-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.48)) saturate(.82);
}
.detail-placeholder { width: 150px; height: 150px; font-size: 28px; }
.thumbs { display: flex; justify-content: center; gap: 9px; padding: 14px 20px 0; }
.thumb {
  border-radius: 12px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(232,235,224,.18);
  object-fit: contain;
  padding: 3px;
  background: rgba(232,235,224,.82);
  filter: saturate(.75);
}
.product-detail-info { padding: 22px 30px 44px; }
.product-detail-info h1 {
  margin: 0;
  color: var(--text);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .01em;
}
.detail-price {
  font-size: 30px;
  line-height: 1.1;
  margin-top: 14px;
  color: #f1eee6;
  font-weight: 900;
}
.size-buttons { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0 22px; }
.size-btn {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232,235,224,.26);
  background: rgba(9,15,15,.66);
  color: var(--text);
  min-width: 64px;
  height: 48px;
  font-size: 17px;
  font-weight: 800;
}
.size-btn.active {
  background: rgba(196,0,0,.76);
  color: #fff;
  border-color: rgba(196,0,0,.9);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}
.link-btn {
  display: block;
  border: 0;
  background: transparent;
  color: #d9d6ce;
  font-size: 12px;
  margin: 0 auto 24px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.big-grey-btn,
.submit-order {
  border-radius: var(--radius);
  width: 100%;
  border: 1px solid rgba(232,235,224,.28);
  background: rgba(232,235,224,.12);
  color: var(--text);
  font-size: 22px;
  padding: 17px 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.big-grey-btn.ready,
.submit-order:not(:disabled) { background: rgba(196,0,0,.78); color: #fff; border-color: rgba(196,0,0,.9); }
.big-grey-btn.ready:hover,
.submit-order:hover:not(:disabled) { background: var(--red-dark); border-color: var(--red-dark); }
.cart-link { margin-top: 16px; margin-bottom: 24px; }
.description-block {
  border-radius: var(--radius);
  margin-top: 34px;
  padding: 18px;
  border: 1px solid rgba(232,235,224,.14);
  background: rgba(8, 14, 14, .66);
}
.description-block h2 { font-size: 22px; margin-bottom: 14px; }
.description-block p { color: var(--muted); font-size: 15px; line-height: 1.35; margin: 0; }

.cart-section { padding-bottom: 86px; }
.cart-items { display: flex; flex-direction: column; gap: 12px; }
.cart-item {
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  border: 1px solid rgba(232,235,224,.14);
  padding: 12px;
  background: rgba(8, 14, 14, .72);
}
.cart-item-image,
.checkout-img { display: flex; align-items: center; justify-content: center; background: rgba(229,228,220,.86); }
.cart-item-image { height: 118px; }
.cart-item-image img,
.checkout-img img { width: 100%; height: 100%; object-fit: contain; filter: saturate(.75); }
.cart-placeholder { width: 68px; height: 68px; }
.cart-item-title { color: var(--text); font-size: 21px; line-height: 1; letter-spacing: .01em; font-weight: 900; }
.cart-item-size,
.cart-item-price { color: var(--muted); font-size: 14px; margin-top: 5px; }
.cart-item-price { color: #eee9df; font-weight: 900; }
.cart-controls { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.cart-controls button {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232,235,224,.22);
  background: rgba(232,235,224,.08);
  min-width: 28px;
  height: 28px;
  color: var(--text);
}
.cart-controls .cart-remove {
  border-radius: var(--radius);
  padding: 0 10px;
  color: #f0e8e0;
  border-color: rgba(196,0,0,.55);
  background: rgba(196,0,0,.14);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}
.cart-total-row { text-align: right; margin: 26px 0 16px; font-size: 22px; font-weight: 900; color: var(--text); }
.cart-total-row span { color: #f0ece4; }
.cart-continue { margin-top: 18px; }

.order-header {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  padding: 36px 22px 20px;
  border-bottom: 1px solid rgba(232,235,224,.14);
  background: rgba(7, 12, 12, .88);
}
.order-header h1 {
  grid-column: 2;
  text-align: center;
  margin: 0;
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  letter-spacing: .08em;
  font-weight: 900;
}
.close-order {
  grid-column: 3;
  border: 0;
  background: transparent;
  color: #d7d3c9;
  font-size: 46px;
  line-height: .8;
}
.checkout-preview { padding: 24px 30px 28px; }
.checkout-items { display: flex; flex-direction: column; gap: 12px; }
.checkout-item {
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(232,235,224,.14);
  background: rgba(8, 14, 14, .72);
  padding: 10px;
}
.checkout-img { height: 84px; }
.checkout-title { color: var(--text); font-size: 19px; line-height: 1; letter-spacing: .01em; font-weight: 900; }
.checkout-meta { color: var(--muted); font-size: 13px; margin-top: 5px; }
.checkout-price { font-size: 20px; color: #f0ece4; font-weight: 900; margin-top: 4px; }

.order-form { padding: 0 30px 62px; }
.delivery-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.delivery-option {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232,235,224,.24);
  background: rgba(9,15,15,.66);
  color: var(--text);
  padding: 15px 12px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  min-width: 0;
  text-transform: uppercase;
}
.delivery-option.active { background: rgba(196,0,0,.70); border-color: rgba(196,0,0,.9); color: #fff; }
.delivery-option small { display: block; color: inherit; opacity: .75; font-size: 12px; margin-top: 8px; letter-spacing: .02em; text-transform: none; }
.order-form label {
  display: block;
  margin: 20px 0 7px;
  color: #d9d7ce;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
}
.order-form label > span { color: var(--red); }
.order-form label em { display: none; }
.order-form label b { color: #e33939; font-weight: 900; }
.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid rgba(232,235,224,.24);
  background: rgba(232,235,224,.92);
  color: var(--ink);
  font-size: 18px;
  padding: 15px 14px;
  border-radius: 0;
  outline: none;
}
.order-form input:focus,
.order-form textarea:focus { border-color: rgba(196,0,0,.76); box-shadow: 0 0 0 3px rgba(196,0,0,.12); }
.order-form input::placeholder,
.order-form textarea::placeholder { color: #8c918c; }
.order-form textarea { min-height: 92px; resize: vertical; }
.total-row { text-align: right; font-size: 27px; font-weight: 900; margin: 34px 0 26px; color: var(--text); }
.total-row span { color: #f0ece4; }
.privacy-row {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-size: 14px !important;
  line-height: 1.25 !important;
  letter-spacing: .02em !important;
  text-transform: none !important;
  margin: 0 0 28px !important;
}
.privacy-row input {
  border-radius: var(--radius-sm);
  width: 34px;
  height: 34px;
  min-width: 34px;
  appearance: none;
  border: 1px solid rgba(196,0,0,.82);
  background: rgba(232,235,224,.9);
  position: relative;
  padding: 0;
}
.privacy-row input:checked { background: var(--red); border-color: var(--red); }
.privacy-row input:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 25px;
  line-height: 1;
}
.submit-order:disabled { opacity: .62; }

footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, 100%);
  background: rgba(7, 12, 12, .92);
  color: #d9d7ce;
  padding: 16px 12px;
  text-align: center;
  font-size: 13px;
  letter-spacing: .08em;
  z-index: 20;
  border-top: 1px solid rgba(232,235,224,.12);
  backdrop-filter: blur(12px);
}
.floating-cart {
  border-radius: var(--radius-sm);
  position: fixed;
  right: calc(50% - min(280px, 50vw) + 16px);
  bottom: 62px;
  z-index: 24;
  border: 1px solid rgba(196,0,0,.80);
  background: rgba(196,0,0,.72);
  color: #fff;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  box-shadow: 0 10px 28px rgba(0,0,0,.30);
}
.floating-cart span { color: #fff; }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(3,7,7,.68);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.modal-card {
  border-radius: var(--radius);
  width: min(460px, 100%);
  max-height: 82vh;
  overflow: auto;
  background: rgba(12,18,18,.96);
  border: 1px solid rgba(232,235,224,.20);
  box-shadow: 0 18px 50px rgba(0,0,0,.42);
  padding: 24px;
  position: relative;
}
.modal-card h3 { margin: 0 42px 18px 0; color: var(--text); font-size: 24px; text-transform: uppercase; }
.modal-card p,
.modal-card pre { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.35; white-space: pre-wrap; font-family: inherit; }
.modal-close { position: absolute; right: 12px; top: 10px; border: 0; background: transparent; color: #d8d3ca; font-size: 36px; line-height: 1; }
.empty {
  border-radius: var(--radius);
  border: 1px dashed rgba(232,235,224,.24);
  padding: 24px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  background: rgba(8,14,14,.72);
}

@media (max-width: 430px) {
  .app { width: 100%; }
  .brand-hero { min-height: 390px; }
  .drop-banner { height: 188px; }
  .section { padding-left: 14px; padding-right: 14px; }
  h2 { font-size: 23px; }
  .folder-icon span { font-size: 20px; }
  .page-header { grid-template-columns: 40px 1fr 78px; padding-left: 10px; padding-right: 10px; }
  .cart-header-btn { font-size: 10px; padding: 7px 6px; }
  .product-detail-photo-wrap { height: 380px; }
  .product-detail-info { padding: 20px 22px 40px; }
  .product-detail-info h1 { font-size: 29px; }
  .products-grid { gap: 10px; }
  .product-card { min-height: 294px; }
  .product-image { height: 176px; }
  .product-title { font-size: 17px; }
  .order-form { padding-left: 22px; padding-right: 22px; }
  .checkout-preview { padding-left: 22px; padding-right: 22px; }
  .checkout-item { grid-template-columns: 88px 1fr; }
  .checkout-img { height: 74px; }
  .cart-item { grid-template-columns: 92px 1fr; }
  .cart-item-image { height: 102px; }
  .floating-cart { right: 14px; }
}


/* v1_10 cleanup: quieter archive style */
.splash-caption, .hero-subtitle, .hero-note { display: none !important; }
.brand-hero::after { display: none !important; }
.hero-logo-img { border: 0 !important; background: transparent !important; box-shadow: none !important; padding: 0 !important; }
.folder-card, .product-card, .cart-item, .checkout-item, .description-block, .modal-card, .empty { border-radius: var(--radius) !important; }
.card-buy-btn, .big-grey-btn, .submit-order, .delivery-option, .size-btn, .cart-header-btn, .floating-cart, .info-buttons button, .order-form input, .order-form textarea { border-radius: var(--radius-sm) !important; }
.tile-caption:first-letter { text-transform: lowercase; }


/* v1_11 subtle archive motion: hover for desktop, tap feedback for mobile */
:root {
  --motion-fast: 160ms;
  --motion-mid: 260ms;
  --motion-slow: 520ms;
}

.screen.active {
  animation: pageFadeIn var(--motion-mid) ease both;
}

@keyframes pageFadeIn {
  from { opacity: .72; transform: translateY(8px); filter: blur(1.2px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.folder-card,
.product-card,
.info-buttons button,
.card-buy-btn,
.big-grey-btn,
.submit-order,
.size-btn,
.delivery-option,
.cart-header-btn,
.floating-cart,
.icon-btn,
.link-btn,
.cart-controls button,
.modal-close,
.close-order,
.thumb,
.privacy-row input {
  transition:
    transform var(--motion-mid) cubic-bezier(.2,.8,.2,1),
    border-color var(--motion-mid) ease,
    background var(--motion-mid) ease,
    color var(--motion-mid) ease,
    opacity var(--motion-mid) ease,
    box-shadow var(--motion-mid) ease,
    filter var(--motion-mid) ease;
  will-change: transform;
}

.product-image img,
.product-detail-photo,
.hero-logo-img,
.splash-logo-img,
.page-logo-img {
  transition:
    transform var(--motion-slow) cubic-bezier(.2,.8,.2,1),
    filter var(--motion-slow) ease,
    opacity var(--motion-slow) ease;
}

.folder-card::after {
  transition:
    width var(--motion-mid) ease,
    opacity var(--motion-mid) ease,
    transform var(--motion-mid) ease;
}

@media (hover: hover) and (pointer: fine) {
  .folder-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232,235,224,.30);
    background:
      linear-gradient(180deg, rgba(206, 218, 216, .12), rgba(0,0,0,.12)),
      rgba(10, 18, 18, .82);
    box-shadow: 0 24px 58px rgba(0,0,0,.42);
  }
  .folder-card:hover::after {
    width: 68px;
    opacity: .95;
    transform: rotate(-34deg) translateX(-4px);
  }
  .folder-card:hover .folder-icon span {
    color: #ffffff;
    text-shadow: 0 0 18px rgba(196,0,0,.16);
  }

  .product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(196,0,0,.42);
    box-shadow: 0 25px 62px rgba(0,0,0,.44);
  }
  .product-card:hover .product-image img {
    transform: scale(1.035);
    filter: saturate(.86) contrast(1.02);
  }
  .product-card:hover .product-title { color: #ffffff; }
  .product-card:hover .card-buy-btn,
  .card-buy-btn:hover,
  .big-grey-btn.ready:hover,
  .submit-order:hover:not(:disabled),
  .floating-cart:hover,
  .cart-header-btn:hover {
    transform: translateY(-2px);
    background: rgba(196,0,0,.78);
    border-color: rgba(196,0,0,.95);
    box-shadow: 0 16px 34px rgba(0,0,0,.35), 0 0 0 1px rgba(196,0,0,.18);
  }

  .info-buttons button:hover,
  .size-btn:hover,
  .delivery-option:hover,
  .cart-controls button:hover {
    transform: translateY(-2px);
    border-color: rgba(232,235,224,.38);
    background: rgba(232,235,224,.14);
    box-shadow: 0 12px 28px rgba(0,0,0,.28);
  }
  .size-btn.active:hover,
  .delivery-option.active:hover {
    background: rgba(196,0,0,.82);
    border-color: rgba(196,0,0,1);
  }

  .thumb:hover {
    transform: translateY(-3px) scale(1.04);
    border-color: rgba(196,0,0,.55);
    filter: saturate(.9) contrast(1.02);
  }
  .product-detail-photo:hover {
    transform: scale(1.018);
    filter: drop-shadow(0 24px 42px rgba(0,0,0,.56)) saturate(.86);
  }
  .hero-logo-img:hover {
    transform: scale(1.018);
    filter: drop-shadow(0 22px 38px rgba(0,0,0,.66));
  }
  .icon-btn:hover,
  .close-order:hover,
  .modal-close:hover,
  .link-btn:hover {
    transform: translateY(-1px);
    color: #ffffff;
    opacity: .92;
  }
}

.folder-card:active,
.product-card:active,
.info-buttons button:active,
.card-buy-btn:active,
.big-grey-btn:active,
.submit-order:active,
.size-btn:active,
.delivery-option:active,
.cart-header-btn:active,
.floating-cart:active,
.cart-controls button:active {
  transform: scale(.985) translateY(1px);
}

.big-grey-btn.ready,
.submit-order:not(:disabled),
.delivery-option.active,
.size-btn.active,
.privacy-row input:checked {
  animation: redSettle var(--motion-mid) ease both;
}

@keyframes redSettle {
  from { box-shadow: 0 0 0 0 rgba(196,0,0,.38); }
  to { box-shadow: 0 10px 26px rgba(0,0,0,.22), 0 0 0 4px rgba(196,0,0,0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

/* v1_12 brand navigation: asterisk catalog entry + floating round cart */
.star-categories {
  display: flex !important;
  justify-content: center;
  align-items: center;
  grid-template-columns: none !important;
  min-height: 250px;
  padding: 2px 0 10px;
}
.cart-home-hidden { display: none !important; }

.asterisk-card {
  position: relative;
  width: min(340px, 92vw);
  height: 248px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
  overflow: visible;
  filter: drop-shadow(0 22px 48px rgba(0,0,0,.36));
}
.asterisk-card::before {
  content: "";
  position: absolute;
  inset: 26px 22px;
  z-index: -2;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 50%, rgba(196,0,0,.15), transparent 38%),
    radial-gradient(circle at 50% 54%, rgba(230,235,224,.08), transparent 54%);
  opacity: .74;
  filter: blur(.2px);
}
.asterisk-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -3;
  border-radius: 42%;
  background: rgba(8, 14, 14, .44);
  box-shadow: inset 0 0 80px rgba(190,205,205,.05);
  opacity: .62;
}
.asterisk-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 228px;
  height: 228px;
  transform: translate(-50%, -50%) rotate(-1deg);
  opacity: .88;
  pointer-events: none;
}
.asterisk-mark i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62px;
  height: 210px;
  transform: translate(-50%, -50%) rotate(0deg);
  border: 2px solid rgba(196,0,0,.76);
  border-radius: 6px;
  background: rgba(8, 14, 14, .28);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.025),
    inset 0 0 20px rgba(196,0,0,.035),
    0 0 24px rgba(196,0,0,.10);
}
.asterisk-mark i:nth-child(2) { transform: translate(-50%, -50%) rotate(60deg); }
.asterisk-mark i:nth-child(3) { transform: translate(-50%, -50%) rotate(-60deg); }
.asterisk-title {
  position: relative;
  z-index: 2;
  display: inline-block;
  max-width: 205px;
  color: #f4f0e8;
  font-size: 25px;
  line-height: .92;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-shadow:
    0 3px 18px rgba(0,0,0,.78),
    0 0 12px rgba(196,0,0,.18);
}

@media (hover: hover) and (pointer: fine) {
  .asterisk-card:hover {
    transform: translateY(-5px) scale(1.012);
    filter: drop-shadow(0 30px 58px rgba(0,0,0,.44));
  }
  .asterisk-card:hover .asterisk-mark {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(2deg) scale(1.025);
  }
  .asterisk-card:hover .asterisk-mark i {
    border-color: rgba(196,0,0,.98);
    background: rgba(10, 18, 18, .36);
    box-shadow:
      0 0 0 1px rgba(255,255,255,.035),
      inset 0 0 24px rgba(196,0,0,.06),
      0 0 34px rgba(196,0,0,.20);
  }
  .asterisk-card:hover .asterisk-title {
    color: #ffffff;
    letter-spacing: .055em;
  }
}
.asterisk-card:active {
  transform: scale(.982) translateY(1px);
}
.asterisk-card,
.asterisk-mark,
.asterisk-mark i,
.asterisk-title {
  transition:
    transform var(--motion-mid, 260ms) cubic-bezier(.2,.8,.2,1),
    opacity var(--motion-mid, 260ms) ease,
    border-color var(--motion-mid, 260ms) ease,
    background var(--motion-mid, 260ms) ease,
    box-shadow var(--motion-mid, 260ms) ease,
    color var(--motion-mid, 260ms) ease,
    letter-spacing var(--motion-mid, 260ms) ease,
    filter var(--motion-mid, 260ms) ease;
}

/* keep cart only as a floating round icon when it has items */
.cart-header-btn { display: none !important; }
.cart-link { display: none !important; }
.page-header { grid-template-columns: 48px 1fr 48px !important; }
.floating-cart {
  position: fixed;
  right: max(16px, calc((100vw - 560px) / 2 + 18px));
  bottom: calc(env(safe-area-inset-bottom, 0px) + 72px);
  z-index: 40;
  width: 58px;
  height: 58px;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px !important;
  border: 1px solid rgba(232,235,224,.22);
  background:
    radial-gradient(circle at 35% 25%, rgba(232,235,224,.13), transparent 38%),
    rgba(7, 12, 12, .86);
  color: var(--text);
  box-shadow:
    0 16px 38px rgba(0,0,0,.45),
    0 0 0 1px rgba(196,0,0,.16),
    inset 0 0 26px rgba(196,0,0,.055);
  backdrop-filter: blur(14px);
  font-size: 0;
  letter-spacing: 0;
}
.floating-cart.hidden { display: none !important; }
.floating-cart .cart-icon {
  position: relative;
  width: 24px;
  height: 19px;
  display: block;
  border: 2px solid rgba(232,235,224,.88);
  border-top: 0;
  border-radius: 0 0 5px 5px;
  color: rgba(232,235,224,.88) !important;
}
.floating-cart .cart-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: -9px;
  height: 12px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}
.floating-cart .cart-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 7px;
  height: 1px;
  background: rgba(232,235,224,.40);
}
.floating-cart .cart-badge {
  position: absolute;
  right: -4px;
  top: -5px;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--red);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 8px 20px rgba(0,0,0,.42);
}
@media (hover: hover) and (pointer: fine) {
  .floating-cart:hover {
    transform: translateY(-3px) scale(1.04);
    border-color: rgba(196,0,0,.78);
    background:
      radial-gradient(circle at 35% 25%, rgba(232,235,224,.16), transparent 38%),
      rgba(12, 18, 18, .94);
    box-shadow:
      0 22px 46px rgba(0,0,0,.52),
      0 0 0 1px rgba(196,0,0,.28),
      inset 0 0 30px rgba(196,0,0,.08);
  }
}

@media (max-width: 430px) {
  .star-categories { min-height: 232px; }
  .asterisk-card { width: min(300px, 94vw); height: 228px; }
  .asterisk-mark { width: 204px; height: 204px; }
  .asterisk-mark i { width: 55px; height: 188px; }
  .asterisk-title { font-size: 22px; max-width: 178px; }
  .page-header { grid-template-columns: 42px 1fr 42px !important; }
  .floating-cart {
    right: 16px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 66px);
    width: 54px;
    height: 54px;
  }
}


/* v1_14: real Persona non Grata red mark on catalog button */
.asterisk-card {
  width: min(340px, 92vw) !important;
  height: 255px !important;
  border-radius: 28px !important;
  overflow: visible !important;
}
.asterisk-card::before {
  inset: 24px 10px !important;
  border-radius: 42px !important;
  background:
    radial-gradient(circle at 50% 50%, rgba(196,0,0,.18), transparent 36%),
    radial-gradient(circle at 50% 54%, rgba(232,235,224,.06), transparent 56%) !important;
  filter: blur(10px) !important;
  opacity: .68 !important;
}
.asterisk-card::after {
  inset: 40px 18px !important;
  border-radius: 34px !important;
  background: rgba(6, 11, 11, .20) !important;
  box-shadow: none !important;
  opacity: .45 !important;
}
.asterisk-mark,
.asterisk-mark i {
  display: none !important;
}
.brand-mark-btn-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 245px;
  height: 245px;
  object-fit: contain;
  transform: translate(-50%, -50%) rotate(-1deg);
  opacity: .92;
  pointer-events: none;
  filter:
    drop-shadow(0 0 14px rgba(196,0,0,.16))
    drop-shadow(0 18px 26px rgba(0,0,0,.24));
  transition:
    transform var(--motion-mid, 260ms) cubic-bezier(.2,.8,.2,1),
    opacity var(--motion-mid, 260ms) ease,
    filter var(--motion-mid, 260ms) ease;
}
.asterisk-title {
  z-index: 2 !important;
  max-width: 230px !important;
  font-size: 25px !important;
  text-shadow:
    0 4px 22px rgba(0,0,0,.85),
    0 0 14px rgba(196,0,0,.16) !important;
}
@media (hover: hover) and (pointer: fine) {
  .asterisk-card:hover .brand-mark-btn-img {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(1.5deg) scale(1.045);
    filter:
      drop-shadow(0 0 24px rgba(196,0,0,.32))
      drop-shadow(0 24px 38px rgba(0,0,0,.34));
  }
}
.asterisk-card:active .brand-mark-btn-img {
  transform: translate(-50%, -50%) rotate(0deg) scale(.985);
}
@media (max-width: 430px) {
  .asterisk-card { width: min(310px, 94vw) !important; height: 235px !important; }
  .brand-mark-btn-img { width: 218px; height: 218px; }
  .asterisk-title { font-size: 22px !important; }
}


/* v1_15: fixed real logo cross button, no old CSS-generated asterisk */
.star-categories {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  min-height: 270px !important;
  padding: 8px 0 20px !important;
}

.brand-catalog-mark {
  position: relative;
  width: min(340px, 92vw);
  height: 260px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: visible;
  filter: drop-shadow(0 22px 48px rgba(0,0,0,.42));
  transition:
    transform var(--motion-mid, 260ms) cubic-bezier(.2,.8,.2,1),
    filter var(--motion-mid, 260ms) ease;
}

.brand-catalog-mark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 210px;
  transform: translate(-50%, -50%);
  border-radius: 48px;
  background:
    radial-gradient(circle at 50% 50%, rgba(196,0,0,.18), transparent 38%),
    radial-gradient(circle at 50% 55%, rgba(232,235,224,.06), transparent 62%);
  filter: blur(12px);
  opacity: .72;
  z-index: -2;
}

.brand-catalog-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 295px;
  height: 210px;
  transform: translate(-50%, -50%);
  border-radius: 36px;
  background: rgba(5, 10, 10, .18);
  opacity: .58;
  z-index: -3;
}

.brand-catalog-cross {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 250px;
  height: 250px;
  object-fit: contain;
  transform: translate(-50%, -50%) rotate(-1deg);
  opacity: .96;
  pointer-events: none;
  z-index: 1;
  filter:
    drop-shadow(0 0 16px rgba(196,0,0,.22))
    drop-shadow(0 18px 30px rgba(0,0,0,.28));
  transition:
    transform var(--motion-mid, 260ms) cubic-bezier(.2,.8,.2,1),
    opacity var(--motion-mid, 260ms) ease,
    filter var(--motion-mid, 260ms) ease;
}

.brand-catalog-title {
  position: relative;
  z-index: 2;
  color: #f4f0e8;
  font-size: 25px;
  line-height: .92;
  font-weight: 950;
  letter-spacing: .045em;
  text-transform: uppercase;
  text-align: center;
  text-shadow:
    0 4px 22px rgba(0,0,0,.92),
    0 0 14px rgba(196,0,0,.18);
  transition:
    color var(--motion-mid, 260ms) ease,
    letter-spacing var(--motion-mid, 260ms) ease,
    transform var(--motion-mid, 260ms) ease;
}

@media (hover: hover) and (pointer: fine) {
  .brand-catalog-mark:hover {
    transform: translateY(-5px) scale(1.012);
    filter: drop-shadow(0 30px 58px rgba(0,0,0,.48));
  }
  .brand-catalog-mark:hover .brand-catalog-cross {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(1.5deg) scale(1.045);
    filter:
      drop-shadow(0 0 28px rgba(196,0,0,.36))
      drop-shadow(0 24px 38px rgba(0,0,0,.34));
  }
  .brand-catalog-mark:hover .brand-catalog-title {
    color: #ffffff;
    letter-spacing: .06em;
    transform: scale(1.02);
  }
}

.brand-catalog-mark:active {
  transform: scale(.982) translateY(1px);
}
.brand-catalog-mark:active .brand-catalog-cross {
  transform: translate(-50%, -50%) rotate(0deg) scale(.985);
}

@media (max-width: 430px) {
  .brand-catalog-mark { width: min(310px, 94vw); height: 235px; }
  .brand-catalog-cross { width: 218px; height: 218px; }
  .brand-catalog-title { font-size: 22px; }
  .brand-catalog-mark::before { width: 235px; height: 185px; }
  .brand-catalog-mark::after { width: 260px; height: 185px; }
}


/* v1_17: force clean real logo mark image, no generated/old cross cache */
.brand-catalog-mark {
  width: min(330px, 92vw) !important;
  height: 255px !important;
  background: transparent !important;
  border: 0 !important;
}

.brand-catalog-mark::before {
  width: 270px !important;
  height: 220px !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 50% 50%, rgba(196,0,0,.15), transparent 42%),
    radial-gradient(circle at 50% 60%, rgba(232,235,224,.045), transparent 67%) !important;
}

.brand-catalog-mark::after {
  display: none !important;
}

.brand-catalog-cross {
  content: url("/uploads/brand_mark_clean_v117.png?v=117") !important;
  width: 250px !important;
  height: 250px !important;
  object-fit: contain !important;
  transform: translate(-50%, -50%) rotate(0deg) !important;
  opacity: .98 !important;
  filter:
    drop-shadow(0 0 18px rgba(196,0,0,.24))
    drop-shadow(0 18px 30px rgba(0,0,0,.30)) !important;
}

@media (hover: hover) and (pointer: fine) {
  .brand-catalog-mark:hover .brand-catalog-cross {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.045) !important;
    filter:
      drop-shadow(0 0 30px rgba(196,0,0,.38))
      drop-shadow(0 24px 38px rgba(0,0,0,.34)) !important;
  }
}

@media (max-width: 430px) {
  .brand-catalog-mark { width: min(310px, 94vw) !important; height: 238px !important; }
  .brand-catalog-cross { width: 222px !important; height: 222px !important; }
}


/* v1_18: force mark through embedded image + new stylesheet cache version */
.brand-catalog-cross-v18 {
  content: none !important;
  width: 250px !important;
  height: 250px !important;
  object-fit: contain !important;
  opacity: 1 !important;
  transform: translate(-50%, -50%) rotate(0deg) !important;
  filter:
    drop-shadow(0 0 18px rgba(196,0,0,.24))
    drop-shadow(0 18px 30px rgba(0,0,0,.30)) !important;
}

@media (hover: hover) and (pointer: fine) {
  .brand-catalog-mark:hover .brand-catalog-cross-v18 {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.045) !important;
  }
}

@media (max-width: 430px) {
  .brand-catalog-cross-v18 {
    width: 222px !important;
    height: 222px !important;
  }
}


/* ===== v1_27 unified editorial system ===== */
.home-screen > .section > h2,
.home-screen > .info-section > h2 {
  display: none !important;
}

.home-screen > .section,
.home-screen > .info-section {
  padding-top: 8px !important;
}

.home-screen .categories {
  margin-top: 10px !important;
}

.info-section {
  padding-top: 4px !important;
}

.info-buttons {
  gap: 0 !important;
  border-top: 1px solid rgba(125, 132, 130, .20) !important;
  border-bottom: 1px solid rgba(125, 132, 130, .20) !important;
}

.info-buttons button {
  position: relative !important;
  border: 0 !important;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(125, 132, 130, .16) !important;
  border-left: 0 !important;
  background: transparent !important;
  min-height: 72px !important;
  padding: 0 18px 0 26px !important;
  color: #e0e2de !important;
  font-size: 13px !important;
  line-height: 1 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  font-weight: 800 !important;
  text-align: left !important;
  box-shadow: none !important;
}

.info-buttons button:last-child {
  border-bottom: 0 !important;
}

.info-buttons button::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 18px !important;
  width: 2px !important;
  height: 36px !important;
  background: #c91212 !important;
  opacity: .96 !important;
}

.info-buttons button::after {
  content: "›" !important;
  position: absolute !important;
  right: 2px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: rgba(224, 228, 224, .56) !important;
  font-size: 24px !important;
  font-weight: 300 !important;
  transition: transform .26s ease, color .26s ease !important;
}

@media (hover: hover) and (pointer: fine) {
  .info-buttons button:hover {
    background: transparent !important;
    color: #f0f1ed !important;
    border-color: rgba(201, 18, 18, .18) !important;
  }
  .info-buttons button:hover::after {
    transform: translateY(-50%) translateX(4px) !important;
    color: rgba(240, 241, 237, .88) !important;
  }
}

/* remove roundness globally for the service / checkout language */
.order-form h2 {
  margin-bottom: 18px !important;
}

.order-form h2 span {
  color: #c91212 !important;
}

.delivery-options {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  margin-bottom: 22px !important;
  border-top: 1px solid rgba(125, 132, 130, .20) !important;
  border-bottom: 1px solid rgba(125, 132, 130, .20) !important;
}

.delivery-option {
  position: relative !important;
  min-height: 76px !important;
  border: 0 !important;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(125, 132, 130, .16) !important;
  background: transparent !important;
  padding: 14px 18px 14px 26px !important;
  text-align: left !important;
  color: #dfe2de !important;
  box-shadow: none !important;
}

.delivery-option:last-child {
  border-bottom: 0 !important;
}

.delivery-option::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 18px !important;
  width: 2px !important;
  height: 40px !important;
  background: #5b2020 !important;
  transition: background .26s ease, height .26s ease !important;
}

.delivery-option.active::before {
  background: #c91212 !important;
  height: 44px !important;
}

.delivery-option.active {
  background: transparent !important;
  border-color: rgba(201, 18, 18, .18) !important;
  color: #ffffff !important;
}

.delivery-option small {
  display: block !important;
  margin-top: 8px !important;
  color: rgba(210, 214, 210, .62) !important;
  font-size: 11px !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
}

.order-form label {
  margin: 16px 0 8px !important;
  color: #d6dad5 !important;
  font-size: 11px !important;
  letter-spacing: .24em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
}

.order-form label b {
  color: #c91212 !important;
}

.order-form input,
.order-form textarea {
  border: 0 !important;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(125, 132, 130, .28) !important;
  background: transparent !important;
  min-height: 54px !important;
  padding: 0 0 6px !important;
  color: #eaebe7 !important;
  font-size: 16px !important;
  box-shadow: none !important;
}

.order-form textarea {
  min-height: 90px !important;
  padding-top: 10px !important;
}

.order-form input:focus,
.order-form textarea:focus {
  border-color: rgba(201, 18, 18, .78) !important;
  box-shadow: none !important;
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: rgba(167, 172, 167, .54) !important;
}

.submit-order {
  position: relative !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 20px 54px 20px 22px !important;
  min-height: 72px !important;
  color: #eceee8 !important;
  text-align: left !important;
  font-size: 26px !important;
  line-height: 1 !important;
  letter-spacing: .08em !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  border-top: 1px solid rgba(125, 132, 130, .20) !important;
  border-bottom: 1px solid rgba(125, 132, 130, .20) !important;
  box-shadow: none !important;
}

.submit-order::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 18px !important;
  width: 2px !important;
  height: 36px !important;
  background: #c91212 !important;
}

.submit-order::after {
  content: "›" !important;
  position: absolute !important;
  right: 4px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: rgba(232, 235, 224, .66) !important;
  font-size: 34px !important;
  font-weight: 300 !important;
  transition: transform .26s ease, color .26s ease !important;
}

.submit-order:not(:disabled) {
  background: transparent !important;
  color: #eceee8 !important;
  border-color: rgba(125, 132, 130, .20) !important;
}

@media (hover: hover) and (pointer: fine) {
  .submit-order:hover:not(:disabled) {
    background: transparent !important;
    border-color: rgba(201, 18, 18, .22) !important;
    color: #ffffff !important;
  }
  .submit-order:hover:not(:disabled)::after {
    transform: translateY(-50%) translateX(4px) !important;
    color: #ffffff !important;
  }
}

.order-header h1 {
  letter-spacing: .14em !important;
}

.close-order {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.privacy-row {
  margin: 22px 0 26px !important;
  padding-left: 0 !important;
}

.privacy-row span {
  letter-spacing: .04em !important;
}

/* optional: catalog title cleaner */
.catalog-section h2 span,
.cart-section h2 span {
  color: #c91212 !important;
}

@media (max-width: 430px) {
  .info-buttons button,
  .delivery-option {
    min-height: 68px !important;
    font-size: 12px !important;
    letter-spacing: .12em !important;
  }

  .submit-order {
    font-size: 23px !important;
    min-height: 68px !important;
    padding-right: 42px !important;
  }
}


/* ===== v1_28 tighten design / remove roundness / increase contrast ===== */
.clean-stock-entry-v26 {
  background: linear-gradient(180deg, rgba(5,9,9,.30), rgba(5,9,9,.12)) !important;
  padding-top: 18px !important;
  padding-bottom: 22px !important;
}
.clean-stock-title-v26 {
  margin-left: 18px !important;
  font-size: 35px !important;
}
.clean-stock-sub-v26 {
  margin-left: 18px !important;
  color: rgba(222,226,222,.70) !important;
}
.clean-stock-entry-v26::before { top: 18px !important; height: 46px !important; }

/* Home service rows get stronger separation */
.info-buttons {
  background: rgba(4,8,8,.22) !important;
}
.info-buttons button {
  background: linear-gradient(180deg, rgba(6,10,10,.26), rgba(6,10,10,.14)) !important;
}

/* Catalog / product cards unified to sharp editorial style */
.catalog-section,
.cart-section,
.checkout-preview,
.order-form,
.product-detail-info,
.info-section {
  background: rgba(4,8,8,.18) !important;
}

.products-grid {
  gap: 16px 14px !important;
}

.product-card {
  border-radius: 0 !important;
  border: 0 !important;
  border-top: 1px solid rgba(150,158,154,.24) !important;
  border-bottom: 1px solid rgba(150,158,154,.24) !important;
  background: linear-gradient(180deg, rgba(6,10,10,.54), rgba(6,10,10,.34)) !important;
  box-shadow: none !important;
  overflow: hidden !important;
  position: relative !important;
}
.product-card::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  top: 14px !important;
  width: 2px !important;
  height: 46px !important;
  background: #c91212 !important;
  z-index: 3 !important;
}
.product-image {
  border-radius: 0 !important;
  height: 214px !important;
  background: linear-gradient(180deg, rgba(235,235,231,.92), rgba(203,207,201,.92)) !important;
  border-bottom: 1px solid rgba(150,158,154,.18) !important;
}
.product-image img {
  padding: 16px !important;
  filter: saturate(.80) contrast(.98) !important;
}
.product-info {
  padding: 16px 14px 14px !important;
}
.product-title {
  min-height: 0 !important;
  font-size: 17px !important;
}
.product-subtitle {
  color: rgba(195,201,195,.54) !important;
  min-height: 18px !important;
}
.product-price {
  margin-top: 12px !important;
  font-size: 17px !important;
}
.card-buy-btn {
  position: relative !important;
  border: 0 !important;
  border-radius: 0 !important;
  border-top: 1px solid rgba(150,158,154,.20) !important;
  border-bottom: 1px solid rgba(150,158,154,.20) !important;
  background: transparent !important;
  color: #eceee8 !important;
  padding: 14px 34px 14px 14px !important;
  margin-top: 14px !important;
  text-align: left !important;
  letter-spacing: .18em !important;
}
.card-buy-btn::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 12px !important;
  width: 2px !important;
  height: 22px !important;
  background: #c91212 !important;
}
.card-buy-btn::after {
  content: "›" !important;
  position: absolute !important;
  right: 4px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: rgba(232,235,224,.66) !important;
  font-size: 24px !important;
  font-weight: 300 !important;
}
.card-buy-btn:hover,
.product-card:hover .card-buy-btn {
  background: rgba(255,255,255,.02) !important;
  border-color: rgba(201,18,18,.24) !important;
}

/* Detail / cart / checkout blocks less rounded, more readable */
.thumb,
.size-btn,
.big-grey-btn,
.checkout-item,
.cart-item,
.description-block,
.modal-card,
.empty,
.cart-header-btn,
.link-btn.cart-link {
  border-radius: 0 !important;
}

.size-btn,
.big-grey-btn,
.link-btn.cart-link,
.cart-continue {
  border-radius: 0 !important;
  background: rgba(6,10,10,.34) !important;
}
.size-btn {
  min-width: 68px !important;
  height: 46px !important;
}
.size-btn.active {
  box-shadow: none !important;
}
.big-grey-btn,
.submit-order {
  box-shadow: none !important;
}

.checkout-item,
.cart-item,
.description-block,
.modal-card,
.empty {
  background: linear-gradient(180deg, rgba(6,10,10,.52), rgba(6,10,10,.34)) !important;
  border: 1px solid rgba(150,158,154,.18) !important;
}

.delivery-options,
.info-buttons {
  border-top-color: rgba(150,158,154,.22) !important;
  border-bottom-color: rgba(150,158,154,.22) !important;
}
.delivery-option {
  background: linear-gradient(180deg, rgba(6,10,10,.26), rgba(6,10,10,.12)) !important;
}
.delivery-option.active {
  background: linear-gradient(180deg, rgba(18,10,10,.42), rgba(12,8,8,.22)) !important;
}

.order-form input,
.order-form textarea {
  background: rgba(5,8,8,.26) !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

/* privacy removed */
.privacy-row { display: none !important; }

/* More readable section titles inside subpages */
.catalog-section h2,
.cart-section h2,
.order-form h2 {
  margin-bottom: 18px !important;
}
.catalog-section h2 span,
.cart-section h2 span,
.order-form h2 span {
  color: #c91212 !important;
}


/* ===== v1_29 catalog cleanup + logo drop animation ===== */
.brand-hero {
  background:
    linear-gradient(180deg, rgba(10, 17, 17, .18), rgba(9, 14, 14, .78)),
    url('/uploads/forest_mist.png') center / cover !important;
}
.brand-hero::before {
  background:
    radial-gradient(circle at 50% 20%, rgba(180, 196, 210, .12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 40%) !important;
  opacity: .84 !important;
}
.hero-logo-img {
  animation: heroLogoDrop 1.5s cubic-bezier(.2,.82,.18,1) both, heroLogoFloat 6.4s ease-in-out 1.6s infinite alternate !important;
  transform-origin: center top !important;
}
.splash-logo-img {
  animation: splashLogoDrop 1.2s cubic-bezier(.2,.82,.18,1) both !important;
}
@keyframes heroLogoDrop {
  0% { opacity: 0; transform: translateY(-42px) scale(.985); filter: drop-shadow(0 6px 18px rgba(0,0,0,.32)); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: drop-shadow(0 16px 30px rgba(0,0,0,.58)); }
}
@keyframes heroLogoFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(8px); }
}
@keyframes splashLogoDrop {
  0% { opacity: 0; transform: translateY(-26px) scale(.99); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* remove shop accent in catalog title */
.catalog-section > h2 {
  padding-left: 0 !important;
}
.catalog-section > h2 span {
  display: none !important;
}

/* product list cleaner and more visible */
.products-grid {
  grid-template-columns: 1fr !important;
  gap: 18px !important;
}
.product-card {
  border-radius: 0 !important;
  border: 1px solid rgba(150,158,154,.26) !important;
  background: linear-gradient(180deg, rgba(8,12,12,.82), rgba(6,10,10,.70)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 18px 30px rgba(0,0,0,.20) !important;
}
.product-card::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  top: 16px !important;
  width: 2px !important;
  height: 58px !important;
  background: #c91212 !important;
  z-index: 3 !important;
}
.product-image {
  border-radius: 0 !important;
  height: 268px !important;
  background: linear-gradient(180deg, rgba(232,232,228,.96), rgba(210,213,207,.96)) !important;
  border-bottom: 1px solid rgba(150,158,154,.20) !important;
}
.product-image img {
  padding: 18px !important;
  filter: saturate(.84) contrast(.98) !important;
}
.product-info {
  padding: 18px 18px 16px !important;
}
.product-title {
  font-size: 18px !important;
  line-height: 1.05 !important;
  min-height: 0 !important;
  margin-bottom: 6px !important;
}
.product-subtitle {
  display: none !important;
}
.product-price {
  font-size: 18px !important;
  margin-top: 0 !important;
  color: #f0ede4 !important;
}
.card-buy-btn {
  position: relative !important;
  border-radius: 0 !important;
  border: 1px solid rgba(150,158,154,.22) !important;
  background: rgba(5,9,9,.20) !important;
  text-align: left !important;
  padding: 15px 42px 15px 16px !important;
  margin-top: 18px !important;
  letter-spacing: .18em !important;
  box-shadow: none !important;
}
.card-buy-btn::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 13px !important;
  width: 2px !important;
  height: 24px !important;
  background: #c91212 !important;
}
.card-buy-btn::after {
  content: "›" !important;
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: rgba(232,235,224,.72) !important;
  font-size: 28px !important;
  font-weight: 300 !important;
}
.product-card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(201,18,18,.28) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 24px 38px rgba(0,0,0,.24) !important;
}
.product-card:hover .card-buy-btn,
.card-buy-btn:hover {
  transform: none !important;
  background: rgba(255,255,255,.03) !important;
  border-color: rgba(201,18,18,.30) !important;
  box-shadow: none !important;
}
.product-card:hover .card-buy-btn::after,
.card-buy-btn:hover::after {
  transform: translateY(-50%) translateX(3px) !important;
  color: #ffffff !important;
}

/* make page logos slightly softer so header is not too harsh */
.page-logo-img {
  opacity: .92 !important;
}

@media (max-width: 430px) {
  .hero-logo-img {
    width: min(94%, 470px) !important;
  }
  .product-image {
    height: 244px !important;
  }
  .product-info {
    padding: 16px 16px 14px !important;
  }
  .product-title,
  .product-price {
    font-size: 17px !important;
  }
  .card-buy-btn {
    margin-top: 16px !important;
    padding: 14px 38px 14px 14px !important;
  }
}


/* ===== v1_30 product cards inspired by compact boutique catalog ===== */
.catalog-section {
  padding-top: 18px !important;
}
.catalog-section > h2 {
  margin-bottom: 14px !important;
}
.products-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}
.product-card {
  position: relative !important;
  border-radius: 16px !important;
  border: 1px solid rgba(206, 210, 205, .46) !important;
  background: rgba(240, 241, 237, .03) !important;
  box-shadow: none !important;
  overflow: hidden !important;
  min-height: 342px !important;
}
.product-card::before {
  display: none !important;
}
.product-image {
  height: 208px !important;
  background: linear-gradient(180deg, rgba(236,236,233,.96), rgba(216,218,213,.96)) !important;
  border-bottom: 1px solid rgba(210,213,209,.20) !important;
  border-radius: 16px 16px 0 0 !important;
}
.product-image img {
  padding: 18px !important;
  object-fit: contain !important;
  filter: saturate(.88) contrast(.98) !important;
}
.product-info {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  padding: 14px 14px 16px !important;
}
.product-title {
  margin: 0 0 6px !important;
  min-height: 0 !important;
  color: #f0f2ee !important;
  font-size: 15px !important;
  line-height: 1.08 !important;
  font-weight: 800 !important;
  letter-spacing: .01em !important;
}
.product-subtitle {
  display: block !important;
  margin: 0 0 6px !important;
  min-height: 30px !important;
  color: rgba(198,202,197,.62) !important;
  font-size: 12px !important;
  line-height: 1.1 !important;
  font-weight: 500 !important;
}
.product-price {
  margin: 2px 0 12px !important;
  color: #f1ede3 !important;
  font-size: 17px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}
.card-buy-btn {
  margin-top: auto !important;
  min-height: 44px !important;
  border-radius: 12px !important;
  border: 0 !important;
  background: linear-gradient(180deg, rgba(205,205,205,.90), rgba(172,172,172,.88)) !important;
  color: #111 !important;
  box-shadow: none !important;
  text-align: center !important;
  padding: 12px 14px !important;
  letter-spacing: .14em !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}
.card-buy-btn::before,
.card-buy-btn::after {
  display: none !important;
}
.product-card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(232,235,224,.68) !important;
  box-shadow: 0 18px 34px rgba(0,0,0,.24) !important;
}
.product-card:hover .product-image img {
  transform: scale(1.02) !important;
}
.product-card:hover .card-buy-btn,
.card-buy-btn:hover {
  transform: none !important;
  background: linear-gradient(180deg, rgba(219,219,219,.94), rgba(190,190,190,.92)) !important;
  color: #050505 !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 430px) {
  .products-grid {
    gap: 12px !important;
  }
  .product-card {
    min-height: 322px !important;
    border-radius: 15px !important;
  }
  .product-image {
    height: 194px !important;
    border-radius: 15px 15px 0 0 !important;
  }
  .product-image img {
    padding: 16px !important;
  }
  .product-info {
    padding: 12px 12px 14px !important;
  }
  .product-title {
    font-size: 14px !important;
  }
  .product-subtitle {
    min-height: 28px !important;
    font-size: 11px !important;
  }
  .product-price {
    font-size: 16px !important;
  }
  .card-buy-btn {
    min-height: 42px !important;
    border-radius: 11px !important;
    font-size: 11px !important;
  }
}


/* ===== v1_31 stronger contrast + larger product image + denser modal panels ===== */
.product-card {
  background: linear-gradient(180deg, rgba(7,12,12,.90), rgba(5,9,9,.82)) !important;
  border-color: rgba(223, 227, 222, .30) !important;
  box-shadow: 0 20px 36px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.03) !important;
}
.product-image {
  height: 214px !important;
  background: linear-gradient(180deg, rgba(238,238,235,.98), rgba(221,223,217,.98)) !important;
}
.product-image img {
  padding: 10px !important;
  transform: scale(1.08) !important;
  transform-origin: center center !important;
}
.product-info {
  background: linear-gradient(180deg, rgba(6,10,10,.22), rgba(6,10,10,.04)) !important;
}
.product-title {
  color: #f2f3ef !important;
}
.product-price {
  color: #ffffff !important;
}
.card-buy-btn {
  background: linear-gradient(180deg, rgba(212,212,212,.96), rgba(186,186,186,.94)) !important;
}
.product-card:hover {
  border-color: rgba(245,247,240,.46) !important;
  box-shadow: 0 26px 46px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.03) !important;
}
.product-card:hover .product-image img {
  transform: scale(1.11) !important;
}

.modal {
  background: rgba(3,7,7,.78) !important;
}
.modal-card {
  background: linear-gradient(180deg, rgba(12,18,18,.97), rgba(8,12,12,.95)) !important;
  border: 1px solid rgba(225,229,224,.24) !important;
  box-shadow: 0 24px 58px rgba(0,0,0,.52) !important;
}
.modal-card h3 {
  color: #f1f3ef !important;
}
.modal-card p,
.modal-card pre {
  color: rgba(218,222,217,.86) !important;
}
.modal-close {
  color: #f0f2ef !important;
}

@media (max-width: 430px) {
  .product-image {
    height: 208px !important;
  }
  .product-image img {
    padding: 8px !important;
    transform: scale(1.1) !important;
  }
}


/* ===== v1_33 clean product detail gallery: no decorative frames ===== */
.product-detail-photo-wrap {
  position: relative !important;
  height: 500px !important;
  padding: 30px 24px !important;
  background:
    linear-gradient(180deg, rgba(6,10,10,.92), rgba(5,8,8,.96)),
    url('/uploads/forest_mist.png') center / cover !important;
  border-top: 1px solid rgba(150,158,154,.16) !important;
  border-bottom: 1px solid rgba(150,158,154,.16) !important;
  overflow: hidden !important;
}

.product-detail-photo-wrap::before,
.product-detail-photo-wrap::after {
  display: none !important;
}

.product-detail-photo {
  position: relative !important;
  z-index: 2 !important;
  width: min(100%, 390px) !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 22px 38px rgba(0,0,0,.54)) saturate(.86) contrast(.98) !important;
}

.thumbs {
  padding: 16px 20px 8px !important;
  gap: 10px !important;
  border-top: 1px solid rgba(150,158,154,.14) !important;
  background: rgba(5,9,9,.68) !important;
}

.thumbs::before,
.thumbs::after {
  display: none !important;
}

.thumb {
  width: 54px !important;
  height: 54px !important;
  padding: 4px !important;
  border-radius: 0 !important;
  border: 1px solid rgba(180,186,180,.28) !important;
  background: rgba(228,230,224,.88) !important;
  box-shadow: none !important;
  filter: saturate(.82) contrast(.96) !important;
}

.thumb.active,
.thumb[aria-current="true"] {
  border-color: rgba(201,18,18,.60) !important;
  box-shadow: 0 0 0 1px rgba(201,18,18,.22) !important;
}

@media (hover: hover) and (pointer: fine) {
  .product-detail-photo:hover {
    transform: scale(1.01) !important;
    filter: drop-shadow(0 24px 42px rgba(0,0,0,.58)) saturate(.90) contrast(1) !important;
  }

  .thumb:hover {
    transform: translateY(-2px) scale(1.03) !important;
    border-color: rgba(201,18,18,.55) !important;
  }
}

@media (max-width: 430px) {
  .product-detail-photo-wrap {
    height: 455px !important;
    padding: 24px 18px !important;
  }

  .product-detail-photo {
    width: min(100%, 355px) !important;
  }

  .thumb {
    width: 52px !important;
    height: 52px !important;
  }
}


/* ===== v1_34 checkout returned closer to reference, but with Persona dark/red vibe ===== */
.orderScreen,
#orderScreen {
  background:
    linear-gradient(180deg, rgba(4,8,8,.82), rgba(4,8,8,.94)),
    url('/uploads/forest_mist.png') center / cover !important;
}

.order-header {
  background: rgba(4,8,8,.76) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.order-header h1 {
  font-size: 30px !important;
  letter-spacing: .08em !important;
}

.checkout-preview {
  background: rgba(4,8,8,.44) !important;
}

.ref-checkout-form {
  padding: 22px 30px 72px !important;
  background:
    linear-gradient(180deg, rgba(6,10,10,.72), rgba(5,8,8,.86)),
    radial-gradient(circle at 80% 0%, rgba(201,18,18,.08), transparent 38%) !important;
  border-top: 1px solid rgba(155,164,160,.20) !important;
}

.ref-form-title {
  display: block !important;
  margin: 4px 0 22px !important;
  color: #eef0ea !important;
  font-size: 34px !important;
  line-height: 1 !important;
  letter-spacing: .02em !important;
  text-transform: none !important;
  font-weight: 500 !important;
}

.ref-form-title span {
  color: #eef0ea !important;
}

.ref-form-title small,
.ref-field-label small {
  margin-left: 2px !important;
  color: rgba(210,214,210,.46) !important;
  font-size: 11px !important;
  letter-spacing: .02em !important;
  text-transform: none !important;
  font-weight: 400 !important;
}

.ref-delivery-options {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 10px !important;
  margin: 0 0 28px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.ref-delivery-options .delivery-option {
  flex: 1 1 0 !important;
  min-height: 58px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(210,215,210,.34) !important;
  background: rgba(6,10,10,.58) !important;
  padding: 13px 14px !important;
  text-align: center !important;
  color: #eef0ea !important;
  font-size: 17px !important;
  line-height: 1 !important;
  letter-spacing: .02em !important;
  text-transform: none !important;
  box-shadow: none !important;
}

.ref-delivery-options .delivery-option::before,
.ref-delivery-options .delivery-option::after {
  display: none !important;
}

.ref-delivery-options .delivery-option.active {
  border-color: rgba(201,18,18,.92) !important;
  background: rgba(201,18,18,.16) !important;
  color: #ffffff !important;
}

.ref-delivery-options .delivery-option small {
  display: block !important;
  margin-top: 7px !important;
  color: rgba(220,224,220,.64) !important;
  font-size: 12px !important;
  letter-spacing: .03em !important;
  text-transform: none !important;
}

.ref-field-label {
  display: block !important;
  margin: 24px 0 8px !important;
  color: #eef0ea !important;
  font-size: 28px !important;
  line-height: 1 !important;
  letter-spacing: .01em !important;
  text-transform: none !important;
  font-weight: 400 !important;
}

.ref-field-label span {
  color: #eef0ea !important;
}

.ref-field-label b {
  color: #ff2020 !important;
  font-size: 18px !important;
  vertical-align: top !important;
  margin-left: 4px !important;
}

.ref-checkout-form input,
.ref-checkout-form textarea {
  width: 100% !important;
  min-height: 66px !important;
  border: 1px solid rgba(210,215,210,.42) !important;
  border-radius: 0 !important;
  background: rgba(8,12,12,.72) !important;
  color: #f1f2ed !important;
  font-size: 20px !important;
  line-height: 1.15 !important;
  padding: 0 16px !important;
  box-shadow: none !important;
}

.ref-checkout-form textarea {
  min-height: 90px !important;
  padding-top: 18px !important;
  resize: vertical !important;
}

.ref-checkout-form input::placeholder,
.ref-checkout-form textarea::placeholder {
  color: rgba(210,215,210,.48) !important;
}

.ref-checkout-form input:focus,
.ref-checkout-form textarea:focus {
  border-color: rgba(201,18,18,.78) !important;
  background: rgba(8,12,12,.88) !important;
  box-shadow: 0 0 0 1px rgba(201,18,18,.18) !important;
}

.ref-total-row {
  text-align: left !important;
  margin: 34px 0 28px !important;
  color: #eef0ea !important;
  font-size: 28px !important;
  line-height: 1.1 !important;
  letter-spacing: .01em !important;
  font-weight: 400 !important;
}

.ref-total-row span {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.ref-submit-order {
  min-height: 74px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(210,215,210,.26) !important;
  background: linear-gradient(180deg, rgba(210,210,210,.94), rgba(176,176,176,.92)) !important;
  color: #060606 !important;
  padding: 18px 16px !important;
  text-align: center !important;
  font-size: 30px !important;
  line-height: 1 !important;
  letter-spacing: .06em !important;
  font-weight: 700 !important;
  box-shadow: 0 16px 28px rgba(0,0,0,.18) !important;
}

.ref-submit-order::before,
.ref-submit-order::after {
  display: none !important;
}

.ref-submit-order:not(:disabled) {
  background: linear-gradient(180deg, rgba(220,220,220,.96), rgba(184,184,184,.94)) !important;
  color: #060606 !important;
}

.ref-submit-order:hover:not(:disabled) {
  background: linear-gradient(180deg, rgba(236,236,236,.98), rgba(196,196,196,.96)) !important;
  color: #000 !important;
  border-color: rgba(255,255,255,.30) !important;
  box-shadow: 0 20px 34px rgba(0,0,0,.24) !important;
}

@media (max-width: 430px) {
  .ref-checkout-form {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .ref-form-title {
    font-size: 31px !important;
  }

  .ref-field-label {
    font-size: 25px !important;
  }

  .ref-checkout-form input,
  .ref-checkout-form textarea {
    min-height: 60px !important;
    font-size: 18px !important;
  }

  .ref-submit-order {
    font-size: 25px !important;
  }

  .ref-delivery-options .delivery-option {
    font-size: 16px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}


/* ===== v1_35 light checkout / reference colors ===== */
/* Главный хиро и общий вайб остаются тёмными, но оформление заказа делаем белым как в рефе */
#orderScreen {
  background: #f5f5f2 !important;
  color: #090909 !important;
}

#orderScreen .order-header {
  background: #f5f5f2 !important;
  border-bottom: 1px solid rgba(0,0,0,.12) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

#orderScreen .order-header h1 {
  color: #070707 !important;
  text-shadow: none !important;
}

#orderScreen .close-order {
  color: #111 !important;
}

#orderScreen .checkout-preview {
  background: #f5f5f2 !important;
  border-bottom: 1px solid rgba(0,0,0,.10) !important;
}

#orderScreen .checkout-item {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.14) !important;
  color: #090909 !important;
}

#orderScreen .checkout-title,
#orderScreen .checkout-price {
  color: #090909 !important;
}

#orderScreen .checkout-meta {
  color: rgba(0,0,0,.55) !important;
}

#orderScreen .checkout-img {
  background: #eeeeea !important;
}

#orderScreen .ref-checkout-form {
  background: #f5f5f2 !important;
  border-top: 0 !important;
  color: #090909 !important;
}

#orderScreen .ref-form-title,
#orderScreen .ref-form-title span,
#orderScreen .ref-field-label,
#orderScreen .ref-field-label span {
  color: #070707 !important;
  text-shadow: none !important;
}

#orderScreen .ref-form-title small,
#orderScreen .ref-field-label small {
  color: rgba(0,0,0,.42) !important;
}

#orderScreen .ref-field-label b {
  color: #d00000 !important;
}

#orderScreen .ref-delivery-options .delivery-option {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.24) !important;
  color: #070707 !important;
  box-shadow: none !important;
}

#orderScreen .ref-delivery-options .delivery-option.active {
  background: #ededed !important;
  border-color: #d00000 !important;
  color: #070707 !important;
}

#orderScreen .ref-delivery-options .delivery-option small {
  color: rgba(0,0,0,.50) !important;
}

#orderScreen .ref-checkout-form input,
#orderScreen .ref-checkout-form textarea {
  background: #ffffff !important;
  color: #070707 !important;
  border: 1px solid rgba(0,0,0,.38) !important;
}

#orderScreen .ref-checkout-form input::placeholder,
#orderScreen .ref-checkout-form textarea::placeholder {
  color: rgba(0,0,0,.32) !important;
}

#orderScreen .ref-checkout-form input:focus,
#orderScreen .ref-checkout-form textarea:focus {
  background: #ffffff !important;
  border-color: #d00000 !important;
  box-shadow: 0 0 0 2px rgba(208,0,0,.10) !important;
}

#orderScreen .ref-total-row,
#orderScreen .ref-total-row span {
  color: #070707 !important;
}

#orderScreen .ref-submit-order {
  background: linear-gradient(180deg, #d9d9d9, #bfbfbf) !important;
  color: #050505 !important;
  border: 1px solid rgba(0,0,0,.12) !important;
  box-shadow: 0 12px 22px rgba(0,0,0,.12) !important;
}

#orderScreen .ref-submit-order:not(:disabled) {
  background: linear-gradient(180deg, #d9d9d9, #bfbfbf) !important;
  color: #050505 !important;
}

#orderScreen .ref-submit-order:hover:not(:disabled) {
  background: linear-gradient(180deg, #eeeeee, #cccccc) !important;
  color: #000000 !important;
}

#orderScreen footer,
#orderScreen #footer {
  background: #f5f5f2 !important;
  color: rgba(0,0,0,.62) !important;
  border-top: 1px solid rgba(0,0,0,.10) !important;
}

/* Модалки информации тоже делаем более светлыми и читаемыми */
.modal-card {
  background: #f5f5f2 !important;
  color: #090909 !important;
  border: 1px solid rgba(0,0,0,.16) !important;
}

.modal-card h3,
.modal-card p,
.modal-card pre {
  color: #090909 !important;
}

.modal-close {
  color: #111 !important;
}


/* ===== v1_36 reference-light redesign, keeping Persona hero/logo/delivery fields ===== */
/* White store system like the reference. Hero forest/logo remains dark and atmospheric. */

body {
  background: #101a22 !important;
}

.app {
  background: #ffffff !important;
  color: #080808 !important;
  box-shadow: none !important;
}

.screen {
  background: #ffffff !important;
  color: #080808 !important;
}

/* keep only the hero atmospheric */
.brand-hero {
  background:
    linear-gradient(180deg, rgba(10, 17, 17, .12), rgba(10, 17, 17, .46)),
    url('/uploads/forest_mist.png') center / cover !important;
  border-bottom: 0 !important;
}

.brand-hero::before {
  background:
    radial-gradient(circle at 50% 18%, rgba(195, 210, 225, .12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 45%) !important;
  opacity: .78 !important;
}

.hero-logo-img {
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.52)) !important;
}

/* main/home after hero */
.home-screen > .section,
.home-screen > .info-section,
.section,
.catalog-section,
.cart-section,
.product-detail-info,
.checkout-preview,
.order-form {
  background: #ffffff !important;
  color: #080808 !important;
}

.home-screen > .section > h2,
.home-screen > .info-section > h2 {
  display: block !important;
  color: #080808 !important;
  font-size: 25px !important;
  font-weight: 400 !important;
  letter-spacing: -.02em !important;
  text-transform: none !important;
  margin: 0 0 20px !important;
}

.home-screen > .section > h2::before,
.home-screen > .info-section > h2::before {
  content: "/" !important;
}

.home-screen > .section > h2 span,
.home-screen > .info-section > h2 span {
  display: none !important;
}

.home-screen .categories {
  margin-top: 0 !important;
}

/* "В наличии" home entry becomes simple reference-like white block */
.clean-stock-entry-v26 {
  width: 100% !important;
  min-height: 86px !important;
  margin: 0 0 28px !important;
  padding: 0 0 18px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(0,0,0,.18) !important;
  border-top: 0 !important;
  background: #ffffff !important;
  color: #080808 !important;
  text-align: left !important;
  box-shadow: none !important;
}

.clean-stock-entry-v26::before {
  background: #d00000 !important;
  left: 0 !important;
  top: 8px !important;
  height: 34px !important;
}

.clean-stock-entry-v26::after {
  background: linear-gradient(90deg, #d00000, rgba(208,0,0,0) 46%) !important;
  bottom: 0 !important;
}

.clean-stock-kicker-v26 {
  display: none !important;
}

.clean-stock-title-v26 {
  margin-left: 22px !important;
  color: #080808 !important;
  font-size: 32px !important;
  line-height: 1 !important;
  letter-spacing: .02em !important;
  font-weight: 700 !important;
}

.clean-stock-sub-v26 {
  margin-left: 22px !important;
  color: rgba(0,0,0,.48) !important;
  font-size: 11px !important;
  letter-spacing: .18em !important;
}

.clean-stock-arrow-v26 {
  color: rgba(0,0,0,.55) !important;
}

/* info buttons like reference pills */
.info-section {
  padding-bottom: 30px !important;
}

.info-buttons {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  border: 0 !important;
  background: transparent !important;
}

.info-buttons button {
  width: max-content !important;
  min-height: 0 !important;
  padding: 7px 12px 8px !important;
  border: 1px solid #080808 !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #080808 !important;
  font-size: 16px !important;
  line-height: 1 !important;
  letter-spacing: -.02em !important;
  text-transform: none !important;
  font-weight: 400 !important;
  box-shadow: none !important;
}

.info-buttons button::before,
.info-buttons button::after {
  display: none !important;
}

/* headers / catalog */
.page-header {
  background: #ffffff !important;
  border-bottom: 0 !important;
}

.icon-btn,
.close-order,
.modal-close {
  color: #080808 !important;
}

.page-logo-img {
  filter: none !important;
}

.cart-header-btn {
  border: 1px solid rgba(0,0,0,.22) !important;
  background: #ffffff !important;
  color: #080808 !important;
}

.cart-header-btn span {
  color: #080808 !important;
}

.ref-catalog-title,
.catalog-section h2 {
  display: block !important;
  color: #080808 !important;
  font-size: 28px !important;
  font-weight: 400 !important;
  letter-spacing: -.04em !important;
  text-transform: none !important;
  margin: 0 0 18px !important;
}

.ref-catalog-title span {
  color: #080808 !important;
}

.ref-catalog-title small {
  margin-left: 2px !important;
  color: rgba(0,0,0,.38) !important;
  font-size: 10px !important;
  letter-spacing: -.02em !important;
  text-transform: none !important;
  font-weight: 400 !important;
}

/* Product grid: reference style */
.products-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px 10px !important;
}

.product-card {
  min-height: 290px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(0,0,0,.28) !important;
  background: #ffffff !important;
  color: #080808 !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.product-card::before {
  display: none !important;
}

.product-image {
  height: 172px !important;
  border-radius: 10px 10px 0 0 !important;
  background: #ffffff !important;
  border-bottom: 0 !important;
}

.product-image img {
  padding: 14px !important;
  object-fit: contain !important;
  filter: none !important;
  transform: none !important;
}

.product-info {
  padding: 12px 12px 14px !important;
  background: #ffffff !important;
}

.product-title {
  color: #080808 !important;
  font-size: 15px !important;
  line-height: 1.05 !important;
  font-weight: 400 !important;
  min-height: 0 !important;
  margin: 0 !important;
}

.product-subtitle {
  display: block !important;
  color: rgba(0,0,0,.42) !important;
  font-size: 12px !important;
  line-height: 1.08 !important;
  min-height: 24px !important;
  margin: 2px 0 2px !important;
  text-transform: none !important;
  letter-spacing: -.02em !important;
}

.product-price {
  color: #080808 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  margin: 0 0 6px !important;
}

.card-buy-btn {
  min-height: 30px !important;
  border-radius: 6px !important;
  border: 0 !important;
  background: #c9c9c9 !important;
  color: #080808 !important;
  text-align: center !important;
  padding: 7px 10px !important;
  font-size: 15px !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  box-shadow: none !important;
}

.card-buy-btn::before,
.card-buy-btn::after {
  display: none !important;
}

.product-card:hover,
.product-card:hover .card-buy-btn,
.card-buy-btn:hover {
  transform: none !important;
  border-color: rgba(0,0,0,.38) !important;
  background: #d2d2d2 !important;
  box-shadow: none !important;
}

/* product detail reference light */
.product-detail-photo-wrap {
  background: #ffffff !important;
  border: 0 !important;
  height: 520px !important;
  padding: 42px 24px 28px !important;
}

.product-detail-photo {
  width: min(100%, 430px) !important;
  height: 100% !important;
  object-fit: contain !important;
  filter: none !important;
  background: transparent !important;
}

.thumbs {
  background: #ffffff !important;
  border: 0 !important;
  padding: 10px 20px 0 !important;
}

.thumb {
  border-radius: 4px !important;
  border: 1px solid rgba(0,0,0,.16) !important;
  background: #ffffff !important;
  filter: none !important;
}

.product-detail-info {
  color: #080808 !important;
  padding: 24px 30px 52px !important;
}

.product-detail-info h1 {
  color: #080808 !important;
  font-size: 33px !important;
  font-weight: 400 !important;
  letter-spacing: -.04em !important;
}

.detail-price {
  color: #080808 !important;
  font-size: 33px !important;
  font-weight: 400 !important;
}

.size-btn {
  border-radius: 6px !important;
  border: 1px solid rgba(0,0,0,.24) !important;
  background: #ffffff !important;
  color: #080808 !important;
}

.size-btn.active {
  background: #e7e7e7 !important;
  color: #080808 !important;
  border-color: rgba(0,0,0,.34) !important;
}

.link-btn {
  color: #080808 !important;
}

.big-grey-btn {
  border-radius: 6px !important;
  border: 0 !important;
  background: #cfcfcf !important;
  color: #080808 !important;
  font-size: 34px !important;
  font-weight: 400 !important;
  letter-spacing: -.04em !important;
}

.description-block {
  background: #ffffff !important;
  color: #080808 !important;
  border: 0 !important;
}

.description-block h2,
.description-block p {
  color: #080808 !important;
}

/* checkout/order already white, push even closer to reference */
#orderScreen,
#cartScreen {
  background: #ffffff !important;
  color: #080808 !important;
}

#orderScreen .order-header,
#orderScreen .checkout-preview,
#orderScreen .ref-checkout-form {
  background: #ffffff !important;
}

.ref-form-title,
.ref-field-label {
  font-size: 32px !important;
  font-weight: 400 !important;
  letter-spacing: -.05em !important;
}

.ref-delivery-options .delivery-option {
  border-radius: 999px !important;
  background: #ffffff !important;
  border-color: rgba(0,0,0,.28) !important;
}

.ref-delivery-options .delivery-option.active {
  background: #dedede !important;
  border-color: rgba(0,0,0,.28) !important;
}

.ref-checkout-form input,
.ref-checkout-form textarea {
  background: #ffffff !important;
  border: 1px solid #111111 !important;
  color: #080808 !important;
}

.ref-submit-order {
  border-radius: 6px !important;
  background: #c8c8c8 !important;
  color: #080808 !important;
  font-weight: 400 !important;
  letter-spacing: -.02em !important;
}

/* cart light */
.cart-item,
.checkout-item,
.empty,
.modal-card {
  background: #ffffff !important;
  color: #080808 !important;
  border: 1px solid rgba(0,0,0,.18) !important;
}

.cart-total-row,
.checkout-title,
.checkout-price,
.modal-card h3,
.modal-card p,
.modal-card pre {
  color: #080808 !important;
}

.checkout-meta {
  color: rgba(0,0,0,.52) !important;
}

/* floating cart can stay dark Telegram-like */
.floating-cart {
  background: rgba(10, 16, 18, .92) !important;
  border-color: rgba(0,0,0,.22) !important;
}

footer,
#footer {
  background: #14202a !important;
  color: rgba(255,255,255,.72) !important;
  border-top: 0 !important;
}

@media (max-width: 430px) {
  .product-detail-photo-wrap {
    height: 450px !important;
    padding: 36px 18px 20px !important;
  }

  .products-grid {
    gap: 18px 10px !important;
  }

  .product-card {
    min-height: 282px !important;
  }

  .product-image {
    height: 164px !important;
  }

  .product-title {
    font-size: 14px !important;
  }

  .card-buy-btn {
    font-size: 14px !important;
  }

  .big-grey-btn {
    font-size: 30px !important;
  }

  .ref-field-label {
    font-size: 29px !important;
  }
}


/* v1_37 marker: white reference design, red UI scheme removed. Final overrides are in index.html too. */


/* v1_38 marker: slashes removed from UI labels, Магазин renamed to каталог, soft text shadows added. Final overrides are in index.html too. */

/* v1_39 marker: red accents restored for pills/buttons while keeping overall white reference layout. */


/* ===== v1_40 compact home: no main-page scroll + slash cleanup ===== */
#homeScreen {
  min-height: calc(100vh - 58px) !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

#homeScreen .brand-hero {
  min-height: 255px !important;
  height: 255px !important;
  padding: 28px 22px 24px !important;
}

#homeScreen .hero-logo-img {
  width: min(88%, 430px) !important;
  max-height: 150px !important;
  object-fit: contain !important;
}

#homeScreen .section {
  padding: 18px 16px 0 !important;
}

#homeScreen .info-section {
  padding-top: 16px !important;
  padding-bottom: 10px !important;
}

#homeScreen .ref-home-heading,
#homeScreen > .section > h2,
#homeScreen > .info-section > h2 {
  margin: 0 0 12px !important;
  font-size: 25px !important;
  line-height: 1 !important;
}

#homeScreen .ref-home-heading::before,
#homeScreen > .section > h2::before,
#homeScreen > .info-section > h2::before {
  content: "" !important;
  display: none !important;
}

/* Force heading text to look clean even if old HTML had slash */
#homeScreen .ref-home-heading {
  text-indent: 0 !important;
}

#homeScreen .clean-stock-entry-v26 {
  min-height: 58px !important;
  margin: 0 0 8px !important;
  padding: 0 0 12px !important;
  border-bottom-color: rgba(0,0,0,.14) !important;
}

#homeScreen .clean-stock-entry-v26::before {
  top: 5px !important;
  height: 30px !important;
}

#homeScreen .clean-stock-title-v26 {
  margin-left: 18px !important;
  font-size: 28px !important;
  line-height: 1 !important;
}

#homeScreen .clean-stock-sub-v26 {
  margin-top: 8px !important;
  margin-left: 18px !important;
  font-size: 10px !important;
}

#homeScreen .clean-stock-arrow-v26 {
  right: 4px !important;
  font-size: 28px !important;
}

#homeScreen .info-buttons {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  padding-bottom: 0 !important;
}

#homeScreen .info-buttons button {
  width: 100% !important;
  min-height: 38px !important;
  padding: 8px 9px !important;
  font-size: 13px !important;
  line-height: 1 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

/* Hide lower two service buttons on the home page only to avoid scroll.
   They can still be edited in admin and can be restored later if needed. */
#homeScreen .info-buttons button[data-info="returns"],
#homeScreen .info-buttons button[data-info="support"] {
  display: none !important;
}

#homeScreen + footer,
#homeScreen ~ footer,
#footer {
  min-height: 44px !important;
  height: 44px !important;
  padding: 13px 14px !important;
  font-size: 12px !important;
}

/* On compact Telegram webview screens, make hero even lower */
@media (max-height: 760px) {
  #homeScreen .brand-hero {
    min-height: 220px !important;
    height: 220px !important;
    padding-top: 20px !important;
    padding-bottom: 18px !important;
  }

  #homeScreen .hero-logo-img {
    max-height: 126px !important;
  }

  #homeScreen .section {
    padding-top: 14px !important;
  }

  #homeScreen .info-section {
    padding-top: 12px !important;
  }

  #homeScreen .ref-home-heading,
  #homeScreen > .section > h2,
  #homeScreen > .info-section > h2 {
    font-size: 23px !important;
    margin-bottom: 10px !important;
  }

  #homeScreen .clean-stock-title-v26 {
    font-size: 26px !important;
  }

  #homeScreen .clean-stock-entry-v26 {
    min-height: 54px !important;
  }

  #homeScreen .info-buttons button {
    min-height: 34px !important;
    font-size: 12px !important;
    padding: 7px 8px !important;
  }
}

@media (max-height: 690px) {
  #homeScreen .brand-hero {
    min-height: 190px !important;
    height: 190px !important;
  }

  #homeScreen .hero-logo-img {
    max-height: 108px !important;
  }

  #homeScreen .section {
    padding-top: 11px !important;
  }

  #homeScreen .clean-stock-sub-v26 {
    display: none !important;
  }

  #homeScreen .clean-stock-entry-v26 {
    min-height: 42px !important;
    padding-bottom: 9px !important;
  }

  #homeScreen .clean-stock-title-v26 {
    font-size: 24px !important;
  }
}

/* keep other pages scrollable */
#catalogScreen,
#productScreen,
#cartScreen,
#orderScreen {
  overflow: visible !important;
}


/* ===== v1_41 restore all info buttons on home, still compact ===== */
#homeScreen .info-buttons button[data-info="returns"],
#homeScreen .info-buttons button[data-info="support"] {
  display: block !important;
}

#homeScreen .info-buttons {
  grid-template-columns: 1fr 1fr !important;
  gap: 7px !important;
}

#homeScreen .info-buttons button {
  min-height: 32px !important;
  padding: 7px 8px !important;
  font-size: 11.5px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

#homeScreen .info-section {
  padding-top: 10px !important;
  padding-bottom: 8px !important;
}

#homeScreen .ref-home-heading,
#homeScreen > .section > h2,
#homeScreen > .info-section > h2 {
  margin-bottom: 8px !important;
}

@media (max-height: 760px) {
  #homeScreen .info-buttons {
    gap: 6px !important;
  }

  #homeScreen .info-buttons button {
    min-height: 30px !important;
    padding: 6px 7px !important;
    font-size: 10.8px !important;
  }

  #homeScreen .info-section {
    padding-top: 8px !important;
  }
}

@media (max-height: 690px) {
  #homeScreen .info-buttons button {
    min-height: 28px !important;
    padding: 6px 6px !important;
    font-size: 10px !important;
  }

  #homeScreen .info-section {
    padding-top: 7px !important;
  }
}


/* ===== v1_42 clean buttons / remove crooked red lines ===== */

/* Info buttons: clean 2x2 grid, no pale broken state, no overlap vibe */
#homeScreen .info-buttons {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  padding-right: 0 !important;
}

#homeScreen .info-buttons button,
.info-buttons button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
  width: 100% !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(0,0,0,.28) !important;
  background: #ffffff !important;
  color: #111111 !important;
  font-size: 13px !important;
  line-height: 1 !important;
  letter-spacing: -.02em !important;
  text-transform: none !important;
  font-weight: 400 !important;
  opacity: 1 !important;
  box-shadow: none !important;
  white-space: nowrap !important;
}

#homeScreen .info-buttons button::before,
#homeScreen .info-buttons button::after,
.info-buttons button::before,
.info-buttons button::after {
  display: none !important;
}

#homeScreen .info-buttons button:hover,
.info-buttons button:hover {
  background: #f3f3f3 !important;
  border-color: rgba(0,0,0,.38) !important;
  transform: none !important;
}

/* Floating cart should not cover service buttons on the home screen */
.floating-cart {
  right: 18px !important;
  bottom: 76px !important;
  width: 54px !important;
  height: 54px !important;
}

/* Product/card buttons: remove red slash/line through text */
.card-buy-btn,
.product-card .card-buy-btn {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  border: 1px solid rgba(0,0,0,.12) !important;
  background: linear-gradient(180deg, #d8d8d8, #c5c5c5) !important;
  color: #111 !important;
  text-align: center !important;
  min-height: 34px !important;
  padding: 9px 10px !important;
  font-size: 14px !important;
  letter-spacing: .08em !important;
  font-weight: 400 !important;
  box-shadow: none !important;
}

.card-buy-btn::before,
.card-buy-btn::after,
.product-card .card-buy-btn::before,
.product-card .card-buy-btn::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.card-buy-btn:hover,
.product-card:hover .card-buy-btn {
  background: linear-gradient(180deg, #e4e4e4, #d0d0d0) !important;
  border-color: rgba(0,0,0,.18) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Delivery pills: keep red only as selected outline, not broken pale lines */
.ref-delivery-options .delivery-option {
  border: 1px solid rgba(0,0,0,.24) !important;
  background: #ffffff !important;
  color: #111 !important;
  box-shadow: none !important;
}

.ref-delivery-options .delivery-option.active {
  border-color: #d01818 !important;
  background: #f4f4f4 !important;
  box-shadow: none !important;
}

/* Submit/add buttons: no decorative red line through button */
.big-grey-btn::before,
.big-grey-btn::after,
.ref-submit-order::before,
.ref-submit-order::after,
.submit-order::before,
.submit-order::after {
  content: none !important;
  display: none !important;
}

.big-grey-btn,
.ref-submit-order,
.submit-order {
  border: 1px solid rgba(0,0,0,.12) !important;
  background: linear-gradient(180deg, #d8d8d8, #c4c4c4) !important;
  color: #111 !important;
  box-shadow: 0 8px 16px rgba(0,0,0,.08) !important;
}

/* Slightly more air under home info, still compact */
#homeScreen .info-section {
  padding-bottom: 16px !important;
}

@media (max-height: 760px) {
  #homeScreen .info-buttons {
    gap: 8px !important;
  }

  #homeScreen .info-buttons button {
    min-height: 36px !important;
    font-size: 12px !important;
  }

  .floating-cart {
    bottom: 70px !important;
  }
}

@media (max-height: 690px) {
  #homeScreen .info-buttons button {
    min-height: 34px !important;
    font-size: 11px !important;
  }

  .floating-cart {
    bottom: 66px !important;
    width: 50px !important;
    height: 50px !important;
  }
}


/* ===== v1_43 home proportions closer to reference, keep floating cart ===== */

/* Main page proportions like the reference: banner + compact sections */
#homeScreen {
  min-height: auto !important;
  overflow: visible !important;
  background: #ffffff !important;
}

#homeScreen .brand-hero {
  min-height: 255px !important;
  height: 255px !important;
  padding: 0 !important;
  background:
    linear-gradient(180deg, rgba(10,17,17,.08), rgba(10,17,17,.30)),
    url('/uploads/forest_mist.png') center / cover !important;
  border-bottom: 0 !important;
}

#homeScreen .hero-logo-img {
  width: min(88%, 430px) !important;
  max-height: 145px !important;
  object-fit: contain !important;
}

#homeScreen .section {
  padding: 24px 14px 0 !important;
}

#homeScreen .info-section {
  padding-top: 24px !important;
  padding-bottom: 14px !important;
}

#homeScreen .ref-home-heading,
#homeScreen > .section > h2,
#homeScreen > .info-section > h2 {
  display: block !important;
  margin: 0 0 16px !important;
  color: #080808 !important;
  font-size: 27px !important;
  line-height: 1 !important;
  font-weight: 400 !important;
  letter-spacing: -.04em !important;
  text-transform: lowercase !important;
  text-shadow: none !important;
}

#homeScreen .ref-home-heading::before,
#homeScreen > .section > h2::before,
#homeScreen > .info-section > h2::before {
  display: none !important;
  content: "" !important;
}

/* Home "в наличии" block: same idea, but not huge */
#homeScreen .clean-stock-entry-v26 {
  width: 100% !important;
  min-height: 78px !important;
  margin: 0 !important;
  padding: 0 0 16px !important;
  border-top: 0 !important;
  border-bottom: 1px solid rgba(0,0,0,.16) !important;
  background: #ffffff !important;
  color: #080808 !important;
  box-shadow: none !important;
  filter: none !important;
}

#homeScreen .clean-stock-entry-v26::before {
  left: 0 !important;
  top: 6px !important;
  width: 1px !important;
  height: 40px !important;
  background: #c91212 !important;
}

#homeScreen .clean-stock-entry-v26::after {
  left: 0 !important;
  right: auto !important;
  width: 64px !important;
  bottom: 0 !important;
  height: 1px !important;
  background: #c91212 !important;
  opacity: .6 !important;
  transform: none !important;
}

#homeScreen .clean-stock-title-v26 {
  margin-left: 20px !important;
  color: #080808 !important;
  font-size: 31px !important;
  line-height: .95 !important;
  letter-spacing: -.03em !important;
  text-transform: lowercase !important;
  font-weight: 500 !important;
}

#homeScreen .clean-stock-sub-v26 {
  margin-left: 20px !important;
  margin-top: 10px !important;
  color: rgba(0,0,0,.40) !important;
  font-size: 11px !important;
  letter-spacing: .12em !important;
}

#homeScreen .clean-stock-sub-v26::before {
  background: rgba(0,0,0,.34) !important;
}

#homeScreen .clean-stock-arrow-v26 {
  right: 4px !important;
  color: rgba(0,0,0,.52) !important;
  font-size: 28px !important;
}

/* Info buttons back to reference-like vertical pills, all items visible */
#homeScreen .info-buttons,
.info-buttons {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 8px !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}

#homeScreen .info-buttons button[data-info="returns"],
#homeScreen .info-buttons button[data-info="support"] {
  display: flex !important;
}

#homeScreen .info-buttons button,
.info-buttons button {
  width: auto !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 6px 12px 7px !important;
  border: 1px solid #080808 !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #080808 !important;
  font-size: 15px !important;
  line-height: 1 !important;
  letter-spacing: -.02em !important;
  text-transform: none !important;
  font-weight: 400 !important;
  text-align: left !important;
  box-shadow: none !important;
  white-space: nowrap !important;
}

#homeScreen .info-buttons button::before,
#homeScreen .info-buttons button::after,
.info-buttons button::before,
.info-buttons button::after {
  display: none !important;
}

#homeScreen .info-buttons button:hover,
.info-buttons button:hover {
  transform: none !important;
  background: #f4f4f4 !important;
  border-color: #080808 !important;
  box-shadow: none !important;
}

/* Keep floating cart, but make it sit like reference and not cover pills */
.floating-cart {
  display: flex !important;
  right: 18px !important;
  bottom: 70px !important;
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  background: rgba(18, 28, 36, .94) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.28) !important;
}

.floating-cart .cart-badge {
  background: #c91212 !important;
  color: #ffffff !important;
}

/* Footer similar to reference size */
#footer,
footer {
  min-height: 44px !important;
  height: 44px !important;
  padding: 13px 14px !important;
  background: #14202a !important;
  color: rgba(255,255,255,.72) !important;
}

/* Phone-sized Telegram view */
@media (max-width: 430px) {
  #homeScreen .brand-hero {
    min-height: 245px !important;
    height: 245px !important;
  }

  #homeScreen .hero-logo-img {
    width: min(90%, 410px) !important;
    max-height: 136px !important;
  }

  #homeScreen .section {
    padding-top: 22px !important;
  }

  #homeScreen .info-section {
    padding-top: 22px !important;
  }

  #homeScreen .ref-home-heading,
  #homeScreen > .section > h2,
  #homeScreen > .info-section > h2 {
    font-size: 26px !important;
    margin-bottom: 14px !important;
  }

  #homeScreen .clean-stock-entry-v26 {
    min-height: 74px !important;
  }

  #homeScreen .clean-stock-title-v26 {
    font-size: 30px !important;
  }

  #homeScreen .info-buttons button {
    font-size: 14px !important;
    padding: 6px 11px 7px !important;
  }

  .floating-cart {
    width: 56px !important;
    height: 56px !important;
    right: 16px !important;
    bottom: 68px !important;
  }
}

/* Very low webview: reduce only hero a bit, keep buttons vertical */
@media (max-height: 720px) {
  #homeScreen .brand-hero {
    min-height: 220px !important;
    height: 220px !important;
  }

  #homeScreen .hero-logo-img {
    max-height: 120px !important;
  }

  #homeScreen .section {
    padding-top: 18px !important;
  }

  #homeScreen .info-section {
    padding-top: 18px !important;
  }

  #homeScreen .clean-stock-entry-v26 {
    min-height: 66px !important;
  }

  #homeScreen .clean-stock-sub-v26 {
    margin-top: 8px !important;
  }
}

/* v1_45 marker: reverted product/cart to light scheme; only buttons and selected accents are red. */


/* ===== v1_46 micro fixes: buttons + footer ===== */

/* 1) "Вернуться в магазин" should not look like a broken tiny label */
.cart-continue,
.link-btn.cart-link,
#backToCatalogFromCart,
#continueShoppingBtn,
button[id*="continue"],
button[class*="continue"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 38px !important;
  width: auto !important;
  max-width: 100% !important;
  padding: 10px 18px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(0,0,0,.16) !important;
  background: linear-gradient(180deg, #e0e0e0, #c9c9c9) !important;
  color: #080808 !important;
  font-size: 13px !important;
  line-height: 1 !important;
  letter-spacing: .11em !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

/* 2) "Смотреть" button: cleaner proportions, no cropped vibe */
.card-buy-btn,
.product-card .card-buy-btn {
  min-height: 36px !important;
  height: 36px !important;
  padding: 0 12px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(0,0,0,.14) !important;
  background: linear-gradient(180deg, #dfdfdf, #c9c9c9) !important;
  color: #080808 !important;
  font-size: 13px !important;
  line-height: 1 !important;
  letter-spacing: .10em !important;
  font-weight: 500 !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
  text-shadow: none !important;
  overflow: hidden !important;
}

.card-buy-btn::before,
.card-buy-btn::after,
.product-card .card-buy-btn::before,
.product-card .card-buy-btn::after {
  display: none !important;
  content: none !important;
}

/* Keep red only for main action buttons, not small product/card buttons */
.product-card .card-buy-btn:hover,
.card-buy-btn:hover {
  background: linear-gradient(180deg, #e8e8e8, #d2d2d2) !important;
  color: #080808 !important;
  transform: none !important;
  box-shadow: none !important;
}

/* 3) Footer: more balanced height and centered text */
footer,
#footer {
  height: 50px !important;
  min-height: 50px !important;
  padding: 0 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #14202a !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 13px !important;
  letter-spacing: .08em !important;
  line-height: 1 !important;
}

/* 4) Avoid floating cart visually pressing into footer */
.floating-cart {
  bottom: 74px !important;
}

/* 5) Cart totals/actions spacing */
.cart-actions,
.cart-section .actions,
.cart-section .big-grey-btn {
  margin-top: 18px !important;
}

@media (max-width: 430px) {
  .cart-continue,
  .link-btn.cart-link,
  #backToCatalogFromCart,
  #continueShoppingBtn,
  button[id*="continue"],
  button[class*="continue"] {
    min-height: 36px !important;
    padding: 9px 16px !important;
    font-size: 12px !important;
    letter-spacing: .10em !important;
  }

  .card-buy-btn,
  .product-card .card-buy-btn {
    min-height: 34px !important;
    height: 34px !important;
    font-size: 12px !important;
    letter-spacing: .09em !important;
  }

  footer,
  #footer {
    height: 48px !important;
    min-height: 48px !important;
    font-size: 12px !important;
  }

  .floating-cart {
    bottom: 70px !important;
  }
}


/* ===== v1_47 remove footer ===== */
footer,
#footer {
  display: none !important;
}

.app {
  padding-bottom: 0 !important;
}

/* Without footer, floating cart can sit lower and cleaner */
.floating-cart {
  bottom: 22px !important;
}

@media (max-width: 430px) {
  .floating-cart {
    bottom: 20px !important;
  }
}

/* Add a little safe bottom spacing only on scrollable screens */
#catalogScreen,
#productScreen,
#cartScreen,
#orderScreen {
  padding-bottom: 24px !important;
}

/* v1_48 marker: app.js cache-busted and product rendering hardened. */
.products-grid:empty::after {
  content: "";
}

/* v1_49 marker: fixed app.js crash when footer/dropBanner elements are absent. */


/* v1_50: ref-style secondary buttons */
.card-buy-btn,
.link-btn.cart-link,
.cart-continue,
#backToCatalogFromCart,
#continueShoppingBtn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 42px !important;
  padding: 10px 16px !important;
  border-radius: 10px !important;
  border: 1px solid #bcbcbc !important;
  background: linear-gradient(180deg, #dddddd 0%, #cfcfcf 100%) !important;
  color: #111111 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 1px 0 rgba(0,0,0,.03) !important;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

.link-btn.cart-link {
  margin: 14px 0 20px !important;
}

.card-buy-btn:hover,
.link-btn.cart-link:hover,
.cart-continue:hover,
#backToCatalogFromCart:hover,
#continueShoppingBtn:hover {
  background: linear-gradient(180deg, #e4e4e4 0%, #d4d4d4 100%) !important;
  border-color: #b4b4b4 !important;
}

.card-buy-btn:active,
.link-btn.cart-link:active,
.cart-continue:active,
#backToCatalogFromCart:active,
#continueShoppingBtn:active {
  transform: translateY(1px) !important;
  background: linear-gradient(180deg, #d0d0d0 0%, #c4c4c4 100%) !important;
}

/* v1_51 marker: reference-like gray buttons are enforced in the final inline style in index.html. */

/* v1_55 marker: beige cart/checkout strips removed; multiple product photos supported in app.js/database/main.py. */

/* v1_56 marker: checkout labels made larger/no letter spacing; submit button flattened. Final overrides are in index.html. */

/* v1_57 marker: checkout preview/header moved closer to reference. Core overrides are injected in index.html. */

/* v1_58 marker: admin product cards now show delete button for hidden products only. */

/* Payment block on success screen */
.success-payment-box {
  width: 100%;
  max-width: 320px;
  margin: 0 0 16px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  background: #fff;
  text-align: left;
}
.success-pay-title {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(0,0,0,.42);
  margin-bottom: 12px;
  text-align: center;
}
.success-pay-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(0,0,0,.06);
  font-size: 14px;
}
.success-pay-row span {
  color: rgba(0,0,0,.46);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 11px;
}
.success-pay-row b {
  text-align: right;
  font-size: 15px;
  font-weight: 600;
  word-break: break-word;
}
.success-pay-comment {
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  background: #f7f7f7;
  color: rgba(0,0,0,.64);
  font-size: 13px;
  line-height: 1.35;
}
.success-pay-hint {
  margin-top: 12px;
  color: rgba(0,0,0,.52);
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}
.success-primary-btn {
  width: 100%;
  max-width: 320px;
  min-height: 56px;
  border: 0;
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  cursor: pointer;
}

.last-order-card {
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 8px;
  background: #fff;
  color: #111;
}

.last-order-kicker {
  margin-bottom: 6px;
  color: rgba(0,0,0,.42);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.last-order-number {
  font-size: 24px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0;
  word-break: break-word;
}

.last-order-total {
  min-height: 18px;
  margin-top: 6px;
  color: rgba(0,0,0,.58);
  font-size: 14px;
}

.last-order-status {
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f3f3f3;
  color: rgba(0,0,0,.68);
  font-size: 13px;
  line-height: 1.25;
}

.last-order-card.paid .last-order-status {
  background: #eaf6ec;
  color: #146326;
}

.last-order-card.checking .last-order-status {
  background: #f4f0df;
  color: #6a520b;
}

.last-order-card.rejected .last-order-status {
  background: #f8e9e9;
  color: #8a1d1d;
}

.last-order-card.missing .last-order-status {
  background: #f1f1f1;
  color: rgba(0,0,0,.62);
}

.last-order-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.last-order-actions button {
  min-height: 42px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.last-order-actions button:first-child {
  background: #111;
  color: #fff;
  border-color: #111;
}

.last-order-actions button:disabled {
  cursor: default;
  opacity: .72;
}

.last-order-card.paid .last-order-actions button:first-child {
  background: #1f7a36;
  border-color: #1f7a36;
}

.last-order-card.checking .last-order-actions button:first-child {
  background: #6a520b;
  border-color: #6a520b;
}

.last-order-card.missing .last-order-actions button:first-child {
  background: #555;
  border-color: #555;
}

#homeScreen .star-categories {
  min-height: 0 !important;
  padding: 0 0 4px !important;
  align-items: stretch !important;
}

#homeScreen .order-summary-section {
  padding-top: 16px !important;
}

#homeScreen .order-summary-section .ref-home-heading {
  margin-bottom: 12px !important;
}

#homeScreen .order-summary-section .info-buttons {
  margin-bottom: 0 !important;
}

#homeScreen .last-order-card {
  margin: 0 0 14px !important;
}

#homeScreen #lastOrderCard:not(.hidden) + .info-buttons {
  display: flex !important;
}

/* soldout-archive-v1-fallback */



  .soldout-home-entry {
    opacity: .92 !important;
  }
  .product-card.soldout {
    opacity: .88 !important;
  }
  .product-card.soldout .product-image {
    position: relative !important;
    filter: grayscale(.18) !important;
  }
  .product-stock-badge,
  .detail-stock-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    border-radius: 999px !important;
    background: #111 !important;
    color: #fff !important;
    border: 1px solid rgba(0,0,0,.22) !important;
    text-transform: uppercase !important;
    letter-spacing: .08em !important;
    font-size: 11px !important;
    line-height: 1 !important;
    padding: 7px 10px !important;
    font-weight: 400 !important;
  }
  .product-stock-badge {
    position: absolute !important;
    left: 10px !important;
    top: 10px !important;
    z-index: 3 !important;
  }
  .detail-stock-badge {
    margin: 12px 0 4px !important;
  }

  .detail-stock-badge.hidden,
  .stock-note.hidden {
    display: none !important;
  }
  .stock-note {
    margin: -8px 0 18px !important;
    padding: 12px 14px !important;
    border-radius: 8px !important;
    background: #f1f1f1 !important;
    color: rgba(0,0,0,.72) !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
  }
  .size-btn.disabled,
  .size-btn:disabled {
    opacity: .45 !important;
    cursor: default !important;
  }
  #openOrderFromDetail.soldout,
  .big-grey-btn#openOrderFromDetail.soldout {
    background: #111 !important;
    color: #fff !important;
    opacity: .96 !important;
    cursor: default !important;
  }



/* ===== v1_48 product card visual polish: tighter title/price, equal buttons, no hover strip ===== */
.product-card,
.product-card:hover {
  background: #ffffff !important;
  box-shadow: none !important;
}

.product-card {
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

.product-image {
  flex: 0 0 auto !important;
}

.product-info {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  background: #ffffff !important;
  padding: 10px 12px 12px !important;
}

.product-title {
  margin: 0 0 5px 0 !important;
  line-height: 1.08 !important;
  min-height: 32px !important;
}

.product-title + .product-price {
  margin-top: 0 !important;
}

.product-price {
  margin: 0 0 12px 0 !important;
  line-height: 1.05 !important;
}

.product-card .card-buy-btn,
.product-card.soldout .card-buy-btn {
  margin-top: auto !important;
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 12px !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, #d9d9d9, #c7c7c7) !important;
  color: #080808 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  letter-spacing: .14em !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.product-card:hover .card-buy-btn,
.product-card.soldout:hover .card-buy-btn,
.card-buy-btn:hover {
  background: linear-gradient(180deg, #e3e3e3, #d0d0d0) !important;
  color: #080808 !important;
  transform: none !important;
  box-shadow: none !important;
}

.product-stock-badge {
  min-height: 28px !important;
  height: 28px !important;
  padding: 0 13px !important;
  border-radius: 999px !important;
  font-size: 10px !important;
  line-height: 1 !important;
  letter-spacing: .09em !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}


/* ===== v169 final product title/price gap override ===== */
#catalogScreen #products .product-title {
  margin: 0 0 8px 0 !important;
  line-height: 1.14 !important;
  min-height: 0 !important;
}
#catalogScreen #products .product-price {
  margin: 0 0 14px 0 !important;
  line-height: 1.12 !important;
}
#catalogScreen #products .product-subtitle {
  margin: 0 0 6px 0 !important;
  min-height: 0 !important;
}
