.awesome-product-box {
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    max-width: 320px;
    margin: 20px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #fff;
    font-family: 'Vazirmatn', sans-serif;
}

.awesome-product-box:hover {
    transform: scale(1.02);
}

.awesome-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.awesome-product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.awesome-product-info {
    padding: 16px;
    text-align: center;
}

.awesome-product-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
}

.awesome-product-price {
    font-size: 1rem;
    color: #008060;
    font-weight: bold;
}