
footer {
    background: #f2f3f6;
    color: #000;
    padding: 10px 0 20px;
    border-bottom: 1px solid ;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.divider-solid-horizontal-tint {
    background-color: #c9cbcf;
    width: inherit;
    height: 1px;
    margin-bottom: 39px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #000;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    opacity: 1;
    transform: translateX(-5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #131313;
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c9cbcf;
    transform: translateY(-5px);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    text-align: center;
    opacity: 0.8;
}


.trust-section h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-8px);
}

.badge-item a img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.badge-item:hover img {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.badge-item span {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .badges {
        gap: 20px;
    }

    .badge-item img {
        width: 70px;
        height: 70px;
    }
    .container-footer {
        text-align: center;
    }
    .contact-info {
        justify-content: center;
    }
    .footer-bottom {
        margin-bottom: 69px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section ul {
        text-align: center;
    }
}

.about-shop-section {
    padding:5px;
    margin-bottom:10px;
    direction: rtl;
}

.about-shop-section h2 {
    color: #667eea;
    text-align: right;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content {
    text-align: center;
    position: relative;
}

.about-content h3 {
    color: #667eea;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-content p {
    color: #333;
    line-height: 2;
    font-size: 16px;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto 15px;
}

.about-content #aboutText {
    transition: max-height 0.4s ease;
    overflow: hidden;
}

.about-content #aboutText.collapsed {
    max-height: 77px;
    position: relative;
}

.about-content #aboutText.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #f2f3f6);
}

.about-content #aboutText.expanded {
    max-height: 3000px;
}

.about-content #aboutText.expanded::after {
    display: none;
}

.category-list {
    list-style: none;
    text-align: right;
    margin: 20px auto;
    max-width: 900px;
}

.category-list li {
    margin-bottom: 12px;
    padding-right: 20px;
    position: relative;
}

.category-list li::before {
    content: '🎁';
    position: absolute;
    right: 0;
}

.category-list li a {
    color: #e74c3c;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-list li a:hover {
    color: #667eea;
    text-decoration: underline;
}

.read-more-btn {
    background: #f2f3f6;
    color: #000;
    border: none;
    padding: 12px 35px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    top: 16px;
    /*box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);*/
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0;
}

.read-more-btn:active {
    transform: translateY(0);
}
