/* =========================
Popular Post
========================= */
.popular-posts-section{
    padding:60px 0;
}
.popular-posts-section .section-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    margin-bottom:35px;
}
.popular-posts-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.post-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
    transition:.3s ease;
}
.post-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 24px rgba(0,0,0,.12);
}
.post-card a{
    display:block;
    color:#333;
    text-decoration:none;
}
.post-card img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    display:block;
}
.post-card h3{
    font-size:18px;
    line-height:1.6;
    padding:18px;
    margin:0;
}
@media (max-width:991px){
    .popular-posts-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media (max-width:767px){
    .popular-posts-grid{
        grid-template-columns:1fr;
    }
    .popular-posts-section{
        padding:40px 0;
    }
    .popular-posts-section .section-title{
        font-size:26px;
    }
}

/* =========================
Product Info
========================= */
.product-info-bar{
    padding:50px 0;
    border-top:1px solid #eaeaea;
    margin-top:40px;
}

.product-info-bar .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.info-item{
    text-align:center;
    padding:10px 15px;
}

.info-title{
    font-size:15px;
    font-weight:700;
    color:#666;
    margin-bottom:12px;
    position:relative;
}

.info-title:after{
    content:"";
    display:block;
    width:32px;
    height:2px;
    background:#119a24;
    margin:10px auto 0;
}

.info-content{
    font-size:15px;
    line-height:1.8;
    color:#222;
}

@media(max-width:991px){
    .product-info-bar .container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .product-info-bar .container{
        grid-template-columns:1fr;
        gap:20px;
    }

    .product-info-bar{
        padding:35px 0;
    }
}

/* ===== Why Choose ===== */
.tp-why{
    background:#edf9f1;
    padding:90px 0;
}

.tp-container{
    width:1200px;
    margin:0 auto;
}

.tp-title{
    margin:0 0 60px;
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:#212529;
    line-height:1.3;
}

.tp-list{
    display:flex;
    justify-content:space-between;
    gap:30px;
}

.tp-item{
    flex:1;
    background:#fff;
    border-radius:12px;
    min-height:280px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    padding:40px 28px;
    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

    transition:.3s;
}

.tp-item:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.tp-item h3{
    margin:0 0 18px;
    font-size:22px;
    font-weight:700;
    color:#2d2d2d;
    line-height:1.25;
}

.tp-item p{
    margin:0;
    font-size:17px;
    line-height:1.7;
    color:#666;
}

/* Tablet */

@media (max-width:1200px){

    .tp-container{
        width:94%;
    }

    .tp-list{
        flex-wrap:wrap;
    }

    .tp-item{
        flex:0 0 calc(50% - 15px);
    }

}

/* Mobile */

@media (max-width:768px){

    .tp-why{
        padding:60px 0;
    }

    .tp-title{
        font-size:28px;
        margin-bottom:40px;
    }

    .tp-list{
        display:block;
    }

    .tp-item{
        margin-bottom:24px;
        min-height:220px;
    }

    .tp-item h3{
        font-size:28px;
    }

    .tp-item p{
        font-size:16px;
    }

}
/*==============================
  Recommend Banner
==============================*/
.tp-recommend{
    margin:70px auto;
}

.tp-recommend-inner{

    max-width:1180px;
    margin:auto;

    display:flex;
    align-items:center;

    padding:30px 35px;

    border-radius:18px;

    background:linear-gradient(135deg,#66c16b 0%,#82d17b 50%,#5abf77 100%);

    overflow:hidden;

    position:relative;
}

.tp-recommend-inner::before{

    content:"";

    position:absolute;

    left:-120px;
    top:-120px;

    width:300px;
    height:300px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

.tp-product-icon{

    width:90px;
    height:90px;

    background:#fff;

    border-radius:18px;

    display:flex;
    justify-content:center;
    align-items:center;

    flex-shrink:0;

    margin-right:28px;
}

.tp-product-icon img{

    width:64px;

}

.tp-product-info{

    flex:1;

    color:#fff;
}

.tp-product-info h2{

    margin:0 0 12px;

    font-size:34px;

    font-weight:700;

    line-height:1.2;

}

.tp-product-info p{

    margin:0 0 20px;

    font-size:17px;

    opacity:.95;

    line-height:1.6;

}

.tp-platforms{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

.tp-platforms span{

    background:#fff;

    color:#444;

    padding:7px 14px;

    border-radius:6px;

    font-size:14px;

    font-weight:600;

}

.netflix{

    color:#E50914!important;

}

.prime{

    color:#00A8E1!important;

}

.disney{

    color:#113CCF!important;

}

.hulu{

    color:#1CE783!important;

}

.max{

    color:#563DFF!important;

}

.tp-btn-area{

    margin-left:40px;

}

.tp-btn{

    display:inline-block;

    background:#fff;

    color:#2e7d32;

    text-decoration:none;

    padding:16px 34px;

    border-radius:40px;

    font-size:17px;

    font-weight:700;

    transition:.3s;

    white-space:nowrap;

}

.tp-btn:hover{

    background:#f5f5f5;

    transform:translateY(-2px);

}

/* Tablet */

@media(max-width:992px){

    .tp-recommend-inner{

        flex-wrap:wrap;

        text-align:center;

    }

    .tp-product-icon{

        margin:0 auto 20px;

    }

    .tp-product-info{

        width:100%;

    }

    .tp-platforms{

        justify-content:center;

    }

    .tp-btn-area{

        width:100%;

        margin:25px 0 0;

    }

}

/* Mobile */

@media(max-width:768px){

    .tp-recommend-inner{

        padding:28px 22px;

    }

    .tp-product-info h2{

        font-size:28px;

    }

    .tp-product-info p{

        font-size:16px;

    }

    .tp-btn{

        width:100%;

        text-align:center;

    }

}