

/*==================================================
            PRODUCT DETAILS
==================================================*/

.product-details{
    margin-top:4.5rem;
    background:#FFFFFF;

}

.product-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:4rem;

    align-items:start;

}



/*==================================================
            PRODUCT GALLERY
==================================================*/

.product-gallery{

    position:sticky;

    top:140px;

}



/*==================================================
            MAIN PRODUCT IMAGE
==================================================*/
.product-main-image{

    position:relative;

    overflow:hidden;

    aspect-ratio:1/1;

    max-width:500px;

    width:100%;

    margin:0 auto;

    border-radius:28px;

    background:#F8FBFF;

    border:1px solid rgba(74,169,255,.08);

    box-shadow:
        0 20px 45px rgba(74,169,255,.08);

}

.product-main-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:transform .45s ease;

    cursor:zoom-in;

}

.product-main-image:hover img{

    transform:scale(1.06);

}



/*==================================================
                DISCOUNT BADGE
==================================================*/

.product-main-image .discount-badge{

    position:absolute;

    top:20px;

    left:20px;

    z-index:5;

}



/*==================================================
                ZOOM BUTTON
==================================================*/

.zoom-btn{

    position:absolute;

    right:20px;

    bottom:20px;

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:#FFFFFF;

    color:var(--primary-color);

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    box-shadow:

        0 12px 30px rgba(74,169,255,.18);

    transition:.3s;

}

.zoom-btn:hover{

    background:var(--primary-color);

    color:#FFFFFF;

}

.zoom-btn i{

    font-size:1.2rem;

}



/*==================================================
            PRODUCT THUMBNAILS
==================================================*/

.product-thumbnails{

    display:flex;

    align-items:center;

    gap:1rem;

    margin-top:1.8rem;

}



/*==================================================
            THUMB BUTTONS
==================================================*/

.thumb-nav{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#F4F9FF;

    color:var(--primary-color);

    cursor:pointer;

    transition:.3s;

    flex-shrink:0;

}

.thumb-nav:hover{

    background:var(--primary-color);

    color:#FFFFFF;

}



/*==================================================
            THUMBNAIL WRAPPER
==================================================*/

.thumbnail-wrapper{

    flex:1;

    display:flex;

    gap:1rem;

    overflow-x:auto;

    scrollbar-width:none;

}

.thumbnail-wrapper::-webkit-scrollbar{

    display:none;

}



/*==================================================
                THUMBNAILS
==================================================*/

.thumbnail{

    width:85px;

    height:85px;

    object-fit:cover;

    border-radius:18px;

    border:2px solid transparent;

    cursor:pointer;

    transition:.3s;

    flex-shrink:0;

    background:#FFFFFF;

    padding:.25rem;

}

.thumbnail:hover{

    border-color:var(--primary-color);

    transform:translateY(-2px);

}

.thumbnail.active{

    border-color:var(--primary);

    box-shadow:

        0 10px 28px rgba(74,169,255,.18);

}
/*==================================================
                PRODUCT INFO
==================================================*/

.product-info{

    display:flex;

    flex-direction:column;

    gap:1rem;

}



/*==================================================
                PRODUCT BADGE
==================================================*/

.product-badge{

    display:inline-flex;

    align-items:center;

    gap:.3rem;
    margin-top:2.5rem;
    width:max-content;

    padding:.55rem 1.1rem;

    border-radius:999px;

    background:#EAF6FF;

    color:var(--primary);

    font-size:.88rem;

    font-weight:600;

}

.product-badge i{

    font-size:.95rem;

}



/*==================================================
                PRODUCT TITLE
==================================================*/

.product-info h1{

    margin-top:3.5rem;

    font-family:var(--heading-font);

    font-size:2.5rem;

    line-height:1;

    color:var(--primary);

}



/*==================================================
                PRODUCT META
==================================================*/

.product-meta{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:1rem;

}

.product-rating{

    display:flex;

    align-items:center;

    gap:.45rem;

    font-size:1rem;

    font-weight:600;

}

.product-rating i{

    color:#FDBA12;

}

.product-rating small{

    color:var(--text-body);

    font-weight:500;

}

.product-share{

    display:flex;

    align-items:center;

    gap:.45rem;

    color:var(--text-body);

    cursor:pointer;

    transition:.3s;

}

