body {
    background-color: #fdf9f1;
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #013201;
}

header nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

header nav a:hover, header nav a.active {
    color: #4CAF50;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.product-card {
    background: white;
    padding: 10px;
    width: 200px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.product-card h3 {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}

.product-card p {
    font-size: 14px;
    color: #4CAF50;
    margin-bottom: 10px;
}

.product-card button {
    padding: 8px 12px;
    background-color: #013201;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.product-card button:hover {
    background-color: #4CAF50;
}

footer {
    background-color: #013201;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}
/* Form Checkout */
#checkout-form input,
#checkout-form select,
#checkout-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px; /* Membuat sudut membulat */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Shadow lembut */
    font-size: 16px;
    background-color: #fff;
    color: #333;
    transition: all 0.3s ease; /* Animasi transisi */
}

/* Hover untuk input */
#checkout-form input:hover,
#checkout-form select:hover,
#checkout-form textarea:hover {
    border-color: #4CAF50; /* Hijau terang saat hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Focus effect untuk input */
#checkout-form input:focus,
#checkout-form select:focus,
#checkout-form textarea:focus {
    outline: none; /* Hilangkan border biru default */
    border-color: #4CAF50; /* Border hijau */
    box-shadow: 0 4px 8px rgba(0, 128, 0, 0.3); /* Shadow lebih dalam */
}

/* Gaya tombol Pay */
#pay-btn {
    width: 100%;
    padding: 12px 20px;
    background-color: #013201; /* Hijau gelap */
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px; /* Membulatkan sudut */
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover efek untuk tombol */
#pay-btn:hover {
    background-color: #4CAF50; /* Hijau terang */
    box-shadow: 0 4px 8px rgba(0, 128, 0, 0.3);
}

/* Textarea konsisten */
#checkout-form textarea {
    resize: none; /* Nonaktifkan resize */
    height: 100px;
}

/* Tampilan form secara keseluruhan */
#checkout-form div {
    margin-bottom: 20px;
}
