* {
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
}

/* Navigation */

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 100%;
    position: sticky;
    top: 0;
    background: #3d3521;
    backdrop-filter: blur(10px);
    z-index: 999;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
    max-width: 1600px;
}

.navbar-container .navbar-menu {
    display: flex;
    text-align: center;
    gap: 1.5rem;
    list-style: none;
}

.navbar-container .navbar-menu li a {
    text-decoration: none;
    color: #ffffffb4;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 7px 20px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.7s ease;
    white-space: nowrap;
    animation: navIn 0.5s ease-out forwards;
}

.navbar-container .navbar-menu li a:hover {
    border-color: #b3a100;
    color: #fff;
}

.page {
    background-color: #614f20;
    color: #fff !important;
}

.navbar-toggle {
    background: transparent;
    padding: 10px;
    border: none;
    cursor: pointer;
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

@media (max-width: 880px) {
    .logo {
        width: 40%;
        min-width: 200px;
    }

    .navbar-logo {
        margin-left: 0;
    }

    .navbar {
        backdrop-filter: none;
    }

    .navbar-container .navbar-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.7rem !important;
        position: absolute;
        height: 100vh;
        width: 250px;
        top: 0;
        right: 0;
        padding: 5rem 1.5rem;
        box-shadow: 0 10px 10px rgba(0 0, 0, 0.5);
        background-color: #412f0030;
        backdrop-filter: blur(10px);
    }

    .navbar-toggle {
        display: block;
        z-index: 999;
    }

    .navbar-container .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .navbar-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Container */
.container1 {
    display: flex;
    align-items: center;
    justify-content: left;
    background: linear-gradient(#fefbec, #ede7ce);
    padding: 1%;
    margin-bottom: 5px;
}

.banner {
    width: 63%;
    display: flex;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: 0.2s ease;
    float: left;
    min-width: 600px;
    animation: fadeInUp 0.5s ease-out forwards;
}

.banner:hover {
    border-color: gold;

}

@media only screen and (max-width: 880px) {
    .container1 {
        display: none;
    }
}

.swiper {
    width: 600px;
    height: 300px;
}

.judul {
    width: 30%;
    padding-left: 4%;
    font-size: 40px;
    display: block;
    animation: fadeInLeft 0.5s ease-out forwards;
}

.subjudul {
    width: 100%;
    padding-left: 0;
    font-size: 30px;
    display: block;
    animation: fadeInLeft 0.5s ease-out forwards;
}

.produk-kami {
    margin: 0%;
    justify-content: center;
    display: flex;
    padding-top: 0px;
}

.testimoni-ugc {
    margin: 0%;
    justify-content: center;
    display: flex;
    padding-top: 1rem;
    background-color: #fff;
}

.container {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 90%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 94vh;
    background: linear-gradient(#fefbec, #ede7ce);
}

.card-list .card-item {
    list-style: none;
    margin-left: 10px;
    margin-right: 10px;
}

.card-list .card-item .card-link {
    user-select: none;
    display: block;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 10px 10px rgba(0 0, 0, 0.05);
    transition: 0.2s ease;
}

.card-list .card-item .card-link:hover {
    border-color: gold;
    transform: scale(1.02);
}

.card-list .card-link .card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
}

.card-list .card-link .badge {
    color: rgb(70, 59, 1);
    padding: 8px 16px;
    font-size: 1.3rem;
    font-weight: 800;
    width: fit-content;
    border-radius: 50px;
    margin: 16px 0 18px;
}


.card-list .card-link .card-title {
    font-size: 1rem;
    color: rgb(124, 124, 124);
    font-weight: 400;
}

.card-list .card-link .harga {
    font-size: 1, 2rem;
    color: rgb(59, 44, 0);
    font-weight: 600;
}

.swiper-pagination {
    padding-bottom: 10px;
    margin-top: 10px;
}

.card-list .card-link .card-button {
    height: 35px;
    width: 35px;
    margin: 30px 0 5px;
    border: 2px solid gold;
    color: gold;
    background: none;
    cursor: pointer;
}

.card-wrapper {
    max-width: 1100px;
    margin: 0 60px 35px;
    padding: 20px 10px;
    overflow: hidden;
}

.card-wrapper .swiper-pagination-bullet {
    height: 13px;
    width: 13px;
    opacity: 0.5;
    background-color: #b3a100;
}

.card-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.card-wrapper .swiper-slides-button {
    color: #bba800;
    margin-top: -35px;
    ;
}

@media only screen and (max-width: 880px) {
    .container {
        display: none !important;
    }
}

@media screen and (max-width: 76px) {
    .card-wrapper {
        margin: 0 10px 25px;
    }

    .card-wrapper .swiper-slides-button {
        display: none;
    }
}

.footer-div {
    float: left;
    background-color: transparent;
    padding-top: 20px;
    display: flex;
}

.ugc {
    padding: 10px;
    animation: fadeInLeft 0.5s ease-out forwards;
    background-color: #fff;
    width: 100%;
}

.penilaian {
    margin: 0;
    background-color: #fff;
    margin-bottom: 50px;
    margin-left: 15px;
}

.pembeli {
    margin: 0;
    color: rgb(0, 0, 0);
}

.bintang {
    color: rgb(255, 196, 0);
    font-size: 20px;
    margin: 0;
}

.variasi {
    color: gray;
}

.komentar {
    color: black;
    font-size: 18px;
}

.produk-terjual {
    margin: 0;
}

.foto-produk {
    float: left;
    width: 60px;
    margin-right: 10px;
}

.nama-produk {
    margin: 0;
    font-size: 17px;
}

.tanggal {
    color: rgb(88, 88, 88);
}

.foto-penilaian {
    width: 100px;
    border-radius: 5px;
    margin-bottom: 10px;
}

#more {
    display: none;

}

#myBtn {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #5c5300;
}

