@import url("https://fonts.googleapis.com/css2?family=MonteCarlo&family=Outfit:wght@100..900&display=swap");

:root {
    /* Add your CSS variables here */

    --primary-color: #008260;
    --secondary-color: #003527;
    --gold-color: #d8b279;
    --muter-color: #878a99;
    --success-color: #099885;
    --font-family: "Outfit", sans-serif;
    --bs-gutter-x: 1.5rem;
}

body {
    display: flex;
    width: 100%;
    justify-content: center;
}

.wrapper {
    max-width: 1920px;
    width: 100%;
}

.text-gold {
    color: var(--gold-color);
}

.avatar-sm {
    width: 55px;
    height: 55px;
}

.dropdown-item-cart {
    width: 430px;
}

.empty-cart {
    display: block;
    margin: 0 auto;
}

.text-reset {
    color: inherit;
    text-decoration: none;
}

.bg-success {
    background-color: var(--success-color);
}
.btn-vz {
    background-color: var(--success-color);
    color: #ffffff;
}

.btn-vz:hover {
    background-color: #007a6f;
    color: #ffffff;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.fs-10 {
    font-size: 10px;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-36 {
    font-size: 36px;
}

.rounded-circle {
    border-radius: 50%;
}

.border-dashed {
    border-style: dashed;
    border-width: 1px;
}

.avatar-title {
    width: 72px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 36px;
}

.btn-login {
    color: var(--gold-color);
    background-color: transparent;
    font-size: 16px;
    padding: 8px 16px;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}

.bg-onecal-secondary {
    color: #ffffff;
    background-color: var(--secondary-color);
    font-size: 16px;
    padding: 8px 16px;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}

.btn-login:hover {
    color: #ffffff;
}

.btn-register {
    color: var(--gold-color);
    border: 1px solid var(--gold-color);
    font-size: 16px;
    padding: 8px 16px;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}

.btn-register:hover {
    color: #ffffff;
    background-color: var(--gold-color);
}

.navbar {
    background: linear-gradient(
        to bottom,
        var(--primary-color),
        var(--secondary-color)
    );
    position: relative;
    z-index: 1000;
}

.dropdown-navbar {
    position: relative;
}

@media (min-width: 1199.98px) {
    .custom-fluid-xl {
        max-width: 100% !important;
        width: 100%;
        padding-right: var(--bs-gutter-x);
        padding-left: var(--bs-gutter-x);
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 1199.98px) {
    .navbar .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(
            to bottom,
            var(--primary-color),
            var(--secondary-color)
        );
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
    }

    .navbar .navbar-collapse.collapse.show {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .navbar .navbar-nav {
        flex-direction: column;
        text-align: center;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
}

.fs-13 {
    font-size: 13px;
}

.fs-12 {
    font-size: 12px;
}

.text-muted {
    color: var(--muter-color) !important;
}

@media (min-width: 768px) {
    .topbar-user {
        background-color: var(--secondary-color);
    }
}
.topbar-user .dropdown-menu {
    top: 6px !important;
}

.header-profile-user {
    height: 32px;
    width: 32px;
}

.nav-item {
    margin: 0 15px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
}

.bahasa {
    font-size: 18px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
}

.bahasa i {
    font-size: 10px;
}

/* Animasi Seacrh */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRight {
    animation: fadeInRight 0.5s ease-out;
}

#searchIcon {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    opacity: 0;
    top: 50px !important;
    transform: translateY(-10px);
    transition:
        opacity 0.5s ease-in-out,
        transform 0.5s ease-in-out;
    position: absolute !important;
    shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    right: 0;
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    border: none;
    background: #ffffff;
    transform: translateY(0);
    animation: fadeInBottom 0.5s ease-in-out;
}

#user-dropdown-menu {
    margin-top: 70px;
}

/* Responsif untuk tampilan kecil (mobile) */
/* @media (max-width: 768px) {
    .dropdown-menu {
        width: 100%;
        border-radius: 0;
    }

    .dropdown-menu.show {
        position: absolute !important;
        width: 100%;
        background: #ffffff;
        top: 50px;
    }
} */

@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    /* padding: 0; */
}

.dropdown-item {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #000000;
}

.dropdown-item:hover {
    background: #eff2f7;
}

.check-bahasa {
    width: 18px;
    margin-left: 8px;
}

