
/* Gaya khusus untuk Mobile (layar kecil) */

* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, sans-serif;
    background-color: black;
    color: #fff;
    text-align: center;
}

/* HEADER */
header {
    background-color: #005A70;
    padding: 10px 0;
    border-bottom: 3px solid #0BB89B; /* Border light blue di bawah header */
}

.logo img {
    width: 30vw;
}

.product-image img {
    width: 95vw;
    padding-top: 50px;
}

.official-badge img {
    width: 13vw;
    margin: 40px 0px 10px;
}

.product-title {
    font-size: 14px;
    line-height:14px;
    font-family: Inter, sans-serif;
    font-weight: bold;
    margin: 0px 0px 40px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: white;
    padding: 5px 15px;
    border-radius: 35px;
    font-weight: bold;
    font-size: 8px;
}

/* Warna tombol */
.tokopedia {
    background-color: #42b549;
}

.shopee {
    background-color: #ee4d2d;
}

.whatsapp {
    background-color: #25d366;
}

/* Ukuran ikon */
.btn img {
    width: 30px;
    height: 30px;
}

/* OFFLINE STORE */

.offline-store p{
    font-size: 14px;
    font-family: Inter, sans-serif;
    margin-top: 80px;
}

.offline-store-title p{
    color: #0BB89B;
    font-family: Inter, sans-serif;
    font-size: 12px !important;
    margin-bottom:0px;
}

.offline-store-title a{
    text-decoration: none;   /* Menghapus garis bawah (underline) pada link */
    color: inherit;          /* Membuat warna link sama seperti teks biasa */
}

.offline-store-title a:hover {
    text-decoration: none;   /* Menghapus garis bawah (underline) pada link */
    color: inherit;          /* Membuat warna link sama seperti teks biasa */
}

.offline-store-address p{
    font-size: 12px;
    font-family: Inter, sans-serif;
    margin-top:0px;
    margin-bottom: 80px;
    padding: 0px 30px;
}

/* FOOTER */
.managed-unmerch{
    height: 12px;
}

footer {
    background-color: black;
    padding: 20px 30px;
    font-size: 12px;
    font-family: Inter, sans-serif;
    font-weight: normal !important;
    border-top: 2px solid #FEBE10; /* Garis emas */
}

.right-desktop {
    display:none;
}

/* Gaya Default (Desktop) */
@media (min-width: 769px) {
    
body {
    margin: 0;
    font-family: Inter, sans-serif;
    background-color: black;
    color: #fff;
    text-align: center;
    height: 100%;
}

/* HEADER */
header {
    background-color: #005A70;
    padding: 10px 0px;
    text-align: center;
    border-bottom: 3px solid #0BB89B; /* Border light blue di bawah header */
}

.logo img {
    width: 200px;
}

.product-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 80px;
    overflow: hidden !important;
}

.product-image img {
    width: 60vw;
    margin: 0px 80px;
    position: absolute;
    right: 0;
    top: 40px;
    z-index: -1;
    overflow: hidden !important;
}

.official-badge img {
    width: 80px;
    margin: 40px 0px 10px;
}

.product-title {
    font-family: Inter, sans-serif;
    text-align: left;
    font-size: 24px;
    line-height:24px;
    font-weight: bold;
    margin: 0px 0px 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    border-radius: 35px;
    font-weight: bold;
    font-size: 12px;
}

/* Warna tombol */
.tokopedia {
    background-color: #42b549;
}

.shopee {
    background-color: #ee4d2d;
}

.whatsapp {
    background-color: #25d366;
}

/* Ukuran ikon */
.btn img {
    width: 25px;
    height: 25px;
}

/* OFFLINE STORE */

.offline-store p{
    font-family: Inter, sans-serif;
    font-size: 15px;
    margin-top: 20px;
    text-align: left;
}

.offline-store-title p{
    font-family: Inter, sans-serif;
    font-weight: normal;
    color: #0BB89B;
    font-size: 15px !important;
    text-align: left;
    margin-bottom: 0px;
    margin-top: 5px;
}

.offline-store-address p{
    font-family: Inter, sans-serif;
    font-weight: 300 !important;
    font-size: 15px;
    width:400px;
    margin-bottom: 250px;
    margin-top: 0px;
    text-align: left;
    padding: 0px 0px;
}

/* FOOTER */
.managed-unmerch{
    height: 14px;
}

footer {
    font-family: Inter, sans-serif;
    font-weight: 300 !important;
    background-color: black;
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 14px;
    justify-content: center;
    border-top: 2px solid #FEBE10; /* Garis emas */
    z-index: 10;
}

footer .left{
    padding-left: 40px !important;
}
.right-mobile {
    display:none;
}
.right-desktop {
    display:block !important;
    padding-left: 40px !important;
}

}

