*{
    font-family: 'Spartan', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    width: 100%;
}

/* header*/
.logo{
    width: 55px;
    height: 50px;
}
#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background:	#ff4400;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}
#navbar{
    display: flex;
    align-items: center;
    justify-content: center;
}
#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}
#navbar li a{
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    transition: 0.3s ease;
}
#form-open{
    cursor: pointer;
}
.active{
    cursor: pointer;
}
#navbar li a:hover, #navbar li a.active{
    color:#ffffff;
}
#navbar li a.active::after,#navbar li a:hover::after{
    content:"";
    width: 40%;
    height: 2px;
    background: #ffa600f0;
    position: absolute;
    bottom: -4px;
    left: 20px;
}
/*--------------------------------------*/

/*middle*/
h1{
    font-size: 40px;
    line-height: 64px;
    color: #222;
}
h2{
    font-size: 36px;
    line-height: 54px;
    color: #222;
}
h4{
    font-size: 20px;
    color:#222;
}
h6{
    font-weight: 700px;
    font-size: 12px;
}
p{
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}
.section-p1{
    margin:40px 80px;
}
.section-m1{
    margin:40px 0;
}
#mid{
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    height: 100vh;
    width: 100%;
}
.text{
    margin-top: 190px;
    margin-left: 50px;
}
.model{
    margin-right: 30px;
    margin-top: 5px;
}
.model img{
    height: 674px;
    width: 400px;
}
#mid h4{
    padding-bottom: 15px;
}
#mid h1{
    color: #067b1f;
}
#mid button{
    background-color: transparent;
    color:#067b1f;
    border: 1;
    padding: 14px 80px 14px 65px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 800;
    font-size: 17px;
}
#fitur{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
#fitur img{
    width: 120px;
    height: 120px;
}
#fitur .box{
    width : 170px;
    text-align: center;
    padding: 15px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cce7d0;
    border-radius: 4px;
    margin: 15px 0;
}
#fitur .box:hover{
    box-shadow: 20px 20px 70px rgba(5, 109, 49, 0.1);
}
#fitur .box h6{
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #067b1f;
    margin-top: 4px;
}
#product{
    text-align: center;
}
#product .pro-container{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}
#product .pro{
    width: 23%;
    min-width:250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0; 
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0,0,0,0.02);
    margin:15px 0;
    transition: 0.2 ease;
    position: relative;
}
#product .pro:hover{
    box-shadow: 20px 20px 30px rgba(0,0,0,0.06);
}
#product .pro img{
    width: 100%;
    border-radius: 20px;
}
#product .pro .des{
    text-align: start;
    padding: 10px 0;
}
#product .pro .des span{
    color:#606063;
    font-size: 12px;
}
#product .pro .des h5{
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}
#product .pro .des h4{
    padding-top: 7px;
    color: #009721;
    font-size: 15px;
    font-weight: 700;
}
#product .pro .cart{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #e8f6ea;
    font-weight: 500;
    color: #009721;
    border: 1px solid #cce7d0;
    position: absolute;
    bottom: 20px;
    right:10px;
}

#banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("uas/gambar/banner4.jpg");
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
}
#banner h4{
    color: #fff;
    font-size: 16px;
}
#banner h2{
    color: #fff;
    font-size: 30px;
    padding: 10px 0;
}
#banner h2 span{
    color: #009721;
}
button.normal{
    font-size: 14px;
    font-weight: 600;
    padding:15px 30px;
    color: #000;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}
#button{
    font-size: 14px;
    font-weight: 600;
    padding:15px 30px;
    color: #000;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}
#banner button:hover{
    background: #049d25;
    color: #fff;
}
#sm-banner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#sm-banner .banner-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url("gambar/banner1.png");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
}
#sm-banner .banner-box2{
    background-image: url("gambar/banner2.jpg");
}
#sm-banner h4{
    color:#fff;
    font-size: 20px;
    font-weight: 300;
}
#sm-banner h2{
    color:#fff;
    font-size: 40px;
    font-weight: 800;
}
#sm-banner span{
    color:#fff;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 15px;
}
button.white{
    font-size: 13px;
    font-weight: 600;
    padding:11px 18px;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    border: 1px solid #fff;
    outline: none;
    transition: 0.2s;
}
#sm-banner .banner-box:hover button{
    background:#049d25;
    border: 1px solid #049d25;
}

