/* Trendyol tarzı mağaza arayüzü */
body.store-page {
  background: var(--ty-bg);
  font-family: "Source Sans Pro", Inter, -apple-system, sans-serif;
}

.store-chrome {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* —— Header —— */
.store-header__inner {
  max-width: var(--ty-max);
  margin: 0 auto;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 24px;
}

.store-header__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.store-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
  height: 40px;
  border-radius: 6px;
  background: #f3f3f3;
  border: none;
}

.store-search:focus-within {
  background: #fff;
  box-shadow: 0 0 0 2px var(--ty-orange);
}

.store-search__icon {
  flex-shrink: 0;
}

.store-search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--ty-ink);
}

.store-search input::placeholder {
  color: #999;
}

.store-header__actions {
  display: flex;
  gap: 2px;
}

.store-header__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #484848;
  position: relative;
  border-radius: 4px;
  transition: color 0.12s;
}

.store-header__action:hover {
  color: var(--ty-orange);
}

.store-header__action svg {
  stroke: #484848;
}

.store-header__action:hover svg {
  stroke: var(--ty-orange);
}

.store-header__badge,
.med-cart-btn [data-cart-count] {
  position: absolute;
  top: 0;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--ty-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

/* —— Category nav —— */
.store-catnav {
  background: #fff;
  border-top: 1px solid var(--ty-line);
  overflow-x: auto;
}

.store-catnav__inner {
  max-width: var(--ty-max);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 38px;
  white-space: nowrap;
}

.store-catnav a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #484848;
  transition: color 0.12s;
}

.store-catnav a:hover,
.store-catnav a.is-active {
  color: var(--ty-orange);
}

.store-catnav__sep {
  width: 1px;
  height: 16px;
  background: var(--ty-line);
  margin: 0 8px;
}

.store-catnav__all {
  margin-left: auto;
  color: var(--ty-orange) !important;
  font-weight: 700 !important;
}

.store-catnav__links {
  display: none;
}

/* —— Slider —— */
.ty-slider {
  max-width: var(--ty-max);
  margin: 12px auto 0;
  padding: 0 16px;
}

.ty-slider__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 8px;
}

.ty-slider__track::-webkit-scrollbar {
  display: none;
}

.ty-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: block;
  min-height: 200px;
  padding: 32px 36px;
  border-radius: 8px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ty-slide--1 {
  background: linear-gradient(105deg, #ff6b00 0%, #f27a1a 40%, #ff9a4d 100%);
}

.ty-slide--2 {
  background: linear-gradient(105deg, #1e5c59 0%, #2a8a85 100%);
}

.ty-slide__tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.ty-slide h2 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 700;
}

.ty-slide p {
  margin: 0;
  font-size: 14px;
  opacity: 0.92;
  max-width: 400px;
}

/* —— Category circles (Trendyol daireler) —— */
.ty-circles {
  max-width: var(--ty-max);
  margin: 0 auto;
  padding: 16px 16px 8px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ty-circles::-webkit-scrollbar {
  display: none;
}

.ty-circle {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 80px;
  text-align: center;
}

.ty-circle__img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--ty-line);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: box-shadow 0.15s;
}

.ty-circle:hover .ty-circle__img {
  box-shadow: 0 2px 12px rgba(242, 122, 26, 0.25);
  border-color: var(--ty-orange);
}

.ty-circle__img img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.ty-circle span {
  font-size: 11px;
  font-weight: 600;
  color: var(--ty-ink);
  line-height: 1.25;
}

/* —— Flash deals bar —— */
.ty-flash {
  max-width: var(--ty-max);
  margin: 12px auto 0;
  padding: 0 16px;
}

.ty-flash__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, #ff6b00, #f27a1a);
  color: #fff;
}

.ty-flash__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ty-flash__title svg {
  fill: #fff;
}

.ty-flash__timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.ty-flash__timer span {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  padding: 4px 6px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.2);
  font-variant-numeric: tabular-nums;
}

