@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

*{
    padding: 0;
    margin: 0;
    /* font-family: 'Poppins', 'Ad  obe Caslon Pro Bold'; */
    scroll-behavior: smooth;
    text-decoration: none;
    list-style: none;
}

.header{
    min-height: 0vh;
    width: 100%;
}

body{
    background: #988d8e;
}

nav{
    display: flex;
    justify-content: space-between;
    padding: 1% 13%;
    align-items: center;
    width: 100%;
    height: 85px;
}

nav img{
    width: 80px;
}

.nav-links{
    flex: 1;
    text-align: center;
}

.nav-links ul{
    margin: 2px 13rem 0 0;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a{
    color: #ff9800;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f6a934;
    display: block;
    margin:auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

.nav-links ul li i{
    display: block;
    position: absolute;
    color: #fff;
    font-size: 35px;
    margin: -20px 0 0 100px;
    cursor: pointer;
}

/* == CART == */
.cart{
    position: fixed;
    top: 0;
    right: -110%;
    width: 360px;
    min-height: 100vh;
    padding: 20px;
    background: #fccc83;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.05);
    transition: 0.7s;
    z-index: 1000;
}

.cart.active{
    right: 0;
}

.cart-title{
    font-size: 25px;
    text-align: center;
    font-weight: 600;
    margin-top: 1.5rem;
    color: #fff;
}

.cart-title::after{
    content: '';
    background: #fff;
    display:block;
    height: 3px;
    width: 60px;
    margin: 1px auto 5px;
}

.cart-box{
    display: grid;
    grid-template-columns: 32% 50% 18%;
    align-items: center;
    grid: 1rem;
    margin-top: 1.5rem;
}

.cart-img{
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.detail-box{
    display: grid;
    row-gap: 0.4rem;
    /* margin-left: 10px; */
}

.cart-product-title{
    font-size: 1.1rem;
}

.cart-price{
    font-weight: 500;
}

.cart-quantity{
    border: 2px solid #fff;
    border-radius: 3px;
    outline-color: #fff;
    width: 2.4rem;
    text-align: center;
}

.cart-box .fa-trash{
    display: block;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    margin-top: -85px;
    margin-left: 40px;
}

.total{
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
    border-top: 1px solid #fff;
}

.total-title{
    font-size: 1rem;
    font-weight: 500;
}

.total-price{
    margin-left: 0.7rem;
}

.btn-buy{
    display: flex;
    margin: 1rem 0;
    padding: 6px 14px;
    border: none;
    background: #ff9900;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
}

.btn-buy:hover{
    background: #fccc83;
}

#close-cart{
    display: block;
    position: absolute;
    top: 2%;
    right: 5%;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

#cart-icon{
    display: block;
    color: #ff9900;
    font-size: 30px;
    position: absolute;
    top: 3%;
    right: 8%;
    cursor: pointer;
}

#fa-bars2{
    color: #fff;
}

nav .fa-solid{
    display: none;
}

/* == Navbar On Scroll == */
.navbar-scroll{
    background: #ff9800;
    position: fixed;
    top: -75px;
    width: 100%;
    height: 70px;
    display: block;
    transition: top 0.5s;
    z-index: 999;
}

#navbar{
    display: flex;
}

.navbar-scroll img{
    width: 75px;
}

.nav-links-scroll ul{
    margin: 2px 20rem 0 0;
}

.nav-links-scroll ul li{
    display: inline-block;
    margin: 0 10px;
}

.nav-links-scroll a{
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.nav-links-scroll ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #fff;
    display: block;
    margin:auto;
    transition: 0.5s;
}

.nav-links-scroll a:hover{
    color: #fff;
}

.nav-links-scroll ul li:hover::after{
    width: 100%;
}

@media (max-width: 700px) {
    .nav-links-scroll{
        display: none;
    }
}

/* == CART on scroll == */
.cart2{
    position: fixed;
    top: 0;
    right: -130%;
    width: 350px;
    min-height: 100vh;
    padding: 20px;
    background: #fff;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.05);
    transition: 0.7s;
    z-index: 1000;
}

.cart2.active{
    right: 0;
}

.cart-title2{
    font-size: 25px;
    text-align: center;
    font-weight: 600;
    margin-top: 1.5rem;
    color: #f6a934;
}