/*Footer*/
footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-top: 50px;
}
footer h4{
    font-size: 14px;
    padding-bottom: 20px;
}
footer p{
    font-size: 13px;
    margin: 0 0 8px 0;
}
footer a{
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}
footer .logo{
    width: 90px;
    height: 90px;
}
.row img{
    width: 100px;
    height: 70px;
}
footer .follow{
    margin-top: 20px;
}
footer .follow i{
    color:#465b52;
    padding-right:4px;
    cursor: pointer;
}
footer .copy{
    width: 100%;
    text-align: center;
    background: #e3e6f3;
    height: 50px;
    padding: 15px 40px ;
}

/*Login Form*/
.login::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease-out
}
.login.show::before{
    opacity: 1;
    pointer-events: auto;
}
.login.show .form-container{
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}
.form-container{
    margin-top: 70px;
    position: absolute;
    max-width: 320px;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    background:#fff;
    z-index: 101;
    padding: 25px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease-out;
}
.close{
    position: absolute;
    top:10px;
    right:20px;
    color:#0b0217;
    font-size: 22px;
    opacity: 0.7;
    cursor: pointer;
}
.form-container h2{
    font-size: 22px;
    color: #0b0217;
    text-align: center;
}
.input-box{
    position: relative;
    margin-top: 30px;
    width: 100%;
    height: 35px;
}
.input-box input{
    height:100%;
    width: 100%;
    border: none;
    outline: none;
    padding: 0 30px;
    color: #049d25;
    transition: all 0.2s ease;
    border-bottom: 1.5px solid #aaaaaa;
}
.input-box input:focus{
    border-color: #04a727;
}
.input-box i{
    position:absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
}

.input-box i.user, .input-box i.pw{
    left: 0;
    color: #707070;
}
.input-box input:focus ~ i.user,
.input-box input:focus ~ i.pw{
    color: #04a727;
}
.option-field{
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-container a{
    color:#04a727;
    font-size: 12px;
}
.form-container a:hover{
    text-decoration: underline;
}
.checkbox{
    display: flex;
    white-space: nowrap;
    column-gap: 8px;
}
.checkbox input{
    accent-color: #04a727;
}
.checkbox label{
    cursor: pointer;
    user-select: none;
    font-size: 12px;
    color:#0b0217;
}
.button{
    background: #04a727;
    margin-top: 30px;
    width: 100%;
    padding: 10px 0;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: 0.5s ease;
}
.button:hover{
    background:#42b350;
    font-weight: 600;
}
.check-box{
    position: relative;
    margin-top: 30px;
}
.check-box i.user{
    margin-right: 10px;
    color: #979595;
}
.check-box input{
    accent-color: #04a727;
}

.signup{
    font-size: 12px;
    text-align: center;
    margin-top: 12px;
}
/*register*/
.form-signup{
    display: none;
}
.form-container.active .form-signup{
    display: block;
}
.form-container.active .form-login{
    display: none;
}

/*shop user*/

/* Kategori Bubble */
#kategori-bubble {
  text-align: center;
}

#kategori-bubble h2 {
  margin-bottom: 20px;
  font-size: 32px;
  color: #222;
}

.bubble-container {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.bubble-container::-webkit-scrollbar {
  display: none;
}

.bubble {
  flex: 0 0 auto;
  padding: 12px 20px;
  background-color: #e8f6ea;
  border: 1px solid #cce7d0;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #067b1f;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
}

.bubble:hover {
  background-color: #049d25;
  color: #fff;
  border-color: #049d25;
}

#banner-shop{
    background-image: url("/uas/gambar/b1.jpg");
    width: 100%;
    height: 40vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}
