/* --- PERBAIKAN PADA LOGO (Navbar) --- */
.navbar {
    display: flex;
    justify-content: start; /* Memisahkan logo, search-bar, dan header-right */
    align-items: center;
    background-color: #a8dadc;
    padding: 10px 20px;
    color: white;
    gap: 120px; /* Mengurangi jarak antara elemen utama */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px; /* Jarak antara nav dan user-actions */
}

.logo {
    display: flex; /* Mengatur gambar dan teks logo agar berdampingan */
    align-items: center;
    text-decoration: none; /* Tambahan: Menghilangkan garis bawah pada link logo */
    color: inherit; /* Tambahan: Mewarisi warna teks */
    /* Menghapus .logo-icon-and-text karena digantikan oleh .logo yang lebih ringkas */
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 100px; /* Ukuran logo disesuaikan */
    margin-right: 15px;
    display: block; /* Pastikan gambar ditampilkan */
}

.logo-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text-content h1 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    color: rgb(0, 0, 0); /* Warna teks DRIPVERSE */
}

.logo-text-content p {
    margin: 0;
    font-size: 14px;
    color: #000000; /* Warna teks subtitle */
}
/* --- AKHIR PERBAIKAN LOGO --- */

/* --- Bagian-bagian CSS lainnya tetap sama --- */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 120px; /* Tambahkan padding agar konten tidak tertutup header */
    background-color: #f4f4f4;
}

.search-bar {
    flex-grow: 1; /* Memungkinkan search bar mengambil ruang yang tersedia */
    flex-shrink: 0;
    max-width: 250px;
    width: 350%;
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 25px;
    padding: 8px 25px;
    /* margin-inline: auto; Menghapus properti ini */
}

.search-bar input {
    border: none;
    outline: none;
    flex-grow: 1;
    padding: 1px;
    font-size: 12px;
}

.search-bar i {
    color: hsl(182, 63%, 52%);
    margin: 0px 10px;
    font-size: 20px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    flex-shrink: 0; /* Jangan biarkan nav menyusut */
}

nav ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 0;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #121412;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 15px; /* Sesuaikan jarak antar ikon */
    flex-shrink: 0; /* Jangan biarkan user-actions menyusut */
}

.user-actions i {
    font-size: 28px;
    color: hsl(182, 63%, 52%);
    cursor: pointer;
    transition: color 0.3s ease;
}

.user-actions i:hover {
    color: #f1faee;
}