.cart-title2::after{
    content: '';
    background: #f6a934;
    display:block;
    height: 3px;
    width: 60px;
    margin: 1px auto 5px;
}

.cart-box2{
    display: grid;
    grid-template-columns: 32% 50% 18%;
    align-items: center;
    grid: 1rem;
    margin-top: 1.5rem;
}

.cart-img2{
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.detail-box2{
    display: grid;
    row-gap: 0.5rem;
}

.cart-product-title2{
    font-size: 1.3rem;
}

.cart-price2{
    font-weight: 500;
}

.cart-quantity2{
    border: 2px solid #d0b78f;
    border-radius: 3px;
    outline-color: #d0b78f;
    width: 2.4rem;
    text-align: center;
}

.cart-box .fa-trash2{
    display: block;
    color: #d0b78f;
    border-radius: 3px;
    cursor: pointer;
    margin-top: -85px;
    margin-left: 40px;
}

.total2{
    display: flex;
    justify-content: flex-end;
    margin-top: 10.5rem;
    border-top: 1px solid #d0b78f;
}

.total-title2{
    font-size: 1rem;
    font-weight: 500;
}

.total-price2{
    margin-left: 0.7rem;
}

.btn-buy2{
    display: flex;
    margin: 1rem 0;
    padding: 6px 14px;
    border: none;
    background: #d0b78f;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-buy2:hover{
    background: #c9ab7e;
}

#close-cart2{
    display: block;
    position: absolute;
    top: 2%;
    right: 5%;
    font-size: 1.5rem;
    color: #d0b78f;
    cursor: pointer;
}

#cart-icon2{
    display: block;
    color: #fff;
    font-size: 30px;
    position: absolute;
    top: 23%;
    right: 8%;
    cursor: pointer;
}

@media (max-width: 700px) {
    #cart-icon2{
        display: block;
        top: 24%;
        right: 19%;
    }

    .cart2{
        position: fixed;
        top: 0;
        right: -120%;
        width: 360px;
        min-height: 100vh;
        padding: 20px;
        background: #fff;
        box-shadow: -2px 0 4px rgba(0, 0, 0, 0.05);
        transition: 0.7s;
        z-index: 1000;
    }

    .detail-box{
        margin-left: 30px;
    }
}

/* == LANDING PAGE == */
.landing-page{
    width: 100%;
    height: 100vh;
}

