/* custom-styles.css */

/* Product Card Styles */
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-title a {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

.product-title a:hover {
    color: #007bff;
}

.product-description {
    font-size: 14px;
    color: #777;
    margin: 10px 0;
}

.product-price {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.add-to-cart-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #0056b3;
}

.add-to-cart-btn i {
    font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .product-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .product-card {
        margin-bottom: 15px;
    }
}