.product-share:hover{

    color:var(--primary-color);

}



/*==================================================
                PRODUCT PRICE
==================================================*/

.product-price{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:1rem;

}

.current-price{

    font-size:2.3rem;

    font-weight:700;

    color:var(--primary-color);

    font-family:var(--heading-font);

}

.product-price .old-price{

    font-size:1.2rem;

    color:#9CA3AF;

    text-decoration:line-through;

}

.product-price .save-price-pd{

    padding:.4rem .8rem;

    border-radius:999px;

    background:#FFF4E5;

    color:#F97316;

    font-size:.9rem;

    font-weight:600;

}



/*==================================================
                TRUST BADGES
==================================================*/

.trust-badges-pd{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:1rem;

}

.trust-item-pd{

    display:flex;

    align-items:center;

    gap:.8rem;

    padding:1rem;

    border-radius:18px;

    background:#F9FCFF;

    border:1px solid rgba(74,169,255,.08);

}

.trust-item-pd i{

    width:40px;

    height:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--primary);

    font-size:1.1rem;

}

.trust-item-pd span{

    font-size:.7rem;

    font-weight:500;

    color:var(--text-heading);

}



/*==================================================
            PRODUCT DETAILS LIST
==================================================*/

.product-details-list{

    display:flex;

    flex-direction:column;

    border-radius:22px;

    overflow:hidden;

    border:1px solid rgba(74,169,255,.08);

}

.detail-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:1rem 1.4rem;

    background:#FFFFFF;

    border-bottom:1px solid rgba(74,169,255,.06);

}

.detail-row:last-child{

    border-bottom:none;

}

.detail-row span{

    color:var(--text-body);

    font-weight:500;

}

.detail-row strong{

    color:var(--text-heading);

    font-weight:600;

}



/*==================================================
            AVAILABILITY
==================================================*/

.in-stock{

    color:#22C55E !important;

}

.out-stock{

    color:#EF4444 !important;

}

.in-stock i,

.out-stock i{

    font-size:.7rem;

    margin-right:.4rem;

}



/*==================================================
            DESCRIPTION
==================================================*/

.product-description h2,

.product-features h2{

    margin-bottom:1rem;

    font-size:1.5rem;

    font-family:var(--heading-font);

    color:var(--text-heading);

}

.product-description p{

    margin:0;

    line-height:1.9;

    color:var(--text-body);

}



/*==================================================
                FEATURES
==================================================*/

.product-features ul{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:.8rem;

    margin:0;

    padding:0;

    list-style:none;

}

.product-features li{

    position:relative;

    padding-left:2rem;

    color:var(--text-body);

    font-weight:500;

    line-height:1.6;

}

.product-features li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:0;

    width:24px;

    height:24px;

    border-radius:50%;

    background:#EAF6FF;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:.8rem;

    font-weight:700;

}



/*==================================================
                ACTION BUTTONS
==================================================*/

.product-actions{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:1rem;

}

.btn-whatsapp{

    background:#25D366;

    color:#FFFFFF;

}

.btn-whatsapp:hover{

    background:#1EBE5B;

}

.btn-call{

    background:#3B82F6;

    color:#FFFFFF;

}

.btn-call:hover{

    background:#2563EB;

}

.btn-direction{

    background:#F97316;

    color:#FFFFFF;

}

.btn-direction:hover{

    background:#EA580C;

}

.product-actions .btn{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:.6rem;

}



/*==================================================
                ORDER NOTE
==================================================*/

.order-note{

    display:flex;

    align-items:flex-start;

    gap:1rem;
    margin-bottom:2rem;

    padding:1.3rem;

    border-radius:20px;

    background:#F9FCFF;

    border-left:5px solid var(--primary-color);

}

.order-note i{

    font-size:1.4rem;

    color:var(--primary);

    flex-shrink:0;

}

.order-note p{

    margin:0;

    line-height:1.8;

    color:var(--text-body);

}
/*==================================================
            PRODUCT EXTRA INFO
==================================================*/

.product-extra-info{
    margin-top:
    background:#F9FCFF;

}

.info-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:2rem;

}



/*==================================================
                INFO CARD
==================================================*/

