body {
    background-color: white!important;
}

input {
    border: 1px solid rgba(0,0,0,.3)!important;
}

.text-purple {
    color: #5d3ebc!important;
}

.text-purple:hover {
    color: #4a2f96!important;
}

.btn-purple {
    background-color: #5d3ebc!important;
}

.btn-purple:hover {
    background-color: #4a2f96!important;
}

.btn-purple:active {
    background-color: #5d3ebc!important;
}

.nav-btn {
    background-color: #f7f8fa!important;
    border: 1px solid #e0e0e0!important;
}

.nav-btn:hover {
    background-color: #edeef2!important;
}

.btn-purple:focus {
    background-color: #5d3ebc!important;
}

.bg-purple {
    background-color: #5d3ebc!important;
}

.bg-purple:hover {
    background-color: #4a2f96!important;
}

.h-48px {
    min-height: 44px!important;
}

.btn-outline-purple {
    border: 1px solid #5d3ebc!important;
    color: #5d3ebc!important;
}

.btn-outline-purple:hover {
    border: 1px solid #4a2f96!important;
    color: #5d3ebc!important;
}

.border-6 {
    border-radius: 6px!important;
}

/* Product Card Styles */
.product-card {
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.discount-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #5d3ebc;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
}

.product-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.6em; 
}

.product-name a {
    color: #333;
    text-decoration: none;
}

.product-name a:hover {
    color: #4a2f96;
}

.product-price {
    margin-bottom: 8px;
}

.current-price {
    font-size: 16px;
    font-weight: bold;
}

.old-price {
    font-size: 14px;
}

.product-meta {
    margin-top: auto;
}

@media (max-width: 768px) {
    .product-image-container {
        height: 160px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-name {
        font-size: 13px;
    }
    
    .current-price {
        font-size: 14px;
    }
}