/* PGM Fishmongers — premium online ordering */

:root {
  --navy: #071628;
  --navy-soft: #0b1f3a;
  --ocean: #1156a8;
  --ocean-dark: #0d4588;
  --aqua: #3eb8c8;
  --aqua-light: #7fd4de;
  --white: #ffffff;
  --grey-100: #f4f7fa;
  --grey-200: #e8ecef;
  --grey-400: #98a4b3;
  --grey-500: #6b7a8c;
  --gold: #c9a227;
  --gold-light: #e3c767;
  --success: #1f7a4d;
  --danger: #b33;
  --shadow: 0 12px 40px rgba(7, 22, 40, 0.12);
  --shadow-soft: 0 4px 18px rgba(7, 22, 40, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --header-height: 74px;
  --mobile-bar-height: 68px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--navy-soft);
  background: var(--grey-100);
  line-height: 1.6;
  overflow-x: hidden;
}

body.has-mobile-bar { padding-bottom: calc(var(--mobile-bar-height) + 1rem); }

img { display: block; max-width: 100%; }

a { color: var(--ocean); text-decoration: none; }
a:hover { color: var(--aqua); }

button, input, select, textarea { font: inherit; }

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(62, 184, 200, 0.45);
  outline-offset: 2px;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.demo-banner {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: var(--navy);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 86, 168, 0.08);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--aqua));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(17, 86, 168, 0.28);
}

.brand__text { font-size: 1.02rem; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-basket {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(17, 86, 168, 0.08);
  color: var(--ocean);
}

.header-basket svg { width: 22px; height: 22px; }

.header-basket .basket-count {
  top: -4px;
  right: -4px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--navy-soft);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45rem 0.62rem;
  border-radius: 999px;
  white-space: nowrap;
}

.site-nav a.is-active,
.site-nav a:hover {
  background: rgba(17, 86, 168, 0.08);
  color: var(--ocean);
}

.lang-switch { display: inline-flex; gap: 0.2rem; margin-left: 0.2rem; }

.lang-btn {
  border: 1px solid var(--grey-200);
  background: var(--white);
  color: var(--navy-soft);
  border-radius: 999px;
  padding: 0.32rem 0.58rem;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
}

.lang-btn.is-active {
  background: var(--ocean);
  border-color: var(--ocean);
  color: var(--white);
}

.btn-call {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  font-weight: 800 !important;
  padding: 0.55rem 0.9rem !important;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.25);
}

.basket-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--ocean);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.basket-count[hidden] { display: none !important; }

/* Hero */
.hero--premium {
  position: relative;
  min-height: clamp(420px, 72vh, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat url("../assets/pgm/fresh-fish.jpg");
  transform: scale(1.03);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.03); }
  to { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(7, 22, 40, 0.88) 0%, rgba(17, 86, 168, 0.72) 52%, rgba(7, 22, 40, 0.55) 100%);
}

.hero__waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 80px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C200,100 400,0 600,50 C800,100 1000,20 1200,60 L1200,120 L0,120 Z' fill='%23f4f7fa'/%3E%3C/svg%3E")
    center bottom / cover no-repeat;
  opacity: 0.95;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 5.5rem;
  max-width: 720px;
  animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__content h1 {
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.hero__content p {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  opacity: 0.96;
  margin: 0 0 1.75rem;
  max-width: 620px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(201, 162, 39, 0.28);
}

.btn-secondary {
  background: var(--white);
  color: var(--ocean);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero--premium .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}

.btn-outline {
  background: transparent;
  color: var(--ocean);
  border: 2px solid rgba(17, 86, 168, 0.18);
}

.btn-text {
  background: transparent;
  color: var(--ocean);
  padding: 0.5rem 0.75rem;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.btn-block { width: 100%; }

/* Trust cards */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--aqua);
}

.trust-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(17, 86, 168, 0.08);
  color: var(--ocean);
  font-size: 1.2rem;
}

.trust-card h3 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--navy);
}

/* Sections */
section { padding: 3.5rem 0; }

.section-head { margin-bottom: 1.75rem; }

