/* Ozon-style product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 12px;
}

.ozon-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .2s, transform .15s;
}
.ozon-card:hover {
  box-shadow: 0 6px 24px rgba(23, 31, 48, .12);
  transform: translateY(-2px);
}
.ozon-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--violet) 35%, transparent);
  outline-offset: 2px;
}

/* --- image area --- */
.ozon-card-top {
  position: relative;
}
.ozon-visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(145deg, #f7f8fa, #eef0f3);
}
.ozon-visual.has-photo {
  display: block;
}
.ozon-visual .product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ozon-visual .photo-count {
  position: absolute;
  z-index: 3;
  right: 8px;
  bottom: 8px;
  border-radius: 5px;
  background: rgba(31, 38, 52, .72);
  color: #fff;
  padding: 4px 7px;
  font-size: 9px;
}

/* --- badges on image --- */
.ozon-fav {
  position: absolute;
  z-index: 5;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #999;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  cursor: pointer;
  transition: color .15s, background .15s;
}
.ozon-fav:hover { background: #fff; }
.ozon-fav.active {
  color: var(--red);
  background: #fff0f2;
}
.ozon-discount {
  position: absolute;
  z-index: 5;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #ff4444;
  color: #fff;
  font: 700 11px/1 Inter, sans-serif;
}
.ozon-incart-badge {
  position: absolute;
  z-index: 5;
  bottom: 8px;
  left: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font: 600 9px/1 Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* --- body --- */
.ozon-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 10px 12px 12px;
}
.ozon-name {
  display: -webkit-box;
  min-height: 32px;
  margin: 0 0 6px;
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* --- rating --- */
.ozon-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.ozon-stars {
  color: #f5a623;
  font-size: 11px;
  font-weight: 700;
}
.ozon-reviews {
  color: var(--muted);
  font-size: 10px;
}

/* --- price --- */
.ozon-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
  margin-top: auto;
}
.ozon-price {
  color: var(--ink);
  font: 800 18px/1 Manrope, sans-serif;
  letter-spacing: -.04em;
}
.ozon-old-price {
  color: #9da2ac;
  font-size: 11px;
  text-decoration: line-through;
}

/* --- footer: add-btn / qty control --- */
.ozon-card-footer {
  min-height: 38px;
}

.ozon-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: var(--violet);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
.ozon-add-btn:hover {
  background: var(--violet-dark);
}
.ozon-add-btn.ozon-disabled,
.ozon-add-btn:disabled {
  background: var(--surface-soft);
  color: var(--muted);
  cursor: not-allowed;
}

/* --- inline quantity control --- */
.ozon-qty {
  display: flex;
  align-items: center;
  width: 100%;
  height: 36px;
  border: 2px solid var(--violet);
  border-radius: 8px;
  overflow: hidden;
}
.ozon-qty-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 100%;
  border: 0;
  background: var(--violet);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background .12s;
  flex: none;
}
.ozon-qty-btn:hover {
  background: var(--violet-dark);
}
.ozon-qty-val {
  flex: 1;
  text-align: center;
  font: 700 14px/1 Inter, sans-serif;
  color: var(--violet);
  user-select: none;
}

/* --- responsive --- */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}
@media (max-width: 850px) {
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ozon-name { font-size: 11px; min-height: 28px; }
  .ozon-price { font-size: 15px; }
  .ozon-add-btn, .ozon-qty { height: 32px; }
  .ozon-add-btn { font-size: 11px; }
  .ozon-qty-btn { width: 36px; font-size: 16px; }
  .ozon-qty-val { font-size: 12px; }
}

/* ===== Ozon-style Bottom Navigation (mobile) ===== */
#bottomNavRoot { display: none; }
@media (max-width: 600px) {
  #bottomNavRoot { display: block; }
}
.bottom-nav {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border-top: 1px solid #e8e8ed;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
  padding: 4px 0 env(safe-area-inset-bottom, 6px);
  min-height: 56px;
}
.bn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  border: 0;
  background: transparent;
  color: #8e8e93;
  font-size: 10px;
  padding: 4px 0 2px;
  position: relative;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s;
}
.bn-item.active {
  color: #6c39d8;
  font-weight: 700;
}
.bn-item:active {
  opacity: 0.6;
}
.bn-icon {
  font-size: 22px;
  line-height: 1;
}
.bn-label {
  font-size: 10px;
  line-height: 1.2;
}
.bn-badge {
  position: absolute;
  top: 2px;
  right: calc(50% - 20px);
  min-width: 16px;
  height: 16px;
  border-radius: 16px;
  background: #e5455b;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 4px;
  line-height: 1;
}

@media (max-width: 370px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
}

.favorites-head h1{margin:6px 0 5px;font:800 30px/1.05 Manrope,sans-serif;letter-spacing:-.05em;color:var(--ink)}
.favorites-lead{margin:0;color:var(--muted);font-size:12px;line-height:1.5}
.favorites-empty{max-width:620px;margin:28px auto;padding:48px 24px;border:1px dashed #d8cef2;border-radius:16px;background:linear-gradient(145deg,#fff,#faf8ff)}
.favorites-empty .empty-icon{color:var(--violet);font-size:42px}
.favorites-empty p{max-width:420px;margin:10px auto 20px;color:var(--muted);font-size:12px;line-height:1.55}
