/* scrollbar */
body::-webkit-scrollbar {
  width: 14px;
}

body::-webkit-scrollbar-track {
  background: #292929;
  border-radius: 3px;
}

body::-webkit-scrollbar-thumb {
  background: #c09e46;
  border-radius: 3px;
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: #c09e46 #292929;
  }
}
/* end scrollbar */
/* pricebar */
.pricesBar {
    background-color: #292929 !important;
}
/* end pricebar */
/* navbar */
#mainnav {
    top: 45px !important;
    border-bottom-right-radius: 130px;
    border-bottom-left-radius: 130px;
}
#mainnav > div.inner.bg-inherit {
    border-bottom-right-radius: 130px;
    border-bottom-left-radius: 130px;
}
.nav-icons,
.nav-menu {
  justify-content:center;
}
@media (max-width: 1024px) {
  .nav-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .nav-logo, .nav-menu, .nav-icons {
    grid-column: unset;
  }
  .nav-menu {
    grid-column: 1;
      grid-row: 1;
  }
}
/* end navbar */
/* photo with text */
.ronaq-text-with-photo .grid {
  background: url(https://cdn.salla.sa/form-builder/6rbuzkfhijELiMbofwyUF3OrnKyo9vPxgBfYGqTY.jpg) center / cover no-repeat;
  position: relative;
}
.ronaq-text-with-photo .grid::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
  background-color: #ffffff66; /* تغطية خفيفة فوق البلور */
  z-index: 1;
}
.ronaq-text-with-photo h2 {
  z-index:2;
}
/* end photo with text */
/* home Sections */
.s-slider-block__title {
    margin-top: 2rem;
}
.s-block__title h2,
.s-slider-block__title h2,
.s-reviews-header,
#page-main-title {
    color: #c3a54b;
    text-shadow: 0 0 5px #c3a54b;
    animation: glow 1.5s infinite alternate;
    padding: 8px 0;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #c3a54b;
    }
    100% {
        text-shadow: 0 0 20px #eaebed;
    }
}
/* End home Sections */
/* product card */
.s-product-card-entry {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.s-product-card-entry:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
salla-add-product-button {
    background: #bfa46f;
    color: white;
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

salla-add-product-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.6s ease;
}

salla-add-product-button:hover {
    background: linear-gradient(45deg, #27272A, #3F3F46);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

salla-add-product-button:hover::before {
    left: 100%;
}
salla-products-list .s-products-list-wrapper .s-product-card-entry .s-product-card-content .s-product-card-content-footer button,
salla-products-list .s-products-slider-slider .s-product-card-entry .s-product-card-content .s-product-card-content-footer button,
salla-products-slider .s-products-list-wrapper .s-product-card-entry .s-product-card-content .s-product-card-content-footer button,
salla-products-slider .s-products-slider-slider .s-product-card-entry .s-product-card-content .s-product-card-content-footer button {
    border-bottom: none;
    color: white;
}
.sicon-heart:before {
    color: #f35944;
}
.s-button-icon .s-button-text {
    padding: 4px;
}
.swiper-wrapper {
  margin:2rem 0;
}
.s-products-list-vertical-cards {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.625rem;
}
@media (min-width: 640px) {
    .s-products-list-vertical-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}
@media (min-width: 768px) {
    .s-products-list-vertical-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}
@media (min-width: 1024px) {
    .s-products-list-vertical-cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
/* end product card */
/* services */
.ronaq-features-texts {
  width: 90%;
  max-width: 750px;
  margin: 60px auto;
  padding: 40px 30px;
  background: linear-gradient(to bottom right, #fff, #fdf7ec);
  border: 2px solid #c3a54b;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.texts-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.subtitle {
  color: #c3a54b;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.main-title {
  font-size: 30px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
  color: #333;
}

.main-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: #c3a54b;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
}

.ronaq-sliders-description {
  font-size: 17px;
  line-height: 2;
  color: #5a5a5a;
  max-width: 600px;
  opacity: 0.9;
}

.ronaq-features .s-slider-block__title-nav {
    display: none;
}
.ronaq-features-slider .swiper-slide {
  background: #fff;
  border: 1px solid;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto !important;
}

.ronaq-features-slider .swiper-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.ronaq-features-slider .swiper-slide h4 {
  font-weight: 600;
}

/* end services */
/* footer */
.footer-is-light .store-footer {
    border-top-left-radius: 130px;
    border-top-right-radius: 130px;
    padding-top: 12px;
    background-color: #292929 !important;
}
.ronaq-store-footer .store-footer__inner {
    border-bottom: 1px dashed !important;
    background-color: transparent !important;
}
.ronaq-store-footer h3::after {
  content: '';
  display: block;
  width: 120px;
  height: 2px;
  background-color: #eaebed;
  margin:auto;
  margin-top: 6px;
  border-radius: 10px;
}
@media (min-width: 1024px) {
    .lg\:grid-cols-6 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .lg\:border-x-\[\#00000026\] {
        border: none;
    }
}

.navbar-brand img {
    max-height: 4rem !important;
    }
.footer-link{
display: none;
}

/* End footer */