.product-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-image {
    position: relative;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: bold;
}

.discount-badge i {
    margin-right: 0.25rem;
}

.product-info {
    padding: 1rem;
}

.product-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.discounted-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.original-price {
    font-size: 0.875rem;
    color: #666;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.cart-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: none;
    width: auto;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cart-button:hover {
    background-color: #333;
}
