
.products-section {
    padding: 2rem 0;
}

.products-container {
    background-color: #fcced4;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-left: 5rem;
    margin-right: 5rem;
    margin-top: 2rem
}

.product-box {
    background-color: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-header {
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
}

.product-header h3 {
    font-size: 1.3rem;
}

.product-content {
    padding: 1.5rem;
    min-height: 200px;
}

.product-content p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.product-footer {
    padding: 1rem;
    text-align: center;
}

.buy-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

.buy-btn:hover {
    background-color: #fcacd1d3;
}

/* رسپانسیو برای محصولات */
@media (max-width: 768px) {
    .products-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .product-header h3 {
        font-size: 1.2rem;
    }
    
    .product-content {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .products-container {
        grid-template-columns: 1fr;
    }
    
    .product-header h3 {
        font-size: 1.1rem;
    }
    
    .product-content p {
        font-size: 1rem;
    }
}

.hellokitty{
    width: 1vw;
    height: 2vh;
    float: left;
}