.ty-flash__body {
  background: #fff;
  border: 1px solid var(--ty-line);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 12px;
}

/* —— Product shelf —— */
.store-shelf {
  max-width: var(--ty-max);
  margin: 0 auto;
  padding: 16px 16px 8px;
}

.store-shelf__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.store-shelf__head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ty-ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-shelf__head h2::before {
  content: "";
  display: block;
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: var(--ty-orange);
}

.store-shelf__head a {
  font-size: 13px;
  font-weight: 600;
  color: var(--ty-orange);
}

.store-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}

.ty-flash__body .store-product-grid {
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.site-shell .store-product {
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.site-shell .store-product:hover {
  transform: none;
}

.site-shell .store-product__img-inner {
  transition: none;
}

.site-shell .store-product:hover .store-product__img-inner {
  transform: none;
}

/* —— Product card —— */
.store-product {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8eff0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
}

.store-product:hover {
  border-color: #c5dfe2;
  box-shadow: 0 8px 24px rgba(0, 109, 119, 0.1);
  transform: translateY(-2px);
}

.store-product--out {
  opacity: 0.88;
}

.store-product--out:hover {
  transform: none;
  box-shadow: none;
}

.store-product__img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #f8fbfb 0%, #eef6f7 100%);
  overflow: hidden;
}

.store-product__img-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  transition: transform 0.25s ease;
}

.store-product:hover .store-product__img-inner {
  transform: scale(1.04);
}

.store-product__img-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-product__discount {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 8px;
  background: #006d77;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.store-product__stock-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(51, 51, 51, 0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.store-product__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  color: #b0b8ba;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.store-product:hover .store-product__fav {
  opacity: 1;
}

.store-product__fav:hover {
  color: #e0456a;
  background: #fff;
}

.store-product__fav.is-active {
  color: #e0456a;
  opacity: 1;
}

.store-product__fav.is-active svg {
  fill: #e0456a;
  stroke: #e0456a;
}

.store-product__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.store-product__category {
  font-size: 11px;
  font-weight: 600;
  color: #006d77;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.store-product__body h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #2a3436;
  line-height: 1.4;
  overflow: hidden;
  max-height: calc(1.4em * 2);
  min-height: 36px;
}

.store-product__seller {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #6b787a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-product__seller-label {
  color: #9aa5a7;
  font-weight: 500;
}

.store-product__seller-name {
  font-weight: 700;
  color: #006d77;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-product__seller-link {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  max-width: 100%;
}

.store-product__seller-link:hover {
  text-decoration: underline;
}

.magaza-seller-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e6f4f5 0%, #f5fbfb 100%);
  border: 1px solid rgba(0, 109, 119, 0.16);
}

.magaza-seller-hero__avatar {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 14px;
  background: #006d77;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.magaza-seller-hero__body {
  flex: 1;
  min-width: 0;
}

.magaza-seller-hero__top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.magaza-seller-hero__name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.magaza-seller-hero__badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: #006d77;
  color: #fff;
}

.magaza-seller-hero__badge--first {
  background: #0f172a;
}

.magaza-seller-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  font-size: 13px;
  color: #475569;
}

.magaza-seller-hero__rating {
  color: #b45309;
  font-weight: 600;
}

.magaza-seller-hero__rating--none {
  color: #94a3b8;
  font-weight: 400;
}

.magaza-seller-hero__clear {
  flex-shrink: 0;
  border: 1px solid rgba(0, 109, 119, 0.3);
  background: #fff;
  color: #006d77;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.magaza-seller-hero__clear:hover {
  background: #f0fafa;
}

@media (max-width: 640px) {
  .magaza-seller-hero {
    flex-wrap: wrap;
  }
  .magaza-seller-hero__clear {
    width: 100%;
  }
}

.store-product__seller--member .store-product__seller-name::before {
  content: "🏢 ";
  font-weight: 400;
}

.store-product__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #6b787a;
}

.store-product__star {
  color: #f5a623;
  flex-shrink: 0;
}