.flag-active {
    width: 30px;
}

.flag {
    width: 20px;
}

.keranjang img {
    width: 30px;
    height: auto;
}

.badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.4rem;
}

/* Hero */

.carousel-control {
    width: 30px;
}

.carousel-caption {
    height: 100%;
    /* width: 100%; */
}

.solusi {
    font-size: 100px;
    font-family: "MonteCarlo", cursive;
    font-weight: 400;
}

.caption-1 .tanpa {
    font-size: 70px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
}

.caption-1 h2 {
    font-size: 40px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    color: var(--gold-color);
}

.caption-1 p {
    font-size: 25px;
}

.caption-2 h1 {
    font-size: 56px;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    color: #3A795E;
}

.caption-2 h2 {
    font-size: 45px;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    color: #8F5E2B;
}

.btn-home-learn-more {
    background: #ffffff;
    color: #000000;
    border: none;
    font-size: 20px;
    padding: 10px 20px;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    border-radius: 25px;
    text-decoration: none;
}

.btn-home-learn-more:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

/* Section 2 */

.section-2 {
    padding: 120px 0;
}

.title h1 {
    color: #3a795e;
    font-size: 50px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
}

.hr-sec-2 {
    border-bottom: 1px solid #3a795e;
    width: 50%;
}

.section-2 .desc p {
    font-size: 25px;
    font-weight: 200;
    font-family: "Outfit", sans-serif;
}

.btn-readmore {
    border: 1px solid;
    border-radius: 25px;
    font-size: 20px;
    padding: 7px 15px;
    color: #49534f;
}

.btn-readmore:hover {
    background: #000000;
    color: #ffffff;
}

.section-2 .second-title{
    font-family: "Outfit", sans-serif;
    font-size: 30px;
    color: #19412E;
    font-weight: 200;
}

.hr-pemisah{
    border-color: #3a795e4b !important;
}

/* Section 3 */

.title-sec-3 {
    width: 1550px;
    text-align: center;
    margin: 0;
    padding: 0;
}

.title-sec-3 h1 {
    font-size: 40px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
}

.section-3 h1,
.section-4 h1,
.section-5 h1,
.section-7 h1 {
    font-size: 40px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    color: #3a795e;
    line-height: 0.4;
}

.hr-sec-3,
.hr-sec-4,
.hr-sec-5,
.hr-sec-7 {
    border-bottom: 1px solid #3a795e;
    width: 100%;
}

.item-circle-3 {
    padding: 100px 0;
}

.desc-3 {
    font-size: 25px;
    font-weight: 200;
    font-family: "Outfit", sans-serif;
    color: #49534f;
    text-align: justify;
}

/* Section 4 */

.section-4 {
    position: relative;
    padding: 80px 0;
}

.title-sec-4 {
    width: 550px;
    text-align: center;
}

.bg-4 {
    width: 100%;
    height: 800px;
    background-color: #3a795e;
    position: absolute;
    z-index: -1;
    bottom: 0;
}

.content-4 {
    padding: 70px 0;
}

.content-4-title {
    text-align: center;
    color: #ffffff;
    margin-top: 25px;
}

.merk {
    font-size: 17px;
    font-weight: 300;
    font-family: "Outfit", sans-serif;
}

.price {
    font-size: 17px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
}

.price span {
    font-size: 17px;
    font-weight: 300;
    font-family: "Outfit", sans-serif;
    text-decoration: line-through;
    margin-left: 10px;
}

.add-to-cart {
    color: #3a795e;
    background: #ffffff;
    border-radius: 20px;
    border: none;
    font-size: 19px;
    padding: 15px 35px;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
}

.add-to-cart:hover {
    transform: scale(1.1);
    transition: all 0.2s;
}

.special-text {
    font-size: 50px !important;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    margin-top: 100px;
}

.desc-special-text {
    font-size: 23px !important;
    font-weight: 300;
    font-family: "Outfit", sans-serif;
    margin-top: 50px;
}

.cover-btn-claim {
    margin-top: 100px;
}

.btn-claim {
    color: #ffffff;
    background: #3a795e;
    border: 10px solid #ffffff;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 35px;
    border-radius: 50px;
    padding: 8px 50px;
    box-shadow: inset -5px -8px 0px rgba(0, 0, 0, 0.25);
    height: 100px;
    width: 900px;
}

