.vpr-card{
    max-width:1200px;
    margin:40px auto;
    background:#ffffff;
    border:1px solid #ececec;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 12px 40px rgba(0,0,0,.06);
}

.vpr-hero{
    display:grid;
    grid-template-columns:55% 45%;
    gap:40px;
    padding:35px;
}

.vpr-image img{
    width:100%;
    height:100%;
    min-height:450px;
    object-fit:cover;
    display:block;
    border-radius:18px;
}

.vpr-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.vpr-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:20px;
}

.vpr-badge{
    background:#edf3eb;
    color:#7B9776;
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    line-height:1;
}

.vpr-title{
    font-size:56px;
    line-height:1.05;
    margin:15px 0;
    font-weight:800;
}

.vpr-description{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

.vpr-rating{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}

.vpr-stars{
    color:#ffb400;
    font-size:18px;
    letter-spacing:2px;
}

.vpr-rating-score{
    font-weight:700;
    color:#111;
}

.vpr-reviews{
    color:#777;
    font-size:14px;
}

.vpr-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:25px;
}

.vpr-tag{
    background:#f6f6f6;
    color:#555;
    padding:6px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:500;
}

.vpr-jump-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.vpr-jump-buttons a{
    text-decoration:none;
    background:#7B9776;
    color:#fff;
    padding:12px 18px;
    border-radius:12px;
    font-size:14px;
    font-weight:700;
    transition:.2s;
}

.vpr-jump-buttons a:hover{
    transform:translateY(-2px);
}

.vpr-stats{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:15px;
    padding:0 35px 35px;
}

.vpr-stat{
    background:#fafafa;
    border:1px solid #f0f0f0;
    border-radius:16px;
    padding:12px;
    text-align:center;
}

.vpr-stat strong{
    display:block;
    margin-bottom:8px;
    color:#444;
    font-size:14px;
}

.vpr-stat span{
    font-size:16px;
    font-weight:700;
    color:#111;
}

.vpr-section{
    padding:35px;
    border-top:1px solid #f1f1f1;
}

.vpr-section h3{
    margin:0 0 20px;
    font-size:26px;
    font-weight:800;
    color:#111;
}