.container-landing-page{
    width: 90%;
    height: 60vh;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-kiri-landing{
    width: 45%;
    height: 80vh;
    margin-top: 140px;
}

.card-kiri-landing{
    width: 100%;
    height: 76vh;
    padding: 50px;
    box-sizing: border-box;
}

.card-kiri-landing h6{
    color: #ff9800;
    font-weight: bold;
    word-spacing: 3px;
    /* letter-spacing: 2px; */
    font-size: 20px;
    font-family: 'Roboto', serif;
}

.card-kiri-landing h1{
    color: #333;
    font-size: 59px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.card-kiri-landing h2{
    color: #333;
    font-size: 47px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.card-kiri-landing p{
    padding-left: 5px;
    border-left: 4px solid #ff9800;
}

.button{
    width: 100%;
    height: 7vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 45px;
}

.button a{
    text-decoration: none;
    font-size: 16px;
}

.goshop a{
    color: #fff;
    background: linear-gradient(to bottom left, #ff9800 0%, #fbc471 100%);
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 17px;
    filter: drop-shadow(5px 5px #fccc83);
}

.goshop a:hover{
    color: #ffffff;
    background: #ff9900;
    padding: 9px 19px;
    font-size: 16px;
    filter: drop-shadow(4px 4px #fbc471);
}

.playvid a{
    font-size: 15px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 2px;
}

.playvid a:hover{
    color: #ff9800;
}

.fa-play{
    padding: 15px 15px 15px 18px;
    border-radius: 50px;
    background: linear-gradient(to bottom left, #ff9800 20%, #fbc471 100%);
    color: #fff;
}

.playvid a{ 
    padding: 12px;
    color: #000;
}

.content-kanan-landing{
    width: 55%;
    height: auto;
    margin-top: 140px;
}

.card-kanan-landing{
    width: 100%;
}

.card-kanan-landing img{
    width: 100%;
}

/* responsive Homebanner */
@media (max-width: 700px) {
    .text-box h1{
        font-size: 40px;
    }
    .nav-links ul li{
        display: block;
    }

    .nav-links{
        position: fixed;
        background: #fccc83;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -300px;
        text-align: left;
        z-index: 1111;
        transition: 1s;
    }

    .nav-links ul li a{
        color: #fff;
    }
    
    nav .fa-bars{
        display: block;
        color: #ff9800;
        margin: 15px;
        font-size: 22px;
        cursor: pointer;
    }

    nav .fa-xmark{
        display: block;
        color: #fff;
        margin: 15px;
        font-size: 22px;
        cursor: pointer;
    }
    
    nav img{
        width: 80px;
    }
    nav{
        padding: 1% 4%;
    }
    
    .cart{
        width: 280px;
    }
    #cart-icon{
        display: block;
        color: #ff9800;
        font-size: 30px;
        position: absolute;
        top: 28%;
        right: 19%;
    }

    .container-landing-page{
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .content-kiri-landing{
        width: 50%;
        height: auto;
        margin-top: 10px;
        order: 2;
    }

    .card-kiri-landing{
        width: 200%;
        height: auto;
        padding: 10px;
        margin: 0px;
        margin-left: -84px;
        margin-top: 50px;
    }

    .card-kiri-landing h6{
        font-size: 14px;
    }

    .card-kiri-landing h1{
        font-size: 40px;
    }

    .card-kiri-landing h2{
        font-size: 30px;
    }

    .goshop a{
        padding: 2px 8px;
    }

    .playvid a{
        padding: 4px 8px;
        font-size: 14px;
    }

    .fa-play{
        padding: 7px 7px 7px 7px;
    }

    .card-kanan-landing img{
        width: 180%;
        margin-left: -80px;
        margin-top: -100px;
    }
}

/* /---------------about-----------------/ */

.bg-about{
    width: 100%;
    background: #ff9800;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.about {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 40px;
}

.about h1{
    color: #fff;
    font-size: 30px;
}

.about h1::after{
    content: '';
    background: #fff;
    display:block;
    height: 3px;
    width: 100px;
    margin: 10px auto 5px;
}

.about-col h3{
    font-size: 19px;
    font-weight: bold;
}

.about p{
    color: rgb(17, 16, 16);
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    padding: 10px; 
}

.row{
    display: flex;
    justify-content: space-between;
}

.about-col{
    height: auto;
    flex-basis: 28%;
    background: #fff3f3;
    border-radius: 3px;
    margin-bottom: 5%;
    padding: 10px;
    box-sizing: border-box;
    transition:0.5s;
}

.about-col:hover{
    box-shadow: 0 0 20px 0px #fff;
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}
/* /-----------------product---------------/ */
.product{
    width: 100%;
    height: auto;
    padding: 30px;
}

.product h1{
    display: block;
    color: #f6a934;
    text-align: center;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.product h1::after{
    content: '';
    background: #f6a934;
    display:block;
    height: 3px;
    width: 100px;
    margin: 10px auto 5px;
}

.container-produk{
    width: 90%;
    height: auto;
    margin: auto;
}

/* == Content Product == */
.content-produk{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.card-produk{
    width: 23%;
    height: auto;
    padding-bottom: 10px;
    margin: 7px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.card-produk img{
    width: 233px;
    height: 365px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
}

.card-produk:hover img,
.card-produk:focus img{
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.card-produk:hover img::before,
.card-produk:focus img::before{
    display: block;
}

.product-title{
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    background: #fff;
    padding-top: 10px;
    position: relative;
    text-align: center;
    padding-bottom: 5px;
    border-bottom: 2px solid #ff9800;
}

.price{
    font-weight: 500;
    color: #ff9800;
    margin-left: 0.5rem;
}

.add-cart{
    width: 47%;
    text-align: right;
    cursor: pointer;
    color: #ff9800;
}

@media (max-width: 700px) {
    .content-produk{
        flex-direction: column;
    }

    .card-produk img{
        width: 290px;
        height: 370px;
    }

    .card-produk{
        width: 90%;
        height: auto;
        margin: auto;
        margin-top: 15px;
    }
} 

/* /------testimonials------/ */

.testimonials{
    width: 100%;
    height: auto;
    box-shadow: rgba(254, 162, 3, 0.791) 2px 3px 4px 2px, rgba(254, 162, 3, 0.791) 2px 3px 4px 2px;
}

.container-testimonials{
    width: 80%;
    height: auto;
    margin: auto;
    padding-bottom: 20px;
}

.container-testimonials h1{
    text-align: center;
    font-weight: bold;
    color: #ff9800;
    padding: 15px;
    font-size: 30px;
    text-transform:uppercase;
  
}

.testimonials h1::after{
    content: '';
    background: #f6a934;
    display:block;
    height: 3px;
    width: 100px;
    margin: 10px auto 5px;
}

.profile {
    padding: 70px 10px 10px;
    border-radius: 5px;
    background-color: #f6a934;
}

.profile img{
    top: -40px;
    position:relative;
    left: calc(50% - 50%);
}

.user{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 2px;
    border: 3px solid #fff;
}

.profile p{
    font-size: 15px;
}

.profile p::before{
    content: '';
    font-size: 50px;
    position: relative;
    color: #f6a934;
    line-height: 20px;
}

@media(max-width: 700px){
    .testimonials{
        height: auto;
        padding: 30px;
    }
    .row{
        flex-direction: column;
    }

    .col-md-4{
        margin: 15px 0;
    }

    h1{
        font-size: 35px;
    }
}

/* footer */
.footer{
    width: 100%;
    height: auto;
    background: #f6a934;
    overflow: hidden;
}

.container-footer{
    width: 80%;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding: 30px 0 20px 0;
    margin: auto;
    box-sizing: border-box;
    border-bottom: 1px solid #fff;
}

.kiri{
    width: 27%;
    height: auto;
    padding: 10px;
    margin-top: 80px;
    box-sizing: border-box;
}

.kiri-judul{
    text-align: center;
    padding-bottom: 10px;
}

.kiri-judul h4{
    padding: 10px 0 0 5px;
    font-size: 25px;
    color: #fff;
}

.isi-kiri p{
    font-size: 14px;
    color: #e9e7e7;
    padding: 10px ;
}

/* quick links */
.tengah-1{
    width: 17%;
    height: auto;
    padding: 20px 20px;
    margin-top: 80px;
    box-sizing: border-box;
}

.tengah-1 ul li{
    list-style: none;
    margin-left: -32px;
}

.tengah-1 ul li a{
    text-decoration: none;
    color: #dcdbdb;
    font-size: 15px;
}

.tengah-1 ul li a:hover{
    color: #ffffff;
}

.tengah-1 h4{
    font-size: 20px;
    color: #fff;
    padding-bottom: 10px;
}

/* follow us */
.tengah-2{
    width: 20%;
    height: auto;
    padding: 20px;
    margin-top: 80px;
    box-sizing: border-box;
}

.tengah-2 h4{
    font-size: 20px;
    color: #fff;
    padding-bottom: 10px;
}

.sosial-links a{
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    padding: 5px 0;
}

.sosial-links a:hover{
    color: #d0b78f;
}

.kanan{
    width: 30%;
    height: auto;
    padding: 10px;
    box-sizing: border-box;
}

form h3{
    color: #fff;
}

label{
    color: #fff;
}

iframe{
    height: 50vh;
    width: 50vh;
}

input[type=text], select, textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 0px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=email], select, textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 0px;
    margin-bottom: 16px;
    resize: vertical;
}
  
button[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
  
button[type=submit]:hover {
    background-color: #45a049;
}
  
.container {
    border-radius: 5px;
    background-color: #f6a934;
    padding: 20px;
    
}
  
.bawah{
    text-align: center;
    padding:10px;
    color: #fff;
}

@media (max-width: 700px) {
    .container-footer{
        width: 80%;
        height: auto;
        flex-direction: column;
        padding: 30px 0 20px 0;
        margin: auto;
        box-sizing: border-box;
        border-bottom: 1px solid #fff;
    }

    .kiri-judul{
        display: flex;
    }

    .kiri-judul h4{
        width: 100%;
    }

    .isi-kiri p{
        width: 35vh;
    }

    .kiri, .tengah-1, .tengah-2{
        width: 35vh;
        margin-top: 35px;
    }

    .kanan{
        width: 100%;
        height: auto;
        padding: 10px;
        box-sizing: border-box;
    }
}