.nav-logo{
    height: 3rem;
}
.nav-menu{
    font-size: 18px;
    font-family: 'Poppins' , serif;
    text-transform: capitalize;
    font-weight: bold;
    color: #322f2f;
}
.nav-menu:hover{
    background-color: red;
    color: #ffF;
}
.dropdown-hover:hover > .dropdown-menu {
    display: block;
    margin-top: 0; /* rapih */
}
.dropdown-menu {
    transition: all 0.2s ease-in-out;
}
@media (min-width: 992px) {
    .dropdown-hover:hover > .dropdown-menu {
        display: block;
    }
}
body{
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
}

/* Banner Section */
.banner-section{
    background-color: #dddddd80;
    padding: 20px;
    margin-top: 80px !important;
}
.img-banner{
    max-height: 700px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}
@media (max-width: 576px) {
    .img-banner {
        max-width: 100%;
        max-height: 250px;
    }
}
.title-promo{
    font-family: 'montserrat', serif;
    font-weight: 600;
    font-size: 36px;
    color: red;
    text-transform: uppercase;
}
.text-promos{
    margin: 10px;
    font-size: 16px;
}
/* Slider Card Section */
.slider-card{
    background-color: #fff;
}
.card{
    padding: 10px;
}
.card-slider{
    color: #ffF;
    font-family: 'montserrat' , serif;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}
.card-img-container {
    position: relative;
    overflow: hidden;
}

.img-card-slider {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
/* Efek saat hover */
.card-img-container:hover .overlay {
    opacity: 1;
}
.card-img-container .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* transparan hitam */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.card-img-container .btn-detail {
    background-color: #fff;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.card-img-container:hover .img-card-slider {
    transform: scale(1.1);
}
/* Swiper arrows styling */
.swiper-button-next,
.swiper-button-prev {
    color: #000;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}

.countdown{
    padding: 5px;
    border-radius: 15px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .img-card-slider {
        height: 140px;
    }
    .title-promo{
        font-size: 24px;
    }
    .title-modify{
        border-bottom: none !important;
    }
    .text-promos{
        font-size: 11px;
    }
    .countdown{
        font-size: 11px;
    }
}
hr{
    color: #000;
    font-weight: 400;
}
/* Personal Information */
.title-information{
    font-family: 'montserrat' , serif;
    font-size: 36px;
    font-weight: 600;
    color: red;
    text-transform: uppercase;
}
.personal-information{
    background-color: #dddddd80;
}
.pict-information{
    max-width: 420px;
    width: 100%;
}
.information{
    text-align: justify;
}
/* Daftar Product */
.title-daftar-product{
    font-family: 'montserrat' , serif;
    font-size: 36px;
    font-weight: 600;
    color: red;
    text-transform: uppercase;
}
.product-card {
    border: none;
    transition: 0.3s;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-image-wrapper img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* OVERLAY */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);

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

    opacity: 0;
    transition: 0.3s;
}

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

/* BUTTON */
.btn-detail {
    background: #fff;
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}

.btn-detail:hover {
    background: red;
    color: #fff;
}
.button-reset{
    border-radius: 25px;
}
/* TEXT */
.card-text-catalog {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.card-text-detail {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}
/* SEARCH */
.search-box {
    border-radius: 30px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.search-box:focus {
    border-color: red;
    box-shadow: 0 0 0 0.15rem rgba(255,0,0,0.2);
}

/* FILTER */
.filter-select {
    border-radius: 20px;
    font-size: 14px;
    padding: 6px 10px;
}
/* MOBILE FIX */
@media (max-width: 768px) {
    .product-image-wrapper img {
        height: 140px;
    }
    .title-daftar-product{
        font-size: 28px;
        text-align: center;
        margin-bottom: 20px;
    }
}
.title-berita{
    font-size: 18px;
    text-transform: capitalize;
}
.title-news{
    font-family: 'montserrat' , serif;
    font-size: 36px;
    font-weight: 600;
    color: red;
    text-transform: capitalize;
}
.news{
    background-color: #dddddd80;
}

.tiktok-frame {
    width: 100%;
    height: 500px; /* WAJIB */
    border: none;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .tiktok-frame {
        height: 420px;
    }
}

.title-galeri-pages{
    font-family: 'montserrat' , serif;
    font-size: 36px;
    font-weight: 600;
    color: red;
    text-transform: uppercase;
}

@media (max-width: 576px){
    .title-news,
    .title-galeri-pages{
        font-size: 24px;
    }
}

.livechat-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.livesupport {
    width: 90px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.livesupport:hover {
    transform: scale(1.1);
}

/* Popup */
.chat-popup {
    position: fixed;
    bottom: 120px;
    right: 25px;
    width: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: none;
    z-index: 9998;
    animation: slideUp 0.4s ease;
}

.chat-header {
    background: red;
    color: white;
    padding: 10px 15px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.title-livesupport{
    text-align: center;
    font-family: 'montserrat' , serif;
    font-size: 18px;
    font-weight: 400;
}
.text-livesupport{
    font-family: 'montserrat' , serif;
    font-size: 16px;
    font-weight: 300;
}
.btn{
    font-family: 'montserrat' , serif;
}
.chat-header button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.chat-body {
    padding: 15px;
}

.chat-popup.show {
    display: block;
    opacity: 1;
}
@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .swal2-container {
        z-index: 999999 !important;
    }

    #chatPopup,
    #liveSupportBtn {
        z-index: 9999;
    }
}

.not-found{
    font-size: 36px;
    font-weight: 600;
    font-family: 'Montserrat' , serif;
    text-transform: uppercase;
    color: #000;
    padding-top: 10px;
}
.mt-pict{
    height: 400px;
    align-items: center;
}
@media (max-width: 576px) {
    .mt-pict{
        height: 200px;
        margin-bottom: 10px;
    }
    .not-found{
        font-size: 16px;
    }
}
.footer {
    background: red;
    padding: 40px 20px 20px;
    color: #fff;
    position: relative;
    z-index: 1;

    /* ini tetap dipakai */
    border-radius: 50px 50px 0 0;
}

/* biar tidak mepet ke atas */
.footer::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 80px;
    background: red;

    /* ini yang bikin efek lengkung halus */
    border-radius: 50% 50% 0 0;
    z-index: -1;
}

/* link */
.footer ul {
    padding-left: 0;
}

.footer ul li {
    list-style: none;
    margin-bottom: 6px;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Montserrat', serif;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #000;
    padding-left: 5px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    color: #fff;
    font-size: 18px;

    border: 2px solid #fff;
    border-radius: 50%;

    margin: 0 6px;
    transition: 0.3s;
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer .copyright-text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.footer p {
    color: #ddd;
    line-height: 1.6;
}
.galeri-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.6);
    opacity: 0;

    transition: 0.3s ease-in-out;
}

.galeri-item:hover .overlay {
    opacity: 1;
}

.galeri-item img {
    transition: 0.3s ease;
}

.galeri-item:hover img {
    transform: scale(1.05);
}
@media (max-width: 767px) {
    .galeriSwiper {
        padding-left: 23px;
    }
}
.tiktok-item {
    cursor: pointer;
}

.tiktok-cover {
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
}

/* Overlay (desktop only) */
.tiktok-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    transition: 0.3s ease;
}