.vpr-servings-controls{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.vpr-minus,
.vpr-plus{
    width:42px;
    height:42px;
    border:none;
    border-radius:12px;
    cursor:pointer;
    background:#7B9776;
    color:#fff;
    font-size:22px;
    font-weight:700;
}

.vpr-serving-number{
    font-size:20px;
    font-weight:800;
    min-width:30px;
    text-align:center;
}

.vpr-ingredients-list{
    list-style:none;
    padding:0;
    margin:0;
}

.vpr-ingredients-list li{
    border-bottom:1px solid #f0f0f0;
    padding:14px 0;
}

.vpr-ingredients-list label{
    display:flex;
    align-items:center;
    gap:12px;
    cursor:pointer;
}

.vpr-ingredient-check{
    width:18px;
    height:18px;
}

.vpr-ingredient-text{
    font-size:15px;
    line-height:1.7;
}

.vpr-ingredient-text.checked{
    text-decoration:line-through;
    opacity:.55;
}

.vpr-nutrition-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.vpr-nutrition-item{
    background:#fafafa;
    border:1px solid #f0f0f0;
    border-radius:16px;
    padding:18px;
}

.vpr-nutrition-item strong{
    display:block;
    margin-bottom:8px;
    color:#444;
}

.vpr-nutrition-item span{
    font-weight:700;
    color:#111;
}

.vpr-instructions{
    margin:0;
    padding-left:25px;
}

.vpr-instructions li{
    margin-bottom:18px;
    line-height:1.8;
    color:#333;
}

.vpr-chef-tip{
    margin:35px;
    background:#fff7d6;
    border:1px solid #ffe7a1;
    border-radius:18px;
    padding:24px;
}

.vpr-chef-tip h3{
    margin-top:0;
    margin-bottom:12px;
}

.vpr-chef-tip p{
    margin:0;
    line-height:1.8;
}

.vpr-faq-item{
    border:1px solid #ececec;
    border-radius:14px;
    overflow:hidden;
    margin-bottom:15px;
}

.vpr-faq-question{
    width:100%;
    border:none;
    background:#fff;
    text-align:left;
    cursor:pointer;
    padding:18px;
    font-size:15px;
    font-weight:700;
}

.vpr-faq-answer{
    display:none;
    padding:0 18px 18px;
}

.vpr-faq-answer p{
    margin:0;
    line-height:1.8;
}

.vpr-faq-item.active .vpr-faq-answer{
    display:block;
}

.vpr-cta{
    padding:35px;
    display:flex;
    gap:15px;
    border-top:1px solid #f1f1f1;
}

.vpr-btn{
    flex:1;
    text-align:center;
    text-decoration:none;
    background:#7B9776;
    color:#fff;
    padding:18px;
    border-radius:14px;
    font-weight:800;
    transition:.2s;
}

.vpr-btn:hover{
    transform:translateY(-2px);
}

html{
    scroll-behavior:smooth;
}

/* TABLET */

@media(max-width:992px){

    .vpr-hero{
        grid-template-columns:1fr;
    }

    .vpr-image img{
        min-height:320px;
    }

    .vpr-title{
        font-size:34px;
    }

    .vpr-stats{
        grid-template-columns:repeat(3,1fr);
    }

    .vpr-nutrition-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* MOBILE */

@media(max-width:768px){

    .vpr-card{
        border-radius:18px;
    }

    .vpr-hero{
        padding:20px;
        gap:20px;
    }

    .vpr-image img{
        min-height:250px;
    }

    .vpr-title{
        font-size:28px;
    }

    .vpr-description{
        font-size:15px;
    }

    .vpr-stats{
        grid-template-columns:repeat(2,1fr);
        padding:0 20px 20px;
    }

    .vpr-section{
        padding:20px;
    }

    .vpr-section h3{
        font-size:22px;
    }

    .vpr-nutrition-grid{
        grid-template-columns:1fr;
    }

    .vpr-chef-tip{
        margin:20px;
    }

    .vpr-cta{
        flex-direction:column;
        padding:20px;
    }

    .vpr-btn{
        width:100%;
    }
}
/* =========================
   PREMIUM GRID LAYOUT V2
========================= */

.vpr-grid-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    padding:35px;
    border-top:1px solid #f1f1f1;
}

.vpr-panel{
    background:#fff;
}

.vpr-panel h3{
    margin-top:0;
}

.vpr-grid-row .vpr-chef-tip{
    margin:25px 0 0;
}

.vpr-grid-row .vpr-cta{
    padding:0;
    border-top:none;
    margin-top:25px;
    flex-direction:column;
}

.vpr-grid-row .vpr-btn{
    width:100%;
}

#vpr-faq .vpr-faq-item:last-child{
    margin-bottom:0;
}

/* Better nutrition table inside sidebar */

#vpr-nutrition .vpr-nutrition-grid{
    grid-template-columns:repeat(2,1fr);
}

/* Desktop Hero like reference */

.vpr-hero{
    grid-template-columns:45% 55%;
}

/* Mobile */

@media(max-width:992px){

    .vpr-grid-row{
        grid-template-columns:1fr;
    }

    #vpr-nutrition .vpr-nutrition-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){
    .vpr-hero{
    grid-template-columns:1fr !important;
}

.vpr-image img{
    width:100%;
    min-height:280px;
    max-height:320px;
}

.vpr-content{
    width:100%;
}

.vpr-title{
    font-size:32px;
    line-height:1.2;
}

.vpr-jump-buttons{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.vpr-jump-buttons a{
    text-align:center;
}

    .vpr-grid-row{
        padding:20px;
        gap:20px;
    }

    #vpr-nutrition .vpr-nutrition-grid{
        grid-template-columns:1fr;
    }

}
/* STATS BAR V2 */

