.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:500px;
    object-fit:cover;
    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-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    text-decoration:none;
    background:#7B9776;
    color:#fff;
    padding:16px 24px;
    border-radius:12px;
    font-size:14px;
    font-weight:700;
    transition:.25s;
}

.vpr-jump-btn,
.vpr-jump-btn:link,
.vpr-jump-btn:visited{
    color:#fff !important;
}

.vpr-jump-btn span{
    color:#fff !important;
}

.vpr-print-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

background:#16203d;
color:#fff;

    padding:16px 24px;
    border:none;
    border-radius:12px;

    font-size:14px;
    font-weight:700;
    cursor:pointer;
    transition:.25s;
}

.vpr-print-btn:hover{
background:#0f172e;
}

.vpr-jump-btn i{
    font-size:16px;
    color:#fff !important;
    opacity:1;
    transition:.25s;
}

.vpr-jump-btn:hover{

    background:#688563;

    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.vpr-jump-btn:hover,
.vpr-jump-btn:hover i,
.vpr-jump-btn:hover span{

    color:#fff !important;
}

.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{
    appearance:none !important;
    -webkit-appearance:none !important;

    width:24px !important;
    height:24px !important;

    border:2px solid #7B9776 !important;
    border-radius:50% !important;

    background:#fff !important;
    cursor:pointer;
    position:relative;

    margin-right:10px;
    transition:.2s ease;
}

.vpr-ingredient-check:checked{
    background:#7B9776 !important;
    border-color:#7B9776 !important;
}

.vpr-ingredient-check:checked::after{
    content:"✓";
    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    color:#fff;
    font-size:14px;
    font-weight:700;
}

.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:18px;
    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%;
    }
}
/* =========================
   PRODUCTS
========================= */

.vp-products-grid{
    display:grid;
    gap:20px;
}

.vp-product-card{

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:20px;

    padding:24px;

    border:1px solid #e9ecef;
    border-radius:18px;

    background:#fff;

    box-shadow:0 2px 10px rgba(0,0,0,.04);
}

.vp-product-content{
    flex:1;
}

.vp-product-content h3{
    margin:0 0 10px;
    line-height:1.4;
}

.vp-product-content p{
    margin:0;
    color:#666;
    line-height:1.8;
}

.vp-product-action{
    flex-shrink:0;
}
@media(max-width:768px){

    .vp-product-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .vp-product-action{
        width:100%;
        margin-top:10px;
    }

    .vp-product-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-btn{
    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:16px;
    padding:30px 24px;
    border-right:1px solid #f1f1f1;
}

.vpr-stat-item:last-child{
    border-right:none;
}

.vpr-stat-icon{
    font-size:28px;
    line-height:1;
    width:40px;
    text-align:center;
    flex-shrink:0;
}

.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:22px;
    }

}
/* 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;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.vpr-cta-card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(0,0,0,.18);
}

.vpr-cta-card:hover,
.vpr-cta-card:hover *,
.vpr-cta-card:hover span,
.vpr-cta-card:hover strong{
    color:#fff !important;
}
.vpr-cta-card{
    padding:16px 20px;
    min-height:70px;
}

.vpr-cta-text{
    flex:1;
}

.vpr-cta-text strong{
    display:block;
    font-size:18px;
    line-height:1.2;
    color:#fff;
}

.vpr-cta-text span{
    display:none;
}

.vpr-cta-icon{
    font-size:28px;
    margin-right:14px;
}

.vpr-cta-arrow{
    font-size:28px;
    font-weight:700;
    margin-left:14px;
}

@media(max-width:768px){

    .vpr-cta-card{
        padding:14px 18px;
        min-height:64px;
    }

    .vpr-cta-text strong{
        font-size:17px;
    }

    .vpr-cta-icon{
        font-size:20px;
    }

    .vpr-cta-arrow{
        font-size:18px;
    }
}

.vpr-cta-orange{
    background:#D98B3A;
}

.vpr-cta-green{
    background:#7B9776;
}

.vpr-cta-icon{
    font-size:42px;
    margin-right:20px;
    opacity:.95;
}

.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;
}

@media print {

    .vpr-jump-buttons,
    .vpr-cta,
    .vpr-faq,
    .vpr-tags,
    .vpr-image,
    .vpr-chef-tip{
        display:none !important;
    }

    .vpr-card{
        box-shadow:none !important;
        border:none !important;
        margin:0 !important;
        padding:0 !important;
        max-width:100% !important;
    }

    body{
        background:#fff !important;
    }

}
/* =========================
   ARTICLE CONTENT
========================= */

.vpr-ingredient-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 0;
    border-bottom:1px solid #f5f5f5;
}

.vpr-ingredient-item input[type="checkbox"]{
    appearance:none;
    -webkit-appearance:none;

    width:22px;
    height:22px;

    border:2px solid #7B9776;
    border-radius:50%;

    cursor:pointer;
    position:relative;

    transition:.2s;
}

.vpr-ingredient-item input[type="checkbox"]:checked{
    background:#7B9776;
    border-color:#7B9776;
}

.vpr-ingredient-item input[type="checkbox"]:checked::after{
    content:"✓";
    color:#fff;

    position:absolute;
    top:50%;
    left:50%;

    transform:translate(-50%,-50%);
    font-size:13px;
    font-weight:700;
}

/* =========================
   ARTICLE LAYOUT
========================= */

.vp-article{
    max-width:900px;
    margin:0 auto;
}

.vp-article section{
    margin:40px 0;
}

.vp-article h2{
    margin-bottom:15px;
}

/* =========================
   ARTICLE IMAGES
========================= */

.vp-article img{
    display:block;
}

