/* Reset CSS */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;}

.poppins-extralight {
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal;
  }

.body {
    
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background: #0b8800a2;
    text-shadow:  0 4px 8px rgba(75, 75, 75, 0.301);
    color: #ffffff;
    height:100vh;
    
}

.container {
    display:block;
    justify-content: space-between;
}

.container {
    width: 100%;
    height: 80px;
    background: #021d00;
    
}


.logo img {
    height: 60px;
    position: absolute;
    bottom:10px;
    left: 10px}/* Sesuaikan tinggi logo */

header {
    display: block;
    align-items: center;
    justify-content: center;
    color: #fff;
    position:fixed; /* Membuat navbar tetap muncul di atas */
    top: 0; /* Posisi navbar di bagian paling atas */
    z-index: 10; /* Memastikan navbar berada di atas elemen lain */
    width: 100%; /* Lebar navbar 100% */
}



header h3 {
    text-align: center;
    font-size: 1.5em;
   
}

/*ikon navbar*/
.ikon-container {
    position:static;
    z-index: 2;
}

.ikon-container a {
    text-decoration: none;
    color:#ffffff;
    font-size: 20px;
    transition: color 0.3s ease;
    margin: 3px;
    z-index: 2;
   
}

.menu{
    display:none;
}

.menu.active {
    display: flex; /* Tampilkan menu saat aktif */
    justify-content: center;
    position:fixed; /* Membuat navbar tetap muncul di atas */
    z-index: 10;
    top: 80px; /* Sesuaikan dengan tinggi navbar */
    right: 0;
    width: 100%;
    align-items: center;
    background: #0b880073;
    padding: 15px;
   
} 


/* Hamburger Menu (Hidden by Default) */

.hamburgers {
    display: flex;
    position: relative;
    align-items: right;
    justify-content: right;
    bottom: 40px;
    right: 15px;
    gap: 5px;
    z-index: 1;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    gap:2px;
    flex-direction: column;
    width: 25px;
    height: 10px;
  }
  
  .hamburger-line {
    display: flex;
    width: 100%;
    height: 10px;
    background-color: #ffffff;
    transition: all 0.6s ease;
  }
  
  /* Saat hamburger aktif (berubah jadi X) */
  .hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(0px, 5px);
  }
  
  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0px, -5px);
  }



/* Gaya untuk tombol home */
.menu li a { 
    color: #ffffff;
    padding: 10px;
    text-decoration: none;
    transition: background-color 0.5s ease, transform 0.5s ease;
    border-radius: 5px;
}

/* Efek hover */
.menu li a:hover{

    top: 20px;
    background-color: #0b8800;
    color: white;
    padding: 10px;
    text-decoration: none;
    transition: background-color 0.5s ease, transform 0.5s ease;
    border-radius: 5px;
}

/* Gaya untuk ikon */
.menu {
    font-size: 15px;
    display: none;
}

div {
    list-style: none;
    text-align: center;
    margin: 0;
    padding:0;
    display: inline;
    
}

div ul li {
    display: inline;
}

div ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;

}


/* Container untuk background slider */
.foto-slide {
    position: absolute; /* Tetap di tempat saat scrolling */
    top:0px;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;

}

/* Container untuk semua slide */
.allslide {
    display: flex;
    width: 700%;
    height: 100%; /* 100% untuk setiap slide (4 slide) */
    animation: slide 1000s infinite; /* Animasi slide */
}

/* Styling untuk setiap slide */
.slide1 {
    width: 200%;
    height: 100%;
    background-size: cover; /* Gambar menutupi seluruh area */
    background-position: center; /* Posisi gambar di tengah */
}

/* Animasi untuk menggerakkan slide dari kiri ke kanan */
@keyframes slide {
    0% { transform: translateX(0%); }
    25% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    100% { transform: translateX(-400%); }
}



.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.753); /* Overlay hitam dengan transparansi 50% */
    z-index: -9999999; /* Pastikan overlay di belakang konten */
}



