/* Donation Button Simple CSS
 * Styles for the quick donation button and popup
 */

/* Main donation button (floating) */
#donation-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1bab93; /* Primary green color */
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
  font-family: 'Tajawal', 'Harmattan', Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

#donation-btn:hover {
  background-color: #1b7b5f; /* Darker green on hover */
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Donation popup container */
#donation-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 400px;
  z-index: 1000;
  display: none;
  direction: rtl;
  font-family: 'Tajawal', 'Harmattan', Arial, sans-serif;
  overflow: hidden;
}

/* Popup header */
#donation-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  background-color: #f9f9f9;
}

#donation-popup-header h3 {
  margin: 0;
  color: #333;
  font-size: 18px;
  font-weight: bold;
}

#donation-popup-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
  padding: 0;
  line-height: 1;
}

#donation-popup-close:hover {
  color: #333;
}

/* Popup content */
#donation-popup-content {
  padding: 20px;
}

/* Project selector styles */
#project-selector-container {
  margin-bottom: 20px;
}

#project-selector-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #444;
}

#project-selector {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #333;
  transition: border-color 0.3s ease;
}

#project-selector:focus {
  outline: none;
  border-color: #1bab93;
  box-shadow: 0 0 0 2px rgba(27, 171, 147, 0.1);
}

/* Donation options styles */
#donation-options {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.donation-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.donation-option:hover {
  background-color: #f0f0f0;
}

.donation-option input[type="radio"] {
  margin-left: 10px;
  cursor: pointer;
}

.donation-option span {
  font-size: 14px;
  color: #333;
}

/* Amount container styles */
#amount-container {
  margin-bottom: 20px;
}

#amount-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #444;
}

#donation-amount {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #333;
  transition: border-color 0.3s ease;
}

#donation-amount:focus {
  outline: none;
  border-color: #1bab93;
  box-shadow: 0 0 0 2px rgba(27, 171, 147, 0.1);
}

/* Submit button styles - تبرع الان */
#donation-submit {
  background-color: #1bab93; /* Primary green color */
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: block;
  width: 100%;
  margin-top: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#donation-submit:hover {
  background-color: #1b7b5f; /* Darker green on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

#donation-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (max-width: 480px) {
  #donation-popup {
    width: 95%;
  }
  
  #donation-btn {
    bottom: 15px;
    right: 15px;
    padding: 10px 20px;
    font-size: 14px;
  }
  
  #donation-popup-header h3 {
    font-size: 16px;
  }
  
  #donation-submit {
    padding: 10px 20px;
    font-size: 15px;
  }
}

/* Highlight effect for active options */
.donation-option input[type="radio"]:checked + span {
  color: #1bab93;
  font-weight: bold;
}

/* Add slight animation for popup appearance */
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -48%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

#donation-popup.visible {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}


/* ====================== */
/*         SLIDER         */
/* ====================== */
/* تعريف متغيرات الألوان */
:root {
  --slider-primary: #2ecc71;
  --slider-secondary: #f1c40f;
  --slider-accent: #3498db;
  --slider-text: #333333;
  --slider-shadow: rgba(0, 0, 0, 0.15);
}

/* محددات أكثر تحديدًا وأولوية للسلايدر الرئيسي */
body .main-nav-container ~ div .swiper-container,
body .main-nav-container ~ div salla-slider,
body .main-banner-slider,
body #heroSlider,
body .s-block-banners,
body .banner-slider,
body [data-type="slider"].s-block {
  overflow: visible !important;
  margin: 20px auto 40px !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  position: relative !important;
  z-index: 2 !important;
}

/* تعديل جميع الشرائح بشكل مباشر لضمان التأثير */
body .main-nav-container ~ div .swiper-container .swiper-slide,
body .s-block-banners .swiper-slide,
body #heroSlider .swiper-slide,
body .banner-slider .swiper-slide,
body [data-type="slider"].s-block .swiper-slide {
  transition: all 0.5s cubic-bezier(.25,.8,.25,1) !important;
  opacity: 0.6 !important;
  transform: scale(0.85) !important;
  filter: blur(1px) !important;
  overflow: hidden !important;
  border-radius: 12px !important;
}