.info-card{

    background:#FFFFFF;
    margin-top:2rem;
    border-radius:28px;

    padding:2rem;

    border:1px solid rgba(74,169,255,.08);

    box-shadow:
        0 16px 40px rgba(74,169,255,.08);

    transition:.35s;

}

.info-card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 22px 48px rgba(74,169,255,.14);

}



/*==================================================
                CARD TITLE
==================================================*/

.card-title{

    display:flex;

    align-items:center;

    gap:1rem;

    margin-bottom:1.5rem;

}

.card-title i{

    width:56px;

    height:56px;

    border-radius:50%;

    background:#EAF6FF;

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:1.4rem;

}

.card-title h2{

    margin:0;

    font-size:1.6rem;

    font-family:var(--heading-font);

}



/*==================================================
                INFO LIST
==================================================*/

.info-card ul{

    margin:0;

    padding:0;

    list-style:none;

}

.info-card li{

    position:relative;

    padding-left:2rem;

    margin-bottom:1rem;

    color:var(--text-body);

    line-height:1.7;

}

.info-card li:last-child{

    margin-bottom:0;

}

.info-card li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:2px;

    width:24px;

    height:24px;

    border-radius:50%;

    background:#EAF6FF;

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:.8rem;

    font-weight:700;

}



/*==================================================
            PRODUCT SPECIFICATIONS
==================================================*/

.product-specifications{

    grid-column:1/-1;

    background:#FFFFFF;

    border-radius:28px;

    padding:2.2rem;

    border:1px solid rgba(74,169,255,.08);

    box-shadow:
        0 16px 40px rgba(74,169,255,.08);

}

.product-specifications table{

    width:100%;

    border-collapse:collapse;

    margin-top:1.5rem;

}

.product-specifications tr{

    border-bottom:1px solid rgba(74,169,255,.08);

}

.product-specifications tr:last-child{

    border-bottom:none;

}

.product-specifications th{

    width:35%;

    text-align:left;

    padding:1rem;

    color:var(--text-heading);

    font-weight:600;

    background:#F9FCFF;

}

.product-specifications td{

    padding:1rem;

    color:var(--text-body);

}



/*==================================================
                HELP CARD
==================================================*/

.help-card{

    grid-column:1/-1;

    text-align:center;

    background:linear-gradient(
        135deg,
        #4AA9FF,
        #77C8FF
    );

    color:#FFFFFF;

    border-radius:32px;

    padding:3rem 2rem;

    overflow:hidden;

    position:relative;

}

.help-icon{

    width:82px;

    height:82px;

    margin:0 auto 1.5rem;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.18);

    font-size:2rem;

}

.help-card h2{

    color:#FFFFFF;

    margin-bottom:1rem;

}

.help-card p{

    max-width:700px;

    margin:0 auto 2rem;

    line-height:1.9;

    color:rgba(255,255,255,.95);

}

.help-card .btn{

    background:#FFFFFF;

    color:#25D366;

    min-width:250px;

}

.help-card .btn:hover{

    transform:translateY(-4px);

}



/*==================================================
            WHY CHOOSE US
==================================================*/

.why-choose-card{

    grid-column:1/-1;

    background:#FFFFFF;

    border-radius:28px;

    padding:2.2rem;

    border:1px solid rgba(74,169,255,.08);

    box-shadow:
        0 16px 40px rgba(74,169,255,.08);
    margin-bottom:1rem;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:1.5rem;

    margin-top:2rem;

}

.why-item{

    display:flex;

    align-items:center;

    gap:1rem;

    padding:1.2rem;

    border-radius:20px;

    background:#F9FCFF;

    transition:.35s;

}

.why-item:hover{

    background:#EAF6FF;

    transform:translateY(-5px);

}

.why-item i{

    width:54px;

    height:54px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#FFFFFF;

    color:var(--primary-color);

    font-size:1.3rem;

    box-shadow:
        0 8px 22px rgba(74,169,255,.12);

}

.why-item span{

    font-weight:600;

    color:var(--text-heading);

    line-height:1.5;

}
/*==================================================
                RELATED PRODUCTS
==================================================*/

.related-products{

    background:#FFFFFF;

}

.related-products .products-grid{

    margin-top:3rem;

}



/*==================================================
                    FAQ
==================================================*/

.product-faq{
    margin-top:2rem;
    background:#F9FCFF;

}