.vpr-stats-bar{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    background:#fff;
    border-top:1px solid #f1f1f1;
    border-bottom:1px solid #f1f1f1;
}

.vpr-stat-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:28px 20px;
    border-right:1px solid #f1f1f1;
}

.vpr-stat-item:last-child{
    border-right:none;
}

.vpr-stat-icon{
    font-size:28px;
    line-height:1;
}

.vpr-stat-content small{
    display:block;
    color:#777;
    font-size:13px;
    margin-bottom:6px;
}

.vpr-stat-content strong{
    display:block;
    color:#111;
    font-size:22px;
    font-weight:800;
}

@media(max-width:992px){

    .vpr-stats-bar{
        grid-template-columns:repeat(3,1fr);
    }

    .vpr-stat-item{
        border-bottom:1px solid #f1f1f1;
    }

}

@media(max-width:768px){

    .vpr-stats-bar{
        grid-template-columns:repeat(2,1fr);
    }

    .vpr-stat-item{
        padding:18px;
    }

    .vpr-stat-icon{
        font-size:22px;
    }

    .vpr-stat-content strong{
        font-size:18px;
    }

}
/* NUTRITION TABLE V2 */

.vpr-nutrition-table{
    width:100%;
}

.vpr-nutrition-subtitle{
    color:#666;
    font-size:15px;
    margin-bottom:20px;
}

.vpr-nutrition-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid #ececec;
}

.vpr-nutrition-label{
    color:#222;
    font-size:18px;
}

.vpr-nutrition-value{
    color:#111;
    font-weight:700;
    font-size:18px;
}

.vpr-nutrition-note{
    margin-top:20px;
    color:#666;
    font-size:14px;
    line-height:1.7;
}
/* STEP BY STEP */

.vpr-steps{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.vpr-step{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.vpr-step-number{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#0E1730;
    color:#fff;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.vpr-step-content{
    font-size:17px;
    line-height:1.8;
    color:#333;
}

/* CTA PREMIUM */

.vpr-cta{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.vpr-cta-card{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:#fff;
    padding:24px;
    border-radius:16px;
    transition:.25s;
}

.vpr-cta-card:hover{
    transform:translateY(-2px);
}

.vpr-cta-orange{
    background:#16203d;
}

.vpr-cta-green{
    background:#7B9776;
}

.vpr-cta-icon{
    font-size:42px;
    margin-right:20px;
}

.vpr-cta-text{
    flex:1;
}

.vpr-cta-text strong{
    display:block;
    font-size:24px;
    margin-bottom:6px;
}

.vpr-cta-text span{
    font-size:15px;
    opacity:.95;
}

.vpr-cta-arrow{
    font-size:34px;
    font-weight:700;
}
.vpr-bottom-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    padding:25px 35px;
    border-top:1px solid #eee;
}

.vpr-bottom-tag{
    background:#f5f5f5;
    padding:10px 16px;
    border-radius:999px;
    font-size:14px;
}
.vpr-bottom-tags{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px;
    padding:25px 35px;
    border-top:1px solid #eee;
}

.vpr-bottom-tags strong{
    margin-right:10px;
}

.vpr-bottom-tag{
    background:#f6f6f6;
    border:1px solid #e7e7e7;
    padding:8px 14px;
    border-radius:999px;
    font-size:14px;
}
.vpr-faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;

    width:100%;
    padding:18px 22px;

    background:#fff;
    border:1px solid #ececec;
    border-radius:14px;

    font-size:16px;
    font-weight:600;

    cursor:pointer;
}

.vpr-faq-arrow{
    font-size:14px;
    color:#7a8c2c;
    font-weight:700;
    transition:0.3s;
}
