html {
  scroll-behavior: smooth;
}

:root {
  --bg-body: #fafafa;
  --text-main: #0f172a;
  --accent: #c9a45c;
  --notification-bg: rgba(255, 251, 242, 0.96);
  --notification-border: rgba(201, 164, 92, 0.32);
  --notification-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
  --notification-radius: 18px;
  --notification-text: #0f172a;
  --notification-muted: #6b7280;
  --notification-success-bg: linear-gradient(135deg, rgba(248, 251, 243, 0.98), rgba(255, 251, 242, 0.98));
  --notification-success-border: rgba(120, 153, 90, 0.28);
  --notification-error-bg: linear-gradient(135deg, rgba(255, 245, 245, 0.98), rgba(255, 251, 242, 0.98));
  --notification-error-border: rgba(190, 70, 70, 0.22);
}

body {
  margin: 0;
  background: var(--bg-body);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

main,
.page-content,
.hero-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.site-header + * {
  margin-top: 0 !important;
}

video {
  width: 100%;
  pointer-events: none;
}

img {
  max-width: 100%;
}

.product-image img,
.product-gallery img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.product-gallery {
  max-width: 100%;
}

/* HEADER / NAVBAR */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.site-header .mx-auto {
  padding-top: 6px;
  padding-bottom: 6px;
}

.site-header .h-16 {
  height: 40px !important;
}

.site-header .nav-link {
  line-height: 1.1;
}

#cart-toggle {
  padding: 6px 10px !important;
}

#cart-toggle svg {
  width: 18px;
  height: 18px;
}

.nav-link {
  position: relative;
  padding-bottom: 2px;
  color: #64748b;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f3e4b5, var(--accent));
  transition: width 0.22s ease;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link:hover::after {
  width: 100%;
}

@media (max-width: 767px) {
  .site-header .mx-auto {
    padding-left: 12px !important;
    padding-right: 12px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  .site-header .h-16 {
    height: 40px !important;
  }

  .site-header .nav-link {
    font-size: 11px;
  }

  .site-header nav.md\:hidden {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px !important;
    padding-bottom: 8px !important;
    overflow: hidden;
  }

  .site-header nav.md\:hidden .nav-link {
    flex: 0 1 auto;
    white-space: nowrap;
    font-size: 10.5px;
    line-height: 1;
  }

  #cart-toggle {
    padding: 8px 10px !important;
  }

  #cart-toggle svg {
    width: 18px;
    height: 18px;
  }
}

/* HERO */

.hero-section {
  position: relative;
  background: radial-gradient(circle at top, #fdf5e3 0, #fafafa 45%, #e5edff 100%);
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero,
.product-page,
.main-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media (max-width: 768px) {
  .popcorn-page .site-header {
    height: 56px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .popcorn-page .site-header .h-16 {
    height: 56px !important;
  }

  .popcorn-page .site-header img,
  .popcorn-page .site-header svg {
    transform: scale(0.9);
  }

  body.popcorn-page .max-w-6xl:first-of-type {
    padding-top: 0 !important;
  }
}

body.popcorn-page{
  --popcorn-header-height: 60px;
}

body.popcorn-page .site-header{
  min-height: var(--popcorn-header-height) !important;
}

body.popcorn-page .site-header .max-w-6xl,
body.popcorn-page .site-header .max-w-6xl > div{
  min-height: 60px !important;
  align-items: center !important;
}

body.popcorn-page .site-header .max-w-6xl{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.hero-title {
  letter-spacing: -0.03em;
}

/* CLIENTS */

.clients {
  padding: 80px 0;
  text-align: center;
  background: #f1f5f9;
}

.clients h2 {
  font-size: 32px;
  margin-bottom: 50px;
}

.clients-section {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.clients-logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.clients-logos img,
.clients-logos div,
.clients-logos * {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.clients-logos img {
  width: auto;
  height: 62px;
  object-fit: contain;
  display: block;
  padding: 0 !important;
  margin: 0;
  filter: contrast(1.05) brightness(0.98);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.clients-logos img:hover {
  transform: scale(1.05);
}

/* PRODUCT & CATEGORY CARDS */

.product-card,
.category-card {
  border-radius: 18px;
  background: #ffffff;

  /* добавили золотую рамку */
  border: 1px solid rgba(201,164,92,0.18);

  box-shadow:
  0 14px 40px rgba(15, 23, 42, 0.08);

  overflow: hidden;

  transition:
  transform 0.24s ease,
  box-shadow 0.24s ease,
  border-color 0.24s ease;
}

.product-card:hover,
.category-card:hover {

  transform: translateY(-8px);

  /* золотое свечение */
  box-shadow:
  0 26px 70px rgba(15,23,42,0.14),
  0 0 25px rgba(201,164,92,0.25);

  border-color: rgba(201,164,92,0.35);
}

.product-card img,
.category-card img {
  transition: transform 0.4s ease;
}

.product-card:hover img,
.category-card:hover img {
  transform: scale(1.04);
}

.product-card h4 {
  font-size: 1rem;
  font-weight: 600;
}

.product-card p {
  font-weight: 600;
  color: var(--text-main);
}

/* PRIMARY CTA */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #e8c98a, #c9a45f);
  color: #1a1a1a;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 6px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f0d79c, #d4b06b);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: scale(0.98);
}

button {
  cursor: pointer;
  border: none;
}

.site-message {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: min(92vw, 320px);
  max-width: min(92vw, 420px);
  padding: 14px 18px;
  border-radius: var(--notification-radius);
  border: 1px solid var(--notification-border);
  background:
    radial-gradient(circle at top right, rgba(201, 164, 92, 0.12), transparent 38%),
    var(--notification-bg);
  color: var(--notification-text);
  box-shadow: var(--notification-shadow);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease, bottom 0.28s ease;
  z-index: 9999;
}

.site-message.show {
  opacity: 1;
  bottom: 36px;
  transform: translateX(-50%) translateY(0);
}

#added-message {
  margin-top: 14px !important;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--notification-success-border);
  background: var(--notification-success-bg);
  color: #47663b !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.hidden {
  display: none;
}

/* CART ICON BUTTON */

#cart-toggle {
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.16);
  transition:
    transform 0.16s ease,
    box-shadow 0.2s ease;
}

#cart-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.25);
}

/* CART DRAWER CONTROLS */

#cart-items button.minus,
#cart-items button.plus {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#cart-items button.remove {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: transparent;
  color: #94a3b8;
  font-size: 1rem;
}

