/* Premium Industrial Card - Big Image Version */
.premium-card {
    border: none;
    border-top: 5px solid #007bff;
    /* Initial Blue */
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-top-color: #28a745;
}

/* 1. INCREASED IMAGE AREA */
.card-img-container {
    height: 320px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fcfcfc;
}

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

/* 2. BETTER TYPOGRAPHY FOR READABILITY */
.premium-card .card-body {
    padding: 1.5rem 2rem 2rem 2rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-desc {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 3. BUTTON STYLING */
.btn-modern {
    background-color: #007bff;
    border: none;
    font-weight: 600;
    padding: 12px;
    border-radius: 5px;
    transition: 0.3s;
}

.premium-card:hover .btn-modern {
    background-color: #28a745;
}


.btn-link-custom {
    font-weight: 700;
    color: #212529;
    text-decoration: none;
    border-bottom: 2px solid #007bff;
    padding-bottom: 2px;
}

.btn-link-custom:hover {
    color: #007bff;
    text-decoration: none;
}