:root {
  --dark: #151515;
  --dark2: #242424;
  --gold: #c49a3a;
  --gold2: #e0b85b;
  --muted: #777;
  --silver: #f2f2f2;
  --white: #fff;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Tajawal", Arial, sans-serif;
  background: #f6f6f6;
  color: #202020;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.container {
  width: min(1180px, 92%);
  margin: auto;
}
.top-bar {
  background: #111;
  color: #eee;
  font-size: 14px;
}
.top-content {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f3d48a;
  font-weight: 700;
}
.top-en {
  opacity: 0.8;
  direction: ltr;
}
.main-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(32, 32, 32, 0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-content {
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-menu a {
  color: #f7f7f7;
  font-weight: 700;
  font-size: 16px;
  position: relative;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transition: 0.25s;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  text-align: center;
}
.sun-logo {
  width: 70px;
  height: 58px;
  display: flex;
}
.sun-logo svg {
  width: 100%;
  height: 100%;
}
.brand-text strong {
  display: block;
  font-size: 22px;
  color: #fff;
  line-height: 1;
}
.brand-text small {
  display: block;
  color: #d7b55c;
  font-weight: 700;
  direction: ltr;
  margin-top: 5px;
  font-size: 12px;
}
.search {
  justify-self: end;
  width: min(310px, 100%);
  height: 42px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
}
.search input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  font-family: inherit;
}
.search input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.search button {
  border: 0;
  background: transparent;
  color: #f0d08a;
  cursor: pointer;
  padding: 4px;
}
.search-icon {
  width: 18px;
  height: 18px;
}
.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.hero {
  position: relative;
  height: 650px;
  background: #ddd;
  overflow: hidden;
}
.slides,
.slide {
  position: absolute;
  inset: 0;
}
.slide {
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}
.slide.active {
  opacity: 1;
}
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.02),
    rgba(0, 0, 0, 0.09),
    rgba(0, 0, 0, 0.18)
  );
}
.hero-text {
  position: absolute;
  top: 50%;
  right: 9%;
  transform: translateY(-50%);
  width: min(470px, 82vw);
  text-align: center;
  color: #222;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.35);
}
.hero-text h1 {
  margin: 0;
  font-size: 74px;
  font-weight: 900;
  letter-spacing: -2px;
}
.hero-text h2 {
  margin: 4px 0 0;
  font-size: 34px;
  color: #b98722;
  font-weight: 900;
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px auto;
  color: #b98722;
}
.divider span {
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-text p {
  font-size: 21px;
  line-height: 1.9;
  font-weight: 700;
  margin: 0 0 25px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 155px;
  height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b98213, #e5bd62);
  color: #1f1a10;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(160, 115, 28, 0.3);
}
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  opacity: 0.55;
  cursor: pointer;
}
.slider-dots button.active {
  width: 34px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 1;
}
.features-wrap {
  position: relative;
  margin-top: -42px;
  z-index: 10;
}
.features {
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
}
.feature {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 23px 20px;
  border-left: 1px solid #eee;
}
.feature:last-child {
  border-left: 0;
}
.feature-icon {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.feature strong {
  display: block;
  font-size: 17px;
}
.feature small {
  color: var(--muted);
  font-size: 13px;
}
.section-title h2 {
  font-size: 34px;
  margin: 0;
  font-weight: 900;
}
.section-title.centered {
  text-align: center;
  margin-bottom: 28px;
}
.small-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  margin-top: 9px;
}
.small-divider span {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.centered .small-divider {
  justify-content: center;
}
.categories-section {
  padding: 80px 0 35px;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.category-card {
  position: relative;
  min-height: 235px;
  border-radius: 22px;
  overflow: hidden;
  background: #222;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.category-card:hover img {
  transform: scale(1.06);
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
  z-index: 1;
}
.category-card div {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
}
.category-card h3 {
  margin: 0 0 5px;
  font-size: 20px;
  font-weight: 900;
}
.category-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #eee;
}
.products-section {
  padding: 45px 0 90px;
}
.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.outline-btn,
.filters button {
  font-family: inherit;
  border: 1px solid #d7bb75;
  background: #fff;
  color: #8b651b;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 800;
  cursor: pointer;
}
.outline-btn.active,
.filters button.active,
.filters button:hover {
  background: linear-gradient(135deg, #b98213, #e5bd62);
  color: #211a0b;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.product-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.1);
  transition: 0.25s;
  border: 1px solid #eee;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}
.product-media {
  position: relative;
  aspect-ratio: 4/5;
  background: #eee;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.category-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: #8a641a;
  border: 1px solid rgba(196, 154, 58, 0.35);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}
.product-info {
  padding: 16px 16px 18px;
  text-align: center;
}
.product-info h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-info p {
  margin: 0;
  color: #777;
  font-size: 13px;
  line-height: 1.6;
  min-height: 40px;
}
.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 35px;
  background: #fff;
  border-radius: 18px;
  color: #777;
  font-weight: 700;
}
.about {
  padding: 20px 0 90px;
}
.about-box {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}
.about-box > div {
  background: #fff;
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.about h2 {
  margin: 0 0 12px;
  font-size: 30px;
}
.about p {
  margin: 0;
  color: #555;
  line-height: 2;
  font-size: 17px;
}
.english-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #1c1c1c, #363636) !important;
  color: #fff;
}
.english-card strong {
  font-size: 23px;
  color: #dcb45a;
  margin-bottom: 12px;
}
.english-card span {
  line-height: 1.8;
  color: #eee;
  direction: ltr;
  text-align: left;
}
.footer {
  background: #151515;
  color: #eee;
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.footer-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
}
.footer-icon {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #d5ad55;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.footer p {
  margin: 0;
  line-height: 1.8;
}
.footer b {
  color: #d5ad55;
}
.map-link {
  color: #eee;
}
.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 34px;
  padding: 18px;
  color: #aaa;
  font-size: 14px;
}
@media (max-width: 1000px) {
  .nav-content {
    grid-template-columns: auto 1fr auto;
  }
  .menu-btn {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 128px;
    right: 4%;
    left: 4%;
    background: rgba(24, 24, 24, 0.96);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .nav-menu.open {
    display: flex;
  }
  .brand {
    justify-content: center;
  }
  .search {
    width: 220px;
  }
  .hero {
    height: 560px;
  }
  .hero-text {
    right: 5%;
    top: 52%;
  }
  .hero-text h1 {
    font-size: 58px;
  }
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .container {
    width: min(94%, 560px);
  }
  .top-content {
    height: auto;
    min-height: 42px;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
    gap: 3px;
  }
  .top-en {
    font-size: 12px;
  }
  .main-nav {
    top: 0;
  }
  .nav-content {
    height: 74px;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
  }
  .brand-text strong {
    font-size: 15px;
  }
  .brand-text small {
    font-size: 10px;
  }
  .sun-logo {
    width: 46px;
    height: 40px;
  }
  .search {
    position: absolute;
    top: 82px;
    right: 3%;
    left: 3%;
    width: auto;
    height: 40px;
    background: rgba(30, 30, 30, 0.72);
    z-index: 5;
  }
  .nav-menu {
    top: 122px;
  }
  .hero {
    height: 560px;
    margin-top: 50px;
  }
  .slide {
    background-position: center;
  }
  .hero-text {
    top: auto;
    bottom: 72px;
    right: 6%;
    left: 6%;
    transform: none;
    width: auto;
    text-align: right;
    color: #222;
  }
  .hero-text h1 {
    font-size: 43px;
    letter-spacing: -1px;
  }
  .hero-text h2 {
    font-size: 24px;
  }
  .hero-text p {
    font-size: 16px;
    line-height: 1.8;
  }
  .divider {
    justify-content: flex-start;
    margin: 12px 0;
  }
  .divider span {
    width: 60px;
  }
  .hero-btn {
    height: 42px;
    min-width: 135px;
  }
  .features-wrap {
    margin-top: 18px;
  }
  .features {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .feature {
    border-left: 0;
    border-bottom: 1px solid #eee;
    padding: 17px;
  }
  .feature:last-child {
    border-bottom: 0;
  }
  .categories-section {
    padding: 48px 0 22px;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .categories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .category-card {
    min-height: 190px;
    border-radius: 18px;
  }
  .category-card h3 {
    font-size: 17px;
  }
  .category-card p {
    font-size: 12px;
  }
  .section-top {
    align-items: flex-end;
  }
  .products-section {
    padding-bottom: 55px;
  }
  .filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }
  .filters button {
    white-space: nowrap;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 13px;
  }
  .product-card {
    border-radius: 17px;
  }
  .category-badge {
    font-size: 10px;
    padding: 5px 9px;
    right: 8px;
    bottom: 8px;
  }
  .product-info {
    padding: 11px 9px 13px;
  }
  .product-info h3 {
    font-size: 14px;
  }
  .product-info p {
    font-size: 11px;
    min-height: 34px;
  }
  .about {
    padding-bottom: 55px;
  }
  .about-box {
    grid-template-columns: 1fr;
  }
  .about-box > div {
    padding: 23px;
    border-radius: 20px;
  }
  .about h2 {
    font-size: 25px;
  }
  .about p {
    font-size: 15px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-item {
    border-radius: 16px;
  }
  .copyright {
    font-size: 12px;
  }
}
@media (max-width: 380px) {
  .hero-text h1 {
    font-size: 38px;
  }
  .hero-text h2 {
    font-size: 21px;
  }
  .products-grid {
    gap: 10px;
  }
  .category-card {
    min-height: 165px;
  }
  .feature strong {
    font-size: 15px;
  }
}

/* ===== Final customer requested edits ===== */
.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.lang-btn {
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(224, 184, 91, 0.65);
  background: rgba(255, 255, 255, 0.08);
  color: #f4d17f;
  font-family: inherit;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}
.lang-btn:hover {
  background: rgba(224, 184, 91, 0.16);
}
.hero-text {
  right: 12%;
  left: auto;
  text-align: right;
}
.hero-text .divider {
  justify-content: flex-start;
  margin-right: 0;
  margin-left: 0;
}
.features-wrap {
  margin-top: 0;
  padding-top: 22px;
  background: #f6f6f6;
  z-index: 2;
}
.footer .contact-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(213, 173, 85, 0.45);
  color: #eee;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 900;
}
.contact-btn.gold {
  background: linear-gradient(135deg, #b98213, #e5bd62);
  color: #171717;
  border: 0;
}
html[dir="ltr"] body {
  font-family: "Tajawal", Arial, sans-serif;
  direction: ltr;
}
html[dir="ltr"] .hero-text{
    direction:ltr;
    text-align:left;
    right:12%;
    left:auto;
}
html[dir="ltr"] .hero-text .divider {
  justify-content: flex-start;
}
html[dir="ltr"] .english-card span {
  text-align: left;
}
html[dir="ltr"] .category-badge {
  right: auto;
  left: 14px;
}
html[dir="ltr"] .feature {
  border-left: 0;
  border-right: 1px solid #eee;
}
html[dir="ltr"] .feature:last-child {
  border-right: 0;
}

@media (max-width: 1000px) {
  .nav-actions {
    justify-self: end;
  }
  .search {
    width: 190px;
  }
  .lang-btn {
    height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }
  .hero-text {
    right: 7%;
  }
  html[dir="ltr"] .hero-text {
      right:7%;
      left:auto;
  }
}
@media (max-width: 700px) {
  .nav-actions {
    position: absolute;
    top: 82px;
    right: 3%;
    left: 3%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    z-index: 5;
  }
  .nav-actions .search {
    position: static;
    width: auto;
    right: auto;
    left: auto;
    top: auto;
    background: rgba(30, 30, 30, 0.72);
  }
  .lang-btn {
    height: 40px;
    background: rgba(30, 30, 30, 0.72);
  }
  .hero-text {
    right: 6%;
    left: 6%;
    text-align: right;
  }
 html[dir="ltr"] .hero-text {
  right: 6%;
  left: auto;
  direction: ltr;
  text-align: left;
}
  .features-wrap {
    padding-top: 16px;
  }
  .footer .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact-btn {
    width: 100%;
  }
}


.footer-store{margin:40px auto 20px;text-align:center}
.footer-store img{
max-width:850px;
width:100%;
border-radius:18px;
border:3px solid rgba(212,175,55,.35);
box-shadow:0 15px 40px rgba(0,0,0,.18);
display:block;
margin:auto;
}
