:root {
  --gold: #caa06e;
  --gold-soft: #e2c8a3;
  --gold-2: #e7d1ac;
  --brown: #6b3e2e;
  --brown-deep: #3a2e2b;
  --ink: #4a4340;
  --cream: #f7efe6;
  --sand: #efe2d2;
  --white: #fff;
  --shadow: 0 20px 60px rgba(106, 62, 46, 0.18);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Cairo", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(
    1200px 800px at 50% -10%,
    var(--gold-soft) 0%,
    var(--cream) 48%,
    var(--sand) 100%
  );
  overflow-x: hidden;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, 92%);
  margin: auto;
}

/* Glassy sticky nav */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
/* Header actions container (cart + accessibility) */
.nav > button:first-of-type,
.nav > .aw-fab {
  margin-right: 0; /* Reset any default margins */
}
.nav-inner {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(202, 160, 110, 0.45);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px 18px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between; /* Space between brand and actions */
  width: 100%;
}
.brand {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  color: var(--brown-deep);
  letter-spacing: 0.6px;
}
.nav a {
  text-decoration: none;
  font-weight: 700;
  opacity: 0.85;
}
.nav a:hover {
  opacity: 1;
}

/* Header actions container (right side) */
.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-inline-start: auto; /* Push to right side */
}

/* language switcher */
.lang-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
}
.lang-btn {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(202, 160, 110, 0.7);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  cursor: pointer;
}
.lang-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--brown-deep);
  font-weight: 800;
}

