.navbar { 
    background-color: #FFDADA; 
    position: sticky; 
    top: 0;
    z-index: 997; /* Di bawah hamburger menu dan logo */
    padding: 0;
    height: 70px; /* Atur height navbar: 60px, 80px, 100px, dll */
    overflow: visible; /* Memungkinkan logo keluar dari navbar */
}

.navbar-brand { 
    position: fixed; 
    top: 5px; /* Atur posisi naik turun desktop: 0px = di atas, 20px = turun, -20px = naik */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000; /* Sama dengan floating tooltip */
    /* Logo desktop - bisa diatur posisi bebas */
}

.navbar-brand img {
    width: 100px; /* Atur ukuran logo */
    height: 100px; /* Atur ukuran logo */
    border-radius: 50%;
    /* Logo terpisah dari navbar - bisa diatur posisi bebas */
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000; /* Sama dengan logo dan floating tooltip */
    display: flex;
    gap: 10px;
    background-color: #FFDADA;
    padding: 8px 12px;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border: none;
    background: transparent;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 200;
    font-family: "Poppins", serif;
    color: black;
}

.lang-btn:hover {
    background-color: #FFB3D0 !important;
    color: #fdf2f6 !important;
    transform: scale(1.05);
}

.lang-btn.active {
    background-color: #FFB3D0 !important;
    color: #fdf2f6 !important;
}

/* Language button states - only one should be active at a time */
.lang-btn {
    background-color: transparent !important;
    color: black !important;
}

.lang-btn.active {
    background-color: #FFB3D0 !important;
    color: #fdf2f6 !important;
}

.lang-btn:hover {
    background-color: #FFB3D0 !important;
    color: #fdf2f6 !important;
    transform: scale(1.05);
}

.flag-img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    margin-right: 5px;
}

.navbar-nav .nav-link {
    color: black;
    font-size: 18px;
    padding: 10px 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
    font-family: "Poppins", serif;
    font-weight: 200;
}

.navbar-nav .nav-link:hover {
    color: #fdf2f6;
    background-color: #FFB3D0;
    border-radius: 25px;
}

.navbar-nav {
    flex-direction: row;
    gap: 10px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 120px;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
    padding-right: 20px;
    padding-left: 120px;
}

/* Hamburger menu CSS tersendiri */
.hamburger-menu {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: #FFDADA;
    z-index: 998; /* Di bawah logo yang memiliki z-index 1000 */
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: visible; /* Memungkinkan logo keluar dari container menu */
}

.hamburger-menu.show {
    display: block !important;
}

.hamburger-menu .menu-item {
    display: block;
    width: 100%;
    padding: 15px 20px;
    margin: 8px 0;
    background-color: transparent;
    border: none;
    text-align: center; /* Center alignment seperti navbar */
    font-size: 18px;
    font-family: "Poppins", serif;
    font-weight: 200;
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #FFB3D0;
    border-radius: 25px;
}

.hamburger-menu .menu-item:hover {
    background-color: #FFB3D0;
    color: #fdf2f6;
    transform: scale(1.05);
    border-radius: 25px;
}

/* Container untuk hamburger menu seperti navbar */
.hamburger-menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0;
    overflow: visible; /* Memungkinkan logo keluar dari container */
}

.hamburger-menu-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 120px;
}

.hamburger-menu-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
    padding-right: 20px;
    padding-left: 120px;
}

/* Hamburger menu disembunyikan di desktop */
.navbar-toggler {
    display: none !important;
}

/* Mobile menu disembunyikan di desktop */
.mobile-menu {
    display: none !important;
}