.fa {
    padding: 8px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    margin: 5px;
    height: 50px;
    font-size: 30px !important;
    margin-top: 12px;
    margin-left: 10px;
    display: flex;
}

.fa-anomaly {
    padding: 8px;
    width: 3rem;
    text-align: center;
    text-decoration: none;
    border-radius: 100%;
    margin: 5px;
    height: 3rem;
    font-size: 5vw;
    margin-top: 12px;
    margin-left: 10px;
}

.fa:hover {
    opacity: 0.7;
    transition: ease-in-out 0.3s;
}

.container-mobile {
    margin: 0;
    padding: 3%;
    width: 100%;
    border-radius: 20px;
    display: none;
    align-items: center;
    background: linear-gradient(#fefbec, #ede7ce);
}

@media only screen and (max-width: 880px) {
    .container-mobile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .produk-kami {
        display: none;
    }
}

.card-item-mobile {
    width: 100%;
    align-items: center;
    background-color: #fff;
    padding: 5% 0 3% 3%;
    border-radius: 5%;
    animation: fadeInUp 0.5s ease-out forwards;
}

.card-image-mobile {
    width: 90%;
    align-items: center;
    border-radius: 5%;
    margin-left: 3%;
}

.badge-mobile {
    color: rgb(70, 59, 1);
    padding: 8px 16px;
    font-size: 1.3rem !important;
    font-weight: 700;
    width: fit-content;
    border-radius: 50px;
    margin: 16px 0;
    background: #fff48f;
}

.card-title-mobile {
    font-size: clamp(0.8rem 3vw 0.8rem);
    color: rgb(124, 124, 124);
    font-weight: 400;
    margin-left: 5%;
}

.harga-mobile {
    font-size: clamp(0.8rem 3vw 0.8rem);
    color: rgb(59, 44, 0);
    font-weight: 600;
    margin-left: 5%;
}


@media only screen and (max-width: 480px) {
    .badge-mobile {
        font-size: 0.8rem !important;
    }
    
}
.footer-container {
    background-color: #413517;
    margin-top: 3.3rem;
    width: 100%;
    color: #fff;
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icon {
    width: 3rem;
    margin: 1%;
}

.social-icon-shopee:hover {
    opacity: 0.5;
    transition: 0.2s ease;
}

.social-icon svg:hover {
    opacity: 0.5;
    transition: 0.2s ease;
}

.social-icon-shopee {
    width: 2.4rem;
    margin-left: 23%;
    fill: #fff;
}

.social-icon svg {
    fill: #fff;
}

.footer-nav li {
    list-style: none;
    text-decoration: none;
    margin: 0 1rem 0 1rem;
    font-size: 1rem;
    justify-content: center;
}

.footer-nav a {
    color: #fff;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 550px) {
    .social-icon {
        width: 2rem;
    }

    .footer-nav ul {
        flex-direction: column;
        align-items: center;
        margin-right: 2rem;
    }

    .footer-nav ul li {
        width: 100%;
        text-align: center;
        margin: 10px;
    }

    .social-icon-shopee {
        width: 1.6rem;
    }
}

.designer {
    opacity: 0.8;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0 5px;
}

.container-tentang {
    display: flex;
    align-items: center;
    width: 100%;
}

.reverse {
    background-color: #fff;
}

.container-tentang h4 {
    font-size: 2rem;
    color: #000000;
    animation: fadeInRight 0.5s ease-out forwards;
}

.container-tentang p {
    font-size: 1.2rem;
    width: 60%;
    color: #635221;
    animation: fadeInLeft 0.5s ease-out forwards
}

.paragraf-even {
    margin-left: 5%;
}

.content-block {
    padding: 15px;
    width: 30%;
    min-width: 20rem;
}

.content-block-model2 {
    padding: 15px;
    width: 50%;
    min-width: 28rem;
}

.model1 {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    animation: fadeInLeft 0.5s ease-out forwards;
    filter: drop-shadow(-15px 10px 3px rgba(0, 0, 0, 0.248));
}

.model2 {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    animation: fadeInRight 0.5s ease-out forwards;
    filter: drop-shadow(-15px 10px 3px rgba(0, 0, 0, 0.248));
    position: sticky;
}

.reverse {
    flex-direction: row-reverse;
    background-color: #f5f3eb;
}

.paragraf-tentang-odd {
    width: 65%;
    margin: 5% 5%;
    padding-left: 2rem;
    box-shadow: 10px -10px #695318;
    animation: fadeInRight 0.5s ease-out forwards;
    border-radius: 1rem;
    filter: drop-shadow(-10px 10px 5px #7b611b25);
}

.paragraf-tentang-even {
    width: 65%;
    margin: 5% 5%;
    justify-items: right;
    text-align: right;
    padding-right: 2rem;
    animation: fadeInLeft 0.5s ease-out forwards;
    border-radius: 1rem;
    box-shadow: -10px -10px #695318;
    filter: drop-shadow(-10px 10px 5px #7b611b25);
}

.model4 {
    width: 50%;
    height: auto;
}

.content-block-blangkon {
    padding: 15px;
    width: 40%;
    min-width: 20rem;
}

/* Keyframes */
@keyframes fadeInUp {
    0% {
        transform: translateY(5px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    0% {
        transform: translateX(5px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    0% {
        transform: translateX(-5px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes navIn {
    0% {
        transform: translateX(10rem);
        opacity: 0.5;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


.header-tentang {
    width: 100%;
    display: flex;
    background-image: url(asset/background-lurik.png);
    color: #ffff;
    background-size: cover;
    background-color: #000000;
    background-image: linear-gradient(rgba 0, 0, 0, 0, 4);
    justify-content: center;
    animation: backgroundLurik 0.5s ease-out forwards;
}

.header-tentang p {
    font-size: 3rem;
    padding: 7rem 3rem 1rem 3rem;
    width: 60%;
    text-align: center;
    animation: fadeInUp 0.5s ease-out forwards;
    filter: drop-shadow(5px 5px 5px #000000d8);
    display: flex;
    flex-direction: column;
}

.header-tentang .small-text {
    display: flex;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
    margin-top: 7rem;
}

.gradient {
    background-image: linear-gradient(to right, #d6c100, #ff9500);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.gradient-dark {
    background-image: linear-gradient(to right, #7e7100, #874f00);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.keunggulan-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 3rem 0 5rem;
    background: linear-gradient(#fff, #fffce8);
    padding: 1rem 0 1rem;
}

.keunggulan {
    width: 25%;
    margin: 0 0 0 38%;
}

.keunggulan-card {
    justify-content: center;
    justify-items: center;
}

.keunggulan-info {
    color: rgb(130, 130, 130);
    font-size: 0.9rem;
}

@keyframes backgroundLurik {
    0% {
        filter: brightness(30%);
    }

    100% {
        filter: brightness(100%);
    }
}

/* Style for the main FAQ container */
.faq-container {
    max-width: 800px;
    /* Limit the width for better readability */
    margin: 50px auto;
    /* Center the container and add vertical spacing */
    padding: 20px;
    font-family: 'Arial, sans-serif';
    color: #333;
    /* Base text color */
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Style for the main title */
.faq-container h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #50402c;
    /* Dark blue color for the title */
}

/* Style for each FAQ item */
.faq-item {
    border-bottom: 1px solid #ddd;
    /* Light gray border between items */
    overflow: hidden;
    /* Hide overflowing content */
}

/* Style for the question buttons */
.faq-question {
    background-color: #f1efec;
    /* Light gray background */
    width: 100%;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
    /* Smooth background transition on hover */
}

/* Hover effect for question buttons */
.faq-question:hover {
    background-color: #dedbd0;
    /* Slightly darker gray on hover */
}

/* Style for the arrow icon */
.faq-question .arrow {
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
    /* Smooth rotation transition */
}

/* Rotate the arrow when the question is active (expanded) */
.faq-question.active .arrow {
    transform: rotate(180deg);
    /* Rotate arrow 180 degrees */
}

/* Style for the answer sections */
.faq-answer {
    max-height: 0;
    /* Initially hide the answer */
    overflow: hidden;
    transition: max-height 0.3s ease;
    /* Smooth transition for expanding */
    background-color: #fff;
    /* White background for answers */
}

/* Style for the answer text */
.faq-answer p {
    padding: 20px;
    font-size: 16px;
    line-height: 1.5;
    /* Increase line height for better readability */
    color: #534d3d;
    /* Slightly lighter text color for answers */
}

/* Harmonious color palette for the body background */
body {
    background-color: #faf8f5;
    /* Very light blue-gray background */
}

.faq-end {
    width: 100%;
}

.faq-end p {
    text-align: center;
}

.header-tentang-mobile {
    display: none;
}

.container-tentang-mobile {
    display: none;
}

@media only screen and (max-width: 430px) {

    .navbar-container .navbar-menu li a {
        font-size: 0.8rem;
    }

    .faq-question {
        font-size: 0.7rem;
    }

    .faq-answer {
        font-size: 0.7rem !important;
    }

    .faq-end {
        font-size: 0.6rem;
    }

    .faq-container h1 {
        font-size: 1.5rem;
    }

    .social-icon {
        width: 1.8rem;
    }

    .social-icon-shopee {
        width: 1.4rem;
    }

}

@media only screen and (max-width: 880px) {
    .header-tentang {
        display: none;
    }

    .header-tentang-mobile {
        display: block;
        text-align: center;
        font-size: 1.3rem;
        background-image: url(asset/background-lurik.png);
        background-size: cover;
        color: #fff;
        padding: 1rem;
        animation: backgroundLurik 0.5s ease-out forwards;
    }

    .tentang-judul-mobile {
        margin: 1rem;
    }

    .small-text-mobile {
        font-size: 0.5rem;
    }

    .model1 {
        display: none;
    }

    .model2 {
        display: none;
    }

    .model3 {
        display: none;
    }

    .container-tentang-mobile h4 {
        font-size: 1rem;
        padding: 1.2rem 0;
        animation: fadeInUp 0.5s ease-out forwards;
    }

    .container-tentang {
        display: none;
    }

    .container-tentang-mobile {
        display: flex;
        margin-top: 1rem;
    }

    .container-tentang-mobile p {
        font-size: 0.8rem;
        width: 100%;
    }

    .paragraf-tentang-odd-mobile {
        width: 90%;
        margin: 5% 5%;
        padding-left: 2rem;
        box-shadow: 10px -10px #695318;
        animation: fadeInRight 0.5s ease-out forwards;
        border-radius: 1rem;
        filter: drop-shadow(-10px 10px 5px #7b611b25);
    }

    .paragraf-tentang-even-mobile {
        width: 90%;
        margin: 5% 5%;
        justify-items: right;
        text-align: right;
        padding: 0 2rem 2rem;
        animation: fadeInLeft 0.5s ease-out forwards;
        border-radius: 1rem;
        box-shadow: -10px -10px #695318;
        filter: drop-shadow(-10px 10px 5px #7b611b25);
    }

    .badge-mobile {
        font-size: 0.7rem;
    }

    .card-title-mobile {
        font-size: 0.8rem;
    }

    .harga-mobile {
        font-size: 0.9rem;
    }

    .keunggulan-judul {
        font-size: 0.7rem;
    }

    .keunggulan-info {
        font-size: 0.5rem;
    }

    .testimoni-ugc {
        font-size: 1rem;
    }

    .pembeli {
        font-size: 0.5rem;
    }

    .variasi {
        font-size: 0.5rem;
    }

    .bintang {
        font-size: 0.7rem;
    }

    .komentar {
        font-size: 0.6rem;
    }

    .foto-penilaian {
        width: 20%;
    }

    .foto-produk {
        width: 8%;
    }

    .nama-produk {
        font-size: 0.5rem;
    }

    .tanggal {
        font-size: 0.5rem;
    }

    .keunggulan-container {
        margin: 0;
    }

    #myBtn {
        font-size: 0.6rem;
    }

    .alamat-hubungi {
        font-size: 0.6rem;
        text-align: center;
    }

    .hubungi {
        justify-content: center;
    }

    .copyright {
        font-size: 0.6rem;
        text-align: center;
    }

}