.faq-container{

    max-width:950px;

    margin:3rem auto 0;

}

.faq-container details{

    background:#FFFFFF;

    border-radius:22px;

    margin-bottom:1rem;

    border:1px solid rgba(74,169,255,.08);

    overflow:hidden;

    transition:.3s;

}

.faq-container details[open]{

    box-shadow:
        0 18px 40px rgba(74,169,255,.10);

}

.faq-container summary{

    list-style:none;

    cursor:pointer;

    padding:1.4rem 1.8rem;

    font-family:var(--heading-font);

    font-size:1.15rem;

    color:var(--text-heading);

    position:relative;

    transition:.3s;

}

.faq-container summary::-webkit-details-marker{

    display:none;

}

.faq-container summary::after{

    content:"+";

    position:absolute;

    right:1.8rem;

    top:50%;

    transform:translateY(-50%);

    font-size:1.4rem;

    color:var(--primary-color);

}

.faq-container details[open] summary::after{

    content:"−";

}

.faq-container p{

    padding:0 1.8rem 1.6rem;

    margin:0;

    color:var(--text-body);

    line-height:1.8;

}



/*==================================================
                VISIT STORE
==================================================*/

.visit-store{

    background:#FFFFFF;

}

.visit-card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:3rem;

    padding:3rem;

    border-radius:30px;

    background:linear-gradient(
        135deg,
        #4AA9FF,
        #77C8FF
    );

    color:#FFFFFF;

}

.visit-content{

    flex:1;

}

.visit-content h2{

    color:#FFFFFF;

    margin:1rem 0;

}

.visit-content p{

    color:rgba(255,255,255,.95);

    line-height:1.9;

    max-width:650px;

}

.visit-buttons{

    display:flex;

    flex-direction:column;

    gap:1rem;

    min-width:240px;

}

.visit-buttons .btn{

    justify-content:center;

}

.visit-buttons .btn-primary{

    background:#FFFFFF;

    color:var(--primary-color);

}

.visit-buttons .btn-primary:hover{

    background:#F4F9FF;

}

.visit-buttons .btn-outline{

    border:2px solid rgba(255,255,255,.45);

    color:#FFFFFF;

    background:transparent;

}

.visit-buttons .btn-outline:hover{

    background:#FFFFFF;

    color:var(--primary-color);

}



/*==================================================
                TABLET
==================================================*/

@media (max-width:992px){

.product-details{

    padding:2.5rem 0;

}

.product-wrapper{

    display:flex;

    flex-direction:column;

    gap:2.8rem;

}

.product-gallery{

    position:static;

    width:100%;

    max-width:550px;

    margin:0 auto;

}

.product-main-image{

    width:100%;

    max-width:650px;

    margin:auto;

    aspect-ratio:1/1;

    border-radius:26px;

}

.product-main-image img{

    width:100%;

    height:100%;

    object-fit:contain;

}

.product-thumbnails{

    margin-top:1.25rem;

    display:flex;

    align-items:center;

    gap:.9rem;

}

.thumbnail-wrapper{

    flex:1;

    display:flex;

    gap:.9rem;

    overflow-x:auto;

    justify-content:flex-start;

    scrollbar-width:none;

}

.thumbnail-wrapper::-webkit-scrollbar{

    display:none;

}

.thumbnail{

    width:78px;

    height:78px;

    flex:0 0 auto;

}

.thumb-nav{

    width:42px;

    height:42px;

    flex-shrink:0;

}

.product-info{

    width:100%;

}

.product-info h1{

    margin-top:0;

    font-size:2.3rem;

    line-height:1.25;

}

.product-meta{

    margin-top:.8rem;

}

.product-price{

    margin-top:.8rem;

    gap:1rem;

}

.current-price{

    font-size:2.2rem;

}

.trust-badges-pd{

    grid-template-columns:repeat(2,1fr);

}

.product-actions{

    grid-template-columns:repeat(3,1fr);

}

.info-grid{

    grid-template-columns:1fr;

}

.product-specifications,

.help-card,

.why-choose-card{

    grid-column:auto;

}

.why-grid{

    grid-template-columns:repeat(2,1fr);

}

.visit-card{

    flex-direction:column;

    text-align:center;

}

.visit-buttons{

    width:100%;

    max-width:420px;

}

}