/* الشريحة النشطة */
body .main-nav-container ~ div .swiper-container .swiper-slide-active,
body .s-block-banners .swiper-slide-active,
body #heroSlider .swiper-slide-active,
body .banner-slider .swiper-slide-active,
body [data-type="slider"].s-block .swiper-slide-active {
  opacity: 1 !important;
  transform: scale(1) !important;
  filter: blur(0) !important;
  border-radius: 12px !important;
}

/* أزرار التنقل */
body .main-nav-container ~ div .swiper-button-next,
body .main-nav-container ~ div .swiper-button-prev,
body .s-block-banners .swiper-button-next,
body .s-block-banners .swiper-button-prev,
body #heroSlider .swiper-button-next,
body #heroSlider .swiper-button-prev,
body .banner-slider .swiper-button-next,
body .banner-slider .swiper-button-prev,
body [data-type="slider"].s-block .swiper-button-next,
body [data-type="slider"].s-block .swiper-button-prev {
  background-color: #ffffff !important;
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  color: #2ecc71 !important;
}

/* الصور داخل السلايدر */
body .main-nav-container ~ div .swiper-container img,
body .s-block-banners img,
body #heroSlider img,
body .banner-slider img,
body [data-type="slider"].s-block img {
  border-radius: 10px !important;
  transition: transform 0.5s ease !important;
}

/* تأثير الصورة عند التحويم */
body .main-nav-container ~ div .swiper-container .swiper-slide:hover img,
body .s-block-banners .swiper-slide:hover img,
body #heroSlider .swiper-slide:hover img,
body .banner-slider .swiper-slide:hover img,
body [data-type="slider"].s-block .swiper-slide:hover img {
  transform: scale(1.04) !important;
}

/* نقاط التنقل */
body .main-nav-container ~ div .swiper-pagination-bullet,
body .s-block-banners .swiper-pagination-bullet,
body #heroSlider .swiper-pagination-bullet,
body .banner-slider .swiper-pagination-bullet,
body [data-type="slider"].s-block .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background-color: #e0e0e0 !important;
  opacity: 0.7 !important;
  transition: all 0.3s ease !important;
}

/* النقطة النشطة */
body .main-nav-container ~ div .swiper-pagination-bullet-active,
body .s-block-banners .swiper-pagination-bullet-active,
body #heroSlider .swiper-pagination-bullet-active,
body .banner-slider .swiper-pagination-bullet-active,
body [data-type="slider"].s-block .swiper-pagination-bullet-active {
  width: 24px !important; 
  border-radius: 10px !important;
  background: linear-gradient(to right, #2ecc71, #f1c40f) !important;
  opacity: 1 !important;
}

/* تأثير إضافي للتميز في بداية ونهاية السلايدر */
body .main-nav-container ~ div .swiper-container::after,
body .s-block-banners::after,
body #heroSlider::after,
body .banner-slider::after,
body [data-type="slider"].s-block::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, rgba(46, 204, 113, 0.1), rgba(241, 196, 15, 0.1));
  z-index: -1;
  border-radius: 15px;
  pointer-events: none;
}

/* تصحيح موضع أزرار التنقل */
body .main-nav-container ~ div .swiper-button-next,
body #heroSlider .swiper-button-next,
body .s-block-banners .swiper-button-next,
body .banner-slider .swiper-button-next,
body [data-type="slider"].s-block .swiper-button-next {
  right: -22px !important;
}

body .main-nav-container ~ div .swiper-button-prev,
body #heroSlider .swiper-button-prev,
body .s-block-banners .swiper-button-prev,
body .banner-slider .swiper-button-prev,
body [data-type="slider"].s-block .swiper-button-prev {
  left: -22px !important;
}

