/* ===============================
   PAGE WRAPPER
================================ */
.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Poppins', sans-serif;
}

/* ===============================
   HERO SECTION
================================ */
.hero-section {
  position: relative;
  height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Ghost Text */
.hero-bg-text {
  position: absolute;
  font-size: 22vw;
  font-weight: 900;
  color: #f2f2f2;
  letter-spacing: -0.12em;
  line-height: 1;
  z-index: 1;
  user-select: none;
  white-space: nowrap;
}

/* Shoe */
.hero-image-container {
  position: relative;
  z-index: 2;
  transform: rotate(-18deg);
}

.main-shoe {
  width: 620px;
  max-width: 90vw;
  filter: drop-shadow(0 35px 45px rgba(0,0,0,0.18));
}

/* Hero Text */
.hero-details {
  z-index: 3;
  text-align: center;
  margin-top: 30px;
}

.brand-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #111;
}

.concept-title {
  font-size: 12px;
  letter-spacing: 3px;
  color: #999;
  margin-top: 6px;
}

/* ===============================
   SECTION HEADERS
================================ */
.section-header {
  text-align: center;
  margin: 90px 0 45px;
}

.title-ghost {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #111;
}

.title-ghost span {
  color: #e5e5e5;
}

.sub-title {
  display: block;
  font-size: 11px;
  letter-spacing: 5px;
  color: #999;
  margin-top: -28px;
}

/* ===============================
   FEATURED PRODUCTS
================================ */
.featured-grid > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* ===============================
   BEST SELLER (4 PRODUCTS)
================================ */
.best-seller-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 30px;
  margin-top: 40px;
}

/* نخلي EasyOrders Wrapper شفاف */
.large-item-slot > div,
.small-items-grid > div {
  display: contents;
}

/* الجزء الصغير */
.small-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ===============================
   ACTION BUTTON
================================ */
.action-footer {
  text-align: center;
  padding: 70px 0 40px;
}

.btn-view-all {
  background: transparent;
  border: 1px solid #111;
  padding: 14px 38px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-view-all:hover {
  background: #111;
  color: #fff;
}

/* ===============================
   RTL (ARABIC)
================================ */
html[lang="ar"] {
  direction: rtl;
}

html[lang="ar"] .hero-image-container {
  transform: rotate(18deg);
}

html[lang="ar"] .hero-bg-text {
  letter-spacing: -0.08em;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .hero-bg-text {
    font-size: 26vw;
  }

  .main-shoe {
    width: 480px;
  }

  .featured-grid > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .best-seller-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-section {
    height: auto;
    padding: 60px 0;
  }

  .hero-bg-text {
    font-size: 32vw;
  }

  .main-shoe {
    width: 320px;
    transform: none;
  }

  .featured-grid > div,
  .small-items-grid {
    grid-template-columns: 1fr;
  }
}
