.point-card {
    background: #ffffff;
    border-radius: 20px; 
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    position: relative;
    overflow: hidden;
    cursor: pointer;
}


.img-point {
    width: 55px; 
    height: 55px;
    object-fit: contain;
    transition: transform 0.4s ease;
}


.title-responsive {
    font-size: 13px;
    color: #333;
}

.text-responsive {
    font-size: 11px;
    color: #777;
}


.point-card:hover {
    background-color: #fff;
    border-color: #e0e0e0;
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); 
}

    .point-card:hover .img-point {
        transform: scale(1.15) rotate(5deg); 
    }


.point-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    transition: width 0.4s ease;
}

.point-card:hover::after {
    width: 100%;
}


@media (min-width: 992px) {
    .img-point {
        width: 85px; 
        height: 85px;
    }

    .title-responsive {
        font-size: 17px;
        margin-top: 10px;
    }

    .text-responsive {
        font-size: 14px;
    }

    .point-card {
        padding: 30px 15px !important;
    }
}


@media (max-width: 991px) {
    .point-card:active {
        transform: scale(0.95);
        background-color: #f8f9fa;
    }
}


.fs-14 {
    font-size: 14px;
}

.fs-13 {
    font-size: 13px;
    color: #555;
}

.fs-13 {
    font-size: 12px;
}

.fs-14 {
    font-size: 13px;
}

.descbox {
    margin-left: 14px;
}

.descboxtop {
    margin-left: 15px;
}

.middle-orange-bg {
    height: 330px;  
    opacity: 1;
}
#DiscountProduct {
    background-color: #fff3e0;
}
#NewProduct {
    background-color: #fff3e0;
}
.about-section {
    background: #fff3e0;
    padding: 20px 10px;
    font-family: "IRANSans", sans-serif;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 200px;
}

.store-title {
    font-size: 1.4rem;
    color: #d63384;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    text-align: center;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.07);
}


.about-image {
    display: none; 
}

    .about-image img {
        max-width: 200px;
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        transition: transform 0.2s ease;
    }

        .about-image img:hover {
            transform: scale(1.02);
        }


@media (max-width: 768px) {
    .about-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 10px;
    }
    
    .about-description {
        text-align: center;
        padding: 10px;
        font-size: 0.9rem;
    }

    .store-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .about-image {
        display: block; 
    }

        .about-image img {
            max-width: 150px;
        }
}