.btn-claim:hover {
    transform: scale(1.1);
    transition: all 0.2s;
}

.hr-btn-4 {
    border-bottom: 1px solid #ffffff;
    width: 100%;
}

/* Section 5 */

.section-5 {
    padding: 100px 0;
    background: #f7f7f7;
}

.title-sec-5 {
    width: 950px;
    text-align: center;
}

.contain-testi {
    margin-top: 70px;
}

.cover-testi {
    padding: 15px;
}

/* Section 6 */

.section-6 {
    background: linear-gradient(to bottom, #3a795e, #ffffff);
    padding: 100px 0 0 0;
    overflow: visible;
}

.swiper {
    padding: 0 40px;
}

.custom-prev img,
.custom-next img {
    width: 40px;
    height: auto;
}

.swiper-button-prev.custom-prev,
.swiper-button-next.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-prev.custom-prev {
    left: 10px;
}

.swiper-button-next.custom-next {
    right: 10px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

/* Section 7 */

.section-7 {
    padding: 100px 0;
}

.title-sec-7 {
    width: 1150px;
    text-align: center;
}

/* Section 8 */

/* .section-8{

} */

.desc-8 {
    text-align: center;
}

.desc-8 p {
    color: #49534f;
    font-size: 30px;
    font-weight: 200;
    font-family: "Outfit", sans-serif;
    text-align: center;
    padding: 50px 0;
}

.btn-see {
    color: #49534f;
    border: 1px solid #000000;
    border-radius: 30px;
    padding: 8px 25px;
    font-size: 25px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    background: none;
}

.btn-see:hover {
    background: #000000;
    color: #ffffff;
}

.product-8 {
    margin-top: 50px;
}

/* Footer */

footer {
    background: #3a795e;
    padding: 100px 0;
}

footer li {
    list-style: none;
    display: flex;
    flex-direction: column;
}

footer a {
    text-decoration: none;
    color: #ffffff;
    font-size: 17px;
    font-weight: 300;
    font-family: "Outfit", sans-serif;
    line-height: 2;
}

footer a:hover {
    text-decoration: underline;
}

.input-email {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.input-email input {
    border: none;
    background: none;
    border-bottom: 1px solid #d9d9d9;
    color: #ffffff;
    outline: none;
}

.input-email input::placeholder {
    color: #d9d9d9;
}

.input-email button {
    color: #ffffff;
    background: none;
    border: 1px solid #ffffff;
    font-size: 15px;
    padding: 5px 15px;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
}

.input-email button:hover {
    background: #ffffff;
    color: #3a795e;
}

/* Wellcome Pages */
.bg-wellcome {
    z-index: 0;
}

.text-wellcome {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 12%;
    color: #ffffff;
    font-size: 100px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
}

.text-reseller {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 12%;
    color: #000000;
    font-size: 100px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
}

.garis-wellcome {
    position: absolute;
    z-index: 2;
    top: 65%;
    left: 27%;
    width: 200px;
    border-bottom: 2px solid #ffffff;
    margin-left: auto;
}

.garis-reseller {
    position: absolute;
    z-index: 2;
    top: 65%;
    left: 27%;
    width: 200px;
    border-bottom: 2px solid #000000;
    margin-left: auto;
}

.section-1-wellcome {
    padding: 100px 0 0 0;
    background: #ffffff;
}

.section-1-wellcome p {
    color: #49534f;
    font-size: 25px;
    font-weight: 200;
    font-family: "Outfit", sans-serif;
    text-align: justify;
}

.cover-box {
    margin: 50px 0;
}

.cover-two-btn {
    background-color: #f6f6f6;
    padding: 100px 0;
    text-align: center;
}

.btn-well-jelajah {
    color: #ffffff;
    background-color: #252827;
    border: none;
    width: 20%;
    padding: 20px 0;
    margin: 0 10px;
    font-size: 25px;
}

.btn-well-video {
    color: #252827;
    background-color: #ffffff;
    border: 1px solid #252827;
    width: 20%;
    padding: 20px 0;
    margin: 0 10px;
    font-size: 25px;
}

.btn-well-jelajah:hover,
.btn-well-video:hover {
    transform: scale(1.1);
    transition: all 0.3s;
}

/* More Pages */

.cover-text-more {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 12%;
}

.text-more {
    color: #49534f;
    font-size: 100px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
}

.garis-more-title {
    width: 200px;
    border-bottom: 2px solid #49534f;
    margin-left: auto;
}

.section-1-more {
    padding: 100px 0 0 0;
}

.more-card {
    border: none;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}

.more-card .card-body {
    padding: 50px 30px;
}

.more-card .card-title {
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 200;
    color: #49534f;
}

.more-card .card-text {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #49534f;
    padding: 20px 0;
}

.btn-card-more {
    border: 1px solid #49534f;
    border-radius: 25px;
    font-size: 15px;
    padding: 7px 15px;
    color: #49534f;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    text-decoration: none;
}

.btn-card-more:hover {
    background: #000000;
    color: #ffffff;
}

/* Seasonal Pages */

.cover-text-hero-seasonal {
    position: absolute;
    top: 40%;
    left: 40%;
}

/* .cover-text-hero-seasonal h1{
    color: #000000;
    font-size: 100px;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
} */

.text-seasonal {
    position: absolute;
    z-index: 2;
    top: 30%;
    left: 40%;
    color: #000000;
    font-size: 100px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
}

.garis-seasonal-hero {
    width: 250px;
    border-bottom: 3px solid #000000;
    top: 65%;
    left: 55%;
    position: absolute;
}

.section-1-seasonal {
    padding: 100px 0 0 0;
}

.cover-seasonal-text {
    padding: 0 0 100px 0;
}

.cover-seasonal-text h1 {
    color: #49534f;
    font-size: 55px;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
    text-align: center;
}

.cover-seasonal-text p {
    color: #49534f;
    font-size: 26px;
    font-weight: 300;
    font-family: "Outfit", sans-serif;
    text-align: justify;
}

.product-seasonal img {
    max-width: 500px;
}

.cover-desc-seasonal h2 {
    font-size: 30px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    color: #49534f;
    margin-bottom: 30px;
}

.cover-desc-seasonal p {
    font-size: 30px;
    font-weight: 200;
    font-family: "Outfit", sans-serif;
    color: #49534f;
}

.last-text-seasonal {
    text-align: justify;
    font-size: 25px;
    font-weight: 300;
    font-family: "Outfit", sans-serif;
    color: #49534f;
    padding: 60px 0;
}

/* Learn More Pages */
.text-content-learn-more,
.images-content-learn-more {
    padding: 50px 20px;
}

.text-content-learn-more h2 {
    font-size: 50px;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
    color: #49534f;
    margin-bottom: 30px;
}

.text-content-learn-more ul li {
    font-size: 25px;
    font-weight: 300;
    font-family: "Outfit", sans-serif;
    color: #49534f;
    text-align: justify;
    margin-bottom: 20px;
}

.produk-learn-more img {
    max-width: 300px;
}

.text-produk-learn-more {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-produk-learn-more p {
    font-size: 25px;
    font-weight: 300;
    font-family: "Outfit", sans-serif;
    color: #49534f;
    text-align: justify;
    margin-bottom: 40px;
}

.cover-last-img-learn-more {
    padding: 100px 0;
}

/* Read More Pages */

.section-1-read-more .container {
    padding: 100px 0;
}

.read-more-first-content,
.read-more-second-content {
    margin-bottom: 70px;
}

.read-more-first-content h1,
.read-more-second-content h1 {
    font-size: 50px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    color: #49534f;
    margin-bottom: 30px;
}

.read-more-first-content p,
.read-more-second-content ul li,
.read-more-third-content p {
    font-size: 25px;
    font-weight: 200;
    font-family: "Outfit", sans-serif;
    color: #49534f;
    text-align: justify;
}

.read-more-second-content p {
    font-size: 25px;
    font-family: "Outfit", sans-serif;
    color: #49534f;
    text-align: justify;
}

/* See More Pages */

.section-1-see-more {
    padding: 100px 0 0 0;
    position: relative;
}

.first-content-see-more h1,
.second-content-see-more h2 {
    font-size: 50px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    color: #49534f;
    margin-bottom: 30px;
}

.first-content-see-more p,
.first-content-see-more ul li {
    font-size: 25px;
    font-weight: 200;
    font-family: "Outfit", sans-serif;
    color: #49534f;
    text-align: justify;
}

.table-see-more {
    padding: 50px 0;
}

.second-content-see-more {
    padding-top: 150px;
}

.second-content-see-more .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.second-content-see-more p {
    font-size: 25px;
    font-weight: 200;
    font-family: "Outfit", sans-serif;
    color: #49534f;
    text-align: justify;
}

.second-content-see-more span {
    color: #b68048;
}

.images-test {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0;
    display: flex;
    justify-content: end;
}

.section-1-reseller {
    padding: 100px 0 0 0;
    font-family: "Outfit", sans-serif;
}

.cover-reseller h1 {
    color: #49534f;
    font-family: "Outfit", sans-serif;
}

.stokis,
.afiliasi {
    color: #49534f;
    margin-top: 35px;
}

.stokis b,
.afiliasi b {
    font-size: 25px;
}

.teks-reseller {
    font-size: 20px;
}

.stokis ul li,
.afiliasi ul li {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
}

.btn-reseller {
    background-color: #3a795e;
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    border-radius: 25px;
    padding: 7px 15px;
    font-size: 20px;
    font-weight: 300;
    border: none;
    text-decoration: none;
    margin-top: 10px;
}

.btn-reseller:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

/* Xl */
@media screen and (min-width: 1200px) and (max-width: 1920px) {
    .title-sec-3 h1,
    .title-sec-4 h1,
    .title-sec-5 h1,
    .title-sec-7 h1 {
        font-size: 30px;
    }

    .dropdown-menu-cart {
        min-width: 400px;
    }

    /* Seasonal Page */
    .text-seasonal {
        position: absolute;
        z-index: 2;
        top: 30%;
        left: 40%;
        color: #000000;
        font-size: 70px;
        font-weight: 400;
        font-family: "Outfit", sans-serif;
    }

    .garis-seasonal-hero {
        width: 200px;
        border-bottom: 3px solid #000000;
        top: 60%;
        left: 50%;
        position: absolute;
    }
    .images-test img {
        width: 600px;
    }

    .garis-wellcome {
        position: absolute;
        z-index: 2;
        top: 70%;
        left: 27%;
        width: 200px;
        border-bottom: 2px solid #ffffff;
        margin-left: auto;
    }

    .garis-reseller {
        position: absolute;
        z-index: 2;
        top: 70%;
        left: 27%;
        width: 200px;
        border-bottom: 2px solid #000000;
        margin-left: auto;
    }
}

/* LG */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    /* Footer */
    footer {
        background: #3a795e;
        padding: 50px 0;
    }

    .dropdown-menu-cart {
        min-width: 400px;
    }

    .input-email {
        align-items: center;
        margin-top: 20px;
    }

    /* Two button */

    .btn-well-jelajah {
        padding: 15px 0;
        font-size: 20px;
    }

    .btn-well-video {
        padding: 15px 0;
        font-size: 20px;
    }

    /* Index */
    .title-sec-3 h1,
    .title-sec-4 h1,
    .title-sec-5 h1,
    .title-sec-7 h1 {
        font-size: 30px;
    }

    /* Seasonal Page */
    .text-seasonal {
        position: absolute;
        z-index: 2;
        top: 30%;
        left: 40%;
        color: #000000;
        font-size: 70px;
        font-weight: 400;
        font-family: "Outfit", sans-serif;
    }

    .garis-seasonal-hero {
        width: 200px;
        border-bottom: 3px solid #000000;
        top: 75%;
        left: 50%;
        position: absolute;
    }
    .cover-seasonal-text h1 {
        color: #49534f;
        font-size: 55px;
        font-weight: 500;
        font-family: "Outfit", sans-serif;
        text-align: center;
    }

    .cover-seasonal-text p {
        color: #49534f;
        font-size: 26px;
        font-weight: 300;
        font-family: "Outfit", sans-serif;
        text-align: justify;
    }
    .product-seasonal img {
        max-width: 400px;
    }

    .cover-desc-seasonal,
    .product-seasonal {
        margin-bottom: 50px;
    }

    .images-test img {
        width: 500px;
    }

    .garis-wellcome {
        position: absolute;
        z-index: 2;
        top: 75%;
        left: 32%;
        width: 200px;
        border-bottom: 2px solid #ffffff;
        margin-left: auto;
    }

    .garis-reseller {
        position: absolute;
        z-index: 2;
        top: 75%;
        left: 32%;
        width: 200px;
        border-bottom: 2px solid #000000;
        margin-left: auto;
    }

    .section-2 .second-title{
        margin-top: 10px;
    }
}

/* MD */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .nav-item {
        font-size: 16px;
    }

    .dropdown-menu-cart {
        position: absolute !important;
        top: 100% !important;
        right: 0 !important;
        left: auto !important;
        width: 420px !important;
        max-width: 90vw !important;
        z-index: 9999 !important;
    }

    #dropdownMenuButton {
        font-size: 16px;
    }

    /* Footer */
    .input-email {
        align-items: center;
        margin-top: 20px;
    }

    /* Two button */

    .cover-two-btn {
        padding: 50px 0;
    }

    .btn-well-jelajah {
        padding: 12px 0;
        font-size: 15px;
    }

    .btn-well-video {
        padding: 12px 0;
        font-size: 15px;
    }

    /* INDEX */
    .solusi {
        font-size: 50px;
    }
    .caption-1 .tanpa {
        font-size: 40px;
    }
    .caption-1 h2 {
        font-size: 30px;
    }
    .caption-1 p {
        font-size: 20px;
    }
    .caption-2 h1 {
        font-size: 30px;
        color: #3A795E;
    }
    .btn-home-learn-more {
        font-size: 16px;
        padding: 8px 16px;
    }
    .caption-2 h2 {
        font-size: 25px;
    }
    .caption-2 img {
        width: 400px;
    }
    .title-sec-3 h1,
    .title-sec-4 h1,
    .title-sec-5 h1,
    .title-sec-7 h1 {
        font-size: 30px;
    }

    .desc p,
    .desc-3 p,
    .desc-8 p {
        font-size: 20px !important;
    }

    .bg-4 {
        height: 1300px;
    }
    .special-text {
        font-size: 40px !important;
    }
    .cover-btn-claim {
        margin-top: 50px;
    }
    .btn-claim {
        font-size: 25px;
        padding: 5px 30px;
        width: 700px;
        border: 8px solid #ffffff;
    }
    .item-circle-3 {
        text-align: center;
    }
    .item-circle-3 img {
        width: 250px;
    }

    /* Seasonal Page */
    .text-seasonal {
        position: absolute;
        z-index: 2;
        top: 30%;
        left: 40%;
        color: #000000;
        font-size: 70px;
        font-weight: 400;
        font-family: "Outfit", sans-serif;
    }

    .garis-seasonal-hero {
        width: 170px;
        border-bottom: 3px solid #000000;
        top: 85%;
        left: 65%;
        position: absolute;
    }
    .cover-seasonal-text h1 {
        font-size: 45px;
    }
    .cover-seasonal-text p {
        font-size: 20px;
    }
    .cover-desc-seasonal,
    .product-seasonal {
        margin-bottom: 50px;
    }
    .product-seasonal img {
        max-width: 400px;
    }
    .cover-desc-seasonal p {
        font-size: 20px;
    }

    /* More Pages */
    .text-more {
        font-size: 70px;
    }
    .images-test img {
        width: 400px;
    }
    .text-content-learn-more h2 {
        font-size: 30px;
    }
    .text-content-learn-more ul li {
        font-size: 20px;
    }
    .text-produk-learn-more p {
        font-size: 20px;
    }

    .garis-wellcome {
        position: absolute;
        z-index: 2;
        top: 80%;
        left: 38%;
        width: 200px;
        border-bottom: 2px solid #ffffff;
        margin-left: auto;
    }

    .garis-reseller {
        position: absolute;
        z-index: 2;
        top: 80%;
        left: 38%;
        width: 200px;
        border-bottom: 2px solid #000000;
        margin-left: auto;
    }

    .section-2 .second-title{
        margin-top: 20px;
    }
}

/* SM */
@media screen and (max-width: 767px) {
    /* Footer */
    footer {
        background: #3a795e;
        padding: 20px 0;
    }

    .caption-1{
        padding-top: 200px;
        padding-left: 50px;
    }

    .btn-home-learn-more {
        font-size: 12px;
        padding: 2px 6px;
    }

    /* Dropdown */

    .dropdown-menu {
        background: #3a795e;
    }

    .dropdown-menu-cart {
        min-width: 300px;
    }

    .input-email {
        align-items: center;
        margin-top: 20px;
    }

    /* Two button */

    .cover-two-btn {
        padding: 30px 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-well-jelajah {
        padding: 12px 0;
        font-size: 15px;
        width: 30%;
    }

    .btn-well-video {
        padding: 10px 0;
        font-size: 15px;
        margin-top: 10px;
        width: 30%;
    }

    .title-sec-3 h1,
    .title-sec-4 h1,
    .title-sec-5 h1,
    .title-sec-7 h1 {
        font-size: 25px;
    }

    .item-circle-3 {
        text-align: center;
    }
    .item-circle-3 img {
        width: 250px;
    }
    .content-4 {
        justify-content: center;
    }
    .content-4-item {
        width: 300px;
    }

    .bg-4 {
        height: 2200px;
    }
    .add-to-cart {
        font-size: 18px;
        padding: 10px 20px;
        width: 100%;
    }
    .special-text {
        font-size: 20px !important;
        margin-top: 0px;
    }
    .cover-btn-claim {
        margin-top: 50px;
    }
    .btn-claim {
        font-size: 17px;
        padding: 2px 10px;
        width: 700px;
        border: 5px solid #ffffff;
        height: 60px;
    }
    .desc p,
    .desc-3 p,
    .desc-8 p {
        font-size: 20px !important;
    }
    .section-2 {
        padding: 50px 0;
    }
    .title h1 {
        font-size: 30px;
    }

    /* Wellcome Page */

    .text-wellcome {
        font-size: 60px;
    }

    .text-reseller {
        font-size: 60px;
    }

    .section-1-wellcome p {
        font-size: 20px;
    }

    /* Seasonal Page */
    .text-seasonal {
        position: absolute;
        z-index: 2;
        top: 30%;
        left: 30%;
        color: #000000;
        font-size: 60px;
        font-weight: 400;
        font-family: "Outfit", sans-serif;
    }

    .garis-seasonal-hero {
        width: 170px;
        border-bottom: 3px solid #000000;
        top: 85%;
        left: 55%;
        position: absolute;
    }
    .cover-seasonal-text h1 {
        font-size: 45px;
    }
    .cover-seasonal-text p {
        font-size: 20px;
    }
    .cover-desc-seasonal,
    .product-seasonal {
        margin-bottom: 50px;
    }
    .product-seasonal img {
        max-width: 400px;
    }
    .cover-desc-seasonal p {
        font-size: 20px;
    }
    .last-text-seasonal {
        font-size: 20px;
    }
    /* More Pages */
    .text-more {
        font-size: 60px;
    }

    /* Read More */
    .read-more-first-content h1,
    .read-more-second-content h1 {
        font-size: 30px;
    }
    .read-more-first-content p,
    .read-more-second-content ul li,
    .read-more-third-content p {
        font-size: 20px;
    }
    .section-1-read-more .container {
        padding: 50px 20px;
    }

    /* See More */
    .first-content-see-more h1,
    .second-content-see-more h2 {
        font-size: 30px;
    }
    .first-content-see-more p,
    .second-content-see-more p {
        font-size: 20px;
    }
    .images-test img {
        width: 400px;
    }
    .second-content-see-more {
        padding-bottom: 150px;
    }
    .section-1-see-more {
        padding: 30px 10px 0 10px;
        position: relative;
    }

    .text-content-learn-more h2 {
        font-size: 30px;
    }
    .text-content-learn-more ul li {
        font-size: 20px;
    }
    .text-produk-learn-more p {
        font-size: 20px;
        margin-top: 20px;
    }

    .garis-wellcome {
        position: absolute;
        z-index: 2;
        top: 75%;
        left: 38%;
        width: 100px;
        border-bottom: 2px solid #ffffff;
        margin-left: auto;
    }

    .garis-reseller {
        position: absolute;
        z-index: 2;
        top: 75%;
        left: 38%;
        width: 100px;
        border-bottom: 2px solid #000000;
        margin-left: auto;
    }

    .teks-reseller,
    .stokis ul li,
    .afiliasi ul li {
        font-size: 18px;
    }

    /* Pastikan container parent tidak membatasi overflow */
    .navbar,
    .container-fluid,
    .topbar-head-dropdown {
        overflow: visible !important;
    }

    /* Cart dropdown positioning dan sizing untuk mobile */
    .dropdown-menu-cart {
        position: fixed !important; /* Gunakan fixed agar tidak terbatas parent */
        top: 60px !important; /* Sesuaikan dengan tinggi navbar */
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: unset !important; /* Reset min-width yang ada */
        margin: 0 !important;
        transform: none !important;
        border-radius: 0 !important; /* Remove border radius untuk full width */
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
        z-index: 9999 !important;
    }

    /* Styling untuk cart items di mobile */
    .dropdown-item-cart {
        width: 100% !important; /* Override width yang ada */
        max-width: 100% !important;
        box-sizing: border-box;
        padding: 15px 20px !important; /* Beri padding yang cukup */
    }

    /* Pastikan gambar produk responsive */
    .dropdown-item-cart .avatar-sm {
        width: 45px !important;
        height: 45px !important;
        flex-shrink: 0;
    }

    /* Adjust text sizing untuk mobile */
    .dropdown-item-cart h6 {
        font-size: 14px !important;
        line-height: 1.3;
    }

    .dropdown-item-cart .fs-12 {
        font-size: 11px !important;
    }

    .dropdown-item-cart .fs-16 {
        font-size: 14px !important;
    }

    /* Empty cart styling */
    .empty-cart {
        padding: 30px 20px !important;
    }

    /* Checkout section */
    #checkout-elem {
        padding: 20px !important;
    }

    /* Checkout button */
    #checkout-elem .btn {
        width: 100% !important;
        padding: 12px !important;
        font-size: 16px !important;
    }

    .section-2 .second-title{
        margin-top: 20px;
    }

    .section-2 .logo-primary-section2{
        width: 150px;
    }
}

