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

body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  direction: rtl;
  overflow-x: hidden;
  --orange:     #F26522;
  --orange-dark:#d4541a;
  --cream:      #FAF8F5;
  --dark:       #1a1a1a;
  --gray:       #6b6b6b;
  --light-gray: #f0eeeb;
  --border:     #e8e4df;
  --white:      #ffffff;
}

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.navbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 40px;
  gap: 20px;
}
.navbar-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.navbar-mobile-toggle span {
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.navbar-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-row {
  display: flex;
  align-items: center;
  gap: 3px;
}
.nav-logo-home-tag {
  font-size: 8px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1;
  opacity: 0.85;
  margin-left: 2px;
}
.nav-logo-main {
  font-family: 'Tajawal', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -1.5px;
  line-height: 1;
}
.nav-logo-main .t-letter { color: var(--dark); }
.nav-logo-sub {
  font-size: 7px;
  letter-spacing: 1.5px;
  color: #aaa;
  font-weight: 400;
  display: block;
  text-transform: uppercase;
  margin-top: 2px;
  text-align: center;
}
.search-bar {
  flex: 1;
  max-width: 620px;
  position: relative;
}
.search-bar input {
  width: 100%;
  padding: 8px 44px 8px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  background: var(--light-gray);
  outline: none;
  direction: rtl;
  color: var(--dark);
}
.search-bar input::placeholder { color: #bbb; }
.search-bar .search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  stroke: #bbb;
  fill: none;
  stroke-width: 2;
  pointer-events: none;
}
.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.nav-icons svg {
  width: 20px; height: 20px;
  cursor: pointer;
  stroke: var(--dark);
  fill: none;
  stroke-width: 1.6;
  transition: stroke 0.2s;
}
.nav-icons svg:hover { stroke: var(--orange); }

.language-dropdown {
  position: relative;
}

.language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1000;
}

.language-dropdown:hover .language-menu,
.language-dropdown:focus-within .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  margin: 0;
}

.language-link {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: none;
  border: none;
  color: var(--dark);
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.language-link:hover {
  background: var(--light-gray);
  color: var(--orange);
}

.language-link .flag {
  font-size: 16px;
}

.navbar-bottom {
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  padding: 0 40px;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}
.nav-links li a {
  display: block;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  padding: 10px 22px;
  position: relative;
  transition: color 0.2s;
}
.nav-links li a:hover { color: var(--orange); }
.nav-links li a.active { color: var(--orange); }
.nav-links li a.active::before {
  content: '•';
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--orange);
  font-size: 10px;
}

@media (max-width: 900px) {
  .navbar-top { padding: 8px 20px; gap: 12px; }
  .search-bar { max-width: 300px; }
  .navbar-bottom { padding: 0 20px; }
  .nav-links li a { padding: 10px 12px; font-size: 12px; }
}
@media (max-width: 768px) {
  .navbar-mobile-toggle { display: flex; }
  .navbar-top { padding: 8px 16px; gap: 8px; }
  .nav-icons { gap: 12px; }
  .search-bar { max-width: 200px; display: none; }
  .search-bar.mobile-visible {
    display: flex;
    position: absolute;
    top: 56px;
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
  }
  .navbar-bottom {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: none;
    padding: 0;
  }
  .navbar-bottom.mobile-visible {
    max-height: 300px;
    border-top: 1px solid var(--border);
    padding: 0 20px;
  }
  .nav-links { flex-direction: column; }
  .nav-links li a { padding: 12px 22px; font-size: 13px; }
  .nav-logo-home-tag { display: none; }
}
@media (max-width: 600px) {
  .navbar-top { padding: 8px 12px; }
  .nav-icons { gap: 8px; }
  .nav-icons svg { width: 18px; height: 18px; }
  .nav-logo-sub { display: none; }
  .logo-row { gap: 2px; }
  .nav-logo-main { font-size: 20px; }
}