.vp-ingredients-image img,
.vp-final-image img{

    width:100% !important;
    max-width:850px !important;

    max-height:650px !important;

    height:auto !important;

    object-fit:contain !important;

    display:block !important;
    margin:30px auto !important;

    border-radius:12px !important;
}

.vp-image-caption{
    text-align:center;
    color:#666;
    font-size:14px;
    margin-top:12px;
    margin-bottom:30px;
}

@media (max-width:768px){

    .vp-ingredients-image img,
    .vp-final-image img{

        width:100% !important;
        max-width:100% !important;

        max-height:450px !important;

        height:auto !important;

        object-fit:contain !important;
    }

}

/* =========================
   RELATED POSTS
========================= */

.vp-related{
    margin-top:50px;
}

.vp-related h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:30px;
    color:#1d3557;
}

.vp-related-grid{
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:24px !important;
    width:100% !important;
}

.vp-related-grid > *{
    margin:0 !important;
}

.vp-related-card{
    display:flex !important;
    flex-direction:column !important;
    width:100% !important;
    height:100%;
    background:#fff;
    border:1px solid #e8ece7;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none !important;
    transition:.25s;
}

.vp-related-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.vp-related-image{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.vp-related-content{
    padding:20px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.vp-related-content h3{
    margin:0;
    font-size:22px;
    line-height:1.45;
    color:#1d3557;
    font-weight:700;
}

.vp-related-content h3 a{
    color:#1d3557;
    text-decoration:none;
}

.vp-related-link{
    margin-top:auto;
    padding-top:18px;
    color:#7B9776;
    font-weight:700;
    text-decoration:none;
}

.vp-related-link:hover{
    color:#5f7d5a;
}

@media(max-width:768px){

    .vp-related h2{
        font-size:32px;
    }

    .vp-related-grid{
        display:flex !important;
        overflow-x:auto;
        gap:16px;
        padding-bottom:10px;
        scroll-snap-type:x mandatory;
    }

    .vp-related-card{
        min-width:280px;
        flex-shrink:0;
        scroll-snap-align:start;
    }

    .vp-related-image{
        height:190px;
    }
}
/* =========================
   HIGHLIGHTS
========================= */

.vp-highlights-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
}

.vp-highlight-card{

    background:#f8faf7;
    border:1px solid #e6ece4;

    border-radius:14px;

    padding:20px;

    min-height:70px;

    font-size:15px;
    font-weight:600;

    display:flex;
    align-items:center;
}

/* =========================
   EQUIPMENT
========================= */

.vp-equipment-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
}

.vp-equipment-card{
    background:#ffffff;
    border:1px solid #ececec;
    border-radius:14px;
    padding:16px;
    font-weight:600;
}

/* =========================
   INFO BOXES
========================= */

.vp-info-box{
    border-radius:16px;
    padding:22px;
    line-height:1.8;
}

.vp-notes-box{
    background:#fafafa;
    border:1px solid #ececec;
}

.vp-chef-box{
    background:#fff8d8;
    border:1px solid #ffe8a3;
}

.vp-storage-box{
    background:#eef8ef;
    border:1px solid #d6ead7;
}

.vp-makeahead-box{
    background:#eef5ff;
    border:1px solid #d8e6ff;
}

/* =========================
   PRODUCTS
========================= */

.vp-product-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:140px;

    background:#7B9776;
    color:#fff !important;

    text-decoration:none !important;

    padding:12px 18px;

    border-radius:10px;

    font-size:14px;
    font-weight:700;

    text-align:center;

    transition:.2s;
    text-align:center;
    white-space:nowrap;
    
}
.vp-product-btn:hover{
    background:#688563;
    color:#fff !important;
    transform:translateY(-2px);
}

/* Section Description */

.vp-section-desc{
    color:#666;
    margin-top:-10px;
    margin-bottom:25px;
    font-size:15px;
}

/* =========================
   SUMMARY
========================= */

.vp-summary-box{

    background:#f5faf5;

    border:1px solid #dcead9;

    border-radius:18px;

    padding:28px;
}

.vp-summary-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:15px;

    margin-bottom:25px;
}

.vp-stat-card{

    background:#fff;

    border:1px solid #e6efe3;

    border-radius:14px;

    padding:18px;

    text-align:center;
}

.vp-stat-card span{
    display:block;
    font-size:28px;
    margin-bottom:10px;
}

.vp-stat-card strong{

    display:block;

    font-size:15px;
}

.vp-summary-list{

    margin:0 0 25px;

    padding-left:20px;
}

.vp-summary-list li{

    margin-bottom:10px;

    font-weight:600;
}

.vp-summary-conclusion{

    border-top:1px solid #dcead9;

    padding-top:20px;

    margin-top:20px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:480px){

    .vp-summary-stats{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .vp-stat-card{
        padding:10px;
    }

    .vp-stat-card span{
        font-size:18px;
    }

    .vp-stat-card strong{
        font-size:13px;
    }

} /* ← إغلاق Mobile هنا */


/* =========================
   PRINT RECIPE
========================= */

@media print {

    body *{
        visibility:hidden !important;
    }

    .vpr-card,
    .vpr-card *{
        visibility:visible !important;
    }

    .vpr-card{
        position:absolute !important;
        left:0 !important;
        top:0 !important;
        width:100% !important;
        max-width:100% !important;
        background:#fff !important;
        border:none !important;
        box-shadow:none !important;
    }

    .vpr-print-btn,
    .vpr-jump-buttons,
    .vpr-tags,
    .vpr-chef-tip,
    .vpr-cta{
        display:none !important;
    }

    header,
    footer,
    .site-header,
    .ct-header,
    .ct-footer,
    .vp-article,
    .vp-related,
    .vp-products{
        display:none !important;
    }
    
    .vp-related-content h3 a{
    color:#1d3557;
    text-decoration:none;
}


}