html, body {
  width: 100%;
  overflow-x: hidden;
}
/* ================= MOBILE & TABLET ================= */
@media (max-width: 992px) {

  .honey-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 5px 20px;
    scroll-snap-type: x mandatory;
  }

  .honey-grid::-webkit-scrollbar {
    height: 6px;
  }

  .honey-grid::-webkit-scrollbar-thumb {
    background: #f2b705;
    border-radius: 10px;
  }

  .honey-card {
    min-width: 200px;
    scroll-snap-align: center;
    text-align: center;
  }

  /* تصغير الهكساغون */
  .hexagon {
    width: 85px;
    height: 68px;
    padding: 14px;
  }

  .hexagon span {
    font-size: 14px;
  }

  /* العنوان */
  .honey-card h3 {
    font-size: 16px;
  }

  /* الوصف */
  .honey-card p {
    font-size: 13px;
    min-height: auto;
  }

  /* الزر */
  .btn-honey {
    font-size: 12px;
    padding: 6px 16px;
  }
}

/* ================= HERO ================= */
.hero {
  width: 100%;
  min-height: 70vh;
overflow: hidden;

  display: flex;
  flex-direction: row-reverse; /* النص فاليمين، الصورة فاليسار */
  align-items: center;
  justify-content: space-between;

}

/* ================= IMAGE ================= */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
}

/* ================= CONTENT ================= */
.hero-content {
  flex: 1;
  max-width: 520px;
  text-align: right;
  padding-right: 8%;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.3;
  color: #1f5d3a;
  margin-bottom: 18px;
}

.hero-content h1 span {
  color: #c9962e;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 30px;
}

/* ================= BUTTONS ================= */
.hero-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

.btn {
  padding: 10px 22px;
  border-radius: 80px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background: #1f3d1b;
  color: #fff;
}

.btn-primary:hover {
  background: #163015;
}

.btn-secondary {
  background: #f2b705;
  color: #000;
}

.btn-secondary:hover {
  background: #ffcc33;
}