/* Dunes parallax */
.dunes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.dune {
  position: absolute;
  left: 0;
  right: 0;
  height: 40vh;
  background-repeat: no-repeat;
  background-size: 180% 100%;
  opacity: 0.55;
  filter: blur(1px);
}
.d1 {
  bottom: 0;
  background-image: radial-gradient(
      120% 120% at 80% 20%,
      rgba(255, 255, 255, 0.1),
      rgba(0, 0, 0, 0) 60%
    ),
    linear-gradient(to left, #ead7bf, #f3e6d2);
}
.d2 {
  bottom: -6vh;
  opacity: 0.45;
  background-image: linear-gradient(to right, #eddcc5, #f4e9d8);
}
.d3 {
  bottom: -12vh;
  opacity: 0.35;
  background-image: linear-gradient(to left, #f1e4cf, #f7efe3);
}

/* HERO */
header.hero {
  padding: 120px 0 20px;
  text-align: center;
  position: relative;
}
.eyebrow {
  color: var(--brown);
  font-weight: 800;
  letter-spacing: 3px;
}
h1 {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(30px, 6vw, 64px);
  margin: 0.2em 0;
  color: var(--brown-deep);
}
.subtitle {
  font-size: clamp(16px, 2.2vw, 22px);
  opacity: 0.9;
  max-width: 820px;
  margin: 0 auto 28px;
}
.cta {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--brown-deep);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(202, 160, 110, 0.4);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(202, 160, 110, 0.5);
}
/* Cart icon in nav */
.cart-icon-btn {
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  box-shadow: 0 6px 14px rgba(202, 160, 110, 0.35);
}

/* Move cart button to floating buttons container if it exists */
.floating-buttons .cart-icon-btn {
  pointer-events: auto;
  margin: 0;
}

.cart-icon-count {
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--brown-deep);
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* HERO products stage (3 together) */
.stage {
  position: relative;
  margin: 36px auto 0;
  width: min(980px, 92%);
  height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 26px;
  perspective: 1200px;
}
.pedestal {
  position: absolute;
  bottom: 0;
  width: 82%;
  height: 72px;
  border-radius: 28px;
  background: radial-gradient(
      120% 200% at 50% -60%,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(#e9d6bd, #d9c1a3);
  box-shadow: 0 40px 60px rgba(58, 46, 43, 0.15) inset, var(--shadow);
}
.product {
  width: min(30%, 240px);
  aspect-ratio: 3/6;
  position: relative;
  display: grid;
  place-items: end center;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
  z-index: 4;
}
.product:nth-child(2) {
  animation-delay: -1s;
}
.product:nth-child(3) {
  animation-delay: -2s;
}
.bottle {
  width: 86%;
  filter: drop-shadow(0 14px 18px rgba(58, 46, 43, 0.25));
  transform: translateZ(40px) rotateX(0);
  transition: transform 0.4s ease;
}
.product:hover .bottle {
  transform: translateZ(80px) rotateX(2deg);
}
.tag {
  position: absolute;
  bottom: 100%;
  margin-bottom: 12px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(202, 160, 110, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  font-weight: 800;
  color: var(--brown);
  box-shadow: var(--shadow);
  transform: translateZ(70px);
  opacity: 0;
  translate: 0 8px;
  transition: opacity 0.35s ease, translate 0.35s ease;
}
.product:hover .tag {
  opacity: 1;
  translate: 0 0;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Section title */
.sec-title {
  margin: 70px 0 16px;
  text-align: center;
  color: var(--brown-deep);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
}

/* === Product spotlight sections (3 products) === */
.spot {
  margin: 16px auto 28px;
  width: min(980px, 92%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.spot-img {
  justify-self: center;
  max-width: 82%;
  max-height: 360px;
  opacity: 0;
  transform: translateX(-60px);
  filter: drop-shadow(0 18px 24px rgba(58, 46, 43, 0.25));
  transition: transform 0.8s ease, opacity 0.8s ease;
  align-self: center;
}

.spot-copy {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(202, 160, 110, 0.4);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px;
  opacity: 0;
  transform: translateX(60px);
  transition: transform 0.8s ease, opacity 0.8s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  padding-bottom: 24px;
  height: 440px;
  overflow-y: auto;
  font-size: 0.9rem;
  line-height: 1.7;
  direction: rtl;
}

.spot h2 {
  margin: 6px 0 10px;
  color: var(--brown-deep);
}

.spot-copy h2 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--brown-deep);
}

/* Reveal animation */
.show .spot-img,
.show .spot-copy {
  opacity: 1;
  transform: none;
}

/* Scrollbar inside product description */
.spot-copy::-webkit-scrollbar {
  width: 4px;
}
.spot-copy::-webkit-scrollbar-thumb {
  background: rgba(202, 160, 110, 0.6);
  border-radius: 999px;
}

/* Why us */
.why-wrap {
  width: min(980px, 92%);
  margin: 10px auto 0;
}
.why-copy {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(202, 160, 110, 0.45);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px;
  opacity: 0;
  translate: 0 14px;
  transition: opacity 0.6s ease, translate 0.6s ease;
}
.why-copy.reveal {
  opacity: 1;
  translate: 0 0;
}

/* Big CTA */
.big-cta {
  margin: 40px auto 80px;
  text-align: center;
}
.big-cta .cta {
  font-size: clamp(16px, 2vw, 22px);
  padding: 16px 34px;
}

footer {
  padding: 20px 0 60px;
  text-align: center;
  opacity: 0.9;
}

/* ===== FAQ ===== */
.faq {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(202, 160, 110, 0.45);
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: var(--shadow);
  margin: 60px auto;
  direction: rtl;
}

.faq h2 {
  text-align: center;
  color: var(--brown-deep);
  margin-bottom: 24px;
  font-size: clamp(20px, 2.4vw, 26px);
}

.faq-item {
  border-bottom: 1px solid rgba(202, 160, 110, 0.25);
  padding-block: 8px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: right;
  cursor: pointer;
  font: inherit;
  color: var(--brown-deep);
}

.faq-q span:first-child {
  font-weight: 700;
  font-size: 1rem;
}

.faq-icon {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  line-height: 1.7;
  color: var(--ink);
}

.faq-a-inner {
  padding-bottom: 8px;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

/* ===== סרט נע בתוך הפדסטל ===== */
.science-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: 82%;
  border-radius: 999px;
  background: linear-gradient(to right, #e9d6bd, #d9c1a3);
  border: 1px solid rgba(202, 160, 110, 0.45);
  box-shadow: 0 10px 25px rgba(58, 46, 43, 0.15);
  overflow: hidden;
  direction: rtl;
  padding-block: 4px;
  z-index: 3;
}

.science-track {
  display: flex;
  width: max-content;
  animation: science-scroll 24s linear infinite;
}

.science-loop {
  display: inline-flex;
  gap: 18px;
  white-space: nowrap;
  align-items: center;
  padding-inline: 22px;
}

.science-pill {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(202, 160, 110, 0.45);
  box-shadow: 0 4px 10px rgba(106, 62, 46, 0.14);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brown-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: max-content;
  transition: transform 0.25s ease, background 0.25s ease;
}

.science-pill:hover {
  transform: scale(1.05);
  background: #fff;
}

@keyframes science-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .stage {
    height: 320px;
  }
  .product {
    width: 34%;
  }
}

@media (max-width: 768px) {
  .stage {
    height: 280px;
    gap: 0;
    justify-content: center;
  }
  .product {
    flex: 0 0 calc(33.333% - 2px);
    width: auto;
    margin: 0;
    animation: float 5s ease-in-out infinite;
  }
  .bottle {
    width: 108%;
    transform: translateZ(50px);
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.25));
  }
  .pedestal {
    width: 92%;
    height: 55px;
    bottom: 10px;
    border-radius: 24px;
  }

  .science-bar {
    width: 92%;
    bottom: 8px;
    padding-block: 3px;
  }
  .science-loop {
    gap: 12px;
    padding-inline: 14px;
  }
  .science-pill {
    font-size: 0.75rem;
    padding: 4px 8px;
  }

  .spot {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
  }
  .spot-img {
    max-width: 72%;
    max-height: 380px;
  }
  .spot-copy {
    height: 480px;
    font-size: 0.85rem;
    padding: 16px;
  }
  .spot-copy h2 {
    font-size: 1rem;
  }

  .faq {
    padding: 22px 18px;
  }
  .faq-q span:first-child {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .science-loop {
    gap: 10px;
  }
  .science-track {
    animation-duration: 28s;
  }
  .science-pill {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
}
/* Buy strip under each product description */
.spot-buy {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px dashed rgba(202, 160, 110, 0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: sticky;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(247, 239, 230, 0.96),
    rgba(247, 239, 230, 0.6)
  );
}

.spot-price {
  font-weight: 800;
  color: var(--brown-deep);
}

.spot-add-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--brown-deep);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(202, 160, 110, 0.5);
  white-space: nowrap;
}
.spot-add-btn:hover {
  transform: translateY(-1px);
}
/* Cart side panel overlay */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: flex-end;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  width: min(420px, 90%);
  height: 100%;
  background: radial-gradient(
      120% 120% at 20% 0%,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(to bottom, #f7efe6, #efe2d2);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
}

.cart-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cart-panel-title {
  font-weight: 800;
  color: var(--brown-deep);
}

.cart-panel-close {
  border: none;
  background: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.cart-panel-body {
  flex: 1;
  overflow-y: auto;
  padding-block: 8px;
  border-top: 1px solid rgba(202, 160, 110, 0.3);
  border-bottom: 1px solid rgba(202, 160, 110, 0.3);
  margin-block: 8px;
}

.cart-panel-empty {
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: center;
  margin-top: 20px;
}

.cart-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  gap: 6px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(202, 160, 110, 0.4);
  font-size: 0.85rem;
}

.cart-item-name {
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 4px;
}

.cart-item-qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cart-item-qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(202, 160, 110, 0.8);
  background: #fff;
  cursor: pointer;
  font-size: 0.85rem;
}

.cart-item-price-line {
  text-align: end;
}

.cart-item-remove {
  border: none;
  background: none;
  color: #b45050;
  cursor: pointer;
  font-size: 0.8rem;
  margin-top: 2px;
}

.cart-panel-footer {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.cart-panel-total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  color: var(--brown-deep);
}

.cart-panel-note {
  font-size: 0.8rem;
  opacity: 0.85;
  line-height: 1.5;
}

.cart-panel-checkout {
  margin-top: 4px;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--brown-deep);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(202, 160, 110, 0.5);
}

.cart-panel-checkout:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Checkout Form Modal */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}

.checkout-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.checkout-panel {
  width: min(600px, 95%);
  max-height: 90vh;
  background: radial-gradient(
      120% 120% at 20% 0%,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(to bottom, #f7efe6, #efe2d2);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(58, 46, 43, 0.3);
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  direction: rtl;
}

.checkout-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(202, 160, 110, 0.3);
}

.checkout-panel-title {
  font-weight: 800;
  color: var(--brown-deep);
  font-size: 1.3rem;
}

.checkout-panel-close {
  border: none;
  background: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--brown-deep);
  opacity: 0.7;
  transition: opacity 0.2s ease;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-panel-close:hover {
  opacity: 1;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-form-group label {
  font-weight: 700;
  color: var(--brown-deep);
  font-size: 0.9rem;
}

.checkout-form-group input,
.checkout-form-group textarea {
  padding: 10px 14px;
  border: 1px solid rgba(202, 160, 110, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brown-deep);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-form-group input:focus,
.checkout-form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(202, 160, 110, 0.15);
}

.checkout-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.checkout-error {
  color: #d32f2f;
  font-size: 0.85rem;
  margin-top: -4px;
  min-height: 18px;
}

.checkout-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-end;
}

.checkout-btn-cancel,
.checkout-btn-submit {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
}

.checkout-btn-cancel {
  background: rgba(255, 255, 255, 0.9);
  color: var(--brown-deep);
  border: 1px solid rgba(202, 160, 110, 0.5);
}

.checkout-btn-cancel:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}

.checkout-btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--brown-deep);
  box-shadow: 0 8px 22px rgba(202, 160, 110, 0.4);
}

