.whatsapp-float {
    position: fixed;
    right: 20px;
    z-index: 100;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* posisi dasar */
.whatsapp-float {
    bottom: 20px;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}


@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 16px;
    right: 12px;
    gap: 12px;
  }

  .whatsapp-float img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    transition: transform 0.25s ease;
  }

  .whatsapp-float img:hover {
    transform: scale(1.05);
  }
}

.product-header{
    padding: 50px 0;
    background: #f8f9fb;
    border-top: 27px solid #ececec;
}

.product-header .container{
    max-width: 1200px;
    margin: auto;
}

.product-header .container > *{
    max-width: 620px;
    margin-left: 60px;
}

.header-logo{
    width: 150px;
    margin-bottom: 16px;
}

.header-badge{
    display: inline-block;
    padding: 7px 16px;
    border-radius: 50px;
    background: rgba(196, 0, 24, .08);
    color: #C40018;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.product-header h1{
    font-size: 38px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 14px;
}

.product-header p{
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
    margin: 0;
}


// Katalog
.carousel-title{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:60px 0 40px;
    position:relative;
}

.carousel-title h3{
    position:relative;
    display:inline-block;
    padding:0 45px;
    font-family:'Poppins',sans-serif;
    font-size:23px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#1d2736;
    line-height:1.3;
}

.carousel-title h3::before,
.carousel-title h3::after{
    content:"";
    position:absolute;
    top:50%;
    width:70px;
    height:2px;
    background:linear-gradient(90deg,#d4af37,#f3d97a,#d4af37);
    transform:translateY(-50%);
}

.carousel-title h3::before{
    left:-40px;
}

.carousel-title h3::after{
    right:-40px;
}

.catalog-section{
    padding:90px 0;
    background: #f8f9fb;
}

.catalog-grid{
    display:grid;
    grid-template-columns:repeat(3,350px);
    justify-content:center;
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:5px;
    overflow:hidden;
    border:1px solid #e8e8e8;
    transition:.3s ease;
    height:100%;
}

.product-card:hover{
    transform:none;
}

.product-image{
    position:relative;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:265px;
    object-fit:cover;
    transition:.5s ease;
}

.product-overlay{
    position:absolute;
    left:18px;
    right:18px;
    bottom:18px;
    padding:22px;
    border-radius:16px;
    background:rgba(15,23,42,.38);
    backdrop-filter:blur(4px);
}

.product-overlay h3{
    color:#fff;
    font-size:25px;
    font-weight:700;
    margin:0 0 18px;
}

.product-meta{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.meta-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.meta-item span{
    color:rgba(255,255,255,.75);
    font-size:12px;
    font-weight:500;
    letter-spacing:.8px;
    text-transform:uppercase;
}

.meta-item strong{
    color:#fff;
    font-size:15px;
    font-weight:700;
}

.product-link{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 24px;
    background:#fff;
    color:#1d5fae;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    transition:none;
}

.product-link i{
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:transparent;
    color:#1d5fae;
    transition:none;
}

#katalog-produk{
    padding:35px 0;
    background:#f7f8fa;
}

#productCarousel{
    position:relative;
    max-width:1160px;
    margin:0 auto;
}

#productCarousel .carousel-inner{
    border-radius:5px;
    overflow:hidden;
}

.product-banner{
    position:relative;
    width:100%;
    height:430px;
    overflow:hidden;
    border-radius:5px;
    margin-bottom:35px;
}

.product-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.banner-content span{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(8px);
    font-size:14px;
    margin-bottom:20px;
}

.banner-content h3{
    font-size:40px;
    font-weight:300;
    margin-bottom:20px;
}

.banner-content p{
    font-size:17px;
    line-height:1.9;
    color:#f3f3f3;
}

.product-content{
    padding:28px;
}

.product-content h4{
    font-size:20px;
    font-weight:600;
    color:#222;
    margin-bottom:15px;
}

.product-content p{
    font-size:15px;
    color:#666;
    line-height:1.8;
    margin-bottom:0;
}

#productCarousel .carousel-item{
    padding-bottom:20px;
}

#productCarousel .carousel-control-prev,
#productCarousel .carousel-control-next{
    position:absolute;
    width:40px;
    height:40px;
    top:215px;
    transform:translateY(-50%);
    background:transparent;
    border:none;
    opacity:.45;
}

#productCarousel .carousel-control-prev{left:10px;}
#productCarousel .carousel-control-next{right:10px;}

#productCarousel .carousel-control-prev-icon,
#productCarousel .carousel-control-next-icon{
    width:22px;
    height:22px;
    filter:brightness(0);
}

#productCarousel .carousel-indicators{
    position:relative;
    margin-top:25px;
}

