/* ===== Base ===== */
*,
::before,
::after {
  box-sizing: border-box;
  border: 0 solid #d4af37;
}

:root {
  --font-main: 'DINNextLTArabic-Regular';
  --color-primary: #d4af37;       /* ذهبي ماركات */
  --color-primary-dark: #000000;  /* أسود فاخر */
  --color-primary-light: #faf8f2; /* أبيض دافئ */
  --color-primary-reverse: #111111;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Header ===== */
.top-navbar {
  background: #000000;
  color: #ffffff;
  border-bottom: 2px solid #d4af37;
}

.navbar-brand img {
  border-radius: 20px;
  max-height: 4rem;
}

/* ===== Buttons ===== */
.s-button-primary {
  border: 1px solid #d4af37;
  background: linear-gradient(135deg, #d4af37, #f1e3a2);
  color: #000000;
  font-weight: bold;
  border-radius: 20px;
}

.s-button-primary-outline {
  color: #d4af37;
  background: #000000;
  border-radius: 20px;
  border: 2px solid #d4af37;
}

/* ===== Forms ===== */
.form-input {
  height: 2.5rem;
  width: 100%;
  border-radius: .375rem;
  border-color: #d4af37;
  font-size: .875rem;
  transition: 0.3s;
}

/* ===== Features ===== */
.s-block--features__item {
  border-radius: 4.375rem;
  background: #faf8f2 !important;
  border: 2px solid #d4af37;
}

.s-block--features__item .feature-icon {
  background-color: #d4af37;
  color: #000;
}

/* ===== Products ===== */
.s-product-card-entry {
  height: 100%;
  border-radius: 20px;
  border: 1px solid #f1e3a2;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.s-product-card-promotion-title {
  background-color: #000000;
  color: #d4af37;
}

/* ===== Footer ===== */
.store-footer {
  background: #000000;
  border-radius: 50px;
  border-top: 3px solid #d4af37;
}

.store-footer__inner {
  background: #000000 !important;
  color: #ffffff;
  border-radius: 50px;
}

.footer-is-light .store-footer .store-footer__inner {
  background: #ffffff !important;
  color: #000000;
  border-radius: 80px;
}

.store-footer h3,
.store-footer a,
.leading-6 {
  text-align: center;
  color: #d4af37;
}

.store-footer .contact-social ul {
  justify-content: center;
}

/* ===== Social Icons ===== */
.s-social-link a svg,
.s-contacts-icon svg {
  height: .875rem;
  width: .875rem;
  fill: #d4af37;
}

/* ===== Categories Slider ===== */
.slide--cat-entry {
  border-radius: 1.375rem;
  background-color: #faf8f2;
  color: #000000 !important;
  border: 1px solid #d4af37;
}

.slide--cat-entry i {
  color: #d4af37;
}

/* ===== Banners ===== */
.s-block--banners .banner-entry {
  height: 170px;
  width: 32.5%;
  background: unset !important;
  border: 2px solid #d4af37;
  border-radius: 20px;
}

.s-block--banners .banner-entry .lazy__bg {
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}

/* ===== Grid ===== */
.md\:grid-cols-3 {
  grid-template-columns: repeat(4,minmax(0,1fr));
}

.sm\:gap-8 {
  gap: 0;
}

/* ===== Tamara & Tabby ===== */
#tabbyPromoWrapper,
.tamara-product-widget {
  border-radius: 6px !important;
  min-height: 80px !important;
  margin: 0 5px !important;
  border: 1px solid #d4af37;
}

#tabbyPromoWrapper:hover,
.tamara-product-widget:hover {
  box-shadow: rgba(212,175,55,.25) 5px 10px 30px;
}

.tamara-product-widget span {
  font-family: var(--font-main);
}

/* ===== Mobile ===== */
@media (max-width: 800px) {
  salla-slider .slide--one-sixth {
    width: 40%;
  }

  .s-block--banners .grid {
    display: flex;
  }

  .s-block--banners .banner-entry {
    height: 115px;
  }

  .items-center {
    place-content: center!important;
  }

  .header-btn__icon {
    background: #d4af37;
    color: #000;
  }

  .top-navbar {
    background: #000000;
    color: white;
  }
}

@media (max-width: 991px) {
  .s-products-slider-card {
    max-width: 175px !important;
  }

  .tamara-product-widget span {
    font-size: 12px;
  }
}

/* ===== Hide trust badges ===== */
salla-trust-badges {
  display: none !important;
}