/* SCROLL REVEAL ANIMATION */

.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width:768px), (hover:none), (pointer:coarse) {
  .js-reveal,
  .fade-in,
  .product-card,
  .product-card.show,
  .fade-in.show {
    opacity: 1 !important;
    transform: none !important;
    transition-duration: 0.18s !important;
  }

  .product-card img,
  .hero-item img,
  .category-card img {
    transition-duration: 0.2s !important;
  }

  .belfood-page-loader {
    display: none !important;
  }
}

/* FOOTER */

.contacts-card {
  border-radius: 24px;
  border: 1px solid rgba(201, 164, 92, 0.18);
  background: linear-gradient(135deg, rgba(253, 245, 227, 0.95), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  padding: 2rem;
}

.contacts-heading h2 {
  margin: 0.35rem 0 0;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--text-main);
}

.contacts-kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.contacts-copy {
  margin: 0.9rem 0 0;
  max-width: 42rem;
  font-size: 0.95rem;
  color: #64748b;
}

.contacts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.belfood-bestsellers {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid rgba(201, 164, 92, 0.14);
  background:
    radial-gradient(circle at top, rgba(255, 233, 185, 0.5), transparent 34%),
    radial-gradient(circle at bottom, rgba(226, 236, 255, 0.34), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 246, 0.96));
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
  padding: clamp(28px, 4vw, 52px);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.belfood-bestsellers__decor {
  pointer-events: none;
  position: absolute;
  display: grid;
  gap: 10px;
  opacity: 0.9;
}

.belfood-bestsellers__decor span {
  display: block;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.08));
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.belfood-bestsellers__decor--left {
  top: 42px;
  left: 28px;
}

.belfood-bestsellers__decor--left span:nth-child(1) {
  color: #f2b93b;
  font-size: 28px;
}

.belfood-bestsellers__decor--left span:nth-child(2) {
  margin-left: 18px;
  font-size: 28px;
}

.belfood-bestsellers__decor--left span:nth-child(3) {
  margin-left: 6px;
  font-size: 24px;
}

.belfood-bestsellers__decor--right {
  top: 34px;
  right: 32px;
  justify-items: end;
}

.belfood-bestsellers__decor--right span:nth-child(1) {
  font-size: 36px;
}

.belfood-bestsellers__decor--right span:nth-child(2) {
  margin-right: 22px;
  font-size: 34px;
}

.belfood-bestsellers__decor--right span:nth-child(3) {
  font-size: 28px;
}