/* ================= 📱 MOBILE ================= */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;   /* ⬅️ النص فوق، الصورة تحت */
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
  }

  .hero-content {
    max-width: 100%;
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image {
    justify-content: center;
  }

  .hero-image img {
    max-width: 90%;
    max-height: 420px;
  }
}
@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 16px;
    min-height: auto;
  }

  /* الصورة */
  .hero-image {
    order: 1;
    width: 100%;
    justify-content: center;
    margin: 0;
  }

  .hero-image img {
    max-width: 85%;        /* ⬅️ تصغير الصورة شوية */
    max-height: 260px;     /* ⬅️ ما تاكلش الشاشة */
    margin-bottom: 10px;
  }

  /* النص */
  .hero-content {
    order: 2;
    max-width: 100%;
    text-align: center;   /* ⬅️ يتوسط فالهاتف */
    padding: 0;
  }

  .hero-content h1 {
    font-size: 30px;      /* ⬅️ أصغر شوية */
    line-height: 1.4;
    margin-bottom: 12px;
  }
  .hero-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
  }
  .hero-buttons {
    justify-content: center;
    gap: 12px;
  }
  @media (max-width: 768px) {
  .btn {
    padding: 7px 16px;
    font-size: 12px;
  }
}
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 0;
  }
  /* الصورة */
  .hero-image {
    position: relative;
    width: 100%;
  }
  .hero-image img {
    width: 100%;
    height: 65vh;
    object-fit: cover; /* ⬅️ الصورة تعمّر بلا تشويه */
  }
  /* النص فوق الصورة */
  .hero-content {
    position: absolute;
    bottom: 220px;          /* ⬅️ مكان النص */
    right: 0;
    left: 11;
    padding: 20px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .hero-content p {
    font-size: 11px;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  .hero-buttons {
    justify-content: center;
    gap: 12px;
  }
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .hero-image {
    justify-content: center;
    margin-bottom: 30px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.bee {
  position: absolute;
  width: 45px;
  z-index: 3;
  pointer-events: none;
  right: -120px;              /* يبدأ من اليمين */
  opacity: 0;
  animation: fly-right-to-left 12s linear infinite;
}

/* اختلاف الارتفاع والتأخير */
.bee-1 {
  top: 30%;
  animation-delay: 0s;
}

.bee-2 {
  top: 55%;
  animation-delay: 4s;
}

.bee-3 {
  top: 70%;
  animation-delay: 8s;
}

/* الحركة: من اليمين إلى اليسار */
@keyframes fly-right-to-left {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  50% {
    transform: translateX(-50vw) translateY(-15px) rotate(-6deg);
  }

  100% {
    transform: translateX(-120vw) translateY(10px) rotate(6deg);
    opacity: 0;
  }
}


/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bee {
    width: 40px;
  }
}

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

  .bee {
    display: none; /* نخفي النحل فالهاتف */
  }
}

/* =========================
   HONEY TYPES SECTION
========================= */
.honey-types {
  padding: 100px 6%;
  text-align: center;
  font-family: 'Noto Kufi Arabic', sans-serif;
}


.section-header p {
  max-width: 650px;
  margin: 0 auto 70px;
  color: #555;
  line-height: 1.8;
}
/* GRID – 7 IN ONE LINE */
.honey-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 35px;
  align-items: start;
}
.honey-card h3,
.honey-card p,
.honey-card .btn-honey {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.honey-card:hover h3,
.honey-card:hover p,
.honey-card:hover .btn-honey,
.honey-card.active h3,
.honey-card.active p,
.honey-card.active .btn-honey {
  opacity: 1;
}
/* HEXAGON */
.hexagon {
   width: 100px;
  height: 80px;
  margin: 0 auto 20px;
  clip-path: polygon(
    25% 0%,
    75% 0%,
    100% 50%,
    75% 100%,
    25% 100%,
    0% 50%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  transition: all 0.35s ease;
}
/* TEXT INSIDE HEXAGON */
.hexagon span {
  font-size: 16px;
  font-weight: 600;
  color: #4b3a17;
  line-height: 1.4;
}
/* ACTIVE HEXAGON */
.honey-card.active .hexagon {
  box-shadow: 0 18px 40px rgba(26, 22, 12, 0.45);
  transform: scale(1.08);
}
/* HOVER EFFECT */
.honey-card:hover .hexagon {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}
/* TITLES */
.honey-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1f3d1b;
}
.honey-card.active h3 {
  color: #176720;
}
/* DESCRIPTION */
.honey-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  min-height: 45px;
}
/* BUTTON */
.btn-honey {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 18px;
  background: #f2b705;
  color: #000;
  font-size: 13px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-honey:hover {
  background: #ffcc33;
}
.hexagon img {
  width: 150px;          /* ⬅️ حجم الصورة */
  height: 150px;
  object-fit: contain;
  margin-bottom: 6px;
}
/* =========================
   PRODUCT CATEGORIES
========================= */
.product-categories {
  padding: 100px 6%;
  text-align: center;
  font-family: 'Noto Kufi Arabic', sans-serif;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 34px;
  color: #1f5d3a;
margin-top: -80px;
}

.section-header p {
  max-width: 650px;
  margin: 0 auto 60px;
  color: #555;
  line-height: 1.8;
}
/* GRID */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
/* ================= PRODUCT CATEGORIES ================= */
.product-categories {
  padding: 90px 8%;
  background: #fffdf7;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header p {
  font-size: 16px;
  color: #666;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
/* ================= CARD ================= */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 340px;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.category-card:hover {
  transform: translateY(-6px);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Overlay */
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-overlay h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.category-overlay p {
  font-size: 14px;
  margin-bottom: 18px;
  opacity: 0.9;
}

/* Button */
.category-btn {
  display: inline-block;
  background: #f5b301;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.category-btn:hover {
  background: #d99800;
}


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

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



.honey-desc {
  overflow: hidden;
  line-height: 1.6em;
  max-height: 3.2em;
  position: relative;
}

.honey-desc::after {
  content: "...";
  position: absolute;
  bottom: 0;
  left: 0;
  background: white;
  padding-left: 4px;
}

/* ================= HOME PACKAGES ================= */

.home-packages {
  padding: 100px 6%;
  background: #f8f9f7;
  text-align: center;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.package-card-home {
  background: #fff;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  position: relative;
}

.package-card-home:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.package-card-home h3 {
  color: #1f6f4a;
  margin-bottom: 20px;
}

.package-card-home ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  line-height: 1.9;
  color: #555;
}

.package-card-home .price {
  font-size: 20px;
  font-weight: bold;
  color: #1f6f4a;
  margin-bottom: 20px;
}

.btn-package {
  display: inline-block;
  padding: 10px 25px;
  background: #f2b705;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-package:hover {
  background: #dca804;
}

.featured {
  border: 2px solid #f2b705;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #f2b705;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
}

.packages-cta {
  margin-top: 60px;
}

.btn-main {
  padding: 14px 40px;
  background: #1f6f4a;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-main:hover {
  background: #185b3d;
}
