/* Container & Wrapper */
.container {
    max-width: 1200px;
    margin: 100px auto 50px auto;
    padding: 0 20px;
}

.product-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

/* Gambar Produk */
.product-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Info Produk */
.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h1 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #0f0f0f;
}

.price {
    font-size: 1.6em;
    font-weight: 700;
    color: #00c853;
    margin-bottom: 20px;
}

.description {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Tombol Tambah ke Keranjang */
.btn-add {
    padding: 15px 25px;
    background: #00e676;
    border: none;
    color: #000;
    font-size: 1.1em;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add:hover {
    background: #00c853;
    transform: scale(1.05);
}

/* Toast */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2ecc71;
    color: white;
    padding: 12px 18px;
    border-radius: 6px;
    display: none;
    z-index: 999;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #00e676;
    color: #ffffff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(236, 234, 234, 0.1);
}

.navbar .logo {
    font-weight: 700;
    font-size: 1.5em;
}

.navbar .logo span {
    color: #fff;
}

.navbar nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: #fff;
}

/* Responsive */
@media(max-width: 900px){
    .product-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .product-image img {
        max-width: 100%;
    }
}
