:root {
  --gold: #b88a2f;
  --gold-light: #d7b56d;

  --rose: #d9b1b1;
  --rose-light: #fff0f3;

  --blue: #5aa9e6;
  --blue-light: #f3f8ff;

  --purple: #a78bfa;
  --purple-light: #f8f6ff;

  --green: #7bc96f;
  --green-light: #f3fff4;

  --white: #fff;
  --dark: #222;
  --gray: #777;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo", sans-serif;
}

body {
  background: #f6f7fb;
  color: #222;
}

/* ================= TOP BAR ================= */


/* ================= NAVBAR ================= */


/* ================= HERO ================= */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
  border-radius: 25px;
  margin: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomHero 15s linear infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.1)
  );
}

.hero-content {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  max-width: 550px;
  color: #fff;
  z-index: 10;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-size: 14px;

  animation: fadeUp 0.8s ease forwards;
}

.hero-content h1 {
  font-size: clamp(35px, 6vw, 65px);
  line-height: 1.2;
  margin-bottom: 20px;

  animation: fadeUp 1s ease forwards;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 30px;
  color: #f4f4f4;

  animation: fadeUp 1.2s ease forwards;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;

  animation: fadeUp 1.4s ease forwards;
}

.hero-btn {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;

  background: linear-gradient(135deg, #d4af37, #f5d77a);

  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);

  transition: 0.3s;
}

.hero-btn:hover {
  transform: translateY(-5px);
}

.hero-btn-outline {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);

  transition: 0.3s;
}

.hero-btn-outline:hover {
  background: #fff;
  color: #111;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomHero {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}

/* Tablet */

@media (max-width: 992px) {
  .hero-content {
    right: 5%;
    max-width: 450px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .hero {
    height: 70vh;
    margin: 0;
    border-radius: 0;
  }

  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.35)
    );
  }

  .hero-content {
    width: 90%;
    max-width: none;
    right: 50%;
    transform: translate(50%, -50%);
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-btn,
  .hero-btn-outline {
    width: 220px;
  }
}
/* ================= BUTTON ================= */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #d4af37, #f5e6a3);
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn:hover {
  transform: scale(1.05);
}

/* ================= OFFERS SECTION ================= */
.offers-section {
  padding: 40px 5%;
  background: #fff5f7;
}

.offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 15px;
  justify-items: center;
}

/* CARD أصغر */
.offer-card {
  width: 100%;
  max-width: 190px; /* 👈 هذا أهم شيء */
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: 0.25s;
}

.offer-card:hover {
  transform: translateY(-4px);
}

/* صورة أصغر */
.offer-img-box {
  width: 100%;
  height: 130px; /* 👈 تصغير الصورة */
  overflow: hidden;
}

.offer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* المحتوى */
.offer-body {
  padding: 10px;
  text-align: center;
}

.offer-name {
  font-size: 13px;
  margin-bottom: 6px;
  min-height: 32px;
}

/* الأسعار أصغر */
.price .old {
  font-size: 12px;
}

.price .new {
  font-size: 14px;
}

/* زر أصغر */
.cart-btn {
  width: 90%;
  margin: 10px auto 12px;
  padding: 10px 12px;

  font-size: 13px;
  font-weight: bold;

  border: none;
  border-radius: 25px;

  color: #fff;
  cursor: pointer;

  background: linear-gradient(135deg, #121110, #0b0908);

  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.25);

  transition: 0.3s ease;

  display: block;
}

/* hover احترافي */
.cart-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 30px rgba(255, 140, 0, 0.35);
}

/* أيقونة داخل الزر */
.cart-btn::before {
  content: " ";
}

.all-offers-box {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.all-offers-btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 50px;
  background: linear-gradient(135deg, #d4af37, #f5d77a);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
  transition: 0.3s;
}

.all-offers-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.45);
}
/* ================= CATEGORIES ================= */
.cat-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 25px;
  background: linear-gradient(180deg, #fff, #fffaf2);
  border-right: 6px solid var(--gold);
  border-radius: 20px;
  margin-bottom: 40px;
}

.cat-card {
  width: 140px;
  background: #fff;
  border-radius: 18px;
  text-align: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  overflow: hidden;
}

.cat-card:hover {
  transform: translateY(-8px);
}

.cat-image {
  width: 100%;
  height: 110px;
  overflow: hidden;
}

.cat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-name {
  padding: 10px;
  font-weight: bold;
}

/* ================= PRODUCTS ================= */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 25px;
  background: linear-gradient(180deg, #fff, #f3f8ff);
  border-left: 6px solid var(--blue);
  border-radius: 20px;
  margin-bottom: 40px;
}

.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 12px;
  text-align: center;
}

/* ================= REVIEWS ================= */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  padding: 25px;
  background: linear-gradient(180deg, #fff, #f8f6ff);
  border-right: 6px solid var(--purple);
  border-radius: 20px;
}

.review {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

/* ================= ANIMATION ================= */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translate(50px, -50%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 28px;
  }
  .menu {
    display: none;
  }
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.review-card {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.review-card .user {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.before-after {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.before-after img {
  width: 50%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

.review-btn {
  background: linear-gradient(135deg, #c79b44, #f5e1a4);
  color: #000;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(199, 155, 68, 0.3);
}

.review-btn:hover {
  transform: scale(1.05);
}

.social-section {
  margin-top: 60px;
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(135deg, #fff, #f8f0ee);
  border-radius: 20px;
}

.social-title {
  font-size: 24px;
  margin-bottom: 25px;
  color: #222;
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social-box {
  width: 130px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  text-decoration: none;
  color: #222;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.social-box i {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.social-box span {
  font-size: 14px;
  font-weight: 600;
}

/* Hover */
.social-box:hover {
  transform: translateY(-8px);
}

/* ألوان خاصة */
.instagram i {
  color: #e1306c;
}
.facebook i {
  color: #1877f2;
}
.whatsapp i {
  color: #25d366;
}
.tiktok i {
  color: #000;
}

/* Responsive */
@media (max-width: 600px) {
  .social-box {
    width: 45%;
  }
}
