/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f6fa;
    color: #2d3436;
}

/* HEADER */
.header {
    background: #111;
    color: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 600;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
}

nav a:hover {
    color: #00b894;
}

/* HERO */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #00b894, #0984e3);
    color: white;
}

.hero h1 {
    font-size: 32px;
}

.hero p {
    margin-top: 10px;
    font-size: 16px;
}

/* CONTAINER */
.container {
    padding: 30px;
}

.title {
    margin-bottom: 20px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

/* CARD */
.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
}

/* SOLD LABEL */
.sold {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 6px;
    z-index: 2;
}

/* IMAGE */
.slider {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

.slide.active {
    display: block;
}

/* ZOOM */
.slider:hover .slide {
    transform: scale(1.2);
    transition: 0.4s;
}

/* BUTTON SLIDER */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.prev { left: 5px; }
.next { right: 5px; }

/* BODY */
.card-body {
    padding: 15px;
}

.card-body h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

/* PRICE */
.price {
    color: #00b894;
    font-weight: bold;
    margin-bottom: 5px;
}

/* STATUS */
.status {
    display: inline-block;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.status.menunggu { background: orange; color: white; }
.status.dikirim { background: #0984e3; color: white; }
.status.selesai { background: #00b894; color: white; }
.status.dibatalkan { background: red; color: white; }

/* BUTTON */
.btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-radius: 8px;
    background: #00b894;
    color: white;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
}

.btn:hover {
    background: #019875;
}

.btn.wa {
    background: #25D366;
}

.btn.secondary {
    background: #636e72;
}

.btn.danger {
    background: red;
}

/* FORM */
.form-box {
    width: 350px;
    margin: 80px auto;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-box h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-box input,
.form-box textarea,
.form-box select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* RESPONSIVE */
@media(max-width:600px){
    .header {
        flex-direction: column;
    }

    nav {
        margin-top: 10px;
    }
}
.table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.table th {
    background: #111;
    color: white;
    padding: 12px;
    text-align: left;
}

.table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.table tr:hover {
    background: #f9f9f9;
}
.payment-box {
    max-width: 400px;
    margin: auto;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.payment-detail {
    margin-bottom: 20px;
}

.rekening {
    background: #f1f2f6;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.info {
    background: #ffeaa7;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
}
.slider {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

.slide.active {
    display: block;
}

/* tombol */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.prev { left: 5px; }
.next { right: 5px; }