.checkout-btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(202, 160, 110, 0.5);
}

.checkout-btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .checkout-panel {
    width: 100%;
    max-height: 95vh;
    padding: 18px;
    border-radius: 16px;
  }

  .checkout-form-actions {
    flex-direction: column-reverse;
  }

  .checkout-btn-cancel,
  .checkout-btn-submit {
    width: 100%;
  }
}

.hero {
  position: relative;
  z-index: 2;
}
.cta {
  position: relative;
  z-index: 3;
}
/* קונטיינר של כל הקישורים בפוטר */
.footer-links {
  margin: 12px 0 10px; /* רווח מעל ומתחת לשורת הקישורים */
  display: flex; /* מסדר את הקישורים בשורה (Flexbox) */
  flex-wrap: wrap; /* אם אין מקום בשורה — יורד שורה ולא נשבר */
  gap: 10px; /* רווח קבוע בין קישור לקישור */
  align-items: center; /* מיישר אנכית את כל האייטמים לאמצע */
  justify-content: center; /* ממרכז את כל הקישורים באמצע הפוטר */
  text-align: center; /* אם יורד לשורה שנייה — גם שם יישאר ממורכז */
}

/* עיצוב של כל קישור בפוטר */
.footer-link {
  color: inherit; /* הקישור יקבל את אותו צבע של הטקסט בפוטר */
  text-decoration: none; /* מוריד קו תחתון "רגיל" של לינק */
  opacity: 0.9; /* קצת שקיפות כדי להיראות עדין */
  border-bottom: 1px solid transparent; /* קו תחתון "מוכן" אבל שקוף */
  padding-bottom: 2px; /* מרחק קטן בין הטקסט לקו התחתון */
}