/* XS */
@media screen and (max-width: 575px) {
    .navbar {
        overflow: visible; /* Pastikan navbar tidak menghalangi dropdown */
    }

    .caption-1{
        padding-top: 160px;
        padding-left: 30px;
    }

    .btn-home-learn-more {
        font-size: 10px;
        padding: 2px 6px;
    }

    .dropdown-menu-cart {
        z-index: 9999; /* Pastikan berada di atas konten lainnya */
        box-sizing: border-box; /* Termasuk padding dan border dalam lebar */
        width: 100% !important; /* Lebar 100% dari viewport */
    }

    .dropdown-menu.show {
        position: absolute; /* Agar tidak terikat dengan elemen parent */
        top: 0;
        right: 0;
        width: 100% !important; /* Lebar 100% dari viewport */
    }
    /* Two button */
    .btn-well-jelajah {
        padding: 12px 0;
        font-size: 15px;
        width: 70%;
    }

    .btn-well-video {
        padding: 10px 0;
        font-size: 15px;
        margin-top: 10px;
        width: 70%;
    }
    .title-sec-3 h1,
    .title-sec-4 h1,
    .title-sec-5 h1,
    .title-sec-7 h1 {
        font-size: 20px;
    }

    .bg-4 {
        height: 1900px;
    }

    /* Wellcome Page */

    .text-wellcome {
        font-size: 40px;
    }

    .text-reseller {
        font-size: 40px;
    }

    .section-1-wellcome {
        padding: 20px 0 0 0;
    }
    .section-1-wellcome p {
        font-size: 16px;
    }

    /* Seasonal Page */
    .text-seasonal {
        position: absolute;
        z-index: 2;
        top: 30%;
        left: 40%;
        color: #000000;
        font-size: 25px;
        font-weight: 400;
        font-family: "Outfit", sans-serif;
    }

    .garis-seasonal-hero {
        width: 170px;
        border-bottom: 3px solid #000000;
        top: 85%;
        left: 65%;
        position: absolute;
    }
    .garis-seasonal-hero {
        display: none;
    }
    .product-seasonal img {
        width: 100%;
    }
    .text-more {
        font-size: 40px;
    }

    .first-content-see-more h1,
    .second-content-see-more h2 {
        font-size: 30px;
    }
    .first-content-see-more p,
    .second-content-see-more p {
        font-size: 20px;
    }
    .first-content-see-more ul li {
        font-size: 18px;
    }

    .garis-wellcome {
        display: none;
    }

    .garis-reseller {
        display: none;
    }
}
