:root {
  --bg: #f8f3e9;
  --surface: #ffffff;
  --text: #2c342b;
  --muted: #6a715f;
  --accent: #7f9c53;
  --accent-dark: #4c6039;
  --border: #e0dccf;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  direction: rtl;
  text-align: right;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header,
.site-footer {
  padding: 24px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  padding: 10px;
}

.brand h1 {
  margin: 0;
  font-size: clamp(1.75rem, 2.1vw, 2.5rem);
}

.brand p {
  margin: 4px 0 0;
  color: var(--muted);
}

.social-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.social-nav a {
  color: var(--accent-dark);
  font-weight: 600;
}

.whatsapp-link {
  background: #25d366;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
}

.hero-text .certified {
  color: var(--accent);
  font-weight: 700;
  margin: 14px 0 0;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  background-image: radial-gradient(circle at 12% 12%, rgba(218, 79, 79, 0.14), transparent 18%), radial-gradient(circle at 88% 18%, rgba(243, 185, 14, 0.14), transparent 16%), radial-gradient(circle at 20% 78%, rgba(62, 152, 56, 0.14), transparent 20%);
}

.hero-video {
  width: 100%;
  display: flex;
  justify-content: center;
  background: rgba(247, 244, 236, 0.95);
  padding: 14px 0 10px;
}

.main-video {
  width: 100%;
  max-width: 1200px;
  height: 8cm;
  min-height: 340px;
  object-fit: cover;
  border-radius: 30px;
  border: 2px solid rgba(127, 156, 83, 0.25);
}

.promotions {
  padding: 16px 0;
  margin: 0 20px;
}

.promo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(127,156,83,0.12);
  border: 1px solid rgba(127,156,83,0.25);
  border-radius: 24px;
  padding: 14px 20px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.promo-badge {
  display: inline-block;
  background: #e2b73f;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(226, 183, 63, 0.65);
}

.promo-header::before {
  content: "✨";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) scale(1);
  font-size: 1.5rem;
  opacity: 0.8;
  animation: sparkle 1.8s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.85; }
  50% { transform: translateY(-52%) scale(1.2); opacity: 1; }
}

.promo-track {
  display: flex;
  gap: 18px;
  overflow: hidden;
  padding-bottom: 10px;
  animation: scroll-left 24s linear infinite;
}

.promo-card {
  min-width: 280px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.promo-card:hover img,
.zoomable:hover {
  transform: scale(1.05);
}

.promo-card-link {
  display: block;
  text-decoration: none;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.45));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.promo-label {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 10px;
}

.promo-overlay p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0 20px;
}

.hero-text .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.hero-text h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.hero-text p {
  margin: 0 0 28px;
  max-width: 620px;
  color: var(--muted);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hero-stats div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
}

.hero-stats strong {
  display: block;
  font-size: 1.35rem;
  color: var(--accent-dark);
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.products,
.order-section,
.benefits,
.video-section,
.blog-section,
.product-presentation {
  margin-top: 32px;
}

.products h3,
.order-section h3,
.benefits h3,
.video-section h3,
.blog-section h3,
.product-presentation h3 {
  margin-bottom: 18px;
  font-size: 1.8rem;
}

.product-grid,
.benefit-grid,
.video-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.blog-link {
  text-decoration: none;
}

.product-card,
.benefit-card,
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
}

.product-card img,
.benefit-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card h4,
.blog-card h4 {
  margin: 20px 20px 10px;
}

.product-card .price {
  margin: 0 20px 12px;
  color: var(--accent-dark);
  font-size: 1.25rem;
  font-weight: 700;
}

.product-card p,
.blog-card p {
  margin: 0 20px 20px;
  color: var(--muted);
}

.product-presentation .presentation-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-presentation img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
}

.order-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.order-info {
  background: linear-gradient(180deg, rgba(106,153,78,0.12), rgba(255,255,255,0.85));
  border: 1px solid rgba(106,153,78,0.2);
  border-radius: 28px;
  padding: 32px;
}

.order-info p,
.order-info li {
  color: var(--muted);
}

.order-info ul {
  margin: 18px 0 0;
  padding-right: 20px;
}

.order-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
}

.form-row {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.form-row label {
  font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.form-row textarea {
  resize: vertical;
}

.zoomable {
  cursor: zoom-in;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 50;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.image-modal.active {
  display: flex;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

#modalCaption {
  color: #fff;
  margin-top: 14px;
  text-align: center;
  max-width: 90%;
}

.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.total-row button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 14px 24px;
  border-radius: 16px;
  font-size: 1rem;
  cursor: pointer;
}

.total-row button:hover {
  background: var(--accent-dark);
}

.whatsapp-order {
  border: none;
  background: #25d366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  cursor: pointer;
  font-size: 1rem;
}

.whatsapp-order:hover {
  background: #1da851;
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-title {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
}

.contact-card h3 {
  margin-top: 0;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  color: var(--muted);
}

.detail-list li {
  margin-bottom: 10px;
}

.advice-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.advice-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 20px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
}

.advice-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
}

.advice-card div {
  padding: 0;
}

.advice-card h3 {
  margin: 0 0 8px;
}

.video-grid video {
  border-radius: 20px;
  background: #000;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--accent-dark);
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero,
  .order-section,
  .product-grid,
  .benefit-grid,
  .video-grid,
  .advice-section,
  .product-presentation .presentation-gallery,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .promo-track {
    animation: none;
  }

  .promo-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header,
  .site-footer,
  main {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 640px) {
  .hero {
    gap: 24px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .total-row {
    flex-direction: column;
    align-items: stretch;
  }

  .promo-card {
    min-width: 240px;
  }
}
  background: #fff;
  color: var(--text);
  font: inherit;
}

.form-row textarea {
  resize: vertical;
}

.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.total-row button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 14px 24px;
  border-radius: 16px;
  font-size: 1rem;
  cursor: pointer;
}

.total-row button:hover {
  background: var(--accent-dark);
}

.whatsapp-order {
  border: none;
  background: #25d366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  cursor: pointer;
  font-size: 1rem;
}

.whatsapp-order:hover {
  background: #1da851;
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-title {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
}

.contact-card h3 {
  margin-top: 0;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  color: var(--muted);
}

.detail-list li {
  margin-bottom: 10px;
}

.advice-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.advice-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 20px;
  align-items: center;
}

.advice-card div {
  padding: 0;
}

.advice-card h3 {
  margin: 0 0 8px;
}

.video-grid video {
  border-radius: 20px;
  background: #000;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--accent-dark);
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero,
  .order-section,
  .product-grid,
  .benefit-grid,
  .video-grid,
  .advice-section {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer,
  main {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 640px) {
  .hero {
    gap: 24px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .total-row {
    flex-direction: column;
    align-items: stretch;
  }
}