.hero {
    position: relative;
    z-index: 9; /* Menempatkan di atas slideshow */
    text-align: center;
    color: rgb(255, 255, 255);
    padding-top: 30%;
    height: 100vh;
   
}

.hero-item {
    position:relative;
    z-index: 999;
    bottom:150px;

}

.hero h2 {
    font-size: 2em;
    padding: 10px;
    z-index: 999;

}

.hero p {
    font-size: 1em;
    margin-bottom: 20px;
   
}

.hero .btn {
    background: #021d00;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    
}

.chart-item .btn{
    background: #021d00;
    color: #fff;
    padding: 5px ;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    display: grid;
    place-items: center;
    transition: transform 0.3s ease;  
}
.chart-item .btn:hover{
    background:#0b8800
}


.hero .btn:hover {
    background: #0b8800;
}

.home-button {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
box-shadow: 0 4px 8px rgba(255, 189, 6, 0.747);    

}

/* Gaya untuk tombol home */
.home-button {
    position: fixed; /* Tombol tetap di layar */
    bottom: 20px; /* Jarak dari bawah */
    right: 20px; /* Jarak dari kanan */
    background-color: #021d00;
    color: #fff;
    padding: 15px;
    border-radius: 50%; /* Membuat tombol bulat */
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(255, 189, 6, 0.747);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Efek hover */
.home-button:hover {
    background-color: #0b8800;
    transform: scale(1.1); /* Membesar saat dihover */
}

/* Gaya untuk ikon */
.home-button i {
    font-size: 20px;
}



.chart-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
   
}

.chart-container h2 {
    text-align: center;

}

.chart-scroll {
    display: flex;
    overflow-x: auto;
    padding: 10px 0;
}

.product-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product-item {
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    width: 30%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-item img {
    max-width: 100%;
    border-radius: 5px;
}

.product-item h3 {
    margin: 15px 0 10px;
    color: white;
}



.product-item button {
    background: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.product-item button:hover {
    background: #555;
}

.about {
    text-align: center;
    position: relative;
    top: 20px;
    background: #90bb88;
    box-shadow: 0 4px 8px rgba(255, 189, 6, 0.747);
    height: 500px;
    margin: 20px;
    margin-bottom:210px;
    border-radius: 20px;
   
}


.about h2 {
    padding-top:160px;
    margin-bottom: 20px;
    margin-top: px;

}

.about p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
}
/*contact*/

.contact {
    position: relative;
    bottom: 130px ;
    padding: 40px;
    text-align:center;
    background: #90bb88;
    box-shadow: 0 4px 8px rgba(255, 189, 6, 0.747);
    height: 500px;
    border-radius: 20px;
    margin: 20px;

}


.contact h2 {
    margin-top: 100px;
    
}
.contact p{
    text-align: left;
    padding-top: 5%;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 10px;
    padding-top: 20px;
    margin-bottom: 200px;
}

.gallery-item {
    background-color: #021d00;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 5cm;
}
.nameGaleri h2{
    color: #ffffff;
    padding-top: 120px;
    text-align: left;
    margin-left: 15px;

}

.gallery-item:hover {
    transform: scale(1.05);
}
.chart-item {
    background-color: #95c487;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(255, 189, 6, 0.747);
    transition: transform 0.3s ease;
}

.chart-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 7cm;
    height: 5cm;
    display: block;
}

.caption {
    text-align: center;
    padding: 10px;
    font-size: 16px;
    color: #333;
}



/* Container Slideshow */
.slideshow {
background-color: #95c487;
box-shadow: 0 4px 8px rgba(255, 189, 6, 0.747);
margin: 20px;
padding: 20px;
border-radius: 20px;
height: 350PX;
}

.slideshow-container {
    position: relative;
    display:flex;
    align-items:center;
    overflow: hidden;
    border: 5px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: #000;
    height:300px;}

/* Slide */
.slide {
    display: none; /* Sembunyikan semua slide secara default */
    width: 100%;
    height: 400px;
}

.slide img {
    width:100% ;
    height: 300px;
    display: block;
}