.hero-section {
    display: flex;
    margin: 20px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.hero-left {
    background-color: #bde0fe;
    display: flex;
    align-items: center;
    padding: 20px;
    flex: 1;
}

.hero-left img {
    width: 40%;
    border-radius: 10px;
    margin-right: 20px;
}

.hero-left .hero-text h2 {
    font-size: 40px;
    margin: 0;
    color: #333;
}

.hero-left .hero-text h3 {
    font-size: 30px;
    color: #e63946;
    margin: 0;
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.hero-right h1 {
    font-size: 50px;
    margin: 0;
    color: #333;
    font-weight: normal;
}

.hero-right h2 {
    font-size: 24px;
    color: #555;
    margin-top: 10px;
}

.cta-button {
    background-color: #48cae4;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.featured-products {
    display: flex;
    justify-content: space-around;
    margin: 20px;
    gap: 20px;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    width: 280px;
}

.product-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.product-card .product-info {
    text-align: left;
}

.product-card .product-info p {
    margin: 5px 0;
    font-size: 14px;
}

.product-card .product-info button {
    background-color: #6aade4;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    margin-top: 5px;
}

.unggulan-products {
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.unggulan-products h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.product-item {
    text-align: center;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.product-item p {
    margin: 5px 0;
    font-size: 16px;
}

.product-item button {
    background-color: #48cae4;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
}

/* Bagian CSS yang diperbaiki/diperjelas */
.logo img {
    display: block; /* Menampilkan gambar logo */
    height: 80px; /* Ukuran yang diinginkan */
    width: auto;
    margin-right: 10px; /* Jarak dengan teks */
}

.page-title {
    text-align: center;
    margin: 40px 20px;
    font-size: 32px;
    color: #333;
}

.product-listing {
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.about-content {
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    line-height: 1.6;
    color: #555;
}

.about-content h3 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.about-content ul {
    list-style: disc inside;
    padding-left: 20px;
}

.about-content ul li {
    margin-bottom: 10px;
}

.cart-content {
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cart-items-list {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.item-details {
    flex-grow: 1;
}

.item-details h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
}

.item-details p {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #555;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-control input[type="number"] {
    width: 50px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.quantity-control button {
    background-color: #6aade4;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
}

.quantity-control button[name="remove_item"] {
    background-color: #e63946;
}

.cart-summary {
    text-align: right;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.cart-summary h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.checkout-button {
    background-color: #48cae4;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checkout-button:hover {
    background-color: #3bb2c4;
}

.profile-content {
    margin: 20px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 600px;
}

.profile-content .input-group {
    margin-bottom: 20px;
    text-align: left;
}

.profile-content .input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.profile-content .input-group input[type="text"],
.profile-content .input-group input[type="email"],
.profile-content .input-group input[type="password"] {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

.profile-content .auth-button {
    width: auto;
    padding: 12px 30px;
    margin-top: 20px;
}

.success-message {
    color: green;
    margin-top: 15px;
    font-weight: bold;
}

.error-message {
    color: red;
    margin-top: 15px;
    font-weight: bold;
}

.checkout-content,
.confirmation-content {
    margin: 20px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 800px;
}

.order-summary,
.shipping-payment-form,
.confirmation-card {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.order-summary h3,
.shipping-payment-form h3,
.confirmation-card h3 {
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
}

.summary-item,
.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.summary-total {
    font-weight: bold;
    border-bottom: none;
    margin-top: 10px;
    font-size: 18px;
}

.shipping-payment-form .input-group {
    margin-bottom: 15px;
    text-align: left;
}

.shipping-payment-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.shipping-payment-form input[type="text"],
.shipping-payment-form input[type="email"],
.shipping-payment-form input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.shipping-payment-form h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #333;
}

.confirmation-card {
    text-align: center;
    padding: 40px;
}

.confirmation-card .success-message,
.confirmation-card .error-message {
    font-size: 20px;
    margin-bottom: 20px;
}

.confirmation-card .success-message i,
.confirmation-card .error-message i {
    margin-right: 10px;
}

.confirmation-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    border-top: 1px dashed #eee;
    padding-top: 15px;
}

.confirmation-card ul li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #555;
}

.order-status-pending {
    color: orange;
    font-weight: bold;
}

.order-status-completed {
    color: green;
    font-weight: bold;
}

.order-status-cancelled {
    color: red;
    font-weight: bold;
}

.back-to-home-button {
    background-color: #48cae4;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.product-page-container {
    display: flex;
    margin: 20px;
    gap: 20px;
}

.filter-sidebar {
    flex: 0 0 250px;
    background-color: #bde0fe;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.filter-sidebar h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #a8dadc;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}

.filter-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #48cae4;
}

.filter-button,
.clear-filter-button {
    background-color: #48cae4;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.filter-button:hover,
.clear-filter-button:hover {
    background-color: #3bb2c4;
}

.clear-filter-button {
    background-color: #e63946;
}

.clear-filter-button:hover {
    background-color: #d62d3a;
}

.product-listing-main {
    flex-grow: 1;
}

.product-listing-main .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-listing-main .product-item {
    text-align: center;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    background-color: #fff;
}

.product-listing-main .product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.product-listing-main .product-item p {
    margin: 5px 0;
    font-size: 16px;
}

.product-listing-main .product-item form button {
    background-color: #48cae4;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
}

.profile-page-container {
    display: flex;
    flex-direction: row; /* Mengubah kembali tata letak menjadi horizontal */
    justify-content: center; /* Pusatkan konten horizontal */
    align-items: flex-start; /* Sejajarkan ke atas */
    margin: 20px auto; /* Margin atas/bawah dan pusatkan horizontal */
    max-width: 1000px; /* Batasi lebar maksimum kontainer */
    gap: 30px; /* Jarak antar bagian profil */
}

.profile-sidebar {
    flex: 0 0 280px; /* Lebar sidebar tetap seperti sebelumnya */
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px auto; /* Kurangi margin bawah */
    border: 3px solid #48cae4;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Pastikan gambar mengisi area tanpa terdistorsi */
    border-radius: 50%; /* Tetap bulat */
    display: block; /* Hapus spasi ekstra di bawah gambar */
}

.profile-email {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px; /* Kurangi margin bawah */
}

.profile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex; /* Tetap flex untuk control lebih lanjut */
    flex-direction: column; /* Mengubah tata letak menjadi vertikal */
    gap: 10px; /* Memberi jarak antar item secara vertikal */
}

.profile-nav ul li {
    margin-bottom: 0;
    margin: 0; /* Hapus margin horizontal */
}

.profile-nav ul li a {
    display: flex;
    flex-direction: row; /* Ikon dan teks berdampingan */
    align-items: center;
    justify-content: flex-start; /* Sejajarkan ke kiri */
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-size: 16px; /* Ukuran font sedikit lebih besar agar lebih mudah dibaca */
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.profile-nav ul li a i {
    margin-right: 10px; /* Jarak antara ikon dan teks */
    margin-bottom: 0; /* Hapus margin bawah */
    font-size: 18px; /* Ukuran ikon */
}

.profile-nav ul li a:hover,
.profile-nav ul li a.active {
    background-color: #e0f2f7;
    color: #48cae4;
}

.profile-nav ul li a.logout-link {
    color: #e63946;
    margin-top: 15px; /* Kurangi margin atas */
}

.profile-nav ul li a.logout-link:hover {
    background-color: #ffe0e3;
}

.profile-detail-content {
    flex-grow: 1; /* Biarkan mengambil sisa ruang */
    max-width: 700px; /* Batasi lebar maksimum */
}

.detail-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.detail-card h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 24px;
    color: #333;
}

.detail-card .input-group {
    margin-bottom: 20px;
    text-align: left;
}

.detail-card .input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: normal;
    color: #555;
    font-size: 14px;
}

.detail-card .input-group input[type="text"],
.detail-card .input-group input[type="email"] {
    width: calc(100% - 24px);
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background-color: #f9f9f9;
    border-color: #eee;
    outline: none;
}

.detail-card .auth-button {
    background-color: #48cae4;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
    width: auto;
}

.order-list-items,
.shipping-address-content {
    margin-top: 20px;
}

.order-item-card {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.order-item-card p {
    margin: 5px 0;
    font-size: 15px;
    color: #555;
}

.order-item-card strong {
    color: #333;
}

.order-item-card .view-order-button {
    background-color: #6aade4;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.order-item-card .view-order-button:hover {
    background-color: #569ad3;
}

/* Styling for shipping address form is similar to profile detail card, 
   so existing .detail-card .input-group styles should largely apply. 
   Adding specific styles if needed. */

.admin-content {
    margin: 20px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 900px;
    text-align: center;
}

.admin-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.admin-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.admin-nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    background-color: #e0f2f7;
    border-radius: 10px;
    text-decoration: none;
    color: #48cae4;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.admin-nav ul li a:hover {
    background-color: #48cae4;
    color: white;
}

.admin-nav ul li a i {
    font-size: 30px;
    margin-bottom: 10px;
}

.admin-logout-link {
    display: inline-block;
    background-color: #e63946;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.admin-logout-link:hover {
    background-color: #d62d3a;
}

.admin-container {
    display: flex;
    margin: 20px;
    gap: 20px;
    align-items: flex-start;
}

.admin-sidebar {
    flex: 0 0 250px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.admin-sidebar h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.admin-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-sidebar ul li {
    margin-bottom: 5px;
}

.admin-sidebar ul li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.admin-sidebar ul li a i {
    margin-right: 10px;
    font-size: 18px;
}

.admin-sidebar ul li a:hover,
.admin-sidebar ul li a.active {
    background-color: #e0f2f7;
    color: #48cae4;
}

.admin-content-main {
    flex-grow: 1;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-table th,
.admin-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.admin-table th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #333;
}

.product-thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

.product-thumbnail-edit {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
}

.add-product-button {
    background-color: #28a745; /* Green for add button */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.add-product-button:hover {
    background-color: #218838;
}

.edit-button {
    background-color: #007bff; /* Blue for edit button */
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    text-decoration: none;
    margin-right: 5px;
}

.edit-button:hover {
    background-color: #0056b3;
}

.delete-button {
    background-color: #dc3545; /* Red for delete button */
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
}

.delete-button:hover {
    background-color: #c82333;
}

.cancel-button {
    background-color: #6c757d; /* Gray for cancel button */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    margin-left: 10px;
}

.cancel-button:hover {
    background-color: #5a6268;
}

.order-details-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.order-details-card h3,
.order-details-card h4 {
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
}

.order-details-card p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.order-details-card strong {
    color: #333;
}

.order-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.status-update-form select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    margin-right: 10px;
}

.status-update-form button {
    background-color: #48cae4;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.product-detail-container {
    display: flex;
    gap: 30px;
    margin: 30px auto;
    max-width: 1000px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    align-items: flex-start;
}

.product-detail-image {
    flex: 1;
    text-align: center;
}

.product-detail-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-detail-info {
    flex: 1.5;
}

.product-detail-info h1 {
    font-size: 36px;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}

.product-detail-info .product-price {
    font-size: 28px;
    color: #e63946; /* Merah untuk harga */
    font-weight: bold;
    margin-bottom: 20px;
}

.product-detail-info .product-category {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.product-detail-info .product-description {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-detail-info .product-description strong {
    display: block;
    margin-bottom: 5px;
}

.product-detail-info .product-stock {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.product-detail-info .out-of-stock {
    color: #e63946;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 25px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.quantity-selector label {
    font-weight: bold;
    color: #333;
}

.quantity-selector input[type="number"] {
    width: 60px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
}

.add-to-cart-button {
    background-color: #48cae4;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart-button:hover {
    background-color: #3bb2c4;
}

.back-to-products {
    display: inline-block;
    margin-top: 25px;
    color: #48cae4;
    text-decoration: none;
    font-weight: bold;
}

.back-to-products:hover {
    text-decoration: underline;
}

.payment-details-section {
    display: none; /* Sembunyikan secara default */
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.bank-info-card {
    background-color: #fff;
    border: 1px solid #a8dadc;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.bank-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.account-number {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.account-value {
    font-size: 22px;
    font-weight: bold;
    color: #48cae4;
    margin-bottom: 10px;
}

.account-name {
    font-size: 14px;
    color: #777;
}

.copy-button {
    background-color: #48cae4;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.copy-button:hover {
    background-color: #3bb2c4;
}

.bank-transfer-instructions h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.bank-transfer-instructions ul {
    list-style: disc inside;
    padding-left: 20px;
    color: #555;
    font-size: 14px;
}

.bank-transfer-instructions ul li {
    margin-bottom: 8px;
}

/* Footer Styles */
footer {
    background-color: #a8dadc; /* Warna latar belakang footer */
    color: white;
    padding: 20px 20px 10px 20px; /* Padding atas, samping, bawah */
    font-size: 14px;
    margin-top: 40px; /* Jarak dari konten di atasnya */
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    flex-wrap: wrap; /* Izinkan wrapping pada layar kecil */
    gap: 20px; /* Jarak antar kolom */
}

.footer-logo-section .footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.footer-logo-section .footer-logo img {
    height: 60px; /* Ukuran logo di footer */
    margin-right: 15px;
}

.footer-logo-section .footer-logo-text-content h1 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.footer-logo-section .footer-logo-text-content p {
    margin: 0;
    font-size: 12px;
    color: #f1faee;
}

.footer-social-media {
    display: flex;
    gap: 15px;
}

.footer-social-media .social-icon {
    color: #a8dadc; /* Warna ikon disesuaikan */
    background-color: white;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-social-media .social-icon:hover {
    background-color: #f1faee;
    color: #48cae4;
}

.footer-contact-info p {
    margin: 5px 0;
    text-align: right;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #f1faee;
}

.footer-bottom a {
    color: #f1faee;
    text-decoration: none;
    margin-left: 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        gap: 20px;
    }

    .search-bar {
        max-width: 100%;
        order: 3;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }
}
