/* Main stylesheet for Eliyahu K Ta'amim landing page */
:root {
  --cream: #fbf2df;
  --cream-deep: #f3dfbd;
  --paper: #fffaf0;
  --brown: #4a260f;
  --brown-soft: #6d3b1d;
  --orange: #d65a16;
  --orange-dark: #a83d0f;
  --gold: #e4a21a;
  --green: #66732d;
  --text: #2e1a0e;
  --muted: #786150;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(74, 38, 15, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Heebo", "Rubik", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(214, 90, 22, 0.10), transparent 28rem),
    radial-gradient(circle at 90% 30%, rgba(228, 162, 26, 0.13), transparent 24rem),
    linear-gradient(180deg, var(--cream) 0%, #fff9ed 46%, var(--cream) 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(74, 38, 15, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 38, 15, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  top: -120px;
  right: 16px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--brown);
  color: var(--white);
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(74, 38, 15, 0.08);
  background: rgba(251, 242, 223, 0.88);
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(100% - 28px, var(--container));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--brown);
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(74, 38, 15, 0.9);
  box-shadow: 0 5px 14px rgba(74, 38, 15, 0.15);
}

.brand-name {
  font-size: 1.02rem;
  white-space: nowrap;
}

.menu-toggle {
  width: 46px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(74, 38, 15, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.75);
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: var(--brown);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-menu {
  position: absolute;
  top: 76px;
  right: 14px;
  left: 14px;
  display: none;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 12px;
  list-style: none;
  border: 1px solid rgba(74, 38, 15, 0.12);
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.98);
  box-shadow: var(--shadow);
}

.primary-menu.is-open {
  display: flex;
}

.primary-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  color: var(--brown);
}

.primary-menu a:hover,
.primary-menu a:focus {
  background: rgba(214, 90, 22, 0.10);
}

.header-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus,
.text-link:hover,
.text-link:focus {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 12px 24px rgba(214, 90, 22, 0.30);
}

.btn-secondary {
  color: var(--brown);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(74, 38, 15, 0.14);
}

.btn-product {
  width: 100%;
  margin-top: 12px;
  color: var(--white);
  background: var(--brown);
}

.section-padding {
  padding: 58px 16px;
}

.hero-section {
  position: relative;
  width: min(100% - 24px, var(--container));
  margin: 18px auto 0;
  padding: 26px 16px 22px;
  display: grid;
  gap: 26px;
  overflow: hidden;
  border: 1px solid rgba(74, 38, 15, 0.10);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(246, 226, 190, 0.72)),
    radial-gradient(circle at 20% 20%, rgba(214, 90, 22, 0.18), transparent 19rem);
  box-shadow: var(--shadow);
}

.hero-background-mark {
  position: absolute;
  top: 18%;
  right: -16px;
  color: rgba(74, 38, 15, 0.045);
  font-size: clamp(4.5rem, 18vw, 11rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.hero-content,
.hero-showcase,
.about-content,
.cta-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-weight: 900;
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--brown);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 12vw, 5.8rem);
  max-width: 12ch;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 8vw, 4rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.hero-text {
  max-width: 58ch;
  margin-bottom: 22px;
  color: var(--brown-soft);
  font-size: 1.08rem;
  font-weight: 500;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(74, 38, 15, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--brown);
  font-size: 0.95rem;
  font-weight: 800;
}

.trust-list i {
  color: var(--orange);
}

.featured-product-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.70);
  box-shadow: 0 12px 32px rgba(74, 38, 15, 0.12);
}

.featured-product-image {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  object-position: center;
  background: var(--cream-deep);
  border-radius: 24px 24px 0 0;
}

.featured-product-info {
  padding: 16px;
}

.featured-product-info p {
  margin-bottom: 0;
  color: var(--muted);
}

.heat-badge,
.product-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-size: 0.86rem;
  font-weight: 900;
}

.intro-strip {
  width: min(100% - 24px, var(--container));
  margin: 18px auto 0;
  padding: 18px;
  border-radius: 22px;
  background: var(--brown);
  color: var(--paper);
  text-align: center;
  box-shadow: var(--shadow);
}

.intro-strip p {
  margin: 0;
  font-size: clamp(1.1rem, 4vw, 1.65rem);
  font-weight: 900;
}

.bundle-section {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.bundle-card {
  overflow: hidden;
  border: 1px solid rgba(214, 90, 22, 0.20);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.95), rgba(244, 210, 157, 0.78)),
    radial-gradient(circle at 15% 25%, rgba(214, 90, 22, 0.18), transparent 18rem);
  box-shadow: var(--shadow);
}

.bundle-image-wrap {
  margin: 0;
  background: var(--cream-deep);
}

.bundle-image-wrap img {
  width: 100%;
  object-fit: contain;
}

.bundle-content {
  padding: 22px 18px 24px;
}

.bundle-content p:not(.eyebrow) {
  color: var(--brown-soft);
  font-size: 1.05rem;
  font-weight: 600;
}

.bundle-points {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}

.bundle-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(74, 38, 15, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--brown);
  font-weight: 900;
}

.bundle-points i {
  color: var(--orange);
}