#banner-shop h2, #banner-shop p{
    color: #fff;
}
#product1{
    text-align: center;
}
#product1 .pro-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#product1 .pro{
    width: 23%;
    min-width:250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0; 
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0,0,0,0.02);
    margin:15px 0;
    transition: 0.2 ease;
    position: relative;
}
#product1 .pro:hover{
    box-shadow: 20px 20px 30px rgba(0,0,0,0.06);
}
#product1 .pro img{
    width: 100%;
    border-radius: 20px;
}
#product1 .pro .des{
    text-align: start;
    padding: 10px 0;
}
#product1 .pro .des span{
    color:#606063;
    font-size: 12px;
}
#product1 .pro .des h5{
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}
#product1 .pro .des h4{
    padding-top: 7px;
    color: #009721;
    font-size: 15px;
    font-weight: 700;
}
#product1 .pro .cart{
    width: 30px;
    height: 30px;
    line-height: 29px;
    border-radius: 50px;
    background-color: #e8f6ea;
    font-weight: 500;
    color: #009721;
    border: 1px solid #cce7d0;
    position: absolute;
    bottom: 10px;
    right:10px;
    cursor: pointer;
    font-size: 20px;
}

.bag{
    font-size: 18px;
}

/*cart*/
#desc{
    display: flex;
    justify-content: space-between;
    background-color: #fff; 
}
#desc .model{
    margin-right: 70px;
    margin-top: 5px;
}
#desc .model img{
    height: 574px;
}
#desc .pro{
    width: 50%;
    min-width:250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0; 
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0,0,0,0.02);
    margin:50px 0;
    transition: 0.2 ease;
    position: relative;
    margin-left: 40px;
}
#desc .pro:hover{
    box-shadow: 20px 20px 30px rgba(0,0,0,0.06);
}
#desc .pro .krip{
    justify-content: space-between;
    display: flex;
}
#desc .pro .krip p{
    top: 50px;
    padding-left: 20px;
}
#desc .pro img{
    width: 180px;
    border-radius: 20px;
}
#desc .pro .des{
    padding: 10px 0;
    margin-top: 20px;
}
#desc .pro .des span{
    color:#606063;
    font-size: 12px;
}
#desc .pro .des h5{
    padding-top: 7px;
    color: #067b1f;
    font-size: 45px;
}
#desc .pro .des h4{
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 400;
}
#desc .pro .cart{
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    background-color: #e8f6ea;
    font-weight: 500;
    color: #009721;
    border: 1px solid #cce7d0;
    position: absolute;
    bottom: 10px;
    right:15px;
    cursor: pointer;
}
#desc .pro i{
    font-size: 25px;
}
#desc .pro h6{
    font-size: 15px;
    font-weight: 300;
}
#detail{
    display: flex;
    margin-top: 40px;
}
#detail .pro-img{
    width: 30%;
    margin-right: 40px;
}
.pro-img img{
    border: 1px solid #009721;
}
#detail .pro-detail{
    width: 50%;
    padding-top: 30px;
}
#detail .pro-detail h4{
    padding: 30px 0 5px 0;
    font-size: 40px;
}
#detail .pro-detail h2{
    font-size: 20px;
    padding-bottom: 10px;
}
#detail .pro-detail h3{
    padding: 20px 0 10px 0;
}
#detail .pro-detail select{
    display: block;
    padding: 5px 5px;
    margin-bottom: 10px;
}
#detail .pro-detail input{
    width: 48px;
    height: 45px;
    padding-left: 10px;
    font-size: 15px;
    margin-right: 10px;
}
#detail .pro-detail button{
    background: #088178;
    color: #fff;
}
#banner1{
    margin-top:0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("gambar/banner4.jpg");
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
}
#banner1 h4{
    color: #fff;
    font-size: 16px;
}
#banner1 h2{
    color: #fff;
    font-size: 30px;
    padding: 10px 0;
}
#banner1 h2 span{
    color: #009721;
}
#banner1 button:hover{
    background: #049d25;
    color: #fff;
}