/* تنسيقات قسم البطاقات */
.mission-cards-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.05), rgba(241, 196, 15, 0.05));
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.mission-cards-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, rgba(241, 196, 15, 0.05) 70%);
  z-index: 1;
  pointer-events: none;
}

.mission-cards-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 196, 15, 0.1) 0%, rgba(46, 204, 113, 0.05) 70%);
  z-index: 1;
  pointer-events: none;
}

.mission-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.mission-cards-heading {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  position: relative;
}

.mission-cards-heading h2 {
  font-size: 32px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.mission-cards-heading h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #2ecc71, #f1c40f);
  border-radius: 2px;
}

.mission-card {
  width: 100%;
  max-width: 280px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.mission-card-header {
  padding: 25px 25px 20px;
  text-align: center;
  position: relative;
}

.mission-card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, #2ecc71, #f1c40f);
  border-radius: 3px;
}

.mission-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(241, 196, 15, 0.1));
  border-radius: 50%;
  color: #2ecc71;
  font-size: 32px;
}

.mission-card-title {
  color: #2ecc71;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.mission-card-content {
  padding: 20px 25px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.mission-card-description {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  flex-grow: 1;
}

/* تجاوب البطاقات مع الشاشات المختلفة */
@media (max-width: 1200px) {
  .mission-cards-container {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .mission-card {
    max-width: 100%;
    width: calc(50% - 15px);
  }
  
  .mission-cards-heading h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .mission-card {
    width: 100%;
  }
  
  .mission-cards-section {
    padding: 40px 0;
  }
  
  .mission-cards-heading h2 {
    font-size: 24px;
  }
}


/* ====================== */
/*      PRODUCT CARDS     */
/* ====================== */
.s-product-card-entry {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  max-width: 350px;
}

.s-product-card-entry:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.s-product-card-image img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #e0e0e0;
  transition: transform 0.3s ease;
}

.s-product-card-entry:hover .s-product-card-image img {
  transform: scale(1.05);
}

/* Card Content */
.s-product-card-content {
  padding: 15px;
}

.s-product-card-content-title a {
  text-align:center;
  color: #2d763c;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.s-product-card-content-title a:hover {
  color: #075016;
}

/* Form Elements */
.s-product-card-donation-input label {
  font-weight: bold;
  color: #2d763c;
}

.s-product-card-donation-input input {
  width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  margin-top: 5px;
  transition: border-color 0.3s ease;
}

.s-product-card-donation-input input:focus {
  border-color: #2d763c;
  outline: none;
}

.s-button-element {
  background-color: #2d763c;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.s-button-element:hover {
  background-color: #075016;
  transform: translateY(-3px);
}

/* ====================== */
/*         FOOTER         */
/* ====================== */
footer {
  background: linear-gradient(135deg, #6bcd53, #d6c851); /* Example colors */
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  text-align: center;
}

/* Make the background of .store-footer__inner transparent */
.store-footer__inner {
  background: transparent !important;
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  text-align: center;
}

/* Example of footer links and icons */
footer a {
  color: #fff;
  transition: color 0.3s ease, transform 0.3s ease;
}

footer a:hover {
  color: #f0f0f0; /* Example hover color */
  transform: translateY(-3px); /* Simple hover animation */
}

footer .social-icons,
footer .payment-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

footer .social-icons i,
footer .payment-icons i {
  font-size: 24px;
  transition: transform 0.3s ease, color 0.3s ease;
}

footer .social-icons i:hover,
footer .payment-icons i:hover {
  transform: scale(1.2); /* Scale up on hover */
  color: #f0f0f0; /* Change color on hover */
}

/* Keyframe animations for icons */
@keyframes iconBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

footer .social-icons i,
footer .payment-icons i {
  animation: iconBounce 2s infinite;
}
/* ====================== */
/*       ANIMATIONS       */
/* ====================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes bounceIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

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

@keyframes zoomIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}



.mission-cards-section {

  padding: 60px 0;

  background: linear-gradient(135deg, rgba(46, 204, 113, 0.05), rgba(241, 196, 15, 0.05));

  margin-top: 20px;

  position: relative;

  overflow: hidden;

}



.mission-cards-section::before {

  content: '';

  position: absolute;

  top: -10%;

  right: -5%;

  width: 300px;

  height: 300px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, rgba(241, 196, 15, 0.05) 70%);

  z-index: 1;

  pointer-events: none;

}



.mission-cards-section::after {

  content: '';

  position: absolute;

  bottom: -10%;

  left: -5%;

  width: 250px;

  height: 250px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(241, 196, 15, 0.1) 0%, rgba(46, 204, 113, 0.05) 70%);

  z-index: 1;

  pointer-events: none;

}



.mission-cards-container {

  max-width: 1200px;

  margin: 0 auto;

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 30px;

  position: relative;

  z-index: 2;

}



.mission-cards-heading {

  width: 100%;

  text-align: center;

  margin-bottom: 40px;

  color: #333;

  position: relative;

}



.mission-cards-heading h2 {

  font-size: 32px;

  margin-bottom: 15px;

  position: relative;

  display: inline-block;

}



.mission-cards-heading h2::after {

  content: '';

  position: absolute;

  bottom: -10px;

  left: 50%;

  transform: translateX(-50%);

  width: 80px;

  height: 4px;

  background: linear-gradient(to right, #2ecc71, #f1c40f);

  border-radius: 2px;

}



.mission-card {

  width: 100%;

  max-width: 280px;

  background-color: #fff;

  border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  overflow: hidden;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  position: relative;

  display: flex;

  flex-direction: column;

}



.mission-card:hover {

  transform: translateY(-10px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

}



.mission-card-header {

  padding: 25px 25px 20px;

  text-align: center;

  position: relative;

}



.mission-card-header::after {

  content: '';

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 40px;

  height: 3px;

  background: linear-gradient(to right, #2ecc71, #f1c40f);

  border-radius: 3px;

}



.mission-card-icon {

  width: 70px;

  height: 70px;

  margin: 0 auto 15px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(241, 196, 15, 0.1));

  border-radius: 50%;

  color: #2ecc71;

  font-size: 32px;

}



.mission-card-title {

  color: #2ecc71;

  font-size: 22px;

  font-weight: 700;

  margin-bottom: 10px;

}



.mission-card-content {

  padding: 20px 25px 25px;

  flex-grow: 1;

  display: flex;

  flex-direction: column;

}



.mission-card-description {

  color: #555;

  font-size: 16px;

  line-height: 1.6;

  flex-grow: 1;

}



/* تجاوب البطاقات مع الشاشات المختلفة */

@media (max-width: 1200px) {

  .mission-cards-container {

    padding: 0 20px;

  }

}



@media (max-width: 768px) {

  .mission-card {

    max-width: 100%;

    width: calc(50% - 15px);

  }

  

  .mission-cards-heading h2 {

    font-size: 28px;

  }

}



@media (max-width: 576px) {

  .mission-card {

    width: 100%;

  }

  

  .mission-cards-section {

    padding: 40px 0;

  }

  

  .mission-cards-heading h2 {

    font-size: 24px;

  }
  
  .s-products-list-vertical-cards {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.625rem;
}

.s-products-list-wrapper {
    margin-right: 2rem;
    margin-bottom: 2rem;
    display: grid
;
}
.s-product-card-image-contain {
    -o-object-fit: contain;
    object-fit: cover;
}

.s-product-card-image img {
    height: 127%;
    width: 100%;
    opacity: 0;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
}
}


.store-footer h3 {
    color: #434040;}
    
    
    
 /* ====================== */
/*         NAVBAR         */
/* ====================== */
.main-menu li {
  color: #050505; /* Default text color */
  padding: 10px 15px;
  text-decoration: none;
  position: relative; /* Required for positioning the pseudo-element */
  transition: color 0.3s ease;
}

.main-menu li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #278a27; /* Underline color */
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.main-menu li:hover {
  color: #f0f0f0; /* Text color on hover */
}

.main-menu li:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
  }
  
    
 /* ====================== */
/*         NAVBAR         */
/* ====================== */
.main-menu li {
  color: #050505; /* Default text color */
  padding: 10px 15px;
  text-decoration: none;
  position: relative; /* Required for positioning the pseudo-element */
  transition: color 0.3s ease;
}

.main-menu li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #278a27; /* Underline color */
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.main-menu li:hover {
  color: #f0f0f0; /* Text color on hover */
}

.main-menu li:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
  
/* ====================== */
/*     SOCIAL ICONS       */
/* ====================== */
.s-social-list {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.s-social-list .s-social-link {
  display: inline-block;
  margin: 0;
  list-style: none;
}

.s-social-list .s-social-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #278a27;
  transition: all 0.3s ease;
}

.s-social-list .s-social-link a:hover {
  background-color: #f0f0f0;
  transform: scale(1.1);
}

.s-social-list .s-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-social-list .s-social-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  transition: fill 0.3s ease;
}

.s-social-list .s-social-link a:hover svg {
  fill: #278a27;
  animation: fillColorChange 1s forwards;
}

@keyframes fillColorChange {
  0% {
    fill: #fff;
  }
  50% {
    fill: #f0f0f0;
  }
  100% {
    fill: #278a27;
  }
}}