.section-head h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  color: var(--navy);
}

.section-head p { margin: 0; color: var(--grey-500); }

.price-warning {
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.12), rgba(62, 184, 200, 0.1));
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
}

.price-warning p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-soft);
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}

.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-image,
.product-card__image-wrap,
.product-detail__image-wrap,
.basket-item__image-wrap {
  height: 230px;
  background: var(--grey-200);
  overflow: hidden;
}

.product-image__img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.product-image__missing {
  width: 100%;
  height: 230px;
  display: grid;
  place-items: center;
  background: var(--grey-200);
  color: var(--grey-500);
  font-size: 0.92rem;
  text-align: center;
  padding: 1rem;
}

.product-card__badges,
.product-detail__badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  z-index: 2;
}

.product-detail__badges { position: static; margin-bottom: 0.75rem; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge--demo {
  background: var(--gold);
  color: var(--navy);
}

.badge--available {
  background: rgba(31, 122, 77, 0.12);
  color: var(--success);
}

.badge--unavailable {
  background: rgba(179, 51, 51, 0.12);
  color: var(--danger);
}

.product-card__body,
.product-detail__content { padding: 1.1rem 1.15rem 1.25rem; }

.product-card__category,
.product-detail__category {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--aqua);
  font-weight: 800;
}

.product-card__title {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  color: var(--navy);
}

.product-card__price,
.product-detail__price {
  margin: 0 0 0.45rem;
  font-weight: 800;
  color: var(--ocean);
  font-size: 1.05rem;
}

.price-label { font-weight: 600; color: var(--grey-500); font-size: 0.82rem; }

.product-card__prep-summary {
  margin: 0 0 0.75rem;
  font-size: 0.84rem;
  color: var(--grey-500);
}

.muted { color: var(--grey-400); }

.product-card__prep {
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  background: var(--grey-100);
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  background: var(--grey-100);
  border-radius: 999px;
  padding: 0.25rem;
  border: 1px solid var(--grey-200);
}

.qty-controls--large { padding: 0.35rem; }

.qty-controls__value {
  min-width: 2rem;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--grey-200);
  background: var(--white);
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ocean);
  transition: background 0.15s ease;
}

.qty-btn:hover { background: rgba(17, 86, 168, 0.08); }

.product-card__actions {
  display: grid;
  gap: 0.55rem;
  margin-top: auto;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  color: var(--navy-soft);
  font-weight: 600;
}

.filter-chip.is-active,
.filter-chip:hover {
  background: var(--ocean);
  border-color: var(--ocean);
  color: var(--white);
}

.page-intro { padding: 2.25rem 0 0.75rem; }
.page-main { padding: 1.5rem 0 3rem; }

.page-intro h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  color: var(--navy);
}

.page-intro p { margin: 0; color: var(--grey-500); }

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-detail__image-wrap { height: 100%; min-height: 360px; }
.product-detail__image-wrap .product-image__img { height: 100%; min-height: 360px; }

.product-form {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0;
}

.product-form input,
.product-form select,
.product-form textarea,
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.product-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.text-link { display: inline-block; margin-top: 0.75rem; font-weight: 600; }

.breadcrumb {
  font-size: 0.86rem;
  margin-bottom: 0.75rem;
  color: var(--grey-500);
}

.related-products { margin-top: 2.5rem; }

/* Basket */
.basket-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: start;
}

.basket-list { display: grid; gap: 1rem; }

.basket-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.basket-item__body { padding: 1rem 1rem 1rem 0; }

.basket-item__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.basket-item h2 {
  margin: 0;
  font-size: 1.12rem;
  color: var(--navy);
}

.basket-item__price { margin: 0 0 0.35rem; font-weight: 700; color: var(--ocean); }

.basket-item__controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.basket-item__subtotal {
  margin-left: auto;
  font-weight: 700;
  color: var(--navy);
}

.checkout-panel {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.basket-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
}

.basket-summary__total strong {
  color: var(--ocean);
  font-size: 1.35rem;
}

.basket-note {
  margin: 0 0 1rem;
  font-size: 0.86rem;
  color: var(--grey-500);
}