/* מה קורה כשעוברים עם העכבר על הקישור */
.footer-link:hover {
  opacity: 1; /* נהיה יותר ברור (בלי שקיפות) */
  border-bottom-color: currentColor; /* הקו התחתון הופך לצבע של הטקסט */
}

/* הנקודה • שמפרידה בין קישורים */
.dot {
  opacity: 0.35; /* הופך את הנקודה ליותר חלשה ועדינה */
}
.cart-bar{
  position: fixed; bottom: 16px; left: 16px;
  background:#fff; border:1px solid rgba(0,0,0,0.12);
  border-radius:16px; padding:10px 12px; z-index:9999;
  display:flex; gap:10px; align-items:center;
}

.cart-btn{
  padding:10px 12px; border-radius:12px;
  border:1px solid rgba(0,0,0,0.15); background:#fff; cursor:pointer;
}
.cart-btn.primary{ background:#111; color:#fff; border-color:#111; }

.cart-modal{
  position: fixed; inset:0; background: rgba(0,0,0,0.4);
  display:flex; align-items:center; justify-content:center; z-index:10000;
}
.cart-box{
  width:min(520px, 92vw);
  background:#fff; border-radius:18px; padding:16px;
}
.cart-item{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0; border-bottom:1px solid rgba(0,0,0,0.08);
}
.cart-actions{ display:flex; justify-content:space-between; gap:10px; margin-top:12px; }
.cart-total{ margin-top:10px; font-weight:700; }
.qty-btn{ padding:6px 10px; border-radius:10px; border:1px solid rgba(0,0,0,0.15); background:#fff; cursor:pointer; }

/* ===== CART (matches your HTML: .cart-overlay + .cart-panel) ===== */

.cart-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 9999;

  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .2s ease, visibility .2s ease;
}

/* show when aria-hidden="false" (no need extra class) */
.cart-overlay[aria-hidden="false"]{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-panel{
  position: absolute;
  top: 0;
  right: 0;     /* RTL: open from right */
  left: auto;
  height: 100vh;
  width: min(460px, 92vw);
  background: #fbf7f1;

  display: flex;
  flex-direction: column;
  direction: rtl;

  transform: translateX(110%); /* start off-screen to the right */
  transition: transform .25s ease;
}

/* slide in when open */
.cart-overlay[aria-hidden="false"] .cart-panel{
  transform: translateX(0);
}

/* Fix the big empty area: body scroll + sticky footer */
.cart-panel-body{
  flex: 1;
  overflow: auto;
  padding: 14px 18px;
}

.cart-panel-footer{
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(0,0,0,.08);
  background: linear-gradient(to top, #f2e4cc, #fbf7f1);
}

.cart-panel-head{
  padding: 18px 18px 10px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-panel-close{
  font-size: 26px;
  line-height: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
}
/* ===== Minimal cart rows style ===== */
#cart-items { display: grid; gap: 12px; }

.cart-row{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  padding: 12px;
}

.cart-row-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.cart-row-title{ font-weight: 800; }

.cart-row-remove{
  border:0;
  background:transparent;
  cursor:pointer;
  font-size:18px;
  line-height:1;
}

.cart-row-bottom{
  margin-top: 8px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

.cart-row-price{ font-weight:800; }

.cart-row-qty{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.qty-btn{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.22);
  background:#fff;
  cursor:pointer;
  font-size:18px;
}

.qty-btn:disabled{
  opacity:.45;
  cursor:not-allowed;
}

.qty-num{
  min-width: 18px;
  text-align:center;
  font-weight:800;
}

.cart-row-hint{
  margin-top: 6px;
  opacity: .75;
  font-size: 13px;
}
