/* ==========================================================================
   PUSAT DALTON
   PRODUCT DETAIL PAGE
   PART 1A
   Design System + Reset + Base + Typography + Utilities
   ========================================================================== */

/* ================================
   GOOGLE FONT
================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ================================
   CSS VARIABLES
================================ */

:root{

    --primary:#0F3D73;
    --primary-dark:#082B54;

    --secondary:#F58220;
    --secondary-dark:#D66A12;

    --white:#FFFFFF;

    --background:#F7F9FC;
    --surface:#FFFFFF;

    --border:#E5E7EB;

    --text:#1F2937;
    --text-light:#6B7280;

    --success:#22C55E;

    --shadow-sm:
        0 4px 12px rgba(0,0,0,.05);

    --shadow:
        0 12px 32px rgba(0,0,0,.08);

    --shadow-lg:
        0 25px 60px rgba(0,0,0,.12);

    --radius-xs:8px;
    --radius-sm:12px;
    --radius:18px;
    --radius-lg:28px;

    --transition:.35s ease;

    --container:1280px;

}

/* ================================
   RESET
================================ */

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--background);

    color:var(--text);

    line-height:1.8;

    font-size:16px;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;

}

/* ================================
   SELECTION
================================ */

::selection{

    background:var(--secondary);

    color:#fff;

}

/* ================================
   SCROLLBAR
================================ */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#eef2f7;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:100px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--secondary);

}

/* ================================
   IMAGE
================================ */

img{

    display:block;

    width:100%;

    max-width:100%;

    object-fit:contain;

    transition:var(--transition);

}

picture{

    display:block;

}

/* ================================
   LINK
================================ */

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}

/* ================================
   LIST
================================ */

ul{

    list-style:none;

}

/* ================================
   CONTAINER
================================ */

.container{

    width:min(100%,var(--container));

    margin-inline:auto;

    padding-inline:24px;

}

/* ================================
   SECTION
================================ */

section{

    padding:90px 0;

    position:relative;

}

/* ================================
   HEADINGS
================================ */

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--primary);

    line-height:1.2;

    font-weight:700;

}

h1{

    font-size:clamp(2.3rem,5vw,4rem);

}

h2{

    font-size:clamp(1.9rem,4vw,3rem);

}

h3{

    font-size:1.4rem;

}

h4{

    font-size:1.15rem;

}

p{

    color:var(--text-light);

    margin-top:16px;

}

/* ================================
   BUTTON
================================ */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:.75rem;

    padding:15px 34px;

    border-radius:100px;

    font-weight:600;

    transition:var(--transition);

    cursor:pointer;

    border:none;

    white-space:nowrap;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

    box-shadow:var(--shadow-sm);

}

.btn-primary:hover{

    background:var(--secondary);

    transform:translateY(-5px);

    box-shadow:var(--shadow);

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

    background:#fff;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-5px);

}

/* ================================
   BADGE
================================ */

.badge{

    display:inline-flex;

    align-items:center;

    gap:.5rem;

    padding:10px 18px;

    border-radius:999px;

    font-size:.85rem;

    font-weight:600;

}

.badge-success{

    background:#EAFBF1;

    color:#149647;

}

.badge-orange{

    background:#FFF2E8;

    color:var(--secondary);

}

/* ================================
   CARD
================================ */