.tiktok-overlay iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Hover hanya untuk desktop */
@media (min-width: 768px) {
    .tiktok-item:hover .tiktok-overlay {
        opacity: 1;
    }
}

/* Mobile: disable hover iframe */
@media (max-width: 767px) {
    .tiktok-overlay {
        display: none;
    }
}

.Berita-Center{
    padding: 10px;
    margin-top: 80px !important;
}
.title-berita-center{
    font-size: 48px;
    font-weight: 600;
    font-family: 'montserrat' , serif;
    color:#000;
    text-transform: uppercase;
}
.header-2{
    font-size: 28px;
    font-weight: 400;
    color: #000;
    font-family: 'Poppins' , serif;
    text-transform: capitalize;
}
.isz{
    color: red;
    padding: 2px;
    border-bottom: 4px solid red;
}
.Galeri-Show{
    padding: 10px;
    margin-top: 80px !important;
}
.Galeri-Center{
    padding: 10px;
    margin-top: 80px !important;
}
.title-galeri-center{
    font-size: 36px;
    font-weight: 600;
    font-family: 'montserrat' , serif;
    color:#000;
    text-transform: uppercase;
}
@media (max-width: 576px){
    .title-berita-center{
        font-size: 32px;
    }
    .header-2{
        font-size: 24px;
    }
    .title-galeri-center{
        font-size: 28px;
    }
}
.galeri-center-item img {
    transition: 0.3s ease;
}

/* Overlay */
.galeri-center-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

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

    transition: 0.3s ease;
}

/* Hover */
.galeri-center-item:hover .overlay {
    opacity: 1;
}

.galeri-center-item:hover img {
    transform: scale(1.05);
}
.judul{
    font-size: 20px;
    font-weight: bold;
    font-family: 'Poppins' , serif;
    text-transform: capitalize;
    color: #000;
}
.prod-selected{
    font-size: 18px;
    font-weight: 600;
    font-family: 'montserrat' , serif;
    text-transform: uppercase;
    color: #000;
}
.date-buy{
    font-size: 18px;
    font-weight: 400;
    font-family: 'montserrat', serif;
    text-transform: uppercase;
    text-decoration: italic;
    color: #dddddd80;
}
.title-modify{
    padding: 5px;
    border-bottom: 4px solid red;
}
.Copyright{
    font-family: 'montserrat', serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
}
@media (max-width:576px){
    .Copyright{
        font-size: 16px;
    }
}
.main-image {
    max-height: 420px;
    object-fit: cover;
}

.thumb-img {
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.7;
}

.thumb-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.zigzag-img {
    max-width: 420px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* biar center */
}
