/* ==========================================================================
   VIVATEH GRUP S.R.L. - Stiluri Pagina "Cum Cumpăr / Modalități de Comandă"
   ========================================================================== */

/* Containerul Principal */
.vivateh-order-container {
    font-family: 'Open Sans', sans-serif;
    color: #333333;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    box-sizing: border-box;
}

.vivateh-order-container *, 
.vivateh-order-container *::before, 
.vivateh-order-container *::after {
    box-sizing: border-box;
}

/* Header-ul paginii */
.vivateh-header {
    text-align: center;
    margin-bottom: 50px;
}
.vivateh-header h2 {
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 15px;
    font-weight: 700;
}
.vivateh-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid-ul pentru Carduri - Fix 4 coloane pe desktop */
.vivateh-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

/* Stilul Cardurilor */
.vivateh-card {
    background: #ffffff;
    border: 1px solid rgb(243, 146, 0);
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.vivateh-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Cardul Evidențiat (Showroom - Recomandat) */
.vivateh-card.featured {
    border: 2px solid #0056b3; 
    background: #fafcff;
}
.vt-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0056b3;
    color: #fff;
    padding: 4px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stilizare Iconițe Noi SVG (Carduri) */
.vt-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.vt-icon svg {
    width: 40px;
    height: 40px;
    stroke: #0056b3; /* Culoarea principală a iconițelor albastre */
}
.vivateh-card.featured .vt-icon svg {
    stroke: #0056b3;
}

.vivateh-card h3 {
    font-size: 1.25rem;
    color: #111;
    margin-bottom: 15px;
    font-weight: 600;
    min-height: 42px; /* Uniformizează înălțimea titlurilor */
    display: flex;
    align-items: center;
    justify-content: center;
}
.vt-highlight {
    background: #f1f5f9;
    padding: 8px 6px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0056b3;
    margin-bottom: 20px;
    word-break: break-all;
}
.vivateh-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
    hyphens: auto; /* Taie automat cuvintele în silabe la capăt de rând */
}

/* Împinge elementele de jos (Note / Program) la același nivel în toate cardurile */
.vt-note {
    font-size: 0.85rem !important;
    color: #777 !important;
    font-style: italic;
    margin-top: auto;
    border-top: 1px dashed rgb(243, 146, 0);
    padding-top: 10px;
}
.vt-schedule {
    background: #fff;
    border: 1px solid rgb(243, 146, 0);
    padding: 10px;
    border-radius: 6px;
    font-size: 0.85rem !important;
    margin-top: auto;
}
.vt-schedule p {
    margin: 3px 0 !important;
    text-align: center !important;
}

/* STILURI PENTRU ZONELE EXTRA (Beneficii & FAQ) */
.vivateh-extra-sections {
    margin-bottom: 50px;
    border-top: 1px solid #e2e8f0;
    padding-top: 40px;
}
.vt-section-title {
    font-size: 1.6rem;
    color: #111;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}
.vt-features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}
.vt-feature-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgb(15,112,183);
    text-align: center;
}

/* Stilizare Iconițe Noi SVG (Beneficii) */
.vt-f-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}
.vt-f-icon svg {
    width: 36px;
    height: 36px;
    stroke: #333333;
}

.vt-feature-item h4 {
    font-size: 1.15rem;
    color: #111;
    margin: 0 0 8px 0;
    font-weight: 600;
}
.vt-feature-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}
.vt-faq-block {
    max-width: 900px;
    margin: 0 auto;
}
.vt-faq-item {
    background: #ffffff;
    border: 1px solid rgb(15,112,183);
    border-radius: 6px;
    padding: 15px 20px;
    margin-bottom: 12px;
}
.vt-faq-item h5 {
    font-size: 1.05rem;
    color: #0056b3;
    margin: 0 0 8px 0;
    font-weight: 600;
}
.vt-faq-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Footer Info & Inspirație */
.vivateh-info-footer {
    background: #f8fafc;
    border-left: 4px solid #0056b3;
    padding: 25px;
    border-radius: 0 12px 12px 0;
    text-align: center;
    margin-top: 20px;
}
.vivateh-info-footer p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}
.vt-inspiration {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0056b3;
    font-style: italic;
}

/* ==========================================================================
   RESPONSIVITATE COMPLETĂ (Media Queries)
   ========================================================================== */
@media (max-width: 1150px) {
    .vivateh-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 pe ecrane medii/tablete */
        gap: 20px;
    }
}

@media (max-width: 680px) {
    .vivateh-grid {
        grid-template-columns: 1fr; /* 1 singură coloană pe ecrane de telefon */
    }
    .vivateh-card h3 {
        min-height: auto;
    }
    .vivateh-header h2 {
        font-size: 2rem;
    }
}