/* =========================
   Fonts & Base
========================= */
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');

:root {
  --background-base: #fdfaf6;
  --gold: #ac8d5f;
  --warm-brown: #5e3807;
  --charcoal: #2e2e2e;
  --color-primary: var(--gold);
  --color-primary-dark: #2e2e2e;
  --color-primary-light: #f8f5f0;
  --color-primary-reverse: #ffffff;
  --logo: url("https://i.ibb.co/GtdjpRz/2.png");
}

body {
  font-family: 'Almarai', sans-serif;
  background-color: var(--background-base);
  color: var(--charcoal);
}

/* =========================
   Product Cards (Luxury)
========================= */
.s-product-card-vertical {
  border: 1px solid rgba(172, 141, 95, 0.3);
  background: linear-gradient(145deg, #fffaf5, #fdf6ee);
  border-radius: 14px;
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease both;
  box-shadow: 0 2px 6px rgba(172, 141, 95, 0.15);
}
.s-product-card-vertical:hover {
  box-shadow: 0 12px 28px rgba(172, 141, 95, 0.35);
  transform: translateY(-8px) scale(1.03);
}
.s-product-card-vertical img {
  border-radius: 14px 14px 0 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.s-product-card-vertical:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}
.s-product-card-content-title a {
  font-size: 1rem !important;
  color: var(--warm-brown);
  font-weight: 600;
  transition: color 0.3s ease;
}
.s-product-card-content-title a:hover {
  color: var(--gold);
}
.s-product-card-promotion-title,
.promotion-title {
  background-color: var(--gold);
  color: #fff;
  border-radius: 8px 0 8px 0;
  padding: 4px 8px;
  font-weight: bold;
  text-transform: uppercase;
}

/* =========================
   Buttons
========================= */
.s-button-primary {
  background-color: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(172,141,95,0.3);
}
.s-button-primary:hover {
  background-color: #fff;
  color: var(--gold);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 12px rgba(172,141,95,0.4);
}
.s-button-primary-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.s-button-primary-outline:hover {
  background-color: var(--gold);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.header-btn__icon {
  background-color: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}
.header-btn__icon:hover {
  background-color: #fff;
  color: var(--gold);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(172,141,95,0.35);
}

/* =========================
   Header & Navbar
========================= */
.navbar-brand img,
.main-nav-container.fixed-pinned .navbar-brand img {
  max-width: 180px;
  height: auto;
  transition: all 0.3s ease;
}
@media(max-width:650px) {
  .navbar-brand img,
  .main-nav-container.fixed-pinned .navbar-brand img {
    max-width: 130px;
    padding: 6px 0;
  }
}

/* =========================
   Footer
========================= */
.store-footer__inner {
  background-color: var(--background-base);
  color: var(--warm-brown);
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
  box-shadow: 0 -2px 12px rgba(172,141,95,0.1);
  text-align: center;
  padding: 2rem 1rem;
}
.store-footer h3 {
  color: var(--warm-brown);
}
.store-footer .social-link {
  background: linear-gradient(135deg, #ac8d5f, #d2b48c);
  color: #fff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.store-footer .social-link:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(172,141,95,0.35);
}

/* =========================
   WhatsApp Button
========================= */
.pulse-whatsapp {
  animation: whatsappPulse 2s infinite;
  box-shadow: 0 2px 8px rgba(172,141,95,0.35);
  border-radius: 12px !important;
}
@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
body[style] .sicon-whatsapp2::after,
i.sicon-whatsapp2::after {
  width: 56px;
  height: 56px;
  border-radius: 32.5px;
  font-size: 32px;
  box-shadow: #0000006b 2px 2px 8px;
  transition: all 0.4s ease;
}
.sicon-whatsapp2:after:hover {
  width: 160px;
  height: 56px;
  border-radius: 12px;
}

/* =========================
   Sliders & Banners
========================= */
.s-slider-nav-arrow {
  background-color: var(--gold);
  color: #fff;
}
.s-slider-nav-arrow svg {
  width: 22px;
  fill: var(--gold);
}
salla-slider.photos-slider .swiper-slide {
  width: 100%;
  border-radius: 0.5rem;
}
.banner-entry {
  background-color: transparent;
  transition: all .3s ease-in-out;
}
a.banner-entry.square-photos:hover {
  transform: scale(1.05);
}

/* =========================
   Animations
========================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.s-product-card-vertical:nth-child(1) { animation-delay: 0.1s; }
.s-product-card-vertical:nth-child(2) { animation-delay: 0.2s; }
.s-product-card-vertical:nth-child(3) { animation-delay: 0.3s; }

.fade-in-active {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.6s ease;
}

.s-slider-block__display-all {
  padding: 5px;
  color: var(--gold);
  margin: 10px auto;
  border-radius: 15px;
  animation: signal 1200ms linear infinite;
}
@keyframes signal {
  0% { box-shadow: 0 0 0 0 var(--color-primary); }
  100% { box-shadow: 0 0 0 5px #fff; }
}

/* =========================
   Sticky Add-to-Cart (Mobile)
========================= */
.sticky-cart-btn {
  position: fixed !important;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(172,141,95,0.4);
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* =========================
   إعلان افتتاح قريبًا - Luxury Scroll
========================= */
#shibah-announcement {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, #ac8d5f, #d2b48c);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  padding: 12px 0;
  z-index: 9999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  animation: slideDown 1s ease forwards;
  font-family: 'Almarai', sans-serif;
  direction: rtl;
  overflow: hidden;
}
#shibah-announcement .close-btn {
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 1.2rem;
  cursor: pointer;
  color: #fff;
  background: transparent;
  border: none;
  z-index: 10000;
}
#shibah-announcement .text {
  display: inline-block;
  white-space: nowrap;
  animation: scrollText 25s linear infinite;
  padding-left: 100%;
  font-weight: 500;
}
@keyframes slideDown {
  from { top: -60px; opacity: 0; }
  to { top: 0; opacity: 1; }
}
@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}