/* ════════════════════════════════
   SECTION 1 — CATEGORIES
════════════════════════════════ */
.categories {
  padding: 64px 40px;
  background: var(--white);
}
.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 28px;
}
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 20px;
  border-radius: 22px;
  border: 1.5px solid var(--border);
  background: white;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--dark);
  transition: all 0.2s;
}
.filter-tab:hover { border-color: var(--orange); color: var(--orange); }
.filter-tab.active {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.category-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover img { transform: scale(1.06); }
.cat-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.show-more {
  text-align: center;
  margin-top: 36px;
}
.show-more-btn {
  background: none;
  border: none;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.show-more-btn:hover { color: var(--orange); }
.show-more-btn .arrow { font-size: 18px; line-height: 1; }

/* ════════════════════════════════
   SECTION 2 — HERO
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 80px 80px;
  overflow: hidden;
  background: #0d0d0d;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.45;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: white;
  line-height: 1.25;
  margin-bottom: 18px;
}
.hero p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.55);
  padding: 11px 28px;
  border-radius: 8px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ════════════════════════════════
   SECTION 3 — BEST SELLERS
════════════════════════════════ */
.bestsellers {
  padding: 64px 40px;
  background: var(--light-gray);
}
.bestsellers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto 32px;
}
.bestsellers-header h2 { font-size: 22px; font-weight: 800; }
.view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  cursor: pointer;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto 16px;
}
.products-grid-2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.product-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  padding: 0 0 14px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.2s;
}
.product-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.product-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.wishlist-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.wishlist-btn svg { width: 14px; height: 14px; stroke: #999; fill: none; stroke-width: 2; }
.cart-btn {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 32px;
  height: 32px;
  background: var(--orange);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.cart-btn:hover { background: var(--orange-dark); }
.cart-btn svg { width: 15px; height: 15px; stroke: white; fill: none; stroke-width: 2; }
.product-info { padding: 10px 14px 0; }
.stars { color: var(--orange); font-size: 11px; }
.review-count { color: #999; font-size: 11px; }
.product-name { font-size: 12px; font-weight: 600; color: var(--dark); margin: 4px 0 6px; line-height: 1.45; }
.price-row { display: flex; align-items: center; gap: 8px; }
.price-new { font-size: 14px; font-weight: 800; color: var(--dark); }
.price-old { font-size: 12px; color: #bbb; text-decoration: line-through; }

/* ════════════════════════════════
   SECTION 4 — FEATURED STRIPS
════════════════════════════════ */
.featured-strips {
  padding: 64px 40px;
  background: var(--white);
}
.strips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.strip-card {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.strip-card h3 {
  font-size: 17px;
  font-weight: 800;
  text-align: right;
  color: var(--dark);
}
.strip-card p {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--gray);
  text-align: right;
}
.strip-cta {
  display: inline-block;
  background: var(--orange);
  color: white;
  border: none;
  padding: 9px 22px;
  border-radius: 8px;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s;
}
.strip-cta:hover { background: var(--orange-dark); }
.strip-img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  border-radius: 8px;
  margin-top: auto;
}

/* ════════════════════════════════
   SECTION 5 — NEWS
════════════════════════════════ */
.news {
  padding: 64px 40px 80px;
  background: var(--cream);
}
.news-header {
  text-align: center;
  margin-bottom: 10px;
}
.news-header h2 { font-size: 24px; font-weight: 800; }
.news-header p { font-size: 13px; color: var(--gray); margin-top: 8px; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 36px auto 0;
}
.news-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
}
.news-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}
.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.news-card-body {
  padding: 20px 20px 22px;
  text-align: right;
}
.news-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.5;
}
.news-card-body p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}
.read-more {
  color: var(--orange);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.read-more:hover { text-decoration: underline; }

/* ════════════════════════════════
   CTA SECTION
════════════════════════════════ */
.cta-section { background: #f5f5f5; padding: 80px 40px; }
.cta-box {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  border: 1.5px solid rgba(240,90,40,0.2);
  padding: 60px 50px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(240,90,40,0.08);
}
.cta-box h2 { font-size: 28px; font-weight: 900; margin-bottom: 12px; color: #111; }
.cta-box p  { font-size: 15px; color: #666; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; }
.btn-secondary {
  background: transparent;
  color: #f05a28;
  border: 1.5px solid #f05a28;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { background: #f05a28; color: white; transform: translateY(-2px); }

/* ════════════════════════════════
   FOOTER SECTION
════════════════════════════════ */
.footer-section {
  background: white;
  border-top: 1px solid #eee;
  padding: 60px 40px 30px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: 'Tajawal', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #f05a28;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 13px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 18px;
}
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.social-btn:hover { border-color: #f05a28; background: #fff5f2; }
.social-btn svg { width: 16px; height: 16px; stroke: #555; fill: none; stroke-width: 1.8; }
.footer-col h4 { font-size: 15px; font-weight: 700; margin-bottom: 18px; color: #111; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-col ul li:hover { color: #f05a28; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}
.contact-item svg { width: 16px; height: 16px; stroke: #f05a28; fill: none; stroke-width: 1.8; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid #f0f0f0;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.payment-methods { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.payment-badge {
  padding: 5px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #333;
}
.payment-badge.visa  { color: #1a1f71; }
.payment-badge.apple { color: #000; }
.payment-badge.mc    { color: #eb001b; }
.cr-text { font-size: 12px; color: #aaa; }
.vat-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #888;
  border: 1px solid #ddd;
  padding: 6px 12px;
  border-radius: 8px;
}
.store-btns { display: flex; gap: 10px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.store-btn:hover { border-color: #f05a28; }
.store-btn svg { width: 18px; height: 18px; fill: #333; }
.store-btn span { font-size: 12px; font-weight: 600; color: #333; }
.footer-cr {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  margin-top: 20px;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 900px) {
  .footer-top   { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid, .products-grid-2 { grid-template-columns: repeat(3, 1fr); }
  .strips-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top     { grid-template-columns: 1fr; }
  .cta-btns       { flex-direction: column; }
  .cta-box        { padding: 40px 24px; }
  .products-grid, .products-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 24px; }
  .categories { padding: 40px 20px; }
  .bestsellers { padding: 40px 20px; }
}