* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', Georgia, 'Times New Roman', Times, serif;
}

body {
    width: 100%;
    min-height: 100vh;
    background: #ebfff1;
    color: #181818;
}

.containera {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

.containera h1 {
    margin-top: 50px;
    text-align: center;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
    color: #2C3E50;
    margin-bottom: 10px;
}

.product-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.product-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-info {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-info h2 {
    font-size: 28px;
    color: #16a085;
    margin-bottom: 10px;
}

.price {
    font-size: 24px;
    color: #141414;
    margin-bottom: 20px;
}

.description,
.details,
.health-benefits,
.storage,
.origin {
    margin-bottom: 20px;
}

h3 {
    font-size: 22px;
    color: #34495e;
    margin-bottom: 10px;
}

ul {
    list-style-type: none;
    padding-left: 20px;
}

ul li {
    font-size: 16px;
    margin-bottom: 8px;
}

ul li strong {
    color: #2980b9;
}

ul li i {
    font-style: italic;
    color: #7f8c8d;
}

.health-benefits p,
.storage p,
.origin p {
    font-size: 16px;
    line-height: 1.5;
}

.back-button {
    display: inline-block;
    margin-top: -50px;
    padding: 10px 20px;
    background-color: #181818;
    ;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.back-button:hover {
    background-color: #35bd82;
}

/* tombol beli */
.order-button {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 15px;
}

.order-button button {
    padding: 15px 30px;
    font-size: 18px;
    color: #fff;
    background-color: #35bd82;
    /* Warna hijau WhatsApp */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-button button i {
    margin-right: 10px;
    font-size: 24px;
}

.order-button button:hover {
    background-color: #128C7E;
    /* Warna hijau gelap WhatsApp */
}



.order-section select {
    appearance: none;
    /* Menghapus default dropdown arrow */
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    outline: none;
    width: 100%;
    max-width: 150px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-left: 33px;
}

/* Dropdown arrow custom */
.order-section select::-ms-expand {
    display: none;
    /* Menghapus default dropdown di browser Microsoft */
}

/* Styling saat hover */
.order-section select:hover {
    border-color: #888;
    background-color: #e9e9e9;
}

/* Styling saat focus */
.order-section select:focus {
    border-color: #35bd82;
    box-shadow: 0 0 5px rgba(104, 255, 104, 0.5);
    background-color: #fff;
}

/* .order-section {
    position: relative;
    display: inline-block;
    width: auto;
} */

.order-section-inp input {
    width: 150px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.order-section-inp {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 600px) {
    .order-section select {
        margin-left: 33px;
    }
}

.order-section-inp button {
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
}