/* detail.css - CSS khusus halaman detail merchandise */

/* Container utama detail merchandise */
.merch-detail {
    max-width: 800px;
    margin: 100px auto;
    padding: 20px;
    background: #222;
    border-radius: 8px;
    color: #eee;
}

/* Judul merchandise */
.merch-detail h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #f44336;
}

/* Metadata (misalnya: harga, username) */
.merch-detail .meta {
    font-size: 14px;
    margin-bottom: 20px;
    color: #aaa;
}

/* Gambar merchandise */
.merch-detail img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Konten detail merchandise */
.merch-detail .content {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}

/* Responsive tambahan jika diperlukan */
@media (max-width: 768px) {
    .merch-detail {
        margin: 80px 20px;
        padding: 15px;
    }
    .merch-detail h1 {
        font-size: 28px;
    }
}

/* detail.css - CSS untuk halaman detail merchandise */

/* ... style .merch-detail dsb. ... */

/* Style untuk order-buttons */
.order-buttons {
    margin-top: 20px;
    text-align: center; /* atau left, sesuai selera */
  }
  
  .order-buttons p {
    margin-bottom: 10px;
  }
  
  .btn-order {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px;
    background-color: #f44336;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    margin-bottom: 20px;
  }
  
  .btn-order:hover {
    background-color: #b71c1c;
  }
  
  .btn-order.wa {
    background-color: #25d366; /* Warna khas WA */
  }
  
  .btn-order.wa:hover {
    background-color: #1ebe57;
  }
  
  .btn-order.ig {
    background-color: #e1306c; /* Warna khas IG */
  }
  
  .btn-order.ig:hover {
    background-color: #b82458;
  }
  