@media (max-width: 768px) {
    .navbar {
        height: 50px;
        overflow: visible;
        padding: 0 15px;
    }
    .navbar-brand {
        top: 3px; /* Atur posisi naik turun mobile: 0px = di atas, 20px = turun, -20px = naik */
        left: 50%;
        transform: translateX(-50%);
        /* Logo mobile - bisa diatur posisi bebas seperti desktop */
    }
    .navbar-brand img {
        width: 80px;
        height: 80px;
    }
    /* Language switcher responsive */
    .language-switcher {
        top: 5px;
        right: 10px;
        padding: 6px 10px;
        gap: 8px;
    }
    .lang-btn {
        padding: 4px 8px;
        font-size: 12px;
    }
    .flag-img {
        width: 16px;
        height: 12px;
    }
    .navbar-left,
    .navbar-right {
        display: none !important;
    }
    .navbar-toggler {
        display: block !important;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 999; /* Di bawah logo yang memiliki z-index 1000 */
        border: none;
        background: transparent;
        padding: 5px;
        cursor: pointer;
        color: #DC5073 !important;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .navbar-toggler i {
        font-size: 35px !important;
        color: #DC5073 !important;
        transition: all 0.3s ease;
    }
    
    /* Memastikan icon hamburger berwarna pink */
    .navbar-toggler i.fa-bars {
        font-size: 35px !important;
        color: #DC5073 !important;
    }
    /* Hamburger menu container responsive */
    .hamburger-menu-container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 30px; /* Ruang untuk logo */
    }
    .hamburger-menu-left,
    .hamburger-menu-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
        gap: 10px;
    }
    .hamburger-menu .menu-item {
        width: 90%;
        max-width: 300px;
        margin: 5px auto;
        text-align: center;
        border-bottom: 1px solid #FFB3D0 !important;
    }
    .navbar-toggler {
        order: -1;
    }
    .collapse.navbar-collapse {
        text-align: left;
    }
    .menu-container {
        display: flex;
        flex-direction: column;
        align-items: left;
        text-align: center;
        z-index: 30;
    }
    .footer .row > div {
        text-align: center;
        margin-bottom: 20px;
    }
    .footer img {
        display: block;
        margin: 0 auto;
    }
    .footer .row > div:not(:last-child) {
        display: block;
        width: 100%;
    }
    .content-wrapper {
        margin-top: 2rem !important;
        padding-top: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .content-wrapper p {
        font-size: 1rem !important;
        line-height: 1.5;
    }
    
    .img-wrapper-standard {
        margin-bottom: 1rem;
    }

    .img-wrapper-whychoose {
      margin-bottom: 1rem;
  }
    
    /* Pastikan row tidak menggunakan h-100 di mobile */
    .row.align-items-stretch {
        align-items: flex-start !important;
    }
    
    .col-md-6.h-100 {
        height: auto !important;
    }
}