/* Tombol Navigasi */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0 5px 5px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/*tips dan informasi*/
.tips {
    position: relative;
    bottom: 150px;
    background: #90bb88;
    box-shadow: 0 4px 8px rgba(255, 189, 6, 0.747);
    height: 500px;
    margin: 20px;
    padding: 40px;
    border-radius: 20px;
}


.read{
    text-decoration: none;
    color: #ffffff;
    background: #8fff8b;
    border-radius: 5px;
    padding: 5px;
}
.container-tips{
    position: relative;
    top: 100px;
    cursor: pointer;


}


.nametips .h1{
    color: #ffffff;
    text-align: left;
    margin-left: 15px;
}
 
.tipsss
{
    top: 20px;
    background: #90bb88;
    box-shadow: 0 4px 8px rgba(255, 189, 6, 0.747);
    margin: 20px;
    margin-bottom:310px;
    border-radius: 20px;
    position: relative;
    height:auto;
    padding: 20px;


}




/* Style untuk navigation bar di bagian bawah */
.navigation {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

/* Style untuk tombol */
.btn {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    transition: background-color 0.3s ease;
}

/* Style untuk tombol Sebelumnya */
.btn.sebelumnya {
    background-color: #6c757d;
}

/* Style untuk tombol Berikutnya */
.btn.berikutnya {
    background-color: #28a745;
}

/* Hover effect untuk tombol */
.btn:hover {
    background-color: #0056b3;
}

.btn.sebelumnya:hover {
    background-color: #5a6268;
}

.btn.berikutnya:hover {
    background-color: #218838;
}

/*ikon kontak*/
.icon-container {
    display:contents;
    margin-top: 2px;
}

.icon-container a {
    text-decoration: none;
    color: white;
    font-size: 40px;
    transition: color 0.3s ease;
}



.whatsapp:hover {
    color: #25D366;
}

.phone:hover {
    color: #34B7F1;
}

.facebook:hover {
    color: #1877F2;
}




.whatsapp:hover {
    color: #25D366;
}

.phone:hover {
    color: #34B7F1;
}

.facebook:hover {
    color: #1877F2;
}

.widget{
    background: #bdb0a8;
}


/* Footer styling */
.footer-widget {
    position: relative;
    bottom: 140px;
    display: flex;
    justify-content: space-around;
    background-color:#26771f;
    color: #fff;
    font-family: Arial, sans-serif;
}

.footer-section {
    width: 500px;
    
}

.footer-section h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #ffcc00; /* Warna judul */
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    margin: -4px;
    padding: 4px;
    border-radius: 5px;
    
}

.footer-section ul li a:hover {
    background: rgba(77, 255, 0, 0.5);
    padding: 4px;
    border-radius: 5px;
}

footer {
    background: #021d00;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 100px;
}

.cr { 
    margin-top: -150px;
}




.chart-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
   
}

.chart-container h2 {
    text-align: center;

}



.chart-scroll {
    display: flex;
    overflow-x: auto;
    padding: 10px 0;
}


.chart-item {
    flex: 0 0 auto;
    width: 200px;
    margin-right: 20px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #f9f9f9;
}

.chart-item img {
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.chart-item h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #000000;
}
.chart-item h2 {
    font-size: 16px;
    color: #000000;
}


.chart-item p {
    font-size: 16px;
    color: #000000;
    font-weight: bold;
}


.products {
    position:relative;
    padding: 5%;
    text-align: center;
    background: #90bb88;
    box-shadow: 0 4px 8px rgba(255, 189, 6, 0.747);
    border-radius: 20px;

    margin: 20px;
}


.products h2 {
    margin-bottom: 20px;
    color: white;
    text-shadow:  0 4px 8px rgba(0, 0, 0, 0.562);
}

.products p {
    margin-bottom: 20px;
    color: rgb(255, 0, 0);
}