/* ====================== */
/*     LICENSES PAGE      */
/* ====================== */
.content--single-page {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.content--single-page h1 {
  color: #278a27;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.content--single-page h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #278a27, #6bcd53);
  border-radius: 2px;
}

.content-entry {
  max-width: 900px;
  margin: 0 auto;
}

.content-entry img {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.content-entry img:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Spacing between images */
.content-entry p {
  margin: 15px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content--single-page {
    padding: 20px !important;
  }

  .content--single-page h1 {
    font-size: 1.5rem;
  }

  .content-entry img {
    margin: 15px auto;
  }
}


.content .content-entry img{
margin:auto;
}





/* ====================== */
/*     LICENSES PAGE      */
/* ====================== */
.content--single-page {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.content--single-page h1 {
  color: #278a27;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.content--single-page h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #278a27, #6bcd53);
  border-radius: 2px;
}

.content-entry {
  max-width: 900px;
  margin: 0 auto;
}

.content-entry img {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.content-entry img:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Spacing between images */
.content-entry p {
  margin: 15px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content--single-page {
    padding: 20px !important;
  }

  .content--single-page h1 {
    font-size: 1.5rem;
  }

  .content-entry img {
    margin: 15px auto;
  }
}



/* ====================== */
/*     PHOTOS SLIDER      */
/* ====================== */
salla-slider.photos-slider .swiper {
  overflow: hidden !important;
  padding: 20px 0 40px !important;
  width: 100% !important; /* Take full width */
  max-width: 100% !important; /* Remove max-width limitation */
}

salla-slider.photos-slider .swiper-slide {
  transition: all 0.4s ease-in-out !important;
  border-radius: 0 !important; /* Remove border radius */
  overflow: hidden !important;
  box-shadow: none !important; /* Remove shadow */
}

salla-slider.photos-slider .swiper-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; /* Change to cover */
  object-position: center !important;
  transition: transform 0.4s ease !important;
  padding: 0 !important; /* Remove padding */
  background: none !important; /* Remove background */
}

salla-slider.photos-slider .swiper-slide:hover img {
  transform: scale(1.02) !important;
}

/* Navigation Buttons */
salla-slider.photos-slider .swiper-button-next,
salla-slider.photos-slider .swiper-button-prev {
  background-color: rgba(39, 138, 39, 0.9) !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
}

salla-slider.photos-slider .swiper-button-next {
  right: 20px !important;
}

salla-slider.photos-slider .swiper-button-prev {
  left: 20px !important;
}

/* Pagination */
salla-slider.photos-slider .swiper-pagination {
  bottom: 20px !important;
}