.section-heading {
  width: min(100%, var(--container));
  margin: 0 auto 28px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.compact {
  text-align: center;
}

.section-heading.compact p:not(.eyebrow) {
  margin-inline: auto;
}

.products-grid {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(74, 38, 15, 0.10);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 12px 30px rgba(74, 38, 15, 0.10);
}

.product-card figure {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(228, 162, 26, 0.18), transparent 16rem),
    var(--cream-deep);
}

.product-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  object-position: center;
}

.product-content {
  padding: 20px;
}

.product-content p {
  color: var(--muted);
}

.product-tag.hot,
.product-tag.very-hot {
  background: #b73312;
}

.product-tag.medium {
  background: var(--green);
}

.product-tag.mild {
  background: #c67c21;
}

.product-tag.oil {
  background: #7b3d17;
}

.product-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.product-details li {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(214, 90, 22, 0.10);
  color: var(--brown);
  font-size: 0.92rem;
  font-weight: 800;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 14px 0 12px;
  padding: 12px 14px;
  border: 1px solid rgba(214, 90, 22, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(214, 90, 22, 0.12), rgba(255, 250, 240, 0.82));
}

.price-value {
  color: var(--orange-dark);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.price-note {
  color: var(--brown-soft);
  font-size: 0.95rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  font-weight: 900;
  transition: transform 0.2s ease;
}

.about-section {
  width: min(100% - 24px, var(--container));
  margin: 0 auto;
  display: grid;
  gap: 22px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(246, 226, 190, 0.78));
  box-shadow: var(--shadow);
}

.about-image-card {
  overflow: hidden;
  border-radius: 26px;
  background: var(--paper);
}

.about-image-card img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: var(--paper);
}

.about-content > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.values-grid {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.values-grid article,
.process-steps li,
.faq-list details {
  padding: 18px;
  border: 1px solid rgba(74, 38, 15, 0.10);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 240, 0.78);
}

.values-grid i {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 1.6rem;
}

.values-grid p,
.process-steps p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.use-cases-section {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.use-cases-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.use-cases-list span {
  padding: 11px 15px;
  border: 1px solid rgba(74, 38, 15, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--brown);
  font-weight: 900;
}

.process-steps {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.process-steps li {
  position: relative;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 1.1rem;
  font-weight: 900;
}

.cta-section {
  padding: 26px 12px 58px;
}

.cta-card {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 30px 18px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(74, 38, 15, 0.96), rgba(130, 55, 17, 0.94)),
    radial-gradient(circle at 10% 20%, rgba(214, 90, 22, 0.35), transparent 20rem);
  color: var(--paper);
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-card h2,
.cta-card .eyebrow {
  color: var(--paper);
}

.cta-card p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.86);
}

.faq-section {
  width: min(100%, 900px);
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--brown);
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-list details[open] {
  background: rgba(255, 255, 255, 0.70);
}

.faq-list p {
  padding-top: 12px;
}

.site-footer {
  padding: 36px 16px 92px;
  background: rgba(74, 38, 15, 0.96);
  color: var(--paper);
}

.footer-content {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  gap: 14px;
  justify-items: start;
}

.footer-brand {
  color: var(--paper);
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.45);
}

.footer-content p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.78);
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7ee081;
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.34);
  font-weight: 900;
}

.floating-whatsapp i {
  font-size: 1.35rem;
}

@media (min-width: 560px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .product-card:not(.product-card-large) {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }

  .product-card:not(.product-card-large) img {
    height: 100%;
    min-height: 300px;
  }
}

@media (min-width: 760px) {
  .section-padding {
    padding-block: 76px;
  }

  .bundle-card {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    align-items: center;
  }

  .bundle-image-wrap {
    height: 100%;
  }

  .bundle-image-wrap img {
    height: 100%;
  }

  .bundle-content {
    padding: 30px;
  }

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

  .product-card-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .product-card-large img {
    min-height: 560px;
  }

  .about-section {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    padding: 28px;
  }

  .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-card {
    padding: 48px 36px;
  }
}

@media (min-width: 980px) {
  .navbar {
    min-height: 84px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-name {
    font-size: 1.18rem;
  }

  .menu-toggle {
    display: none;
  }

  .primary-menu {
    position: static;
    display: flex;
    flex-direction: row;
    flex: 1;
    justify-content: center;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .primary-menu a {
    padding: 10px 14px;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 17px;
    border-radius: 999px;
    color: var(--white);
    background: #25d366;
    font-weight: 900;
  }

  .hero-section {
    min-height: calc(100vh - 112px);
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
    padding: 48px;
  }

  .hero-showcase {
    justify-self: end;
  }

  .featured-product-card {
    max-width: 500px;
    transform: rotate(-1deg);
  }

  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-card:not(.product-card-large) {
    display: block;
  }

  .product-card-large {
    grid-column: span 2;
    grid-row: span 2;
    grid-template-columns: 1fr;
  }

  .product-card-large img {
    min-height: auto;
  }

  .product-card:not(.product-card-large) img {
    min-height: 0;
    height: auto;
  }

  .footer-content {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .site-footer {
    padding-bottom: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
