/* إضافة العنوان باستخدام الـ pseudo-element */
.stats-section::before {
    content: "بعض الاحصائيات";
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* === تنسيق القسم الرئيسي للإحصائيات === */
.stats-section {
    background: linear-gradient(135deg, #28a745 0%, #6f42c1 50%, #dc3545 100%);
    padding: 50px 20px;
    text-align: center;
    border-radius: 12px;
    margin-top: 40px;
    margin-bottom: 60px; /* مسافة إضافية من الأسفل للفوتر */
    color: #fff;
}

/* حاوية الإحصائيات */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* تصميم العنصر الواحد */
.stat-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
}

/* التأثير عند تمرير الماوس */
.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* أيقونة الإحصائية */
.stat-icon {
    width: 50px;
    height: 50px;
}

/* المعلومات داخل كل عنصر */
.stat-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

/* رقم الإحصائية */
.stat-number {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

/* وصف الإحصائية */
.stat-label {
    font-size: 16px;
    color: #e0f7ff;
}

/* === تصميم متجاوب للشاشات الصغيرة === */
@media (max-width: 768px) {
    .btn--wishlist{
      margin-right:11rem;
    }
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stat-item {
        width: 80%;
        justify-content: center;
        text-align: center;
    }

    .stat-info {
        align-items: center;
    }
}


/* تنسيق صفحة التراخيص لجمعية التنمية الأسرية بمنطقة جازان */

/* تنسيق عام للصفحة */
.content--single-page {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

/* تنسيق العنوان الرئيسي */
.content--single-page h1 {
    color: var(--color-primary-dark);
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content--single-page h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
}

/* تنسيق محتوى الصفحة */
.content-entry {
    line-height: 1.6;
}

.content-entry p {
    margin-bottom: 1rem;
}

.content-entry strong {
    color: var(--color-primary-dark);
    font-size: 1.2rem;
    display: block;
    text-align: center;
    margin-bottom: 1rem;
}

/* تنسيق الصور */
.content-entry img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 auto 2rem;
    display: block;
}

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

/* تنسيق متجاوب */
@media (max-width: 768px) {
    .content--single-page {
        padding: 1.5rem !important;
        margin-top: 1rem !important;
    }
    
    .content--single-page h1 {
        font-size: 1.5rem;
    }
    
    .content-entry strong {
        font-size: 1.1rem;
    }
}

/* تنسيق قسم التعليقات */
.s-comments {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eaeaea;
}


/* تنسيق قسم الأهداف الاستراتيجية لجمعية رافد للتنمية الأسرية */

/* تنسيق عام لقسم الأهداف الاستراتيجية */
.s-block--strategic-goals {
    padding: 3rem 0;
    background-color: #f8f9fa;
    font-family: var(--font-main);
    position: relative;
    overflow: hidden;
}

/* تنسيق عنوان القسم */
.s-block__title {
    margin-bottom: 2.5rem;
    text-align: center;
}

.s-block__title-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
    margin-bottom: 0.5rem;
}

.s-block__title-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
}

.s-block__title-description {
    color: #666;
    font-size: 1.1rem;
}

/* تنسيق شبكة البطاقات */
.strategic-goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

/* تنسيق بطاقة الهدف */
.strategic-goal-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.strategic-goal-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.strategic-goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary-light);
}

.strategic-goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.strategic-goal-card:hover::before {
    width: 100%;
}

/* تنسيق أيقونة الهدف */
.strategic-goal-card__icon-container {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
}

