.single-post-article__featured-image{
    display:none;
}
.product-container{
    max-width:1200px;
    margin:0 auto 60px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.product-left img{
    width:100%;
    border-radius:12px;
}

.product-title{
    font-size:40px;
    margin-bottom:20px;
    line-height:1.2;
}

.product-brand{
    margin-bottom:20px;
}

.product-brand span{
    background:#f3f4f6;
    padding:8px 16px;
    border-radius:30px;
    display:inline-block;
}

.short-description{
    margin:30px 0;
    line-height:1.8;
}

a.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 32px;
    border-radius:8px;

    background:linear-gradient(90deg,#4F46E5,#7C3AED) !important;

    color:#ffffff !important;

    text-decoration:none !important;
    font-weight:600;

    transition:.3s;
}

a.whatsapp-btn:hover{

    background:linear-gradient(90deg,#4338CA,#6D28D9) !important;

    color:#ffffff !important;

}

.product-description{
    max-width:1200px;
    margin:80px auto;
}

.product-faq{
    max-width:900px;
    margin:60px auto;
}

.faq-item{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    margin-bottom:16px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.06);
}

.faq-item h3{
    margin:0;
}

.faq-question{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:16px 24px;
    background:#fff;
    border:none;
    cursor:pointer;
    text-align:left;
}

.faq-question:hover{
    background:#f8fafc;
}

.faq-question span{
    font-size:18px;
    font-weight:600;
    line-height:1.4;
    color:#1f2937;
}

.faq-question::after{
    content:"+";
    font-size:30px;
    font-weight:300;
    color:#4F46E5;
    flex-shrink:0;
    margin-left:20px;
}

.faq-item.active .faq-question::after{
    content:"−";
}

.faq-answer{
    display:none;
    padding:0 24px 20px;
    font-size:16px;
    line-height:1.8;
    color:#64748b;
}

.faq-item.active .faq-answer{
    display:block;
}
.faq-title{
    margin:0;
    padding:0;
    line-height:1;
}

.product-section table{
    width:100%;
    border-collapse:collapse;
    margin-top:30px;
    border:1px solid #e5e7eb;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
}

.product-section table th,
.product-section table td{
    padding:16px 20px;
    border:1px solid #e5e7eb;
    text-align:left;
    vertical-align:top;
}

.product-section table th{
    background:#f8fafc;
    color:#1e293b;
    font-size:18px;
    font-weight:700;
}

.product-section table td{
    color:#475569;
    font-size:16px;
}

.product-section table tr:nth-child(even){
    background:#fafafa;
}

.product-section table tr:hover{
    background:#f1f5f9;
}

@media(max-width:768px){

.product-container{

grid-template-columns:1fr;

}

.product-title{

font-size:30px;

}

}