.store-product__review-count {
  color: #9aa5a7;
}

.store-product__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.store-product__price {
  font-size: 17px;
  font-weight: 700;
  color: #006d77;
  letter-spacing: -0.02em;
}

.store-product__price-old {
  font-size: 12px;
  color: #9aa5a7;
  text-decoration: line-through;
}

.store-product__cart-price {
  font-size: 12px;
  font-weight: 600;
  color: #0a9a6e;
}

.store-product__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.store-product__shipping {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 6px;
  background: #e8f7f0;
  color: #0a9a6e;
  font-size: 10px;
  font-weight: 700;
}

.store-product__stock-low {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 6px;
  background: #fff4e8;
  color: #c45a00;
  font-size: 10px;
  font-weight: 700;
}

.store-product__btn {
  width: 100%;
  margin-top: auto;
  padding: 10px 12px;
  border: none;
  border-radius: 10px;
  background: #006d77;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.12s ease;
}

.store-product__btn:hover:not(:disabled) {
  background: #005a62;
}

.store-product__btn:active:not(:disabled) {
  transform: scale(0.98);
}

.store-product__btn--notify {
  background: #fff;
  color: #006d77;
  border: 1px solid #006d77;
}

.store-product__btn--notify:hover:not(:disabled) {
  background: rgba(0, 109, 119, 0.08);
}

.store-product__compare {
  position: absolute;
  top: 10px;
  right: 46px;
  z-index: 3;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #64748b;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
  transition: color 0.15s ease, background 0.15s ease;
}

.store-product__compare:hover {
  color: #006d77;
}

.store-product__compare.is-active {
  background: #006d77;
  color: #fff;
}

.med-compare-bar {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 1400;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  border-radius: 14px;
  background: #0f172a;
  color: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.32);
}

.med-compare-bar__count {
  font-size: 14px;
  font-weight: 600;
}

.med-compare-bar__actions {
  display: flex;
  gap: 8px;
}

.med-compare-bar__open {
  border: none;
  border-radius: 9px;
  padding: 8px 16px;
  background: #00b4c4;
  color: #04252a;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.med-compare-bar__open:hover {
  background: #00c8da;
}

.med-compare-bar__clear {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9px;
  padding: 8px 14px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

.med-compare-bar__clear:hover {
  background: rgba(255, 255, 255, 0.12);
}

.med-compare-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.55);
}

.med-compare-overlay.is-open {
  display: flex;
}

.med-compare-modal {
  width: 100%;
  max-width: 920px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.32);
}

.med-compare-modal__loading {
  padding: 40px;
  text-align: center;
  color: #64748b;
}

.med-compare-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.med-compare-modal__head h2 {
  margin: 0;
  font-size: 18px;
  color: #0f172a;
}

.med-compare-modal__close {
  border: none;
  background: none;
  font-size: 26px;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
}

.med-compare-modal__close:hover {
  color: #0f172a;
}

.med-compare-modal__scroll {
  overflow: auto;
}

.med-compare-table {
  width: 100%;
  border-collapse: collapse;
}

.med-compare-table th,
.med-compare-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  vertical-align: middle;
  font-size: 13px;
}

.med-compare-table tbody th {
  width: 130px;
  color: #64748b;
  font-weight: 600;
  background: #f8fafc;
  position: sticky;
  left: 0;
}

.med-compare-head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 140px;
}

.med-compare-head__remove {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.med-compare-head__remove:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.med-compare-head__img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 10px;
  background: #f8fafc;
}

.med-compare-head__name {
  border: none;
  background: none;
  font: inherit;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  text-align: center;
}

.med-compare-head__name:hover {
  color: #006d77;
  text-decoration: underline;
}

.med-compare-price {
  color: #006d77;
  font-size: 15px;
}

.med-compare-yes {
  color: #059669;
  font-weight: 600;
}

.med-compare-no {
  color: #dc2626;
  font-weight: 600;
}