#productCarousel .carousel-indicators button{
    width:12px;
    height:12px;
    border:none;
    border-radius:50px;
    margin:0 6px;
    background:#cfcfcf;
    opacity:1;
}

#productCarousel .carousel-indicators .active{
    width:40px;
    background:#0d6efd;
}

@media (max-width:480px){

    #katalog-produk{
        padding:20px 0;
    }

    #productCarousel{
        max-width:100%;
        padding:0 12px;
    }

    .product-banner{
        height:170px;
        margin-bottom:20px;
        border-radius:4px;
    }

    .carousel-title{
        margin:30px 0 22px;
    }

    .carousel-title h3{
        font-size:15px;
        letter-spacing:2px;
        padding:0 18px;
        text-align:center;
    }

    .carousel-title h3::before,
    .carousel-title h3::after{
        width:28px;
        height:1px;
    }

    .carousel-title h3::before{
        left:-10px;
    }

    .carousel-title h3::after{
        right:-10px;
    }

    #productCarousel .row{
        --bs-gutter-x:14px;
        --bs-gutter-y:14px;
    }

    #productCarousel .col-lg-6{
        width:100%;
    }

    .product-card{
        border-radius:4px;
    }

    .product-image img{
        height:180px;
    }

    .product-content{
        padding:18px;
    }

    .product-content h4{
        font-size:16px;
        margin-bottom:8px;
        line-height:1.4;
    }

    .product-content p{
        font-size:13px;
        line-height:1.6;
    }

    #productCarousel .carousel-control-prev,
    #productCarousel .carousel-control-next{
        width:30px;
        height:30px;
        top:85px;
        opacity:.3;
    }

    #productCarousel .carousel-control-prev{
        left:4px;
    }

    #productCarousel .carousel-control-next{
        right:4px;
    }

    #productCarousel .carousel-control-prev-icon,
    #productCarousel .carousel-control-next-icon{
        width:14px;
        height:14px;
    }

    #productCarousel .carousel-indicators{
        margin-top:18px;
        margin-bottom:0;
    }

    #productCarousel .carousel-indicators button{
        width:8px;
        height:8px;
        margin:0 4px;
    }

    #productCarousel .carousel-indicators .active{
        width:22px;
    }

}


.lift-customizer{
    width:78%;
    max-width:1080px;
    min-height:160px;
    margin:40px auto;
    display:flex;
    align-items:center;
    background:#fff;
    border:1px solid #e8e8e8;
    box-shadow:0 14px 34px rgba(0,0,0,.08);
    overflow:hidden;
}

.lift-customizer-icon{
    width:160px;
    align-self:stretch;
    background:#0057B8;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.lift-customizer-icon i{
    color:#fff;
    font-size:42px;
}

.lift-customizer-content{
    flex:1;
    padding:28px 42px;
}

.lift-customizer-content .subtitle{
    display:inline-block;
    margin-bottom:8px;
    font-size:10px;
    font-weight:600;
    letter-spacing:2.8px;
    text-transform:uppercase;
    color:#0057B8;
}

.lift-customizer-content h3{
    margin:0 0 12px;
    font-size:28px;
    font-weight:300;
    line-height:1.15;
    color:#1f2937;
}

.lift-customizer-content p{
    max-width:620px;
    margin:0;
    font-size:14px;
    line-height:1.7;
    color:#6b7280;
}

.lift-customizer-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    align-self:center;
    margin-right:40px;
    padding:12px 26px;
    background:#0057B8;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    border-radius:5px;
    white-space:nowrap;
    transition:
        background .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

.lift-customizer-btn:hover{
    background:#004a9c;
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(0,0,0,.15);
}

.lift-customizer-btn:active{
    transform:translateY(0);
}

@media (max-width:480px){

    .lift-customizer{
        width:92%;
        height:auto;
        margin:25px auto;
        flex-direction:column;
        border-radius:10px;
    }

    .lift-customizer-icon{
        width:100%;
        height:70px;
    }

    .lift-customizer-icon i{
        font-size:28px;
    }

    .lift-customizer-content{
        padding:18px 18px 14px;
        text-align:center;
    }

    .lift-customizer-content .subtitle{
        font-size:10px;
        letter-spacing:1.5px;
        margin-bottom:5px;
    }

    .lift-customizer-content h3{
        font-size:18px;
        line-height:1.35;
        margin-bottom:8px;
    }

    .lift-customizer-content p{
        font-size:13px;
        line-height:1.6;
    }

    .lift-customizer-btn{
    width:auto;
    margin:0 auto 18px;
    padding:11px 22px;
    font-size:13px;
    border-radius:7px;
    }

}