.belfood-bestsellers__nav {
  position: absolute;
  top: 58%;
  z-index: 2;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  font-size: 1.7rem;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.belfood-bestsellers__nav--prev {
  left: 18px;
}

.belfood-bestsellers__nav--next {
  right: 18px;
}

.belfood-bestsellers__header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.belfood-bestsellers__eyebrow {
  margin: 0;
  color: #94a3b8;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.belfood-bestsellers__title {
  margin: 14px 0 0;
  color: #0f172a;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.belfood-bestsellers__copy {
  margin: 18px auto 0;
  max-width: 620px;
  color: #7c8aa5;
  font-size: 1rem;
  line-height: 1.55;
}

.belfood-bestsellers__headline-note {
  position: absolute;
  top: 86px;
  left: -82px;
  color: #efb43f;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Comic Sans MS", "Bradley Hand", cursive;
  line-height: 1.05;
  transform: rotate(-10deg);
  transition: color 0.28s ease, opacity 0.28s ease;
}

.belfood-bestsellers__headline-note::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -6px;
  width: 54px;
  height: 20px;
  border-bottom: 3px solid #efb43f;
  border-right: 3px solid #efb43f;
  border-radius: 0 0 20px 0;
  transform: rotate(14deg);
}

.belfood-bestsellers__headline-note-secondary {
  position: absolute;
  top: 68px;
  right: -54px;
  color: #efb43f;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Comic Sans MS", "Bradley Hand", cursive;
  line-height: 1.05;
  transform: rotate(8deg);
  transition: color 0.28s ease, opacity 0.28s ease;
}

.belfood-bestsellers__headline-note-secondary::after {
  content: "";
  position: absolute;
  left: calc(100% + 6px);
  top: 12px;
  width: 44px;
  height: 16px;
  border-top: 3px solid #efb43f;
  border-right: 3px solid #efb43f;
  border-radius: 0 18px 0 0;
  transform: rotate(8deg);
}

.belfood-bestsellers__headline-spark {
  position: absolute;
  top: 22px;
  right: -18px;
  color: #efb43f;
  font-size: 1.7rem;
  transition: color 0.28s ease, opacity 0.28s ease;
}

