/* ============================
   Modern & Premium Product Detail Section
============================ */

.product-detail-modern {

    border-radius: 18px;
  
  
}

.pdm-header .tagline {
    font-size: 20px;
    font-weight: 600;
    color: #1f3b57;
    text-align: center;
    margin-bottom: 35px;
}

.pdm-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 10px;
}

/* Premium Feature Box */
.feature-box {
    background: rgba(247, 250, 255, 0.95);
    border-radius: 18px;
    padding: 28px 22px;
    border: 1px solid #e2e8f3;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: 0.35s ease;
}

.feature-box:hover {
    background: #fff;
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #003c80;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.feature-box p {
    font-size: 15px;
    color: #555;
    line-height: 24px;
    margin: 0;
}