.card{

    background:var(--surface);

    border-radius:var(--radius);

    box-shadow:var(--shadow-sm);

    border:1px solid rgba(0,0,0,.04);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

/* ================================
   SECTION TITLE
================================ */

.section-title{

    text-align:center;

    max-width:760px;

    margin-inline:auto;

    margin-bottom:70px;

}

.section-title h2{

    margin-bottom:18px;

}

.section-title p{

    margin-top:0;

}

/* ================================
   GRID
================================ */

.grid{

    display:grid;

    gap:32px;

}

.grid-2{

    grid-template-columns:repeat(2,1fr);

}

.grid-3{

    grid-template-columns:repeat(3,1fr);

}

.grid-4{

    grid-template-columns:repeat(4,1fr);

}

/* ================================
   FLEX
================================ */

.flex{

    display:flex;

}

.flex-center{

    display:flex;

    align-items:center;

    justify-content:center;

}

.flex-between{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/* ================================
   ICON WRAPPER
================================ */

.icon-circle{

    width:64px;

    height:64px;

    border-radius:50%;

    background:rgba(15,61,115,.08);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.5rem;

    transition:var(--transition);

}

.card:hover .icon-circle{

    background:var(--secondary);

    color:#fff;

}

/* ================================
   GLASS EFFECT
================================ */

.glass{

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.45);

}

/* ================================
   ANIMATION
================================ */

.fade-up{

    opacity:0;

    transform:translateY(30px);

    transition:.7s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

.fade-in{

    opacity:0;

    transition:.7s ease;

}

.fade-in.show{

    opacity:1;

}

.scale{

    transform:scale(.95);

    opacity:0;

    transition:.6s ease;

}

.scale.show{

    opacity:1;

    transform:scale(1);

}

/* ================================
   FOCUS
================================ */

:focus-visible{

    outline:3px solid rgba(245,130,32,.45);

    outline-offset:4px;

}

/* ================================
   RESPONSIVE FOUNDATION
================================ */

@media (max-width:992px){

    section{

        padding:80px 0;

    }

    .grid-4{

        grid-template-columns:repeat(2,1fr);

    }

    .grid-3{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:768px){

    .container{

        padding-inline:20px;

    }

    .grid-2,
    .grid-3,
    .grid-4{

        grid-template-columns:1fr;

    }

    h1{

        font-size:2.3rem;

    }

}

@media (max-width:576px){

    section{

        padding:65px 0;

    }

    .btn{

        width:100%;

    }

}

@media (max-width:360px){

    body{

        font-size:15px;

    }

}

/* ==========================================================================
   PART 1B
   NAVBAR + BREADCRUMB + HERO PRODUCT
   ========================================================================== */

/* ==========================================================
   STICKY NAVBAR
========================================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
}

.logo img {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text);
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ==========================================================
   BREADCRUMB
========================================================== */

.breadcrumb {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
    font-size: .95rem;
}

.breadcrumb-list a {
    color: var(--text-light);
}

.breadcrumb-list a:hover {
    color: var(--secondary);
}

.breadcrumb-list span {
    color: #B0B0B0;
}

.breadcrumb-list .active {
    color: var(--primary);
    font-weight: 600;
}

/* ==========================================================
   HERO PRODUCT
========================================================== */

.hero-product{
    padding:90px 0;
    background:linear-gradient(180deg,#F8FAFC 0%,#EEF4FA 100%);
}

.hero-product .container{

    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:70px;
    align-items:center;

}

.hero-content h1{

    font-size:clamp(2.8rem,5vw,4.4rem);
    line-height:1.12;
    margin:20px 0;

}

.product-model{

    color:var(--secondary);
    font-weight:600;
    margin-bottom:25px;

}

.product-description{

    max-width:560px;
    font-size:1.05rem;
    line-height:1.9;
    margin-bottom:35px;

}

.product-badges{

    display:flex;
    gap:12px;
    margin-bottom:25px;
}

.hero-buttons{

    display:flex;
    gap:18px;
    flex-wrap:wrap;

}


/* ==========================================================
   HERO PRODUCT IMAGE - SINGLE LARGE DISPLAY
========================================================== */

.hero-image {
    width: 500px;
    min-width: 0px;
    min-height: 0px;
    height: 500px;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff;
    border: 1px solid rgba(15, 61, 115, 0.08);
    border-radius: 40px;
    box-shadow: 0 24px 60px rgba(15, 61, 115, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transform: scale(1.25);
    
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(245, 130, 32, 0.08) 0%,
        rgba(245, 130, 32, 0) 70%
    );

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-image > img {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    height: 500px;

    object-fit: contain;

    transition: transform 0.45s ease,
                opacity 0.25s ease;
}

.hero-image:hover > img {
    transform: scale(1.035);
}

.hero-image-wrapper {
    padding: 15px;
}

/* ==========================================================
   HIDE THUMBNAIL GALLERY
========================================================== */

.product-gallery {
    display: none !important;
}


/* ==========================================================
   IMAGE LOADING
========================================================== */

.hero-image > img[src=""],
.hero-image > img:not([src]) {
    opacity: 0;
}

@media (max-width: 992px) {

    .hero-image {
        min-height: 480px;
        padding: 30px;
    }

    .hero-image > img {
        height: 420px;
    }

}

@media (max-width: 576px) {

    .hero-image {
        min-height: 360px;
        padding: 20px;
        border-radius: 40px;
    }

    .hero-image > img {
        height: 320px;
    }

}



/* ==========================================================================
   PART 3
   AREA PENGGUNAAN • FAQ • RELATED PRODUCT • CTA • FOOTER
   ========================================================================== */


/* ==========================================================
   AREA PENGGUNAAN
========================================================== */

.application-section{
    padding:80px 0;
}

.application-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.application-card{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:32px 24px;
    text-align:center;
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.application-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
    border-color:var(--secondary);
}

.application-card .icon-circle{
    margin:0 auto 20px;
}

.application-card h3{
    margin-bottom:10px;
}

.application-card p{
    margin:0;
}


/* ==========================================================
   FAQ
========================================================== */

.faq-section{
    padding:80px 0;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    overflow:hidden;
    margin-bottom:18px;
    box-shadow:var(--shadow-sm);
}

.faq-question{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 26px;
    cursor:pointer;
    background:none;
    border:none;
    font-family:inherit;
    font-size:1rem;
    font-weight:600;
    color:var(--primary);
    transition:var(--transition);
}

.faq-question:hover{
    background:#F9FBFD;
}

.faq-question i{
    transition:.3s;
}

.faq-item.active .faq-question i{
    transform:rotate(180deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-answer p{
    padding:0 26px 24px;
    margin:0;
}


/* ==========================================================
   RELATED PRODUCT
========================================================== */

.related-product{
    padding:80px 0;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.related-card{
    background:#fff;
    border-radius:var(--radius);
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.related-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
}

.related-image{
    padding:25px;
    background:#fff;
    overflow:hidden;
}

.related-image img{
    height:220px;
    object-fit:contain;
    transition:.4s;
}

.related-card:hover img{
    transform:scale(1.08);
}

.related-content{
    padding:24px;
}

.related-content h3{
    font-size:1.1rem;
    margin-bottom:10px;
}

.related-content p{
    margin-bottom:20px;
    font-size:.95rem;
}


/* ==========================================================
   CTA
========================================================== */

.cta-section{
    padding:90px 0;
}

.cta-box{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    border-radius:var(--radius-lg);
    padding:70px 50px;
    text-align:center;
    box-shadow:var(--shadow-lg);
}

.cta-box h2{
    color:#fff;
    margin-bottom:20px;
}

.cta-box p{
    color:rgba(255,255,255,.85);
    max-width:700px;
    margin:0 auto 35px;
}

.cta-box .btn-primary{
    background:var(--secondary);
}

.cta-box .btn-primary:hover{
    background:var(--secondary-dark);
    transform:translateY(-5px);
}


/* ==========================================================
   FOOTER
========================================================== */

.footer{
    background:var(--primary-dark);
    color:#fff;
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:40px;
}

.footer-logo img{
    width:170px;
    margin-bottom:20px;
}

.footer h3{
    color:#fff;
    margin-bottom:20px;
    font-size:1.15rem;
}

.footer p{
    color:rgba(255,255,255,.75);
}

.footer ul{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer ul a{
    color:rgba(255,255,255,.75);
    transition:var(--transition);
}

.footer ul a:hover{
    color:var(--secondary);
    padding-left:6px;
}

.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:rgba(255,255,255,.75);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    margin-top:50px;
    padding:25px 0;
    text-align:center;
}

.footer-bottom p{
    margin:0;
    font-size:.92rem;
    color:rgba(255,255,255,.65);
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:992px){

    .application-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .related-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    .application-grid,
    .related-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .cta-box{
        padding:50px 30px;
    }

    .faq-question{
        padding:18px 20px;
    }

    .faq-answer p{
        padding:0 20px 20px;
    }

}

@media (max-width:576px){

    .application-card,
    .related-content{
        padding:22px;
    }

    .related-image{
        padding:18px;
    }

    .related-image img{
        height:180px;
    }

    .cta-box{
        padding:40px 22px;
    }

}

/* ==========================================================================
   PART 4
   ENHANCEMENT & PRODUCTION POLISH
   Floating WA • Back To Top • Loading • Utilities • Animation
   ========================================================================== */


/* ==========================================================
   FLOATING WHATSAPP
========================================================== */

.floating-whatsapp{
    position:fixed;
    right:24px;
    bottom:24px;
    width:62px;
    height:62px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.7rem;
    text-decoration:none;
    box-shadow:0 15px 35px rgba(37,211,102,.35);
    z-index:999;
    transition:var(--transition);
}

.floating-whatsapp:hover{
    transform:translateY(-6px) scale(1.08);
    box-shadow:0 20px 40px rgba(37,211,102,.45);
}


/* ==========================================================
   BACK TO TOP
========================================================== */

.back-to-top{
    position:fixed;
    right:24px;
    bottom:100px;
    width:52px;
    height:52px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:var(--transition);
    box-shadow:var(--shadow);
    z-index:998;
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.back-to-top:hover{
    background:var(--secondary);
}


/* ==========================================================
   LOADING SKELETON
========================================================== */

.skeleton{
    position:relative;
    overflow:hidden;
    background:#ececec;
    border-radius:12px;
}

.skeleton::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.6),
        transparent
    );
    animation:skeletonLoading 1.4s infinite;
}

@keyframes skeletonLoading{

    from{
        transform:translateX(-100%);
    }

    to{
        transform:translateX(100%);
    }

}


/* ==========================================================
   IMAGE EFFECT
========================================================== */

.image-hover{
    overflow:hidden;
    border-radius:var(--radius);
}

.image-hover img{
    transition:.45s ease;
}

.image-hover:hover img{
    transform:scale(1.08);
}


/* ==========================================================
   REVEAL ANIMATION
========================================================== */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.fade-left{
    opacity:0;
    transform:translateX(-40px);
    transition:.8s;
}

.fade-left.active{
    opacity:1;
    transform:none;
}

.fade-right{
    opacity:0;
    transform:translateX(40px);
    transition:.8s;
}

.fade-right.active{
    opacity:1;
    transform:none;
}


/* ==========================================================
   HOVER GLOW
========================================================== */

.hover-glow:hover{
    box-shadow:
    0 0 0 1px rgba(245,130,32,.15),
    0 15px 35px rgba(245,130,32,.18);
}


/* ==========================================================
   DIVIDER
========================================================== */

.divider{
    width:80px;
    height:4px;
    background:var(--secondary);
    border-radius:100px;
    margin:18px auto 0;
}


/* ==========================================================
   LABEL
========================================================== */

.label{
    display:inline-block;
    padding:6px 14px;
    border-radius:100px;
    background:#FFF4EA;
    color:var(--secondary);
    font-size:.82rem;
    font-weight:600;
}


/* ==========================================================
   SPACING UTILITIES
========================================================== */

.mt-0{margin-top:0;}
.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-0{margin-bottom:0;}
.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

.pt-0{padding-top:0;}
.pb-0{padding-bottom:0;}

.text-center{text-align:center;}
.text-left{text-align:left;}
.text-right{text-align:right;}

.w-100{width:100%;}


/* ==========================================================
   SHADOW UTILITIES
========================================================== */

.shadow-sm{
    box-shadow:var(--shadow-sm);
}

.shadow{
    box-shadow:var(--shadow);
}

.shadow-lg{
    box-shadow:var(--shadow-lg);
}


/* ==========================================================
   BORDER RADIUS UTILITIES
========================================================== */

.rounded-sm{
    border-radius:var(--radius-sm);
}

.rounded{
    border-radius:var(--radius);
}

.rounded-lg{
    border-radius:var(--radius-lg);
}


/* ==========================================================
   PRINT STYLE
========================================================== */

@media print{

    .navbar,
    .breadcrumb,
    .hero-buttons,
    .related-product,
    .faq-section,
    .cta-section,
    .footer,
    .floating-whatsapp,
    .back-to-top{
        display:none !important;
    }

    body{
        background:#fff;
        color:#000;
    }

    section{
        padding:25px 0;
    }

}


/* ==========================================================
   RESPONSIVE POLISH
========================================================== */

@media(max-width:768px){

    .floating-whatsapp{
        width:56px;
        height:56px;
        right:18px;
        bottom:18px;
    }

    .back-to-top{
        width:46px;
        height:46px;
        right:18px;
        bottom:86px;
    }

}

@media(max-width:576px){

    .floating-whatsapp{
        width:52px;
        height:52px;
        font-size:1.4rem;
    }

    .back-to-top{
        width:42px;
        height:42px;
        font-size:.9rem;
    }

}


/* ==========================================================
   END OF FILE
========================================================== */

/* ==========================================================
   QUICK INFORMATION - CLEAN CORPORATE
========================================================== */

.quick-info {
    position: relative;
    z-index: 10;
    margin-top: -35px;
    padding-bottom: 30px;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.info-card {
    min-height: 120px;
    padding: 22px 24px;

    display: flex;
    align-items: center;
    gap: 18px;

    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 20px;

    box-shadow: 0 12px 30px rgba(15, 61, 115, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 130, 32, 0.45);
    box-shadow: 0 18px 38px rgba(15, 61, 115, 0.12);
}


/* ==========================================================
   ICON
========================================================== */

.info-card .icon-circle {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #eef4fa;
    color: var(--primary);

    font-size: 1.25rem;
    font-weight: 500;
}


/* ==========================================================
   CONTENT
========================================================== */

.info-card h3 {
    margin: 0 0 5px;

    color: var(--primary);

    font-size: 1.05rem;
    line-height: 1.25;

    font-weight: 700;
}

.info-card p {
    margin: 0;

    color: var(--text-light);

    font-size: 0.78rem;
    line-height: 1.4;

    text-transform: uppercase;
    letter-spacing: 0.06em;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1100px) {

    .quick-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 600px) {

    .quick-info {
        margin-top: -20px;
    }

    .quick-info-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .info-card {
        min-height: 100px;
        padding: 18px 20px;
    }

}




/* ==========================================================
   FEATURE CARD PREMIUM
========================================================== */

.features-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

}

.feature-card{

background:#fff;

padding:38px;

border-radius:26px;

border:1px solid #EEF2F7;

box-shadow:0 10px 25px rgba(15,61,115,.07);

transition:.35s;

}

.feature-card:hover{

transform:translateY(-10px);

border-color:var(--secondary);

box-shadow:0 22px 50px rgba(15,61,115,.15);

}

.feature-card .icon-circle{

margin-bottom:22px;

width:72px;

height:72px;

border-radius:20px;

background:#EDF4FB;

font-size:1.8rem;

}

.feature-card h3{

font-size:1.3rem;

margin-bottom:15px;

}

.feature-card p{

margin:0;

line-height:1.8;

}

@media(max-width:1100px){

.features-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.features-grid{

grid-template-columns:1fr;

}

}





.product-description-content{

max-width:960px;

margin:auto;

background:#fff;

padding:60px;

border-radius:30px;

box-shadow:0 15px 40px rgba(15,61,115,.08);

line-height:2;

}

.product-description-content p{

font-size:1.05rem;

text-align:justify;

}

.specification-table{

width:100%;

background:#fff;

border-radius:24px;

overflow:hidden;

border-collapse:collapse;

box-shadow:0 15px 35px rgba(15,61,115,.08);

}

.specification-table thead{

background:var(--primary);

}

.specification-table th{

padding:22px;

color:#fff;

text-align:left;

font-weight:600;

}

.specification-table td{

padding:20px 22px;

border-bottom:1px solid #EDF2F7;

}

.specification-table tbody tr:hover{

background:#FFF8F1;

}

.specification-table td:first-child{

width:35%;

font-weight:600;

color:var(--primary);

}