.strategic-goal-card__icon {
    width: 80px;
    height: 80px;
    background-color: rgba(64, 108, 40, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.strategic-goal-card:hover .strategic-goal-card__icon {
    background-color: white;
    transform: scale(1.1);
}

.goal-icon {
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.strategic-goal-card:hover .goal-icon {
    color: white;
}

/* تنسيق محتوى البطاقة */
.strategic-goal-card__content {
    text-align: center;
}

.strategic-goal-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-primary-dark);
    transition: all 0.3s ease;
}

.strategic-goal-card:hover .strategic-goal-card__title {
    color: rgb(116, 24, 1);
}

.strategic-goal-card__description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* تنسيقات متجاوبة */
@media (max-width: 992px) {
    .s-block--strategic-goals {
        padding: 2.5rem 0;
    }
    
    .s-block__title-text {
        font-size: 1.6rem;
    }
    
    .strategic-goals-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .s-block--strategic-goals {
        padding: 2rem 0;
    }
    
    .s-block__title {
        margin-bottom: 2rem;
    }
    
    .s-block__title-text {
        font-size: 1.5rem;
    }
    
    .s-block__title-description {
        font-size: 1rem;
    }
    
    .strategic-goal-card {
        padding: 1.25rem;
    }
    
    .strategic-goal-card__icon {
        width: 70px;
        height: 70px;
    }
    
    .goal-icon {
        font-size: 2.25rem;
    }
    
    .strategic-goal-card__title {
        font-size: 1.15rem;
    }
}

@media (max-width: 576px) {
    .s-block--strategic-goals {
        padding: 1.5rem 0;
    }
    
    .s-block__title-text {
        font-size: 1.35rem;
    }
    
    .strategic-goal-card:hover {
        transform: translateY(-5px);
    }
    
    .strategic-goal-card__icon {
        width: 60px;
        height: 60px;
    }
    
    .goal-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .s-block--strategic-goals {
        padding: 1.25rem 0;
    }
    
    .s-block__title {
        margin-bottom: 1.5rem;
    }
    
    .s-block__title-text {
        font-size: 1.25rem;
    }
    
    .s-block__title-description {
        font-size: 0.9rem;
    }
    
    .strategic-goal-card__title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .strategic-goal-card__description {
        font-size: 0.9rem;
    }
}

/* تنسيق الفوتر لجمعية التنمية الأسرية بمنطقة جازان */

/* تنسيق عام للفوتر */
.store-footer {
    background-color: #f8f9fa;
    padding: 3rem 0 1rem;
    color: #333;
    border-top: 1px solid #eaeaea;
    font-family: var(--font-main);
}

.store-footer__inner {
    padding: 0 1rem;
}

/* تنسيق العناوين في الفوتر */
.store-footer h3 {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.store-footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: var(--color-primary-light);
}

/* تنسيق الفقرات النصية */
.store-footer p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.store-footer p strong {
    color: var(--color-primary-dark);
}

/* تنسيق قائمة الروابط المهمة */
.s-menu-footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.s-menu-footer-item {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 1rem;
}

.s-menu-footer-item:hover {
    color: var(--color-primary);
    transform: translateX(-5px);
}

.s-menu-footer-item::before {
    content: '◄';
    position: absolute;
    right: 0;
    color: var(--color-primary-light);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.s-menu-footer-item:hover::before {
    opacity: 1;
}

/* تنسيق أيقونات التواصل الاجتماعي */
.s-social-list {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.s-social-link {
    list-style: none;
}

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

.s-social-link a:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.s-social-link a:hover .s-social-icon svg {
    fill: white;
}

.s-social-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--color-primary);
    transition: fill 0.3s ease;
}

/* تنسيق معلومات الاتصال */
.s-contacts-title {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.s-contacts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.s-contacts-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.s-contacts-item:hover {
    color: var(--color-primary);
}

.s-contacts-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--color-primary);
}

/* تنسيق الجزء السفلي من الفوتر */
.store-footer__subline {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eaeaea;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* تنسيقات متجاوبة */
@media (max-width: 768px) {
    .store-footer {
        padding: 2rem 0 1rem;
    }
    
    .s-social-list {
        justify-content: center;
    }
    
    .store-footer__subline {
        margin-top: 1.5rem;
    }
}


/* Navbar Container */
#mainnav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

/* Logo Animation */
.navbar-brand img {
    transition: all 0.3s ease;
    max-width: 150px !important;
    transform-origin: left center;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Menu Items Animation */
.main-menu li {
    position: relative;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.main-menu li a {
    padding: 8px 12px;
    transition: all 0.2s ease;
    color: #333 !important;
    position: relative;
}

.main-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0a7326;
    transition: width 0.3s ease;
}

.main-menu li a:hover::after {
    width: 100%;
}

/* Active Menu Item */
.main-menu li.active a {
    color: #0a7326 !important;
    font-weight: bold;
}

.main-menu li.active a::after {
    width: 100%;
}

/* Cart Icon Animation */
salla-cart-summary .s-cart-summary-wrapper {
    transition: transform 0.3s ease;
}

salla-cart-summary:hover .s-cart-summary-wrapper {
    transform: scale(1.1);
}

/* Mobile Menu Button */
.mburger {
    transition: transform 0.3s ease;
}

.mburger:hover {
    transform: rotate(90deg);
}

/* Scroll Effects */
.navbar-scrolled {
    height: 70px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Slide Down Animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

#mainnav {
    animation: slideDown 0.5s ease-out;
}

/* Mobile Menu Overlay */
.mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .main-menu li:not(.lg:hidden) {
        display: none;
    }
    
    .navbar-brand img {
        max-width: 120px !important;
    }
}


.s-product-card-image img{
height:auto !important;
}

.s-product-card-content-title a {
text-align:center;
padding:1rem;
}
salla-slider.photos-slider .swiper-slide{
width:100% !important;
}