.med-compare-add {
  border: none;
  border-radius: 8px;
  padding: 7px 12px;
  background: #006d77;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.med-compare-add:hover {
  background: #005a62;
}

.recent-viewed {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.recent-viewed__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.recent-viewed__title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
}

.recent-viewed__clear {
  border: none;
  background: none;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.recent-viewed__clear:hover {
  color: #006d77;
  text-decoration: underline;
}

.store-product__rx {
  display: inline-block;
  margin-bottom: 4px;
  padding: 2px 8px;
  border-radius: 6px;
  background: #fef3c7;
  color: #92400e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .med-compare-bar {
    left: 12px;
    right: 12px;
    transform: none;
    justify-content: space-between;
  }
}

.store-product__btn:disabled {
  background: #d8e0e2;
  color: #8a9699;
  cursor: not-allowed;
}

.store-product__brand,
.store-product__stars,
.store-product__cart-overlay,
.store-product__sku,
.store-product__meta {
  display: none;
}

/* —— Promo strip —— */
.ty-promo-strip {
  max-width: var(--ty-max);
  margin: 8px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ty-promo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--ty-line);
  transition: border-color 0.12s;
}

.ty-promo:hover {
  border-color: var(--ty-orange);
}

.ty-promo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.ty-promo strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ty-ink);
}

.ty-promo span {
  font-size: 11px;
  color: var(--ty-muted);
}

/* —— Footer —— */
.store-footer {
  margin-top: 24px;
  padding: 32px 16px 20px;
  background: #fff;
  border-top: 1px solid var(--ty-line);
}

.store-footer__inner {
  max-width: var(--ty-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 24px;
}

.store-footer__brand img {
  height: 36px;
  margin-bottom: 12px;
}

.store-footer__brand p {
  margin: 0;
  font-size: 12px;
  color: var(--ty-muted);
  line-height: 1.5;
}

.store-footer__col h4 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ty-ink);
}

.store-footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.store-footer__col li {
  margin-bottom: 8px;
}

.store-footer__col a {
  font-size: 12px;
  color: var(--ty-muted);
}

.store-footer__col a:hover {
  color: var(--ty-orange);
}

.store-footer__copy {
  max-width: var(--ty-max);
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--ty-line);
  text-align: center;
  font-size: 11px;
  color: #999;
}

/* —— Toast —— */
.med-toast {
  background: var(--ty-orange);
}

/* —— Filters (magaza) —— */
.med-filters input,
.med-filters select {
  border-radius: 6px;
  border-color: var(--ty-line);
}

.med-filters input:focus,
.med-filters select:focus {
  outline: 2px solid var(--ty-orange);
  border-color: var(--ty-orange);
}

.med-btn--teal,
.med-btn--primary {
  background: var(--ty-orange) !important;
}

.med-btn--teal:hover,
.med-btn--primary:hover {
  background: var(--ty-orange-dark) !important;
}

@media (max-width: 1100px) {
  .site-shell .store-product-grid--paged {
    --products-per-row: 4;
  }
}

@media (max-width: 768px) {
  .site-shell .store-product-grid--paged {
    --products-per-row: 3;
    --grid-gap: 10px;
  }
}

@media (max-width: 520px) {
  .site-shell .store-product-grid--paged {
    --products-per-row: 2;
    --grid-gap: 8px;
  }
}

@media (max-width: 1024px) {
  .store-product-grid,
  .ty-flash__body .store-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .store-header__inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
  }

  .store-search {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .store-header__action span {
    display: none;
  }

  .store-product-grid,
  .ty-flash__body .store-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .store-product__fav {
    opacity: 1;
  }

  .store-product__body h3 {
    font-size: 12px;
    min-height: 34px;
  }

  .store-product__price {
    font-size: 15px;
  }

  .ty-promo-strip {
    grid-template-columns: 1fr;
  }

  .store-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .store-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ty-slide {
    min-height: 160px;
    padding: 24px;
  }

  .ty-slide h2 {
    font-size: 20px;
  }
}