/*view-cart*/
#cart table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
}
#cart table img{
    width: 80px;
}
#cart table td:nth-child(2){
    width: 150px;
    text-align: center;
}
#cart table td:nth-child(3){
    width: 250px;
    text-align: center;
}
#cart table td:nth-child(4),
#cart table td:nth-child(5),#cart table td:nth-child(6),
#cart table td:nth-child(7),#cart table td:nth-child(1)
{
    width: 150px;
    text-align: center;
}
#cart table td:nth-child(6) input{
    width: 60px;
    padding: 10px 5px 10px 15px;
}

#cart button{
    background:transparent;
    border: none;
}
#cart button i{
    font-size: 20px;
}
#cart button:hover{
    color: #049d25;
}
#cart table thead{
    border: 2px solid #04a727;
    border-left: none;
    border-right:none;
}

#cart table thead td{
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    padding: 16px 0;
}
#cart table tbody tr td{
    padding-top: 20px;
    padding-bottom: 10px;
}
#cart{
    margin-bottom: 50px;
    border-bottom: 2px solid #04a727;
}
#total{
    width: 50%;
    margin-bottom: 80px;
    border: 1px solid #04a727;
    padding: 20px;
}
#total h3{
    margin-bottom: 15px;
    font-size: 20px;
    color: #009721;
}
#total table{
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}
#total table td{
    width: 50%;
    border: 1px solid #04a727;
    padding: 8px;
    font-size: 15px;
}
#total button{
    background: #088178;
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
}
#total button:hover{
    background: #1ca59c;
    color: #fff;
}
#cart #button{
    font-size: 13px;
    font-weight: 500;
    padding:10px 10px;
    color: #000;
    background:transparent;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid #04a727;
    outline: none;
    transition: 0.2s;
    float: right;
    margin-bottom: 10px;
    
}
#cart #button:hover{
    background: #04a727;
    color: #fff;
}

/*Checkout*/
#checkout{
    display: flex;
    justify-content: center;
}
#checkout h2{
    text-align: center;
    margin-top: 30px;
    color: #049d25;
}
.product-container{
    display: flex;
    justify-content: space-between;
    margin: 30px 0px 30px 0px;
    padding: 0 100px 0 40px;
    position: relative;
    border: 1px solid;
}
#checkout img{
    width:200px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.data{
    margin-left: 50px;
}
.data button{
    margin-top: 45px;
}
.data span{
    color: #04a727;
}
.data p{
    font-weight: 600;
}
#banner-shop-checkout{
    background-image: url("/uas/gambar/b1.jpg");
    width: 100%;
    height: 20vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}
#banner-shop-checkout p{
    color: #fff;
}
#checkout .button{
    padding:10px 10px 10px 10px;
}


/*------cetak--------*/
#print{
    justify-content: center;
    display: flex;
}

#print h3{
    text-align: center;
    margin: 15px 0 10px 0;
    color:#009721;
    text-transform: uppercase;
}
#print h4{
    text-align: center;
    margin: 15px 0 10px 0;
    font-weight: 500;
    font-size: 16px;
}
#print h5{
    font-weight: 400;
    font-size: 14px;
}
#print img{
    width: 180px;
}
#print .image{
    justify-content: center;
    display: flex;
}
.print-container{
    border: 1px solid ;
    padding: 10px 5px 10px 5px;
    margin:25px 0 10px 0;
}
.about-receipt{
    border-bottom: 1px solid #04a727;
    padding: 0 0 10px 0;
}
.teks-receipt{
    margin-top: 20px;
    
}
.teks-receipt-2{
    margin-right: 55px;
}

