@import url(https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap);
@import url(/styles/globals.css);
html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

.container {
  margin-top: 80px;
}

body {
  overflow-x: hidden;
  background-color: white !important;
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  width: 100vw;
  height: auto;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

body::-webkit-scrollbar {
  width: 3px; /* width of the entire scrollbar */
}
body::-webkit-scrollbar-track {
  background: rgba(245, 222, 179, 0); /* color of the tracking area */
}
body::-webkit-scrollbar-thumb {
  background-color: #5c2a03; /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

input,
button {
  outline: none;
  transition: 0.3s;
  cursor: pointer;
}

.button:active{
  opacity: 0.5;
}

:root {
  /* COLOR */
  --color-primary: #5c2a03;
  --color-success: hsl(174, 100%, 29%);
  --color-info: hsl(80, 100%, 29%);
  --color-secondary: #f7dec9;
  --color-dark: rgb(0, 0, 0);
  --color-light: whitesmoke;
  --color-danger: hsl(0, 100%, 29%);
  --color-warning: hsl(42, 100%, 42%);

  /* FONT SIZE */
  --font-tiny: 0.6rem;
  --font-small: 0.8rem;
  --font-regular: 1rem;
  --font-big: 2rem;
  --font-huge: 4rem;
}

.background-primary {
  background-color: #5c2a03;
}

.primary {
  color: #5c2a03 !important;
}

.background-success {
  background-color: hsl(174, 100%, 29%);
}

.success {
  color: hsl(174, 100%, 29%);
}

.background-info {
  background-color: hsl(80, 100%, 29%);
}

.info {
  color: hsl(80, 100%, 29%);
}

.background-secondary {
  background-color: #f7dec9;
}

.secondary {
  color: #f7dec9;
}

.background-dark {
  background-color: rgb(0, 0, 0);
}

.dark {
  color: rgb(0, 0, 0);
}

.background-light {
  background-color: hsl(0, 0%, 96%);
}

.light {
  color: hsl(0, 0%, 96%) !important;
}

.background-danger {
  background-color: hsl(0, 100%, 29%);
}

.danger {
  color: hsl(0, 100%, 29%);
}

.background-warning {
  background-color: hsl(42, 100%, 42%);
}

.warning {
  color: hsl(42, 100%, 42%);
}

.border-radius-none {
  border-radius: 0 !important;
}

.border-none {
  border: none;
}

.border-radius {
  border-radius: 5px;
}

.button-active :hover {
  cursor: pointer;
}

.button-active:active {
  opacity: 0.8;
}

.bold {
  font-weight: bold;
}

.flex-mid {
  display: flex;
  align-items: center;
}

.middle-position {
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel {
  width: 100%;
  height: 450px;
  background-color: white;
  border-radius: 0 0 15px 15px;
  box-shadow: 1px 3px 1px 1px rgba(0, 0, 0, 0.25);
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
}

.imgCarousel {
  background-size: cover;
  width: 100%;
  border-radius: 0 0 15px 15px;
  object-fit: cover;
  height: 100%;
  position: absolute;
}

.cardLeft {
  width: 50%;
  height: 85%;
  border-radius: 15px 0 15px 0;
}

.cardLeft img {
  border-radius: 15px 0 15px 0;
}

.cardRight {
  width: 50%;
  height: 85%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 0 3%;
}

.cardBottom {
  width: 100%;
  height: 15%;
  border-radius: 0 0 15px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: -25px;
  z-index: 5;
}

.cardBottom img {
  width: 100px;
}

.buletCardUtama {
  width: 50px;
  height: 5px;
  border-radius: 90px;
  background-color: #aeaeae;
}

.buletCard {
  width: 50px;
  height: 5px;
  border-radius: 90px;
  background-color: #fff;
  cursor: pointer;
}

.arrowLeft {
  position: absolute;
  color: #fff;
  text-shadow: 0.1px 0.5px 1px white;
  font-size: 48pt;
  left: 10px;
  bottom: 5px;
  z-index: 99;
  cursor: pointer;
  opacity: 0.8;
}

.arrowRight {
  position: absolute;
  color: #fff;
  font-size: 48pt;
  right: 10px;
  bottom: 5px;
  z-index: 99;
  cursor: pointer;
  opacity: 0.8;
}

.arrowLeft:hover,
.arrowRight:hover {
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  .carousel {
    height: 400px;
    width: 100vw;
  }
  .buletCard {
    width: 30px;
  }
  .buletCardUtama {
    width: 30px;
  }
  .arrowLeft {
    font-size: 30px;
  }
  .arrowRight {
    font-size: 30px;
  }
  .cardBottom img {
    width: 50px;
  }
}

.divider {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 25px;
}

.divider span {
  width: 40%;
  height: 2px;
  background-color: #ebbb92;
}

@media only screen and (max-width: 500px) {
  .divider {
    margin-top: 15px;
  }

  .divider span {
    width: 28%;
  }
}

.navbar {
  width: 100vw;
  /* margin: 0 auto; */
  height: 85px;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  color: black;
  top: 0;
  left: 0;
  z-index: 999;
  position: fixed;
}



.navbar-left{
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar-left img{
  width: 175px;
}

.navbar-right{
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-right i{
  display: none;
}

.navbar-right a{
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 1;
  height: 80%;
  display: flex;
  align-items: center;
}

.navbar-right a:hover{
  margin-bottom: -2px;
  border-bottom: 2px solid #8f583c;
}

@media only screen and (max-width : 500px){
  .navbar{
    background-color: white;
  }
  .navbar-right{
    justify-content: flex-end;
  }
  .navbar-right a{
    display: none;
  }
  .navbar-right i{
    display: flex;
    font-size: 1.5rem;
  }
  .navbar-mobile{
    width: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    height: 75vh;
    background-color: white;
    position: fixed;
    top: 84px;
    left: 0;
    z-index: 15;
    transition: 0.5s;
    transition-timing-function: linear;
  }
  .navbar-mobile a{
    height: calc(100% / 6);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 500;
  }
}
.mainAbout {
  margin-top: 10%;
  /* padding-left: 50px;
  padding-right: 50px; */
  text-align: center;
}
.judul {
  margin-top: 70px;
  margin-left: 50px;
  overflow-x: hidden;
  display: flex;
}
.hrLeft {
  width: 450px;
  border: 1px solid #ebbb92;
  border-radius: 3px;
  text-align: left;
  background-color: black;
}
.about {
  color: #5c2a03;
}
.hrRight {
  text-align: right;
  width: 450px;
  border: 1px solid #ebbb92;
  float: right;
  border-radius: 3px;
}

.gambar1 {
  padding-top: 2vw;
  /* padding: 10px; */
  /* margin: 100px; */
  padding-left: 20px;
  padding-right: 30px;
  width: 100vw;
  margin-top: 10px;
  margin-bottom: 5px;
}
.tesGambar {
  width: 100vw;
  height: 500px;
  background-color: grey;
  color: grey;
}
.tulisan {
  margin-top: 50px;
  margin-bottom: 10px;
  padding-top: 3px;
  padding-bottom: 50px;
  line-height: 1.5;
  text-align: left;
}
.tulisan2 {
  padding-top: 30px;
}
@media (max-width: 600px) {
  .grid {
    width: 100vw;
    flex-direction: column;
  }
  .about {
    color: #5c2a03;
  }
  .hrRight {
    text-align: right;
    width: 450px;
    border: 1px solid #ebbb92;
    float: right;
    border-radius: 3px;
  }

  .gambar1 {
    padding-top: 2vw;
    padding: 10px;
    margin: 100px;
    width: 1000px;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .tesGambar {
    width: 1000px;
    height: 500px;
    background-color: grey;
    color: grey;
  }
  .tulisan {
    margin-top: 50px;
    margin-bottom: 10px;
    padding-top: 3px;
    padding-bottom: 50px;
    line-height: 1.5;
    text-align: left;
  }
  .tulisan2 {
    padding-top: 30px;
  }
  @media (max-width: 600px) {
    .grid {
      width: 100%;
      flex-direction: column;
    }
    .mainAbout {
      width: 50%;
      padding: 0px;
    }
  }
}

.contact {
  width: 100vw;
  height: 100vh;
  padding: 10px;
}

.contactWrapper {
  width: 100%;
  background-color: aqua;
  margin-top: 90px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.contactWrapper input {
  background-color: none;
  outline: none;
  border: none;
  border-radius: 10px;
  width: 100%;
  padding: 10px 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.location {
  width: 100vw;
  height: 100vh;
  padding: 10px 20px;
}

.locationOOP {
  margin-top: 90px;
  width: 100%;
  height: 85%;
  border-radius: 10px;
  display: flex;
}

.locationContainer {
  width: 50%;
  flex-direction: column;
}

.gMaps {
  width: 50%;
}

.locationAva {
  width: 90%;
  height: 100%;
  gap: 20px;
  flex-direction: column;
}

.locationAva p {
  width: 90%;
  font-size: 0.9rem;
  text-align: justify;
}

.locationAva img {
  width: 300px;
}

.locationUWU {
  margin-top: 20px;
  width: auto;
  padding: 5px;
  border-radius: 20px;
  padding: 10px 20px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.locationWHY {
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  gap: 20px;
}

.locationButton {
  background-color: #f7dec9;
  padding: 10px 20px;
  gap: 10px;
  color: #5c2a03;
  border-radius: 20px;
}

.locationMaps {
  width: 100%;
  height: 100%;
  border-radius: 0 10px 10px 0;
}

@media only screen and (max-width: 500px) {
  .location {
    height: 100%;
    padding: 10px;
  }

  .locationOOP {
    flex-direction: column-reverse;
  }

  .locationContainer {
    width: 100%;
  }

  .gMaps {
    width: 100%;
    height: 40vh;
  }

  .locationUWU {
    margin-bottom: 20px;
  }

  .locationWHY {
    flex-direction: column;
  }

  .locationWHY {
    width: 80%;
  }

  .locationMaps {
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
  }
}

.ourServices {
  text-align: center;
  margin-top: 100px;
  display: flex;
  margin-left: 140px;
  margin-right: px;
  font-size: 25px;
  color: #5c2a03;
}
.hrLeft {
  background-color: #ebbb92;
  width: 400px;
  height: 2px;
  text-align: center;
  margin-top: 18px;
  margin-right: 10px;
  border-radius: 5px;
  margin-left: 60px;
  float: left;
}
.hrRight {
  background-color: #ebbb92;
  width: 400px;
  height: 2px;
  text-align: center;
  margin-top: 18px;
  margin-right: 15px;
  border-radius: 5px;
  margin-left: 10px;
  float: right;
}
.containerCard {
  margin: 50px;
  margin-left: 200px;
  text-align: center;
  color: #5c2a03;
  display: flex;
}
.cardKonten1 {
  float: left;
  width: 20vw;
  height: 40vh;
  margin-right: 50px;
  text-align: center;
}
.text1 {
  padding-top: 10px;
}
.kata {
  padding-top: 20px;
}
.containerCard2 {
  color: #5c2a03;
  margin-top: 200px;
  margin-left: 200px;
  text-align: center;
}
.kontenBijak {
  text-align: center;
  padding-top: 500px;
  padding-bottom: 50px;
  font-size: 25px;
  color: #5c2a03;
}
@media screen and (max-width: 500px) {
  .container {
    float: none;
    padding: 0;
    margin: 0;
  }
}

.store {
    padding: 100px;
    width: 100vw;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .lines {
    width: 100%;
    margin-bottom: 30px;
    height: 45px;
    position: relative;
  }
  .lines::after,
  .lines::before {
    content: "";
    position: absolute;
    margin: auto;
    height: 1.5px;
    background: #ebbb92;
    width: 40%;
    top: 45%;
  }
  .lines::after {
    left: 0;
  }
  .lines::before {
    right: 0;
  }
  .lines h1 {
    color: #5c2a03;
    text-align: center;
  }
  .card {
    margin-bottom: 30px;
    width: 31%;
    height: auto;
    display: grid;
    grid-template-rows: 210px 150px;
    grid-template-areas: "image" "text";
  
    border-radius: 18px;
    background: white;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
  
    cursor: pointer;
  }
  .card-image {
    grid-area: image;
    background: url("https://images.pexels.com/photos/3188/love-romantic-bath-candlelight.jpg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940");
    background-size: cover;
  }
  .card-text {
    grid-area: text;
    text-align: center;
    margin: 10px;
  }
  .card-text h2 {
    color: #5c2a03;
  }
  .card-text small {
    color: gray;
  }

  @media screen and (max-width:768px){
    .lines::after,
    .lines::before {
    content: "";
    position: absolute;
    margin: auto;
    height: 1.5px;
    background: #ebbb92;
    width: 27%;
    top: 45%;
    }
    .lines::after {
      left: 0;
    }
    .lines::before {
      right: 0;
    }
    
  }
  @media screen and (max-width: 1080px){
    .card{
      width: 45%;
    }
  }
  @media screen and (max-width: 970px){
    .card{
      width: 100%;
    }
  }

  
.footer {
  margin-top: 20px;
}
.footer-content {
  background: #f7dec9;
  color: #5c2a03;
  width: 100%;
  height: 270px;
  display: flex;
  padding: 0 8%;
  justify-content: space-between;
}
.footer-bottom {
  background: #5c2a03;
  color: #f7dec9;
  width: 100%;
  height: 50px;
  text-align: center;
  font-weight: lighter;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-content img {
  width: 150px;
  height: 100px;
}
.content-about {
  width: 27%;
  height: 100%;
  float: left;
  position: relative;
}
.content-about p {
  font-size: small;
}
.reservation {
  border: none;
  border-radius: 900px;
  width: 280px;
  height: 40px;
  background-color: #5c2a03d8;
  color: white;
  cursor: pointer;
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: lighter;
  font-size: small;
}

.reservation:hover{
  background-color: #5c2a03;

}
.content-contact {
  width: 30%;
  height: 100%;
  float: left;
  font-size: small;
  text-align: left;
  padding-top: 50px;
}
.content-contact .contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.content-contact h2 {
  color: #5c2a03;
}
.content-contact ul {
  list-style-type: none;
  right: 0;
  padding: 0;
  /* display: flex;
  justify-content: flex-start; */
}
.content-contact ul li{
  margin-bottom: 5px;
}
.content-contact ul li i{
  margin-right: 5px;
}
.content-contact .fas {
  color: #5c2a03;
}
.content-contact .fab {
  width: 30px;
  height: 30px;
  color: #5c2a03;
  cursor: pointer;
}
.content-map {
  width: 27%;
  height: 100%;
  float: left;
  border-radius: 10px !important;
  padding: 20px 0 ;
}


.content-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 5px !important;
}
@media screen and (max-width: 500px) {
  .reservation{
    width: 100%;
    margin-top: 25px;
  }
  .footer-content {
    width: 100%;
    height: auto;
    flex-direction: column;
  }
  .content-about {
    width: 100%;
    flex-direction: column;
  }
  .content-contact {
    width: 100%;
    margin: 0;
  }
  .content-map {
    width: 100%;
  }
  .footer-bottom {
    font-size: 9pt;
    padding: 0;
  }
}


.box {
  width: 70%;
  margin: 80px auto;
  border: 10px solid transparent;
  padding-top: 20px;
}
.image img {
  display: block;
  margin: auto;
  width: 100%;
}
.content p {
  padding-top: 50px;
  font-size: 18px;
  text-indent: 30px;
  text-align: justify;
}


/* promo */

.promo-container{
  width: 100%;
  display:flex ;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  color:#5c2a03;
}

.promo-container p{
  font-size: 1.15rem;
}

.promo-description{
  text-align: center;
  width: 50%;
  margin-top: 15px;
}

.promo-content-container{
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20%;
  margin-top: 25px;
}

.promo-content{
  width: 47%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.promo-content img{
  border-radius: 10px;
  width: 100%;
  max-height: 250px;
  object-fit: cover;
}

.promo-content h2{
  margin-top: 5px;
}

.promo-content p{
  margin-top: 5px;
  text-align: center;
}

.button-promo-content{
  margin-top: 20px;
  width: 150px;
  height: 40px;
  background-color: #8f583c;
  color: white;
  border: none;
  border-radius: 900px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
}

.button-promo-content:hover{
  background-color: #8b4826;
}

/* who we are */
.who-container{
  width: 100%;
  background-color: #f7dec9;
  margin-top: 30px;
  padding: 50px 5%;
  display: flex;
}

.who-container-left{
  width: 40%;
  padding-right: 5%;
}

.who-container-left h1{
   text-align: center;
   margin-bottom: 20px;
   font-size: 2.25rem;
}
.who-container-left h3{
  margin-top: 20px;
  font-weight: normal;
  text-align: justify;
}

.button-container{
  width: 100%;
  display: flex;
  justify-content: center;
}

.button-who{
  width: 175px;
  height: 40px;
  background-color: transparent;
  border:2px solid #5c2a03;
  border-radius: 5px;
  color: #5c2a03;
  margin-top: 35px;
}

.button-who:hover{
  background-color: #5c2a03;
  color: white;
}

.who-container-right{
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
}

.who-container-right img{
  width: 100%;
  height: 400px;
  object-fit: cover;  
  border-radius: 15px;
}

.home-step-container{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 50px;
}

.home-step-card{
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
  margin-bottom: 50px;
}

.home-step-card-left{
  width: 50%;
  padding-right: 5%;
}

.home-step-card-left img{
  width: 100%;
  border-radius: 15px;
  height: 350px;
  object-fit: cover;

}

.home-step-card-right{
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 5%;
  padding-right: 5%;
}

.home-step-card-right h1{
  margin-bottom: 15px;
}

.home-step-card-right p {
  font-size: 1.1rem;
}


@media only screen and (max-width:500px){
    .promo-container{
        padding: 0 5%;
        margin-top: 25px;
    }
    
    .promo-description{
        width: 100%;
    }
    
    .promo-content-container{
        flex-direction: column;
        padding:  0 5%;
    }
    
    .promo-content{
        width: 100%;
        margin-bottom: 25px;
    }
    
    .who-container{
        flex-direction: column;
    }
    .who-container-left{
        width: 100%;
        padding: 0;
        margin-bottom: 25px;
    }

    .who-container-right{
        width: 100%;
        padding: 0;

    }
    .who-container-right img{
        height: 350px;
    }
    .home-step-card{
        flex-direction: column !important;
        padding:  0 5%;

    }
    .home-step-card-left{
        width: 100%;
        padding: 0;
    }
    .home-step-card-right{
        width: 100%;
        padding: 0;
        text-align: center;
    }
    .home-step-card-left img{
        height: 250px;
    }
}


.retail-content {
  padding: 90px 15%;
  color: #5c2a03;
}
.retail-content h1 {
  font-family: "Dancing Script", cursive;
  text-align: center;
  margin-top: 25px;
}

.retailcardcontainer {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 25px;
}

.retailcard {
  width: 32%;
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.retailcard img {
  object-fit: cover;
  width: 100%;
  height: 250px;
  border-radius: 5px;
}

.retailcard h3 {
  margin-top: 5px;
  font-weight: 500;
  margin-bottom: 1px;
}

@media only screen and (max-width: 500px) {
  .retail-content {
    padding-left: 5%;
    padding-right: 5%;
  }
  .retailcard {
    width: 48%;
  }

  .retailcard img {
    height: 160px;
  }
}

.produg {
  padding: 0 15%;
  padding-top: 120px;
  color: #5c2a03;
}

.rowprodug {
  display: flex;
  width: 100%;
  height: 400px;
}
.rowprodug img {
  width: 50%;
  height: 400px;
  border-radius: 8px;
}

.rowprodugright {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}

.judulprodug {
  border-bottom: 1.5px solid #ebbb92;
  padding-bottom: 5px;
}

.hargaprodug {
  font-size: 13pt;
  margin-top: 2px;
}

.produgbuy {
  border: none;
  outline: none;
  background-color: #ebbb92;
  color: white;
  font-weight: bold;
  height: 30px;
  border-radius: 4px;
  margin-top: 12.5px;
  margin-bottom: 12.5px;
  cursor: pointer;
}

.produgbuy:hover {
  background-color: #5c2a03;
}

.deskripsiprodug {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 13; /* number of lines to show */
  -webkit-box-orient: vertical;
}

.produgcontener {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.produgcard {
  width: 24%;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.produgcard h3 {
  margin-top: 5px;
  font-size: 12.5pt;
}

.produgcard img {
  border-radius: 7px;
}

@media only screen and (max-width: 500px) {
  .produg {
    padding: 0 5%;
    padding-top: 100px;
  }
  .rowprodug {
    flex-direction: column;
    height: auto;
  }
  .rowprodug img {
    width: 100%;
    height: auto;
  }
  .rowprodugright {
    width: 100%;
  }
  .judulprodug {
    text-align: center;
    margin-top: 15px;
  }
  .hargaprodug {
    margin-top: 5px;
    font-size: 13pt;
  }
  .produgcontener {
    flex-wrap: wrap;
  }
  .produgcard {
    width: 48%;
    margin-bottom: 20px;
  }
  .rowprodugright {
    padding-left: 0;
  }
}