.product-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product-item {
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    width: 30%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-item img {
    max-width: 100%;
    border-radius: 5px;
}

.product-item h3 {
    margin: 15px 0 10px;
    color: white;
}

.hero .btn {
    background: #021d00;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    
}

.chart-item .btn{
    background: #021d00;
    color: #fff;
    padding: 5px ;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    display: grid;
    place-items: center;
    transition: transform 0.3s ease;  
}
.chart-item .btn:hover{
    background:#0b8800
}


.hero .btn:hover {
    background: #0b8800;
}


/*Galeri.html*/
.galeri-footer{
    margin-top: -150px;
    background: #021d00;    

}



/* Pembelian.html*/
.container-harga {
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
}

select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #ccc;
    cursor: pointer;
}

#keterangan {
    color: red;
}
.Sudah{
    color: #1307b3;
}
.Belum{
    color:red;
}




/* Container untuk produk */
.product-container {
    position: relative;
    margin: 20px;
    margin-top: 100px;
    background-color: #95c487;
    box-shadow: 0 4px 8px rgba(255, 189, 6, 0.747);
    border-radius: 8px;
    padding: 40px;
    border-radius: 20px;

}

/* Bagian foto produk */
.product-image {
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.product-image img {
    width: 50%;
    border-radius: 8px;
        box-shadow: 0 4px 8px rgba(255, 189, 6, 0.747);

}

/* Bagian pemesanan */


    

label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    font-size:20px;
}

select {
    text-align: center;
    font-size:20px;
    width: 100%;
    background: #00000000;
    margin-bottom: 20px;
    border-radius: 4px;
    color: red;
   
}

#keterangan {
    font-size:20px;
}

/* Form pemesanan */
.order-form {
    display: flex;
    flex-direction: column;
    font-size:20px;
}

form a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    text-align: center;
    background: #ffbb00;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 100px;
}

.klik:hover{
    background-color: #0b8800;
    color: white;
    padding: 10px;
    text-decoration: none;
    transition: background-color 0.5s ease, transform 0.5s ease;
    border-radius: 10px;
    
}



/* Bagian deskripsi produk dengan tabel */
.product-description {
    margin-top: 300px;
    color: #000;
}

.product-description h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #333;
    text-align: left;
}

.product-description table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.product-description th, .product-description td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}


.product-description th {
    background-color: #f4f4f4;
    font-weight: bold;
    text-align: center;
}


.keterangan p {
    font-size: 1rem;
    color: #333;
    text-align: left;
    margin-top: 10px;
}


.lihat  {
    padding-bottom: 100px;

}

/* Pembelian PRODUK chart produk*/

.tittle h3 {
    font-size: 1.5rem;
    color: #333;
    text-align: left;
    padding-left: 40px;
    padding-bottom: 15px;
}
.produk{
    background-color: #95c487;
    margin: 20px;
    padding: 40px;
    margin-bottom: 150px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(255, 189, 6, 0.747);}

.chart-item {
    flex: 0 0 auto;
    width: 200px;
    margin-right: 20px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #f9f9f9;
}

.chart-item img {
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.chart-item h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #000000;
}
.chart-item h2 {
    font-size: 16px;
    color: #000000;
}


.chart-item p {
    font-size: 16px;
    color: #000000;
    font-weight: bold;
}


.products {
    padding: 5%;
    text-align: center;
    background: #90bb88;
    border-radius: 20px;
    position: relative;
    top: -17px;
    margin: 20px;

}


.products h2 {
    margin-bottom: 20px;
    color: white;
}

.products p {
    margin-bottom: 20px;
    color: rgb(255, 0, 0);
}

.product-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}


