/* styles.css */
:root {
  color-scheme: dark;

  --bg: #0f1113;
  --bg2: #111417;
  --surface: #171a1f;
  --surface2: #1d2128;

  --text: #f5f0e6;
  --muted: rgba(245, 240, 230, 0.68);

  /* Brand accents */
  --gold: #d6b15a;       /* charcoal accent */
  --gold-soft: rgba(214, 177, 90, 0.18);

  --green: #7fb069;      /* vegetables accent */
  --green-soft: rgba(127, 176, 105, 0.18);

  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 30px rgba(0, 0, 0, 0.35);

  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Tajawal", "Cairo", "Segoe UI", sans-serif;
  line-height: 1.75;
  background:
    radial-gradient(circle at 15% 0%, var(--gold-soft), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.05), transparent 45%),
    var(--bg);
  color: var(--text);
}

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

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

:focus-visible {
  outline: 2px solid rgba(214, 177, 90, 0.35);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Header */
.site-header {
  background: rgba(15, 17, 19, 0.78);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.2rem;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
}

.logo-mark {
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  letter-spacing: 0.7px;
  font-size: 0.95rem;
}

.logo-text {
  font-size: 1.1rem;
  color: rgba(245, 240, 230, 0.92);
}

.site-nav {
  display: flex;
  gap: 1rem;
  color: rgba(245, 240, 230, 0.75);
  font-weight: 600;
}

.site-nav a {
  padding: 0.35rem 0.5rem;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 240, 230, 0.95);
}

/* Mobile nav */
.nav-toggle {
  display: none;
}

.nav-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.nav-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(245, 240, 230, 0.92);
  border-radius: 99px;
}

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(circle at top left, rgba(214, 177, 90, 0.22), transparent 55%),
    radial-gradient(circle at bottom right, rgba(127, 176, 105, 0.14), transparent 60%);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  align-items: start;
}

.eyebrow {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  color: rgba(245, 240, 230, 0.85);
  font-weight: 600;
  font-size: 0.95rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
  color: var(--gold);
  border: 1px solid rgba(214, 177, 90, 0.35);
  background: linear-gradient(180deg, rgba(214, 177, 90, 0.16), rgba(15, 17, 19, 0.92));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  color: rgba(245, 240, 230, 0.92);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(214, 177, 90, 0.22);
}

.ghost.plant:hover {
  border-color: rgba(127, 176, 105, 0.25);
}

.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-weight: 900;
  color: #0d110e;
  background: var(--gold);
  border: 1px solid rgba(214, 177, 90, 0.55);
}

.hero-card {
  background: linear-gradient(160deg, rgba(214, 177, 90, 0.09), rgba(23, 26, 31, 0.95));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.hero-card ul {
  padding-right: 1.1rem;
  color: rgba(245, 240, 230, 0.78);
}

.hero-card li {
  margin: 0.4rem 0;
}

.hero-card-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.mini-link {
  color: rgba(245, 240, 230, 0.82);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero-media {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 25% 25%, rgba(214, 177, 90, 0.12), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(127, 176, 105, 0.10), transparent 55%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

.hero-media-inner {
  padding: 1.5rem;
  height: 100%;
}

.media-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 900;
  margin-left: 0.5rem;
  margin-bottom: 0.9rem;
}

.media-badge.gold {
  color: var(--gold);
  background: rgba(214, 177, 90, 0.10);
  border-color: rgba(214, 177, 90, 0.18);
}

.media-badge.green {
  color: var(--green);
  background: rgba(127, 176, 105, 0.10);
  border-color: rgba(127, 176, 105, 0.18);
}

.media-title {
  font-weight: 900;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.media-sub {
  color: var(--muted);
  margin-top: 0.5rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section h2 {
  font-size: 2rem;
  letter-spacing: 0.2px;
  margin-bottom: 0.6rem;
}

.section-desc {
  color: var(--muted);
  max-width: 60ch;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.section-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.section-cta.gold {
  color: var(--gold);
  border-color: rgba(214, 177, 90, 0.20);
}

.section-cta.green {
  color: var(--green);
  border-color: rgba(127, 176, 105, 0.22);
}

/* Product grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 1.2rem;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.40);
}

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

.card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card-top,
.card .meta,
.card .price-row,
.card .card-link {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.card .card-link {
  padding-bottom: 1.25rem;
}

.card-top {
  display: flex;
  gap: 0.9rem;
  align-items: start;
  margin-bottom: 1rem;
  padding-top: 1.25rem;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 1.1rem;
}

.icon.gold {
  color: var(--gold);
  border-color: rgba(214, 177, 90, 0.22);
  background: rgba(214, 177, 90, 0.08);
}

.icon.green {
  color: var(--green);
  border-color: rgba(127, 176, 105, 0.22);
  background: rgba(127, 176, 105, 0.08);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.muted {
  color: var(--muted);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
  color: rgba(245, 240, 230, 0.78);
  font-size: 0.95rem;
}

.meta span {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.4rem;
  margin-bottom: 0.7rem;
  flex-wrap: wrap;
}

.price {
  font-weight: 900;
  color: rgba(245, 240, 230, 0.92);
}

.tag {
  font-weight: 900;
  font-size: 0.9rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.tag.gold {
  color: var(--gold);
  border-color: rgba(214, 177, 90, 0.22);
}

.tag.green {
  color: var(--green);
  border-color: rgba(127, 176, 105, 0.22);
}

.card-link {
  display: inline-flex;
  margin-top: 0.4rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.card-link.gold {
  color: var(--gold);
}

.card-link.green {
  color: var(--green);
}

/* Section backgrounds */
.section.charcoal {
  background: linear-gradient(180deg, rgba(214, 177, 90, 0.06), transparent 40%);
}

.section.vegetables {
  background:
    radial-gradient(circle at 15% 0%, var(--green-soft), transparent 45%),
    linear-gradient(180deg, rgba(127, 176, 105, 0.05), transparent 45%);
}

.alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
  align-items: start;
}

.feature-list {
  margin-top: 1.2rem;
  padding-right: 1.2rem;
  color: rgba(245, 240, 230, 0.78);
}

.feature-list li {
  margin: 0.55rem 0;
}

.highlight {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(29, 33, 40, 0.95));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.highlight p {
  color: rgba(245, 240, 230, 0.72);
  margin: 0.8rem 0 1.1rem;
}

.highlight-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Contact */
.contact {
  background:
    radial-gradient(circle at 20% 0%, rgba(214, 177, 90, 0.14), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(127, 176, 105, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.02);
}

.contact-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.contact-details {
  margin-top: 0.9rem;
  color: rgba(245, 240, 230, 0.78);
}

.contact-details a {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: min(340px, 100%);
}

/* Footer */
.site-footer {
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid var(--border);
  padding: 1.2rem 0;
  color: rgba(245, 240, 230, 0.7);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 820px) {
  .section h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 720px) {
  .nav-btn {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: min(1120px, 92%);
    display: grid;
    gap: 0.6rem;
    padding: 1rem;
    background: rgba(15, 17, 19, 0.92);
    border: 1px solid var(--border);
    border-radius: 16px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-toggle:checked ~ .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