/*==================================================
                MOBILE
==================================================*/

@media (max-width:768px){

.product-details{

    padding:2rem 0;

}

.product-wrapper{

    display:flex;

    flex-direction:column;

    gap:2rem;

}

.product-gallery{

    width:100%;

}

.product-main-image{

    width:100%;

    max-width:100%;

    border-radius:22px;

    aspect-ratio:1/1;

}

.product-main-image img{

    width:100%;

    height:100%;

    object-fit:contain;

}

.zoom-btn{

    width:56px;

    height:56px;

    right:18px;

    bottom:18px;

}

.product-thumbnails{

    margin-top:1rem;

    gap:.8rem;

}

.thumbnail-wrapper{

    display:flex;

    gap:.75rem;

    overflow-x:auto;

    justify-content:flex-start;

    scrollbar-width:none;

}

.thumbnail-wrapper::-webkit-scrollbar{

    display:none;

}

.thumbnail{

    width:68px;

    height:68px;

    flex:0 0 auto;

}

.thumb-nav{

    display:none;

}

.product-info{

    gap:1.4rem;

}

.product-info h1{

    margin-top:0;

    font-size:2rem;

    line-height:1.3;

}

.product-meta{

    display:flex;

    flex-wrap:wrap;

    gap:1rem;

}

.product-price{

    display:flex;

    flex-wrap:wrap;

    gap:.8rem;

}

.current-price{

    font-size:2rem;

}

.product-price .old-price{

    font-size:1.1rem;

}

.product-price .save-price-pd{

    font-size:.9rem;

}

.trust-badges-pd{

    grid-template-columns:repeat(2,1fr);

    gap:.8rem;

}

.trust-item-pd{

    padding:.9rem;

}

.product-actions{

    grid-template-columns:1fr;

}

.product-actions .btn{

    width:100%;

}

.product-features ul{

    grid-template-columns:1fr;

}

.detail-row{

    flex-direction:column;

    align-items:flex-start;

    gap:.35rem;

}

.product-specifications{

    overflow-x:auto;

}

.product-specifications table{

    min-width:300px;

}

.info-grid{

    grid-template-columns:1fr;

}

.why-grid{

    grid-template-columns:1fr;

}

.help-card{

    padding:2rem 1.4rem;

}

.visit-card{

    padding:2rem 1.4rem;

}

.visit-buttons{

    max-width:none;

}

}
/*==================================================
            SMALL MOBILE
==================================================*/

@media (max-width:576px){

.product-details{

    padding:1.5rem 0;

}

.product-main-image{

    border-radius:18px;

}

.discount-badge{

    top:14px;

    left:14px;

    font-size:.8rem;

    padding:.45rem .9rem;

}

.zoom-btn{

    width:52px;

    height:52px;

}

.thumbnail{

    width:62px;

    height:62px;

}

.product-info{

    gap:1rem;

}

.product-info h1{

    font-size:1.7rem;

    line-height:1.35;

}

.current-price{

    font-size:1.75rem;

}

.product-price{

    gap:.5rem;

}

.product-price .old-price{

    font-size:1rem;

}

.product-price .save-price-pd{

    font-size:.82rem;

}

.trust-badges-pd{

    grid-template-columns:1fr;

}

.product-actions{

    gap:.75rem;

}

.product-actions .btn{

    min-height:52px;

    font-size:.95rem;

}

.order-note{

    padding:1rem;

}

.info-card,

.product-specifications,

.why-choose-card{

    padding:1.3rem;

    border-radius:20px;

}

.card-title{

    gap:.8rem;

}

.card-title i{

    width:46px;

    height:46px;

    font-size:1.1rem;

}

.card-title h2{

    font-size:1.25rem;

}

.help-icon{

    width:62px;

    height:62px;

    font-size:1.5rem;

}

.help-card h2{

    font-size:1.5rem;

}

.visit-content h2{

    font-size:1.6rem;

}

}
.product-specifications .section-title span{

    color:var(--primary);

}
.why-choose-card .section-title span{

    color:var(--primary);

}
.related-products .section-heading span{

    color:var(--primary);

}
.product-faq .section-heading span{

    color:var(--primary);

}
.footer-section{

    position:relative;

    overflow:hidden;

    padding:7rem 0 2rem;
    background:#F9FCFF; !important;

}

