@charset "UTF-8";

/* =========================
GENERAL
========================= */

.product-content img{
    max-width:100%;
    height:auto;
    display:block;
    margin:10px 0;
}

/* =========================
MAIN PRODUCT IMAGE
========================= */

.product-main-img{
    width:100%;
    max-width:450px;
    height:450px;
    object-fit:contain;
    display:block;
    margin:auto;
}

/* =========================
CATEGORY LINKS
========================= */

.category-links{
    margin-top:40px;
    text-align:center;
}

.category-links a{
    display:inline-block;
    margin:4px;
    padding:6px 14px;
    background:#f7f7f7;
    border:1px solid #ddd;
    border-radius:20px;
    color:#333;
    font-size:14px;
    text-decoration:none;
    transition:all .25s ease;
}

.category-links a:hover{
    background:#00a79d;
    border-color:#00a79d;
    color:#fff;
}

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

.product-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:18px;
}

.product-action{
    flex:1;
    min-width:120px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    padding:10px 8px;
    border-radius:10px;

    background:#f7f7f7;
    text-decoration:none;

    transition:transform .25s ease,
               box-shadow .25s ease;
}

.product-action:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 14px rgba(0,0,0,0.08);
}

.product-action img{
    height:26px;
    width:auto;
    margin-bottom:6px;
    display:block;
}

.product-action span{
    font-size:12px;
    font-weight:600;
    line-height:1.3;
    text-align:center;
}

/* ACTION COLORS */

.action-whatsapp{
    color:#25D366;
}

.action-share{
    color:#007bff;
}

.action-video{
    color:#ff0000;
}

.action-catalogue{
    color:#d9534f;
}


/* =========================
   RELATED PRODUCTS GRID
========================= */

.related-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:12px;
}

/* CARD */

.related-card{
    position:relative;
    background:#fff;
    border-radius:12px;
    padding:10px;
    text-align:center;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
    transition:0.3s;
}

.related-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

/* IMAGE */

.related-img{
    width:100%;
    height:120px;
    object-fit:contain;
}

/* TITLE */

.related-title{
    display:block;
    font-size:13px;
    font-weight:600;
    margin-top:8px;
    color:#000;
    text-decoration:none;
    line-height:1.5;
    min-height:42px;
}

.related-title:hover{
    color:#00a79d;
}

/* BADGE */

.card-badge{
    position:absolute;
    top:8px;
    left:8px;
    background:#00a79d;
    color:#fff;
    font-size:10px;
    padding:3px 7px;
    border-radius:5px;
}

/* OVERLAY */

.card-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:0.3s;
}

.related-card:hover .card-overlay{
    opacity:1;
}

/* BUTTON */

.view-btn{
    background:#fff;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    text-decoration:none;
    font-weight:600;
    color:#12263a;
}

/* TABLET */

@media(max-width:992px){

.related-grid{
    grid-template-columns:repeat(3,1fr);
}

}

/* MOBILE */

@media(max-width:768px){

.related-grid{
    grid-template-columns:repeat(2,1fr);
}

.related-title{
    font-size:12px;
}

.related-img{
    height:100px;
}

}


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

.card-badge{
    position:absolute;
    top:8px;
    left:8px;

    padding:3px 7px;
    border-radius:5px;

    background:#00a79d;
    color:#fff;

    font-size:10px;
    font-weight:600;
    z-index:2;
}

/* =========================
CARD OVERLAY
========================= */

.card-overlay{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(0,0,0,0.5);

    opacity:0;
    transition:opacity .3s ease;

    pointer-events:none;
}

.related-card:hover .card-overlay{
    opacity:1;
}

/* =========================
VIEW BUTTON
========================= */

.view-btn{
    padding:6px 12px;
    border-radius:20px;

    background:#fff;
    color:#000;

    font-size:12px;
    font-weight:600;
    text-decoration:none;

    pointer-events:auto;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

    .product-action{
        flex:48%;
    }

    .product-main-img{
        height:320px;
    }

    .related-grid{
        grid-template-columns:repeat(2,1fr);
    }
}




/* =========================
   PREMIUM PRODUCT HIGHLIGHT
========================= */

.premium-product-highlight{
    background:#f8fcfc;
    position:relative;
    overflow:hidden;
}