/* Media Queries for Responsive Design */
@media (max-width: 768px) {

    .foto-slide {
        position: absolute; /* Tetap di tempat saat scrolling */
        top:0px;
        left: 0;
        width: 100%;
        height: 700px;
        overflow: hidden;
    
    }
    
    /* Container untuk semua slide */
    .allslide {
        display: flex;
        width: 700%;
        height: 100%; /* 100% untuk setiap slide (4 slide) */
        animation: slide 1000s infinite; /* Animasi slide */
    }
    
    /* Styling untuk setiap slide */
    .slide1 {
        width: 200%;
        height: 100%;
        background-size: cover; /* Gambar menutupi seluruh area */
        background-position: center; /* Posisi gambar di tengah */
    }
    
    .hero {
        position: relative;
        top: 0;
        z-index: 9; /* Menempatkan di atas slideshow */
        text-align: center;
        color: rgb(255, 255, 255);
        padding: 8%;
        height: 700px;
       
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height:700px;
        background-color: rgba(0, 0, 0, 0.753); /* Overlay hitam dengan transparansi 50% */
        z-index: -9999999; /* Pastikan overlay di belakang konten */
    }


    .hero-item {
        position:relative;
        top:150px;
        z-index: 999;
        background: #000;

    
    }


   .hamburgers {
    top: 25px;
    left:2px;
    display: flex;
   }

    .container {
        background: #1307b3;
    }

    .ikon-container  {
        top: 20px;
       
    }

    .ikon-container a {
        position: relative;
        top: 20px;
        margin: 2px;
        text-decoration: none;
        color: rgb(255, 255, 255);
        font-size: 16px;
        transition: color 0.3s ease;
    }


    header h3 {
        display:none
    }

    div .logo{ 
        position: relative;
        display:flex;
        margin:0;
        padding:0;
        right: 20px;
    
    }

    .logo img {
        position:relative;
        margin:0;
        padding:0;
        top: 15px;
        width:2cm;
        height: 1cm;
        justify-content: center;
        align-items: center;
    }



    .menu {
       
        display:none; /* Sembunyikan menu secara default */
    
    }


    .menu.active {
        text-align: right;
        background: #0b8800a9;
        width: 70%;
        height:50%;
        display:grid;
       
    }
    

    .menu li a {
        
        color: #ffffff;
        font-size: 14px;
        text-decoration: none;
        transition: background-color 0.5s ease, transform 0.5s ease;
        border-radius: 5px;
    }

    .menu li a:hover{
        background-color: #0b8800;
        color: white;
        font-size: 14px;
        text-decoration: none;
        transition: background-color 0.5s ease, transform 0.5s ease;
        border-radius: 5px;
        
    }

    
     .container {
        text-align: center;
        justify-content: space-between;
        font-size: 10px;
        display:flex;
        padding: 5px;
        height:80px;
        background: #021d00;


     }


    .product-container {
        position: relative;
        margin-top: 80px;
        background-color: #95c487;
        box-shadow: 0 4px 8px rgba(255, 189, 6, 0.747);
        border-radius: 8px;
        padding: 20px;
        border-radius: 20px;
    
    }
    
    /* Bagian foto produk */
    .product-image {
        margin-bottom: 10px;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    body{
        font-size: 0.7rem;
    }
    
    .product-image img {
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(255, 189, 6, 0.747);
    
    }
    .product-description h2 {
        font-size: 1rem;

    }
    .keterangan p {
        font-size: 0.7rem;
        
    }
    .tittle h3 {
        font-size: 1rem;
        
    }

    .product-order h1 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: #2c2c2c;
    }
    
    .product-order .price {
        font-size: 1rem;
        font-weight: bold;
        color: #e62222;
        margin-bottom: 20px;
    }

    form a {
        padding: 5px;
       
    }
    
    .klik:hover{
        padding: 5px;
        
    }

    .gallery-item {
        background-color: #021d00;
        border: 1px solid #ddd;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        height: 5cm;
        width: 7cm;
    }

    .footer-section h3 {
        font-size: 0.8rem;
        margin-bottom: 15px;
        color: #ffcc00; /* Warna judul */
    }

    .footer-section p {
        font-size: 0.5rem;
        line-height: 1.5;
        margin-bottom: 10px;

    }
    .footer-section ul li a {
        display: grid;
        color: #fff;
        text-decoration: none;
        font-size: 0.5rem;
        margin: 0;
        padding: 0;
        border-radius: 5px;
    }
    
}