.belfood-bestsellers__tabs {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.belfood-bestsellers__tabs::-webkit-scrollbar {
  display: none;
}

.belfood-bestsellers__tab {
  flex: 0 0 auto;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 30px;
  transition:
    background-color 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.belfood-bestsellers__tab::before {
  content: var(--belfood-tab-icon, "");
  margin-right: 10px;
}

.belfood-bestsellers__tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.belfood-bestsellers__tab.is-active {
  border-color: rgba(239, 180, 63, 0.56);
  background: linear-gradient(135deg, #ffd45f, #f2b93b);
  color: #0f172a;
  box-shadow: 0 14px 34px rgba(242, 185, 59, 0.28);
}

.belfood-bestsellers__panel {
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

.belfood-bestsellers__panel.is-switching {
  pointer-events: none;
}

.belfood-bestsellers__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.belfood-bestsellers__panel.is-switching .belfood-bestsellers__grid {
  opacity: 0;
  transform: translateY(12px);
}

.belfood-bestsellers[data-bestseller-theme="new"] {
  background:
    radial-gradient(circle at top, rgba(255, 223, 148, 0.42), transparent 32%),
    radial-gradient(circle at bottom, rgba(232, 239, 255, 0.34), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.97));
}

.belfood-bestsellers[data-bestseller-theme="new"] .belfood-bestsellers__headline-note {
  opacity: 1;
  left: -58px;
}

.belfood-bestsellers[data-bestseller-theme="new"] .belfood-bestsellers__headline-note-secondary {
  opacity: 1;
  top: 88px;
  right: -8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5c45, #d61f16);
  color: #fff;
  font-size: 0.96rem;
  box-shadow: 0 16px 30px rgba(214, 31, 22, 0.24);
}

.belfood-bestsellers[data-bestseller-theme="new"] .belfood-bestsellers__headline-note-secondary::after {
  display: none;
}

.belfood-bestsellers[data-bestseller-theme="new"] .belfood-bestsellers__headline-spark {
  color: #f3b336;
}

.belfood-bestsellers[data-bestseller-theme="new"] .belfood-bestseller-card__image-wrap {
  background:
    radial-gradient(circle at top, rgba(255, 235, 196, 0.34), transparent 38%),
    linear-gradient(180deg, #fffdfa, #ffffff 78%);
}

.belfood-bestsellers[data-bestseller-theme="new"] .belfood-bestseller-card__badge--blue {
  background: linear-gradient(135deg, #4d8cff, #2f63df);
}

.belfood-bestsellers[data-bestseller-theme="new"] .belfood-bestseller-card__image {
  filter: saturate(1.04) contrast(1.02);
}

.belfood-bestsellers[data-bestseller-theme="kids"] {
  background:
    radial-gradient(circle at top, rgba(255, 229, 156, 0.38), transparent 32%),
    radial-gradient(circle at right, rgba(216, 235, 255, 0.4), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 244, 0.98));
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestsellers__headline-note {
  opacity: 1;
  left: -50px;
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestsellers__headline-note-secondary {
  opacity: 1;
  top: 88px;
  right: -8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5c45, #d61f16);
  color: #fff;
  font-size: 0.96rem;
  box-shadow: 0 16px 30px rgba(214, 31, 22, 0.24);
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestsellers__headline-note-secondary::after {
  display: none;
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestsellers__headline-spark {
  color: #f3b336;
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestsellers__eyebrow {
  color: #efb43f;
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestsellers__title::before {
  content: "♕";
  display: inline-block;
  margin-right: 12px;
  color: #efb43f;
  font-size: 0.42em;
  transform: translateY(-10px);
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestsellers__decor--left {
  top: 18px;
  left: 20px;
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestsellers__decor--right {
  top: 20px;
  right: 16px;
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestsellers__decor span {
  filter: drop-shadow(0 14px 20px rgba(15, 23, 42, 0.1));
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestseller-card {
  border-radius: 34px;
  border-color: rgba(255, 246, 225, 0.92);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(255, 255, 255, 0.96));
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.08);
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestseller-card__media {
  padding: 20px 20px 4px;
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestseller-card__image-wrap {
  min-height: 360px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(255, 236, 180, 0.25), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(255, 252, 246, 0.96));
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestseller-card__image {
  max-height: 360px;
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestseller-card__body {
  padding: 0 22px 26px;
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestseller-card__badge {
  top: 14px;
  left: 18px;
  min-height: 42px;
  max-width: 190px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d84ad2, #8b5cf6);
  box-shadow: 0 16px 30px rgba(216, 74, 210, 0.24);
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestseller-card__badge::before {
  content: "⭐";
  margin-right: 8px;
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestseller-card__title {
  font-size: 1.12rem;
  line-height: 1.14;
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestseller-card__description,
.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestseller-card__flavor {
  margin: 8px 0 0;
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.45;
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestseller-card__rating {
  margin-top: 10px;
}

.belfood-bestsellers[data-bestseller-theme="kids"] .belfood-bestseller-card__old-price {
  font-size: 0.95rem;
}

.belfood-bestsellers[data-bestseller-theme="sale"] {
  background:
    radial-gradient(circle at top, rgba(255, 225, 139, 0.4), transparent 32%),
    radial-gradient(circle at bottom, rgba(231, 241, 222, 0.34), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 245, 0.98));
}

.belfood-bestsellers[data-bestseller-theme="sale"] .belfood-bestsellers__headline-note {
  opacity: 1;
  left: -54px;
  color: #efb43f;
}

.belfood-bestsellers[data-bestseller-theme="sale"] .belfood-bestsellers__headline-note-secondary {
  opacity: 1;
  top: 90px;
  right: -8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5c45, #d61f16);
  color: #fff;
  font-size: 0.96rem;
  box-shadow: 0 16px 30px rgba(214, 31, 22, 0.24);
}

.belfood-bestsellers[data-bestseller-theme="sale"] .belfood-bestsellers__headline-note-secondary::after {
  display: none;
}

.belfood-bestsellers[data-bestseller-theme="sale"] .belfood-bestsellers__headline-spark {
  color: #f3b336;
}

.belfood-bestseller-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(201, 164, 92, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.belfood-bestseller-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 164, 92, 0.24);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.12);
}

.belfood-bestseller-card__media {
  position: relative;
  padding: 18px 18px 8px;
}

.belfood-bestseller-card__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(255, 238, 201, 0.56), transparent 44%),
    linear-gradient(180deg, #fffdfa, #ffffff);
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.belfood-bestseller-card__image {
  width: 100%;
  max-height: 285px;
  object-fit: contain;
  transition: transform 0.38s ease;
}

.belfood-bestseller-card:hover .belfood-bestseller-card__image {
  transform: scale(1.04);
}

.belfood-bestseller-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  max-width: 148px;
  padding: 8px 14px;
  border-radius: 18px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 16px 30px rgba(59, 130, 246, 0.22);
}

.belfood-bestseller-card__badge--gold {
  background: linear-gradient(135deg, #f4b637, #ef9e1d);
  box-shadow: 0 16px 30px rgba(244, 182, 55, 0.28);
}

.belfood-bestseller-card__badge--blue {
  background: linear-gradient(135deg, #ff5c45, #d61f16);
  box-shadow: 0 16px 30px rgba(214, 31, 22, 0.24);
}

.belfood-bestseller-card__badge--green {
  color: #fff7da;
  background: linear-gradient(135deg, #ffbf22, #f2a100);
  border: 2px dashed rgba(255, 248, 214, 0.92);
  box-shadow: 0 16px 30px rgba(242, 161, 0, 0.24);
}

.belfood-bestseller-card__discount {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 54px;
  padding: 10px 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff5c45, #d61f16);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 16px 30px rgba(214, 31, 22, 0.26);
}

.belfood-bestseller-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0 20px 20px;
}

.belfood-bestseller-card__title {
  text-decoration: none;
  margin: 14px 0 0;
  color: #0f172a;
  font-size: clamp(1.05rem, 1.55vw, 1.55rem);
  font-weight: 600;
  line-height: 1.1;
}

.belfood-bestseller-card__meta {
  margin-top: 10px;
  color: #7c8aa5;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
}

.belfood-bestseller-card__title:hover {
  color: #1f3357;
}

.belfood-bestseller-card__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
}

.belfood-bestseller-card__price {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.8rem, 2.2vw, 2.3rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.belfood-bestseller-card__price span {
  font-size: 0.58em;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.belfood-bestseller-card__price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.belfood-bestseller-card__price-block.is-sale {
  gap: 4px;
}

.belfood-bestseller-card__old-price {
  margin: 0;
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.belfood-bestseller-card__old-price span {
  font-size: 0.95em;
}

.belfood-bestseller-card__price.is-sale {
  color: #e3342f;
}

.belfood-bestseller-card__description,
.belfood-bestseller-card__flavor {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.45;
}

.belfood-bestseller-card__button {
  min-width: 148px;
  margin-top: 0 !important;
  padding: 14px 24px !important;
  border-radius: 999px !important;
  font-size: 0.96rem !important;
  box-shadow: 0 14px 30px rgba(242, 185, 59, 0.24);
}

.belfood-bestsellers__footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.belfood-bestsellers__all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 34px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.belfood-bestsellers__all-link:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
}

@media (max-width: 1024px) {
  .belfood-bestsellers__decor {
    opacity: 0.55;
  }

  .belfood-bestsellers__nav {
    display: none;
  }

  .belfood-bestsellers__headline-note {
    left: -16px;
  }

  .belfood-bestsellers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .belfood-bestsellers {
    border-radius: 28px;
    padding: 24px 16px;
  }

  .belfood-bestsellers__decor {
    display: none;
  }

  .belfood-bestsellers__nav {
    display: none;
  }

  .belfood-bestsellers__header {
    max-width: none;
  }

  .belfood-bestsellers__copy {
    font-size: 0.95rem;
  }

  .belfood-bestsellers__headline-note,
  .belfood-bestsellers__headline-note-secondary,
  .belfood-bestsellers__headline-spark {
    display: none;
  }

  .belfood-bestsellers__tabs {
    justify-content: flex-start;
    margin-right: -4px;
    margin-left: -4px;
    padding-right: 4px;
    padding-left: 4px;
  }

  .belfood-bestsellers__tab {
    padding: 14px 22px;
    font-size: 0.95rem;
  }

  .belfood-bestseller-card__image-wrap {
    min-height: 220px;
  }

  .belfood-bestsellers__grid {
    grid-template-columns: 1fr;
  }

  .belfood-bestseller-card__body {
    padding: 0 18px 20px;
  }

  .belfood-bestseller-card__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .belfood-bestseller-card__button {
    width: 100%;
    min-width: 0;
  }

  .belfood-bestsellers__all-link {
    width: 100%;
    padding: 16px 24px;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 220px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.95rem 1rem;
  color: var(--text-main);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 164, 92, 0.35);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.contact-item span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-item strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-item small {
  font-size: 0.84rem;
  color: #64748b;
}

.contact-item-muted {
  cursor: default;
}

.contact-item-muted:hover {
  transform: none;
  border-color: rgba(148, 163, 184, 0.16);
  box-shadow: none;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3e4b5, rgba(201, 164, 92, 0.85));
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(201, 164, 92, 0.28);
}

.contact-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

@media (max-width: 768px) {
  .clients-logos {
    gap: 40px;
  }

  .clients-logos img {
    height: 44px;
  }
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.site-footer__inner{
  width:100%;
}

.site-footer__links{
  min-width:0;
}

.site-footer__links a{
  overflow-wrap:anywhere;
}

.site-footer__copyright{
  flex-shrink:0;
}

@media (max-width: 767px) {
  .site-footer{
    overflow-x:hidden;
  }

  .site-footer__inner{
    align-items:flex-start !important;
    text-align:left;
    gap:18px !important;
  }

  .site-footer__brand{
    width:100%;
  }

  .site-footer__links{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    width:100%;
    gap:12px 16px !important;
    font-size:13px;
    line-height:1.45;
  }

  .site-footer__links a{
    min-width:0;
    white-space:normal;
    word-break:break-word;
  }

  .site-footer__copyright{
    width:100%;
    padding-top:4px;
    text-align:left;
  }
}

.cart-footer{
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid rgba(0,0,0,0.1);
  display:flex;
  flex-direction:column;
  gap:12px;
  }
  
  .cart-total{
  display:flex;
  justify-content:space-between;
  font-size:18px;
  font-weight:600;
  }
  
  .checkout-btn{
  background:linear-gradient(135deg,#e7c98b,#c9a45c);
  padding:14px;
  border-radius:999px;
  font-weight:600;
  border:none;
  cursor:pointer;
  }
  
  .checkout-btn:hover{
  transform:scale(1.03);
  box-shadow:0 10px 25px rgba(201,164,92,.4);
  }
  
  .clear-cart-btn{
  background:#f1f5f9;
  padding:12px;
  border-radius:999px;
  font-size:14px;
  }
  /* ===== BELFOOD GOLD STYLE ===== */

:root{
  --gold-main:#c9a45c;
  --gold-light:#e7c98b;
  --gold-soft:#d6b97a;
  }

  /* ===== BELFOOD PREMIUM UI ===== */

/* SECTION TITLES GOLD LINE */

.section-title{
  position:relative;
  }
  
  .section-title::after{
  content:"";
  display:block;
  width:60px;
  height:3px;
  margin-top:10px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gold-light),var(--gold-main));
  }
  
  /* PRODUCT BADGE (SALE / TOP) */
  
  .product-badge{
    position:absolute;
    top:12px;
    left:12px;
    padding:6px 14px;
    font-size:13px;
    font-weight:600;
    border-radius:999px;
    
    background:linear-gradient(135deg,#E7C97F,#C9A64E);
    color:#111827;
    
    box-shadow:0 8px 22px rgba(201,164,92,0.45);
    
    letter-spacing:0.02em;
    }
  
  /* PREMIUM PRODUCT MODAL */
  
  #product-modal{
  backdrop-filter:blur(8px);
  }
  
  #product-modal h2{
  font-size:28px;
  font-weight:600;
  }
  
  #product-modal p{
  color:#475569;
  line-height:1.5;
  }
  
  /* PRODUCT THUMBNAILS */
  
  .product-thumbs{
  display:flex;
  gap:10px;
  margin-top:12px;
  }
  
  .product-thumbs div{
  width:60px;
  height:60px;
  border-radius:10px;
  background:#f1f5f9;
  }
  
  /* FLOATING CART */
  
  #floating-cart{
  transition:
  transform .2s ease,
  box-shadow .2s ease;
  }
  
  #floating-cart:hover{
  transform:translateY(-2px) scale(1.05);
  box-shadow:0 18px 40px rgba(0,0,0,.25);
  }
  
  /* FAQ ACCORDION */
  
  .faq-item{
  border-bottom:1px solid rgba(148,163,184,.2);
  padding:16px 0;
  cursor:pointer;
  }
  
  .faq-question{
  font-weight:600;
  display:flex;
  justify-content:space-between;
  align-items:center;
  }
  
  .faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
  color:#64748b;
  margin-top:8px;
  }
  
  .faq-item.active .faq-answer{
  max-height:200px;
  }
  
  /* CTA SECTION */
  
  .cta-section{
  background:linear-gradient(
  180deg,
  #fff,
  #fff8e6
  );
  border-radius:20px;
  padding:60px 20px;
  text-align:center;
  }
  
  /* PREMIUM BUTTON */
  
  .btn-gold{
  background:linear-gradient(135deg,var(--gold-light),var(--gold-main));
  border-radius:999px;
  padding:14px 26px;
  font-weight:600;
  box-shadow:0 10px 30px rgba(201,164,92,.4);
  transition:
  transform .2s ease,
  box-shadow .2s ease;
  }
  
  .btn-gold:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(201,164,92,.5);
  }
  
  /* PREMIUM CARD HOVER */
  
  .product-card{
  position:relative;
  }
  
  .product-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  opacity:0;
  background:linear-gradient(
  120deg,
  transparent,
  rgba(255,255,255,.4),
  transparent
  );
  transition:opacity .4s ease;
  }
  
  .product-card:hover::before{
  opacity:1;
  }
  
  /* DELIVERY ICON STYLE */
  
  .delivery-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  }
  
  .delivery-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--gold-light),var(--gold-main));
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-weight:600;
  }
  
  /* SMOOTH PREMIUM ANIMATION */
  
  @keyframes floatSoft{
  0%{transform:translateY(0)}
  50%{transform:translateY(-4px)}
  100%{transform:translateY(0)}
  }
  
  .hero-badge{
  animation:floatSoft 4s ease-in-out infinite;
  }
.product-rating{
    display:flex;
    align-items:center;
    gap:4px;
    flex-wrap:wrap;
    font-size:14px;
    margin-top:4px;
    }
    
    .product-rating span{
    color:#64748b;
    font-size:13px;
    margin-left:4px;
    }

    .stars {
    font-size:14px;
    line-height:1;
    color: var(--gold-main) !important;
    }

    .stars.gray {
    color:#ccc !important;
    }

    .stars.gold {
    color:var(--gold-main) !important;
    }

    .reviews-count{
    color:#64748b;
    font-size:13px;
    }

    .review-rating-input{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    }

    .review-rating-label{
    color:#475569;
    font-size:14px;
    font-weight:500;
    }

    .review-rating-stars{
    display:flex;
    align-items:center;
    gap:4px;
    }

    .review-star{
    border:none;
    background:transparent;
    padding:0;
    font-size:22px;
    line-height:1;
    color:#ccc !important;
    cursor:pointer;
    transition:transform .15s ease, color .15s ease;
    }

    .review-star:hover,
    .review-star.is-active{
    color:var(--gold-main) !important;
    }

    .review-star:hover{
    transform:scale(1.06);
    }

.product-page svg,
.product-page svg path,
.product-page .star,
.product-page .rating span,
.product-page .review-stars span,
.product-page .review-star,
.product-page .stars{
color: var(--primary-yellow) !important;
fill: var(--primary-yellow) !important;
stroke: var(--primary-yellow) !important;
}

.star,
.review-stars span,
.rating span,
.stars,
.review-star,
.review-rating-stars .review-star{
color: var(--primary-yellow, var(--gold-main)) !important;
fill: var(--primary-yellow, var(--gold-main)) !important;
}

    /* FLOATING PRODUCTS */

.floating-product{
  animation: float 6s ease-in-out infinite;
}

.delay1{
  animation-delay: 1s;
}

.delay2{
  animation-delay: 2s;
}

.delay3{
  animation-delay: 3s;
}

@keyframes float{

  0%{
    transform: translateY(0px);
  }

  50%{
    transform: translateY(-14px);
  }

  100%{
    transform: translateY(0px);
  }

}

/* ===== PROMO VIDEO SECTION ===== */

.promo-video{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
  background-color:#0f172a;
}

.video-wrapper{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  overflow:hidden;
}

/* ===== VIDEO ===== */

.bg-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  z-index:0;
  pointer-events:none;
  background:transparent;
}

.video-container{
position:relative;
width:100%;
height:auto;
overflow:hidden;
}

.video-container video{
width:100%;
height:auto;
object-fit:cover;
display:block;
}

/* ===== HERO TEXT ===== */

.promo-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:1;

  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;

  width:90%;
  max-width:900px;

  color:white;

  opacity:0;
  animation:promoText 1.2s ease forwards;
  animation-delay:0.6s;
}

.promo-content h2{
  font-size:52px;
  font-weight:700;
  text-shadow:0 6px 25px rgba(0,0,0,0.4);
}

.promo-content p{
  font-size:20px;
  margin:15px 0 30px;
}

/* ===== BUTTON ===== */

/* ===== TEXT ANIMATION ===== */

@keyframes promoText{
  to{
    opacity:1;
    transform:translate(-50%,-50%);
  }
}

@media (max-width:768px){
.fade-section video{
width:100% !important;
height:auto !important;
object-fit:cover !important;
display:block;
}
}

/* ===== REMOVE GAP ===== */

.hero{
  margin-bottom:0;
  padding-bottom:0;
}

section{
  margin-top:0;
}
/* ===== PRODUCTS GRID ===== */

.products-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

/* адаптив */

@media (max-width:1200px){
  .products-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

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

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

.promo-banner{
  grid-column:1 / -1;
}

.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
}

.lightbox.hidden{
display:none;
}

.lightbox-img{
max-width:90%;
max-height:90%;
border-radius:12px;
}

.lightbox-close{
position:absolute;
top:20px;
right:30px;
font-size:40px;
color:white;
cursor:pointer;
line-height:1;
}

.lightbox-prev,
.lightbox-next{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:40px;
color:white;
background:rgba(0,0,0,0.4);
border:none;
cursor:pointer;
padding:10px 15px;
border-radius:50%;
}

.lightbox-prev{ left:20px; }
.lightbox-next{ right:20px; }


/* ===== PRODUCT CARDS ===== */

.product-card{
  position:relative;
  border-radius:18px;
  overflow:hidden;

  display:flex;
  flex-direction:column;

  height:100%;
  width:100%;

  background:white;

  opacity:0;
  transform:translateY(40px);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    opacity .8s ease;
}


/* scroll reveal */

.product-card.show{
  opacity:1;
  transform:translateY(0);
}


/* ===== IMAGE ===== */

.product-card{
  overflow:hidden;
}

.product-card .product-image,
.product-card > img{
  width:100%;
  aspect-ratio:1 / 1;
  overflow:hidden;
}

.product-card img{
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
  border-radius:16px 16px 0 0;
  transition:transform .5s ease;
}

.product-card .product-image img,
.product-card > img{
  width:100%;
  height:100%;
  object-fit:cover;
}


/* image zoom */

.product-card:hover img{
  transform:scale(1.06);
}


/* ===== GOLD BORDER ===== */

.product-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  padding:2px;

  background:linear-gradient(135deg,#E7C97F,#C9A64E);

  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite:xor;
  mask-composite:exclude;

  opacity:0;
  transition:opacity .35s ease;

  pointer-events:none;
}


/* hover border */

.product-card:hover::after{
  opacity:1;
}


/* mobile tap border */

.product-card.active::after{
  opacity:1;
}


/* ===== HOVER EFFECT ===== */

.product-card:hover{
  transform:translateY(-6px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    0 0 25px rgba(231,201,127,0.35);
}


/* ===== BUY BUTTON ===== */

.buy-btn{
  margin-top:auto;

  padding:14px 28px;

  border-radius:12px;
  border:none;

  cursor:pointer;

  font-size:16px;
  font-weight:600;

  color:#1a1a1a;

  background:linear-gradient(135deg,#E7C97F,#C9A64E);

  box-shadow:0 6px 18px rgba(201,164,92,0.45);

  transition:all .25s ease;
}


.buy-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(201,164,92,0.6);
}


.buy-btn:active{
  transform:scale(.96);
}


/* ===== PRODUCT PAGE BUTTON ===== */

.product-buy-btn{
  background:linear-gradient(135deg,#E7C97F,#C9A64E);
  color:#111;

  padding:16px 40px;

  border-radius:999px;

  font-size:16px;
  font-weight:600;

  border:none;

  cursor:pointer;

  display:inline-block;

  box-shadow:0 12px 30px rgba(201,164,78,0.35);

  transition:all .25s ease;
}


.product-buy-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(201,164,78,0.5);
}


/* ===== PRODUCT GALLERY ===== */

.product-gallery{
  position:relative;
  width:400px;
}


.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);

  background:#E7C97F;
  border:none;

  font-size:24px;

  width:40px;
  height:40px;

  border-radius:50%;

  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;
}


.gallery-arrow.left{
  left:-20px;
}


.gallery-arrow.right{
  right:-20px;
}

/* ===== UX UPGRADE OVERRIDES ===== */

.product-card{
  cursor:pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    opacity 0.8s ease;
  will-change:transform, box-shadow;
}

.product-card:hover{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.btn-primary{
  touch-action:manipulation;
  position:relative;
  z-index:10;
}

@media (hover:none){
  .product-card:hover{
    transform:none;
    box-shadow:0 14px 40px rgba(15, 23, 42, 0.08);
  }
}

@media (prefers-reduced-motion:reduce){
  .product-card,
  .btn-primary,
  #cart-toggle{
    transition:none !important;
  }
}

.product-card .product-rating{
  display:flex !important;
}

.product-comments-summary{
  display:flex;
  align-items:center;
  gap:4px;
  margin-top:8px;
  font-size:14px;
  font-weight:600;
  line-height:1;
}

.product-comments-summary__count{
  margin-left:4px;
  color:#64748b;
  font-size:13px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
}

.profile-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: #f3f3f3;
  border-radius: 999px;
  font-size: 12px;
  text-decoration: none;
  color: #111;
}

.profile-btn svg {
  width: 16px;
  height: 16px;
}

.product-detail-page header:first-of-type .max-w-6xl {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.product-detail-page header:first-of-type {
  min-height: 60px !important;
}

.product-detail-page header:first-of-type > div,
.product-detail-page header:first-of-type .max-w-6xl > div {
  min-height: 40px;
  align-items: center !important;
}

.product-detail-page header:first-of-type .gap-6 {
  gap: 14px !important;
}

.product-detail-page header:first-of-type .text-xl {
  font-size: 1rem !important;
  line-height: 1.2 !important;
}

.product-detail-page #product-review-summary {
  margin-top: 0;
  margin-bottom: 12px;
}

.product-detail-page .stars,
.product-detail-page #product-review-summary .stars,
.product-detail-page [data-reviews-list] .stars {
  color: var(--gold-main) !important;
}

.product-detail-page .stars.gray {
  color: #ccc !important;
}

.product-detail-page .review-star,
.product-detail-page .review-star {
  color: #ccc !important;
}

.product-detail-page .review-star.is-active,
.product-detail-page .review-star:hover {
  color: var(--gold-main) !important;
}

.product-page .stars,
.product-page .stars *,
.product-page .review-star{
  color: var(--gold-main) !important;
  fill: var(--gold-main) !important;
}

.product-page .stars.gray{
  color: #ccc !important;
  fill: #ccc !important;
}

.product-page .review-star{
  color: #ccc !important;
  fill: #ccc !important;
}

.product-page .review-star.is-active,
.product-page .review-star:hover{
  color: var(--gold-main) !important;
  fill: var(--gold-main) !important;
}