.premium-highlight-box{
    background:#fff;
    border-radius:28px;
    padding:60px 50px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
    text-align:center;
    border:1px solid rgba(0,167,157,0.08);
    position:relative;
}

.highlight-badge{
    display:inline-block;
    background:rgba(0,167,157,0.12);
    color:#00a79d;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:22px;
}

.highlight-title{
    font-size:46px;
    line-height:1.2;
    font-weight:700;
    color:#12263a;
    margin-bottom:22px;
}

.highlight-subtitle{
    max-width:950px;
    margin:0 auto;
    color:#667085;
    font-size:18px;
    line-height:1.9;
}

.highlight-features{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    margin-top:35px;
}

.highlight-feature{
    background:#f4fffd;
    border:1px solid rgba(0,167,157,0.12);
    padding:14px 22px;
    border-radius:40px;
    font-size:15px;
    font-weight:500;
    color:#344054;
}

.highlight-feature span{
    color:#00a79d;
    font-weight:700;
    margin-right:6px;
}

/* MOBILE */

@media(max-width:768px){

.premium-highlight-box{
    padding:40px 24px;
}

.highlight-title{
    font-size:30px;
}

.highlight-subtitle{
    font-size:15px;
}

.highlight-features{
    gap:12px;
}

.highlight-feature{
    font-size:13px;
    padding:12px 18px;
}

}

/* =========================
   RELATED SERVICES HEADING
========================= */

.related-services-heading{
    max-width:850px;
    margin:0 auto;
}

.section-badge{
    display:inline-block;
    background:rgba(0,167,157,0.12);
    color:#00a79d;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#12263a;
    margin-bottom:18px;
}

.section-subtitle{
    font-size:17px;
    line-height:1.8;
    color:#667085;
}

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

@media(max-width:768px){

.premium-highlight-box{
    padding:40px 24px;
}

.highlight-title{
    font-size:32px;
}

.highlight-subtitle{
    font-size:15px;
}

.section-title{
    font-size:30px;
}

.section-subtitle{
    font-size:15px;
}

.highlight-features{
    gap:12px;
}

.highlight-feature{
    font-size:13px;
    padding:12px 18px;
}

}

/* IMAGE ZOOM */

.zoomable-image{
cursor:zoom-in;
transition:.3s ease;
}

.zoomable-image:hover{
transform:scale(1.02);
}

.image-zoom-modal{

display:none;

position:fixed;

z-index:99999;

padding-top:40px;

left:0;
top:0;

width:100%;
height:100%;

overflow:auto;

background:rgba(0,0,0,0.92);

backdrop-filter:blur(5px);
}

.zoom-modal-content{

display:block;

margin:auto;

max-width:90%;
max-height:85vh;

border-radius:18px;

box-shadow:
0 10px 40px rgba(0,0,0,0.45);

animation:zoomIn .3s ease;
}

.zoom-close{

position:absolute;

top:20px;
right:35px;

color:#fff;

font-size:45px;

font-weight:700;

cursor:pointer;

z-index:100000;
}

@keyframes zoomIn{

from{
transform:scale(.8);
opacity:0;
}

to{
transform:scale(1);
opacity:1;
}

}

/* =========================
TECHNICAL DETAILS MOBILE FIX
========================= */

.technical-content-box{
width:100%;
overflow:hidden;
}

.technical-content-inner{
width:100%;
max-width:100%;
overflow-x:auto;
overflow-y:hidden;

-webkit-overflow-scrolling:touch;

word-break:break-word;
overflow-wrap:break-word;
}

/* tables from editor */

.technical-content-inner table{
width:100% !important;
max-width:100% !important;

display:block;

overflow-x:auto;

border-collapse:collapse;
}

/* cells */

.technical-content-inner td,
.technical-content-inner th{

white-space:normal !important;

word-break:break-word;

padding:10px;

}

/* images */

.technical-content-inner img{

max-width:100% !important;

height:auto !important;

display:block;

}

/* prevent fixed widths */

.technical-content-inner *{

max-width:100%;

box-sizing:border-box;

}

/* MOBILE */

@media(max-width:768px){

.technical-content-box{

margin-top:30px;

}

.technical-content-inner{

font-size:14px;

line-height:1.7;

}

}