/* Custom styles for Medshop */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --bg-light: #f8f9fa;
}

body {
    background-color: var(--bg-light);
}

.hero-section { background-color: #fff; }

.product-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1)!important;
    border-color: var(--primary-color);
}

.product-img-container {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.product-img-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #212529;
}

.product-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.breadcrumb-item a {
    color: var(--secondary-color);
}
.breadcrumb-item.active {
    color: var(--primary-color);
}