.product-page{
    padding:80px 7%;
}

.product-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.product-gallery{
    display:flex;
    gap:12px;
}

.thumbnails{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.thumb{
    width:80px;
    height:80px;
    object-fit:contain;
    border:2px solid #e2e8f0;
    border-radius:12px;
    cursor:pointer;
}

.active-thumb{
    border-color:#d4af37;
}

.main-image{
    width:100%;
    height:auto;
    display:block;
    object-fit:contain;
}

.main-image{
    width:100%;
    aspect-ratio:1/1;
    object-fit:contain;
}

.product-info h1{
    font-size:42px;
    margin-bottom:15px;
}

.rating{
    color:#f59e0b;
    font-size:20px;
    margin-bottom:20px;
}

.rating span{
    color:#475569;
}

.size-options{
    display:flex;
    gap:10px;
    margin-bottom:25px;
}

.size-btn{
    padding:10px 20px;
    border-radius:30px;
    border:1px solid #d4af37;
    background:white;
    cursor:pointer;
}

.active-size{
    background:#d4af37;
}

.price{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.short-description{
    line-height:1.8;
    color:#475569;
}

.delivery-box{
    margin-top: 28px;
}

.delivery-box h3{
    font-size: 18px;
    margin-bottom: 12px;
    color: #1e293b;
}

.delivery-input{
    display:flex;
    gap:10px;
    align-items:stretch;
}

.delivery-input input{
    flex:1;
    min-width:0;
}

.delivery-input button{
    white-space:nowrap;
    flex-shrink:0;
}

.delivery-input input{
    flex: 1;
    height: 50px;
    padding: 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.delivery-input input:focus{
    border-color: #d4af37;
}

.delivery-input button{
    height: 50px;
    padding: 0 24px;
    border: none;
    border-radius: 12px;
    background: #d4af37;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.delivery-input button:hover{
    transform: translateY(-2px);
    background: #bf9b30;
}

.quantity-box{
    margin-top: 25px;
}

.quantity-box span{
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1e293b;
}

.quantity-selector{
    display: inline-flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    overflow: hidden;
}

.quantity-selector button{
    width: 48px;
    height: 48px;
    border: none;
    background: #f8fafc;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

.quantity-selector button:hover{
    background: #d4af37;
    color: white;
}

.quantity-selector span{
    width: 60px;
    text-align: center;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.action-buttons{
    display:flex;
    gap:15px;
    margin-top:35px;
    justify-content:flex-start;
    align-items:center;
}

.cart-btn{
    background:#0f172a;
    color:white;
    border:none;
    border-radius:12px;
    padding:16px 32px;
    font-weight:700;
    cursor:pointer;

    display:inline-block;
    width:fit-content;
    max-width:max-content;
    flex:0 0 auto;
    align-self:flex-start;
}

.cart-btn{
    background:#0f172a;
    color:white;
}


.trust-badges{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.trust-item{
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
}

.trust-item i{
    color: #d4af37;
    font-size: 18px;
}

.trust-item span{
    font-size: 15px;
    font-weight: 500;
    color: #334155;
}


.highlights-section{
    padding: 70px 7%;
}

.highlight-block{
    margin-bottom: 80px;
    text-align: center;
}

.highlight-block:last-child{
    margin-bottom: 0;
}

.highlight-block h2{
    font-size: 36px;
    font-family: 'Cinzel', serif;
    color: #0f172a;
    margin-bottom: 18px;
}

.highlight-block p{
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 17px;
    line-height: 1.9;
    color: #475569;
}

.highlight-block img{
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   FAQ SECTION
========================= */

.faq-section{
    padding: 80px 7%;
    background: #f8fafc;
}

.faq-section h2{
    text-align: center;
    font-size: 38px;
    font-family: 'Cinzel', serif;
    color: #0f172a;
    margin-bottom: 45px;
}

.faq-item{
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.faq-item:hover{
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.faq-question{
    width: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 22px 28px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
}

.faq-question span{
    text-align: left;
    padding-right: 20px;
}

.faq-icon{
    color: #d4af37;
    transition: 0.35s ease;
}

.faq-item.active .faq-icon{
    transform: rotate(180deg);
}

.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #d4af37;
}

.faq-answer p{
    padding: 22px 28px;
    margin: 0;
    color: #0f172a;
    line-height: 1.9;
    font-size: 15px;
    font-weight: 500;
}

.faq-question{
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-question:focus{
    outline: none;
}

.faq-question:focus-visible{
    outline: none;
    box-shadow: none;
}

.faq-question:active{
    outline: none;
}

.cart-success-message{

    display:none;

    margin-top:20px;

    background:#dcfce7;

    color:#166534;

    padding:14px;

    border-radius:10px;

    font-weight:600;

}

.go-cart-btn{

    display:none;

    margin-top:15px;

    text-decoration:none;

    background:#0f172a;

    color:white;

    padding:14px 24px;

    border-radius:12px;

    font-weight:600;

    text-align:center;

    width:fit-content;

    transition:0.3s ease;

}

.go-cart-btn:hover{

    opacity:0.9;

}

.delivery-result{

margin-top:15px;

font-size:15px;

line-height:1.8;

color:#15803d;

font-weight:600;

}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width:1200px){

    .product-container{
        gap:40px;
    }

    .product-info h1{
        font-size:36px;
    }

    .price{
        font-size:36px;
    }

}


@media (max-width:992px){

    .product-page{
        padding:60px 5%;
    }

    .product-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .product-gallery{
        flex-direction:column-reverse;
    }

    .thumbnails{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:8px;
    width:100%;
}

.thumb{
    width:100%;
    aspect-ratio:1;
    height:auto;
}

    .thumb{
        width:70px;
        height:70px;
    }

    .main-image{
        max-width:550px;
        margin:auto;
    }

    .product-info h1{
        font-size:34px;
    }

    .price{
        font-size:34px;
    }

    .trust-badges{
        grid-template-columns:1fr 1fr;
    }

    .highlight-block h2{
        font-size:30px;
    }

}


@media (max-width:768px){

    .product-page{
        padding:40px 5%;
    }

    .product-info h1{
        font-size:30px;
    }

    .price{
        font-size:30px;
    }

    .rating{
        font-size:18px;
    }

    .size-options{
        flex-wrap:wrap;
    }

    .size-btn{
        flex:1;
        min-width:120px;
        text-align:center;
    }

    .delivery-input{
    flex-direction:column;
    gap:12px;
}

.delivery-input input,
.delivery-input button{
    width:100%;
}

    .quantity-selector{
        width:100%;
        justify-content:space-between;
    }

    .quantity-selector button{
        width:55px;
    }

    .quantity-selector span{
        flex:1;
    }

    .action-buttons{
        flex-direction:column;
    }

    .cart-btn{
        width:100%;
    }

    .trust-badges{
        grid-template-columns:1fr;
    }

    .highlight-block{
        margin-bottom:55px;
    }

    .highlight-block h2{
        font-size:28px;
    }

    .highlight-block p{
        font-size:16px;
    }

    .faq-section{
        padding:60px 5%;
    }

    .faq-section h2{
        font-size:30px;
    }

    .faq-question{
        padding:18px 20px;
        font-size:16px;
    }

    .faq-answer p{
        padding:18px 20px;
    }

}


@media (max-width:480px){

    .product-page{
        padding:30px 4%;
    }

    .thumb{
        width:60px;
        height:60px;
    }

    .product-info h1{
        font-size:26px;
    }

    .price{
        font-size:28px;
    }

    .rating{
        font-size:16px;
    }

    .size-btn{
        padding:10px 14px;
        font-size:14px;
    }

    .delivery-input input,
    .delivery-input button{
        height:46px;
    }

    .trust-item{
        padding:12px;
    }

    .trust-item span{
        font-size:14px;
    }

    .highlight-block h2{
        font-size:24px;
    }

    .faq-section h2{
        font-size:26px;
    }

}