.content-sm {
    padding-top: 0px !important;
}

.section-title {
    text-align: center;
    color: #337ab7;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 2px solid #337ab7;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    color: #337ab7;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-info {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
}

.product-info strong {
    color: #337ab7;
}

.btn-view {
    margin-top: 12px;
    background-color: #337ab7;
    border-color: #337ab7;
    color: #fff;
    border-radius: 30px;
    padding: 6px 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background-color: #285f8f;
    border-color: #285f8f;
}