@media (max-width: 576px) {
    .content-wrapper {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .content-wrapper p {
        font-size: 0.9rem !important;
        line-height: 1.4;
    }
}

.container-fluid {
    z-index: 1; /* Di bawah mobile menu */
}

.bx-wrapper {
    border: none !important;
    box-shadow: none;
    max-width: 100% !important;
    z-index: 1; /* Di bawah mobile menu */
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #e35196 !important;
}

.lightbox img {
    border-radius: 40px;
}

.inovation-text {
    text-align: center;
    color: #DC5073;
    font-size: 3vw;
    font-weight: bold;
    margin-top: 20px;
}

.footer a {
    text-decoration: none !important;
    color: black;
}

.footer a:hover {
    color: #e3519f;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: auto;
    font-size: 30px;
    background-color: #FFDADA;
    color: black;
    text-align: center;
    line-height: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover .floating-tooltip {
    display: block;
    transform: scale(1.1);
}

.floating-tooltip {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: normal;
    display: none;
    position: absolute;
    bottom: 80px;
    right: 10px;
    padding: 5px 6px;
    line-height: 1.2;
    background-color: #FFDADA;
    font-size: 12px;
    color: black;
    border-radius: 10px;
    white-space: nowrap;
    animation: fadeIn 0.3s ease;
}

.poppins-extralight {
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: normal;
}

/* Override untuk Product Features dengan maximum specificity */
.col-md-3.mb-4 .poppins-light,
.col-md-3.mb-4 p.poppins-light,
.col-md-3.mb-4 div .poppins-light {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
}

/* Override untuk ukuran icon Product Features dengan maximum specificity */
.col-md-3.mb-4 .d-inline-flex,
.col-md-3.mb-4 div.d-inline-flex,
.col-md-3.mb-4 .d-inline-flex[style*="width"],
.col-md-3.mb-4 .d-inline-flex[style*="height"] {
    width: 160px !important;
    height: 160px !important;
    max-width: 160px !important;
    max-height: 160px !important;
    min-width: 160px !important;
    min-height: 160px !important;
}

/* Mobile responsive override untuk Product Features */
@media (max-width: 768px) {
    .col-md-3.mb-4 .poppins-light,
    .col-md-3.mb-4 p.poppins-light,
    .col-md-3.mb-4 div .poppins-light {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    /* Mobile responsive override untuk ukuran icon */
    .col-md-3.mb-4 .d-inline-flex,
    .col-md-3.mb-4 div.d-inline-flex,
    .col-md-3.mb-4 .d-inline-flex[style*="width"],
    .col-md-3.mb-4 .d-inline-flex[style*="height"] {
        width: 140px !important;
        height: 140px !important;
        max-width: 140px !important;
        max-height: 140px !important;
        min-width: 140px !important;
        min-height: 140px !important;
    }
}

@media (max-width: 576px) {
    .col-md-3.mb-4 .poppins-light,
    .col-md-3.mb-4 p.poppins-light,
    .col-md-3.mb-4 div .poppins-light {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    /* Mobile responsive override untuk ukuran icon */
    .col-md-3.mb-4 .d-inline-flex,
    .col-md-3.mb-4 div.d-inline-flex,
    .col-md-3.mb-4 .d-inline-flex[style*="width"],
    .col-md-3.mb-4 .d-inline-flex[style*="height"] {
        width: 120px !important;
        height: 120px !important;
        max-width: 120px !important;
        max-height: 120px !important;
        min-width: 120px !important;
        min-height: 120px !important;
    }
}

.poppins-semibold {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
}

.bx-wrapper img {
    max-width: 100%;
    display: block;
    width: 100%;
    z-index: 1; /* Di bawah mobile menu */
}

/* Menu PRODUCTS - Atur posisi dengan mengubah nilai left dan top */
.nav-link-products {
    color: black;
    font-size: 18px;
    padding: 10px 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
    font-weight: 200;
    position: relative;
    left: 90px; /* Geser ke kiri (-) atau kanan (+) */
    top: 0px; /* Geser ke atas (-) atau bawah (+) */
    border-radius: 25px; /* Border radius konsisten */
    display: inline-block;
}

.nav-link-products:hover {
    color: #fdf2f6;
    background-color: #E350A0;
    transform: scale(1.05);
}

/* Menu DISCOVER US - Atur posisi dengan mengubah nilai left dan top */
.nav-link-discover {
    color: black;
    font-size: 18px;
    padding: 10px 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
    font-weight: 200;
    position: relative;
    left: 120px; /* Geser ke kiri (-) atau kanan (+) */
    top: 0px; /* Geser ke atas (-) atau bawah (+) */
    border-radius: 25px; /* Border radius konsisten */
    display: inline-block;
}

.nav-link-discover:hover {
    color: #fdf2f6;
    background-color: #E350A0;
    transform: scale(1.05);
}

/* Menu BLOG - Atur posisi dengan mengubah nilai left dan top */
.nav-link-blog {
    color: black;
    font-size: 18px;
    padding: 10px 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
    font-weight: 200;
    position: relative;
    left: -170px; /* Geser ke kiri (-) atau kanan (+) */
    top: 0px; /* Geser ke atas (-) atau bawah (+) */
    border-radius: 25px; /* Border radius konsisten */
    display: inline-block;
}

.nav-link-blog:hover {
    color: #fdf2f6;
    background-color: #E350A0;
    transform: scale(1.05);
}

/* Menu CONTACT - Atur posisi dengan mengubah nilai left dan top */
.nav-link-contact {
    color: black;
    font-size: 18px;
    padding: 10px 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
    font-weight: 200;
    position: relative;
    left: -100px; /* Geser ke kiri (-) atau kanan (+) */
    top: 0px; /* Geser ke atas (-) atau bawah (+) */
    border-radius: 25px; /* Border radius konsisten */
    display: inline-block;
}

.nav-link-contact:hover {
    color: #fdf2f6;
    background-color: #E350A0;
    transform: scale(1.05);
}

/*
  Ribbon label untuk gambar wrapper (pita di bawah gambar)
  - Menempel di bawah gambar, hanya sudut atas gambar yang melengkung
  - Rata kiri, font besar, warna sesuai kebutuhan
  - Hover: background putih, teks pink/biru sesuai class
  - Tidak ada jarak bawah, padding proporsional
  - Gunakan bersama .ribbon-label-pink atau .ribbon-label-blue
*/
.ribbon-label {
  position: absolute; /* Menempel di bawah wrapper gambar */
  left: 0;
  right: 0;
  bottom: 0;
  background: #E350A0; /* Default pink, override di .ribbon-label-blue */
  color: #fff !important;
  font-family: "Poppins", serif;
  font-weight: 600;
  font-size: 1.5rem; /* Font besar, seperti h1 */
  text-align: left; /* Rata kiri */
  padding: 10px 0 10px 24px; /* Atas, kanan, bawah, kiri. Proporsional */
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08); /* Sedikit shadow agar menonjol */
  transition: all 0.3s; /* Efek hover halus */
  margin: 0; /* Hilangkan margin default h1 */
  line-height: 1; /* Hilangkan spasi ekstra */
  margin-bottom: -1px; /* Hilangkan sisa jarak bawah */
}
/* Untuk ribbon biru */
.ribbon-label-blue {
  background: #83E1FE !important;
}
/* Hover efek: pita jadi putih, teks pink/biru sesuai class */
.ribbon-label:hover,
.ribbon-label-pink:hover {
  background: #fff !important;
  color: #FFB3D0 !important;
}
.ribbon-label-blue:hover {
  background: #fff !important;
  color: #83E1FE !important;
}
/*
  .wrapper-img: display block agar gambar tidak ada jarak bawah (inline gap)
*/
.wrapper-img {
  display: block;
}

/*
  .img-wrapper: wrapper untuk gambar SVG dan pita label
  - Memberi efek shadow pada gambar dan label
*/
.img-wrapper {
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  position: relative;
}

/*
  Product Card for New Products Section
*/
.product-card {
  width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.product-card .img-wrapper {
  box-shadow: none;
  overflow: visible;
  border-radius: 8px 8px 0 0;
}

.product-card .wrapper-img {
  border-radius: 8px 8px 0 0;
}

.product-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
}

.product-label span {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  color: #FEADC5 !important;
}

/* Love icon default: outline pink, fill transparan */
.product-label .love-icon {
  font-size: 1.25rem;
  color: #e3519f;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  display: inline;
}
.product-label .love-icon-fill {
  display: none;
  color: #e3519f;
}
.product-label .love-icon:hover + .love-icon-fill,
.product-label .love-icon:hover {
  display: none;
}
.product-label .love-icon:hover + .love-icon-fill {
  display: inline;
  animation: pop 0.2s;
}
@keyframes pop {
  0% { transform: scale(1); }
  60% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/*
  .approve-floating
  Untuk gambar approve.png yang melayang di tepi kanan wrapper produk.
  Atur nilai di bawah ini untuk mengubah posisi gambar secara bebas (naik, turun, kiri, kanan, dsb).
*/
.approve-floating {
  position: absolute; /* Membuat gambar melayang di atas wrapper */
  right: -30px;      /* Geser ke kanan, nilai negatif agar keluar wrapper */
  /* Bisa diganti left: 0; untuk geser ke kiri */
  top: 20%;          /* Geser ke bawah dari atas wrapper (dalam persen atau px) */
  /* Bisa diganti bottom: 0; untuk geser ke bawah dari bawah wrapper */
  transform: translateY(-50%); /* Untuk mengatur posisi vertikal (misal: -50% agar di tengah vertikal) */
  width: 80px;       /* Atur lebar gambar */
  height: auto;      /* Tinggi otomatis sesuai proporsi */
  z-index: 2;        /* Supaya gambar di atas elemen lain */
}

.img-wrapper-standard {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  display: inline-block;
}


.hr-title-wrapper {
  background: #fff;
  padding: 0 80px;
  width: fit-content;
  max-width: 90vw;
  margin: -40px auto 24px auto;
  position: relative;
  z-index: 2;
  text-align: center;
}



html body .hr-title-wrapper.offset-right {
  margin: -40px auto 24px 0 !important;
}

/* Additional override untuk memastikan tidak ada CSS lain yang mengintervensi */
html body .hr-title-wrapper.offset-left {
  margin-left: 100px !important;
  margin-right: 0 !important;
  margin-top: -40px !important;
  margin-bottom: 24px !important;
}

.hr-title-wrapper h2, .hr-title-wrapper h1, .hr-title-wrapper h3 {
  color: #DC5073;
  font-weight: bold;
}

.custom-hr {
  border: none;
  border-top: 4px solid #e3519f; /* Ubah ketebalan dan warna di sini */
  margin: 2.5rem 0;
}
.text-center { text-align: center; }
.text-start  { text-align: left; }
.text-end    { text-align: right; }


/* Safari/Mac specific fixes */
@supports (-webkit-appearance: none) {
 html body .hr-title-wrapper.offset-left {
    margin-left: 63px !important;
    margin-right: auto !important;
    /* Safari specific positioning */
    -webkit-margin-start: 63px !important;
    -webkit-margin-end: auto !important;
    /* Force positioning untuk Safari */
    position: relative !important;
    left: 0 !important;
    right: auto !important;
    transform: translateX(0) !important;
    /* Override default margin */
    margin: -40px 0 24px 63px !important;
  }
  
  .hr-title-wrapper.offset-right {
    margin-left: auto !important;
    margin-right: 0 !important;
    -webkit-margin-start: auto !important;
    -webkit-margin-end: 0 !important;
    /* Override default margin */
    margin: -40px auto 24px 0 !important;
  }
}

/* Chrome/Firefox/Edge specific fixes */
@supports not (-webkit-appearance: none) {
  .hr-title-wrapper.offset-left {
    margin-left: 100px !important;
    margin-right: auto !important;
    /* Standard browser positioning */
    position: relative !important;
    left: 100px !important;
    right: auto !important;
    /* Override default margin */
    margin: -40px 0 24px 100px !important;
  }
  
  .hr-title-wrapper.offset-right {
    margin-left: auto !important;
    margin-right: 0 !important;
    /* Override default margin */
    margin: -40px auto 24px 0 !important;
  }
}

/* Responsive untuk layar kecil */
@media (max-width: 768px) {
  .hr-title-wrapper {
    padding: 0 20px;
    max-width: 95vw;
    margin: -30px auto 16px auto; /* Sesuaikan margin-top agar text tetap di tengah garis */
  }
  
  .hr-title-wrapper h1,
  .hr-title-wrapper h2,
  .hr-title-wrapper h3 {
    font-size: 1.5rem !important;
    line-height: 1.2;
  }
  
  /* Override semua CSS sebelumnya dengan specificity yang lebih tinggi */
  html body .hr-title-wrapper.offset-left,
  body .hr-title-wrapper.offset-left,
  .hr-title-wrapper.offset-left {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: -30px !important;
    margin-bottom: 16px !important;
    margin: -30px auto 16px auto !important;
    text-align: center !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    -webkit-margin-start: 0px !important;
    -webkit-margin-end: 0px !important;
  }
  
  /* General offset-left class for mobile - Tablet */
  .offset-left {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: -30px !important;
    margin-bottom: 16px !important;
    margin: -30px auto 16px auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 576px) {
  .hr-title-wrapper {
    padding: 0 15px;
    max-width: 98vw;
    margin: -25px auto 12px auto; /* Sesuaikan margin-top agar text tetap di tengah garis */
  }
  
  .hr-title-wrapper h1,
  .hr-title-wrapper h2,
  .hr-title-wrapper h3 {
    font-size: 1.25rem !important;
    line-height: 1.1;
  }
  
  /* Override semua CSS sebelumnya dengan specificity yang lebih tinggi */
  html body .hr-title-wrapper.offset-left,
  body .hr-title-wrapper.offset-left,
  .hr-title-wrapper.offset-left {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: -25px !important;
    margin-bottom: 12px !important;
    margin: -25px auto 12px auto !important;
    text-align: center !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    -webkit-margin-start: 0px !important;
    -webkit-margin-end: 0px !important;
  }
  
  /* General offset-left class for mobile - Mobile */
  .offset-left {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: -25px !important;
    margin-bottom: 12px !important;
    margin: -25px auto 12px auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* Responsive untuk img-wrapper dan ribbon */
@media (max-width: 768px) {
  .img-wrapper {
    margin: 0 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  }
  
  .ribbon-label {
    font-size: 1rem !important;
    padding: 8px 0 8px 16px !important;
    line-height: 1;
  }
  
  .wrapper-img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 576px) {
  .img-wrapper {
    margin: 0 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .ribbon-label {
    font-size: 0.875rem !important;
    padding: 6px 0 6px 12px !important;
    line-height: 1;
  }
  
  .wrapper-img {
    max-width: 100%;
    height: auto;
  }
}

/* MAXIMUM SPECIFICITY OVERRIDE - Pastikan responsive mobile berfungsi */
@media (max-width: 768px) {
  /* Override semua CSS sebelumnya dengan specificity maksimum */
  html body .hr-title-wrapper.offset-left,
  body .hr-title-wrapper.offset-left,
  .hr-title-wrapper.offset-left,
  html body div.hr-title-wrapper.offset-left,
  body div.hr-title-wrapper.offset-left,
  div.hr-title-wrapper.offset-left {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: -30px !important;
    margin-bottom: 16px !important;
    margin: -30px auto 16px auto !important;
    text-align: center !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    -webkit-margin-start: 0px !important;
    -webkit-margin-end: 0px !important;
    -webkit-transform: none !important;
  }
  
  /* Override untuk semua elemen dengan class offset-left */
  html body .offset-left,
  body .offset-left,
  .offset-left,
  html body div.offset-left,
  body div.offset-left,
  div.offset-left {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: -30px !important;
    margin-bottom: 16px !important;
    margin: -30px auto 16px auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 576px) {
  /* Override semua CSS sebelumnya dengan specificity maksimum */
  html body .hr-title-wrapper.offset-left,
  body .hr-title-wrapper.offset-left,
  .hr-title-wrapper.offset-left,
  html body div.hr-title-wrapper.offset-left,
  body div.hr-title-wrapper.offset-left,
  div.hr-title-wrapper.offset-left {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: -25px !important;
    margin-bottom: 12px !important;
    margin: -25px auto 12px auto !important;
    text-align: center !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    -webkit-margin-start: 0px !important;
    -webkit-margin-end: 0px !important;
    -webkit-transform: none !important;
  }
  
  /* Override untuk semua elemen dengan class offset-left */
  html body .offset-left,
  body .offset-left,
  .offset-left,
  html body div.offset-left,
  body div.offset-left,
  div.offset-left {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: -25px !important;
    margin-bottom: 12px !important;
    margin: -25px auto 12px auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* Responsive untuk img-wrapper-standard */
@media (max-width: 768px) {
  .img-wrapper-standard {
    max-width: 90%;
    margin: 0 auto 1rem auto;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  
  .img-wrapper-standard img {
    border-radius: 16px;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 576px) {
  .img-wrapper-standard {
    max-width: 95%;
    margin: 0 auto 0.75rem auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  
  .img-wrapper-standard img {
    border-radius: 12px;
    width: 100%;
    height: auto;
  }
}

/* Override khusus untuk halaman Products Detail - hapus border-radius dan object-fit */
.products-detail .img-wrapper-standard,
.products-detail .img-wrapper-standard img,
.container.mt-5 .img-wrapper-standard,
.container.mt-5 .img-wrapper-standard img {
    border-radius: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
}

.products-detail .img-wrapper-standard img,
.container.mt-5 .img-wrapper-standard img {
    object-fit: initial !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: none !important;
}

/* Override untuk vertical alignment pada Products Detail */
.products-detail .row.align-items-stretch,
.container.mt-5 .row.align-items-stretch {
    min-height: 400px !important;
    align-items: center !important;
}

.products-detail .col-md-6.d-flex.align-items-center,
.container.mt-5 .col-md-6.d-flex.align-items-center {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.products-detail .content-wrapper,
.container.mt-5 .content-wrapper {
    text-align: left;
    width: 100%;
}

/* Mobile responsive override untuk Products Detail */
@media (max-width: 768px) {
    .products-detail .img-wrapper-standard,
    .products-detail .img-wrapper-standard img,
    .container.mt-5 .img-wrapper-standard,
    .container.mt-5 .img-wrapper-standard img {
        border-radius: 0 !important;
        overflow: visible !important;
        box-shadow: none !important;
    }
    
    .products-detail .img-wrapper-standard img,
        .container.mt-5 .img-wrapper-standard img {
        object-fit: initial !important;
        width: auto !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: none !important;
    }
    
    /* Mobile responsive override untuk vertical alignment */
    .products-detail .row.align-items-stretch,
    .container.mt-5 .row.align-items-stretch {
        min-height: 300px !important;
        align-items: center !important;
    }
    
    .products-detail .col-md-6.d-flex.align-items-center,
    .container.mt-5 .col-md-6.d-flex.align-items-center {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 576px) {
    .products-detail .img-wrapper-standard,
    .products-detail .img-wrapper-standard img,
    .container.mt-5 .img-wrapper-standard,
    .container.mt-5 .img-wrapper-standard img {
        border-radius: 0 !important;
        overflow: visible !important;
        box-shadow: none !important;
    }
    
    .products-detail .img-wrapper-standard img,
    .container.mt-5 .img-wrapper-standard img {
        object-fit: initial !important;
        width: auto !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: none !important;
    }
    
    /* Mobile responsive override untuk vertical alignment */
    .products-detail .row.align-items-stretch,
    .container.mt-5 .row.align-items-stretch {
        min-height: 250px !important;
        align-items: center !important;
    }
    
    .products-detail .col-md-6.d-flex.align-items-center,
    .container.mt-5 .col-md-6.d-flex.align-items-center {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* Responsive untuk approve-floating */
@media (max-width: 768px) {
  .approve-floating {
    width: 60px !important;
    right: -25px !important;
    top: 25% !important;
  }
}

@media (max-width: 576px) {
  .approve-floating {
    width: 50px !important;
    right: -20px !important;
    top: 20% !important;
  }
}

/* Responsive untuk product-label */
@media (max-width: 768px) {
  .product-label {
    padding: 8px 10px;
  }
  
  .product-label span {
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .product-label .love-icon {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .product-label {
    padding: 6px 8px;
  }
  
  .product-label span {
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .product-label .love-icon {
    font-size: 1rem;
  }
}

/* Responsive untuk tombol View Detail */
@media (max-width: 768px) {
  .btn.btn-primary.poppins-light {
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
  }
}

@media (max-width: 576px) {
  .btn.btn-primary.poppins-light {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
    border-radius: 6px;
  }
}

.footer-address-info {
    font-weight: 300;
    font-size: 0.97em;
    font-family: inherit;
    color: #333;
}

.footer-link-list a {
    display: inline-block;
    color: black;
    font-family: "Poppins", serif;
    font-weight: 200;
    font-size: 1em;
    text-decoration: none !important;
    margin-bottom: 6px;
    transition: color 0.2s;
}
.footer-link-list a:hover {
    color: #e3519f !important;
    text-decoration: none !important;
}
.footer-link-list a i {
    margin-right: 6px;
}

.why-signup-wrapper {
    border-left: 1px solid #E350A0;
    border-right: 1px solid #E350A0;
    border-bottom: 1px solid #E350A0;
    border-top: none;
    border-radius: 0;
    background: #fff;
    padding: 8px 24px 32px 24px;
    margin-top: 340px;
    margin-bottom: 32px;
    position: relative;
    overflow: visible;
    box-shadow: none;
}
.why-signup-img {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    max-width: none;
    z-index: 2;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(227,81,159,0.10);
}
@media (max-width: 768px) {
    .why-signup-wrapper {
        padding: 4px 12px 16px 12px;
        
        border-radius: 0;
        margin-top: 190px;
    }
    .why-signup-img {
        width: 110%;
        top: -40px;
        border-radius: 0;
        max-width: none;
    }
}

.why-signup-point {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.why-signup-icon {
    color: #E350A0;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    /* Force square shape for icon containers */
    width: 100px !important;
    height: 100px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    max-width: 100px !important;
    max-height: 100px !important;
    min-width: 100px !important;
    min-height: 100px !important;
}
.why-signup-text {
    font-size: 1.05em;
    color: #E350A0;
    line-height: 1.4;
    font-family: inherit;
    font-weight: 300;
    text-align: left;
}
@media (max-width: 768px) {
    .why-signup-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        /* Force square shape for mobile */
        width: 80px !important;
        height: 80px !important;
        border-radius: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        max-width: 80px !important;
        max-height: 80px !important;
        min-width: 80px !important;
        min-height: 80px !important;
    }
    .why-signup-text {
        font-size: 0.98em;
    }
}

.ribbon-label-pink {
  background: #FFB3D0 !important;
}

.btn-primary {
    background: #F387A2 !important;
    border: none;
    border-radius: 8px;
    padding: 10px 40px;
    transition: background 0.2s;
}
.btn-primary:hover, .btn-primary:focus {
    background: #EE5077 !important;
}

/*
  Utility: .rotate-approve
  Untuk memutar gambar approve-floating ke kanan/kiri sesuai kebutuhan.
  Cara pakai di HTML:
    <img ... class="approve-floating rotate-approve" style="--rotate: 20deg;">
    <img ... class="approve-floating rotate-approve" style="--rotate: -20deg;">
  Ganti nilai --rotate sesuai derajat yang diinginkan (misal: 15deg, -30deg, dst).
*/
.rotate-approve {
  transition: transform 0.3s;
  transform: rotate(var(--rotate, 0deg));
  transform-origin: bottom center;
}

/* Force square icons with maximum specificity */
.why-signup-point .why-signup-icon,
div.why-signup-icon,
.why-signup-icon[style*="width"],
.why-signup-icon[style*="height"],
.why-signup-icon {
    width: 50px !important;
    height: 50px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    max-width: 50px !important;
    max-height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    position: relative !important;
}

/* Mobile specific override */
@media (max-width: 768px) {
    .why-signup-point .why-signup-icon,
    div.why-signup-icon,
    .why-signup-icon[style*="width"],
    .why-signup-icon[style*="height"],
    .why-signup-icon {
        width: 40px !important;
        height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
    }
}

/* Ultimate override - highest specificity */
html body .why-signup-point .why-signup-icon,
html body div.why-signup-icon,
html body .why-signup-icon {
    width: 50px !important;
    height: 50px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    max-width: 50px !important;
    max-height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    position: relative !important;
}

@media (max-width: 768px) {
    html body .why-signup-point .why-signup-icon,
    html body div.why-signup-icon,
    html body .why-signup-icon {
        width: 40px !important;
        height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
    }
}

/* Nuclear option - highest possible specificity */
html body .why-signup-point .why-signup-icon,
html body .why-signup-point div.why-signup-icon,
html body .why-signup-point .why-signup-icon[class*="why-signup-icon"],
html body .why-signup-point .why-signup-icon[style*="width"],
html body .why-signup-point .why-signup-icon[style*="height"] {
    width: 50px !important;
    height: 50px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    max-width: 50px !important;
    max-height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    position: relative !important;
    transform: none !important;
    transition: none !important;
}

@media (max-width: 768px) {
    html body .why-signup-point .why-signup-icon,
    html body .why-signup-point div.why-signup-icon,
    html body .why-signup-point .why-signup-icon[class*="why-signup-icon"],
    html body .why-signup-point .why-signup-icon[style*="width"],
    html body .why-signup-point .why-signup-icon[style*="height"] {
        width: 40px !important;
        height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
    }
}

/* Final nuclear option - maximum specificity */
html body .why-signup-point .why-signup-icon,
html body .why-signup-point div.why-signup-icon,
html body .why-signup-point .why-signup-icon[class*="why-signup-icon"],
html body .why-signup-point .why-signup-icon[style*="width"],
html body .why-signup-point .why-signup-icon[style*="height"],
html body .why-signup-point .why-signup-icon[style*="display"],
html body .why-signup-point .why-signup-icon[style*="align"],
html body .why-signup-point .why-signup-icon[style*="justify"] {
    width: 50px !important;
    height: 50px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    max-width: 50px !important;
    max-height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    position: relative !important;
    transform: none !important;
    transition: none !important;
    font-size: inherit !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 768px) {
    html body .why-signup-point .why-signup-icon,
    html body .why-signup-point div.why-signup-icon,
    html body .why-signup-point .why-signup-icon[class*="why-signup-icon"],
    html body .why-signup-point .why-signup-icon[style*="width"],
    html body .why-signup-point .why-signup-icon[style*="height"],
    html body .why-signup-point .why-signup-icon[style*="display"],
    html body .why-signup-point .why-signup-icon[style*="align"],
    html body .why-signup-point .why-signup-icon[style*="justify"] {
        width: 40px !important;
        height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
    }
}

/* Final override - maximum specificity and force square */
html body .why-signup-point .why-signup-icon,
html body .why-signup-point div.why-signup-icon,
html body .why-signup-point .why-signup-icon[class*="why-signup-icon"],
html body .why-signup-point .why-signup-icon[style*="width"],
html body .why-signup-point .why-signup-icon[style*="height"],
html body .why-signup-point .why-signup-icon[style*="display"],
html body .why-signup-point .why-signup-icon[style*="align"],
html body .why-signup-point .why-signup-icon[style*="justify"],
html body .why-signup-point .why-signup-icon[style*="margin"],
html body .why-signup-point .why-signup-icon[style*="padding"] {
    width: 100px !important;
    height: 100px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    max-width: 100px !important;
    max-height: 100px !important;
    min-width: 100px !important;
    min-height: 100px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    position: relative !important;
    transform: none !important;
    transition: none !important;
    font-size: inherit !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Mobile override with maximum specificity */
@media (max-width: 768px) {
    html body .why-signup-point .why-signup-icon,
    html body .why-signup-point div.why-signup-icon,
    html body .why-signup-point .why-signup-icon[class*="why-signup-icon"],
    html body .why-signup-point .why-signup-icon[style*="width"],
    html body .why-signup-point .why-signup-icon[style*="height"],
    html body .why-signup-point .why-signup-icon[style*="display"],
    html body .why-signup-point .why-signup-icon[style*="align"],
    html body .why-signup-point .why-signup-icon[style*="justify"],
    html body .why-signup-point .why-signup-icon[style*="margin"],
    html body .why-signup-point .why-signup-icon[style*="padding"] {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
        min-width: 80px !important;
        min-height: 80px !important;
    }
}

/* Additional specificity to override any conflicting CSS */
html body .img-wrapper-whychoose,
html body .img-wrapper-whychoose img {
  border-radius: 24px !important;
  overflow: hidden !important;
}

/* Override Bootstrap img-fluid if it interferes with border-radius */
.img-wrapper-whychoose .img-fluid {
  border-radius: 24px !important;
  overflow: hidden !important;
}

/* Force border-radius even if other CSS tries to override */
.img-wrapper-whychoose * {
  border-radius: 24px !important;
}

/* Mobile Hero Slider Square Size */
@media (max-width: 768px) {
    .mobile-hero-slider,
    .bxslider.mobile-hero-slider {
        height: 100vw !important;
        max-height: 500px !important;
        min-height: 300px !important;
    }
    
    .mobile-hero-slider li,
    .bxslider.mobile-hero-slider li {
        height: 100vw !important;
        max-height: 500px !important;
        min-height: 300px !important;
    }
    
    .mobile-hero-slider img,
    .bxslider.mobile-hero-slider img {
        height: 100vw !important;
        max-height: 500px !important;
        min-height: 300px !important;
        object-fit: cover !important;
    }
}

/* Mobile Footer Styles */
.mobile-footer {
    background: #FFB3D0 !important;
    padding: 30px 20px 20px 20px;
    margin-top: 40px;
}

.mobile-footer-nav {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.mobile-footer-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: block;
}

.contact-section .mobile-footer-link {
    border-bottom: none;
}

.contact-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-footer-link:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.mobile-footer-brand {
    text-align: left;
    margin-bottom: 25px;
}

.mobile-footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.mobile-footer-logo-img {
    height: auto;
    width: 200px;
    object-fit: contain;
}

.mobile-footer-social {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    border-radius: 0;
    background: transparent;
}

.social-icon:hover {
    color: white;
    transform: scale(1.1);
    text-decoration: none;
}

.mobile-footer-cta {
    text-align: left;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-footer-cta-text {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.mobile-footer-signup-btn {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.mobile-footer-signup-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-1px);
    text-decoration: none;
}

.mobile-footer-signup-btn:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.mobile-footer-copyright {
    text-align: left;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}


/* Contact Details Styles */
.mobile-footer-contact-details {
    margin-top: 0;
    padding-top: 10px;
    animation: slideDown 0.3s ease-out;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: white;
    font-size: 14px;
}

.contact-item i {
    width: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item span {
    flex: 1;
}

.contact-toggle {
    cursor: pointer;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        margin-top: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
        padding-top: 15px;
        margin-top: 15px;
    }
}