.checkout-form fieldset {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  margin: 0 0 1rem;
}

.checkout-form legend {
  font-weight: 700;
  padding: 0 0.35rem;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0;
  cursor: pointer;
}

.checkout-form label:not(.radio-card) {
  display: block;
  font-weight: 600;
  margin: 0.55rem 0 0.25rem;
  font-size: 0.88rem;
}

.checkout-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.form-error {
  color: var(--danger);
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0.5rem 0 0;
}

/* Contact */
.contact-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

.contact-panel h3 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  color: var(--navy);
}

.contact-panel p { margin: 0 0 0.65rem; }

.contact-panel__phone {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ocean);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.whatsapp-note {
  color: var(--grey-500);
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  padding: 2rem 0;
  margin-top: 1rem;
}

.site-footer p { margin: 0.35rem 0; }

/* Empty states */
.empty-state,
.empty-message {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.empty-illustration {
  width: 88px;
  height: 88px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 4px dashed var(--grey-200);
  position: relative;
}

.empty-illustration::before,
.empty-illustration::after {
  content: "";
  position: absolute;
  background: var(--grey-200);
  border-radius: 999px;
}

.empty-illustration::before {
  width: 42px;
  height: 28px;
  top: 24px;
  left: 18px;
  border-radius: 0 0 18px 18px;
}

.empty-illustration::after {
  width: 16px;
  height: 16px;
  top: 12px;
  right: 16px;
  border-radius: 50%;
}

/* Toast */
.toast {
  position: fixed;
  bottom: calc(var(--mobile-bar-height) + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 500;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-weight: 600;
  max-width: calc(100% - 2rem);
  text-align: center;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Mobile bottom bar */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 180;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--grey-200);
  box-shadow: 0 -8px 24px rgba(7, 22, 40, 0.08);
  padding: 0.35rem 0.5rem calc(0.35rem + env(safe-area-inset-bottom));
}

.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.45rem 0.25rem;
  color: var(--grey-500);
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 10px;
  position: relative;
}

.mobile-bar a.is-active,
.mobile-bar a:hover {
  color: var(--ocean);
  background: rgba(17, 86, 168, 0.06);
}

.mobile-bar__icon { font-size: 1.15rem; line-height: 1; }

.mobile-bar .basket-count {
  position: static;
  min-width: 16px;
  height: 16px;
  font-size: 0.62rem;
  margin-top: -2px;
}

/* Responsive */
@media (max-width: 980px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); margin-top: 1.5rem; }
  .basket-layout,
  .product-detail { grid-template-columns: 1fr; }
  .checkout-panel { position: static; }
  .product-detail__image-wrap,
  .product-detail__image-wrap .product-image__img { min-height: 280px; height: 280px; }
}

@media (max-width: 900px) {
  body.has-mobile-bar { padding-bottom: calc(var(--mobile-bar-height) + 1.25rem); }
  .mobile-bar { display: grid; }

  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: calc(var(--header-height) + 34px);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-bottom: 1px solid var(--grey-200);
    box-shadow: var(--shadow);
    display: none;
    max-height: calc(100vh - var(--header-height) - var(--mobile-bar-height));
    overflow-y: auto;
  }

  .site-nav.is-open { display: flex; }
  .header-inner { position: relative; }
  .site-nav .btn-call { text-align: center; }
  .brand__text { font-size: 0.92rem; }
  .basket-item { grid-template-columns: 1fr; }
  .basket-item__body { padding: 0 1rem 1rem; }
  .basket-item__subtotal { margin-left: 0; width: 100%; margin-top: 0.35rem; }
  .toast { bottom: calc(var(--mobile-bar-height) + 1.25rem); }
}

@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero__content { padding: 3.5rem 0 4.5rem; }
  .product-grid { grid-template-columns: 1fr; }
  .contact-actions .btn { width: 100%; }
}

@media (min-width: 901px) {
  .header-basket { display: none; }
}

@media (max-width: 900px) {
  .site-nav .basket-link .basket-count { display: none; }
}
