/* Add custom CSS styles below */ 

/* start welcome text */
.fixed-el{
  position: fixed;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 101;
}

.welcome-text h2{
  font-size: 64px;
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: 2px;
  line-height: 1;
  position: relative;
  font-family: 'Cairo', sans-serif;
}

.welcome-text h2::after{
  content: "بلسم المذاق";
  position: absolute;
  left: 0;
  top: 0;
  color: #808080;
  text-shadow: 0 0 2px #FFF, 0 0 1px #FFF, 0 0 1px #FFF;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  animation: animloader 3s linear infinite;
}
@media(min-width:1024px){
  .fixed-el img{
    width: 20% !important;
  }
}
/* start hero banner */
section:first-of-type{
  margin-top: 0;
}
salla-slider.photos-slider .swiper-slide {
    margin: 0;
    padding: 0;
    width: 100%;
    border-radius: 0;
}
salla-slider.photos-slider .swiper:where([dir=rtl],[dir=rtl] *) {
    padding: 0;
}
.s-slider-v-centered .s-slider-block__title-nav {
    display: none;
}

/* start grid categories */
section:nth-of-type(3) {
    margin-top: 1em;
}
.md\:grid-cols-3 {
    grid-template-columns: repeat(5,1fr);
}
.two-row .banner-entry:first-child {
    grid-column: span 1 / span 1;
    grid-row: span 1 / span 1;
}
.grid.two-row .banner-entry{
  height: 250px;
}
.lazy__bg.loaded{
  background-size: contain;
  background-repeat: no-repeat;
}
a.banner-entry .lazy__bg {
    transition: all 0.2s linear;
}
a.banner-entry:hover .lazy__bg {
    scale: 0.9;
}
.banner--fixed img,.banner-entry {
  background-color: unset;
}
@media (min-width:768px) and (max-width:1024px){
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3,1fr);
}
}
@media(max-width:767px){
  .md\:grid-cols-3 {
    grid-template-columns: repeat(2,1fr);
}
  .grid.two-row .banner-entry{
  height: 200px;
}
}

/* start products */
.s-button-primary-outline {
    color: #ffffff;
    background-color: var(--color-primary);
}
.s-product-card-entry {
    border: 2px solid var(--color-primary);
}
.s-product-card-image:hover  {
}
.s-product-card-image:hover img {
    transform: scale(1.1);
    transition: all 0.5s linear;
}
.s-slider-block__title h2 {
    background: linear-gradient(45deg, var(--color-primary), #808080);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 100%;
    animation: smooth-color 3s ease-in-out infinite alternate-reverse;
}
button.s-slider-nav-arrow[aria-label="Next slide"] svg {
    fill: var(--color-primary) !important;
}
.s-slider-block__display-all{
  position: relative;
  color: #000;
}
.s-slider-block__display-all::after {
    content: "";
    width: 50%;
    height: 2px;
    right: 0;
    bottom: -5px;
    position: absolute;
    background: var(--color-primary);
}

/* start side photos */
.grid.one-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.one-row .banner-entry{
  height: 500px;
}
@media (min-width:768px) and (max-width:1024px){
.grid.one-row .banner-entry {
    height: 300px;
}
}
@media(max-width:767px){
.grid.one-row .banner-entry {
    height: 200px;
}
}
/* start reviews */
.s-reviews-header {
    background: var(--color-primary);
    padding: 10px;
    border-radius: 0 10px 0 10px;
    box-shadow: 5px 5px #000;
}

/* start footer */
.store-footer h3{
  color: var(--color-primary);
}
@media(max-width:767px){  
.container.grid.grid-col-1.lg\:grid-cols-6.gap-8.lg\:gap-6 * {
    text-align: center;
    justify-content: center;
}
  footer .container.grid {
    gap: 1em;
}
  footer .contact-social {
    padding: 0;
}
 footer .s-contacts-list.s-contacts-list-vertical {
    gap: 1px;
}
}






/* Animation */
@keyframes smooth-color{
  100%{
    background-size: 200%;
  }
}

@keyframes animloader {
  0%{
    height: 100%;
  }

  100%{
    height: 0%;
  }
}