
/* Root variables */
:root {
  --bg: #f9fbfb;
  --accent: #8b4513;
  --accent-2: #d67a2e;
  --muted: #5b4234;
}

/* Global styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--muted);
}

/* Header */
header.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, rgb(192, 228, 239), #f5d5ab);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  padding: 12px 5%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  font-family: "Poppins", sans-serif;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text h1 {
  font-size: 18px;
  margin: 0;
  color: #4a2e18;
}

.brand-text p {
  font-size: 11px;
  margin: 0;
  color: #7b5330;
}

nav.main-nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
  justify-content: center;
}

nav.main-nav a {
  text-decoration: none;
  color: #4a2e18;
  font-weight: 500;
  font-size: 14px;
  position: relative;
}

nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #8b5e3c;
  transition: .3s;
}

nav.main-nav a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-bar {
  display: flex;
  align-items: center;

  width: 220px;
  height: 38px;

  background: #ffffff;           
  border: 1px solid #c9a57a;       
  border-radius: 30px;

  padding: 0 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.search-input {
  background: transparent;
  border: none;
  outline: none;

  width: 100%;
  font-size: 13px;
  padding: 0 10px;
  color: #4a2e18;
}

.search-input::placeholder {
  color: #a07a55;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon {
  font-size: 20px;
  color: #4a2e18;
  text-decoration: none;
  position: relative;
}

.icon:hover {
  color: #8b5e3c;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #e63946;
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
  padding: 2px 5px;
}

@media(max-width: 768px) {
  header.topbar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  nav.main-nav ul {
    flex-wrap: wrap;
    gap: 16px;
  }

  .header-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .search-bar {
    width: 100%;
  }
}

/* Shared */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

/* Index */
.slider {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 40px;
}

.slider-track {
  display: flex;
  transition: transform .5s ease;
}

.slide {
  min-width: 100%;
  height: 320px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider .nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.slider .nav button {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 8px 14px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
}

.slider .dots {
  text-align: center;
  margin-top: 10px;
}

.slider .dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  margin: 0 5px;
  background: #ccc;
}

.slider .dots button.active {
  background: #a0522d;
}

.hero {
  background: #fff3eb;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.hero .left p {
  font-size: 18px;
  color: #4b2e22;
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 15px;
  transition: transform .2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
}

.card .meta {
  margin-top: 10px;
}

.card .title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card h3 {
  font-size: 18px;
  margin: 0;
  color: #5a3b2e;
}

.card .desc {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
}

.card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.card .price {
  color: #b22222;
  font-weight: bold;
  font-size: 16px;
}

.card .btn-add {
  background: linear-gradient(135deg, #b76e50, #8b4513);
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.card .btn-add:hover {
  background: #3e281c;
}

.empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px;
  color: #777;
  font-size: 18px;
}

@media(max-width: 768px) {
  .slider {
    height: 200px;
  }

  .slider .nav button {
    font-size: 18px;
    padding: 6px 10px;
  }

  .hero .left p {
    font-size: 16px;
  }

  .grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .card img {
    height: 150px;
  }

  .card h3 {
    font-size: 16px;
  }

  .card .desc {
    font-size: 12px;
  }

  .card .price {
    font-size: 14px;
  }
}

/* Detail produk */
.detail-wrap {
  max-width: 1100px;
  margin: 40px auto;
  background: linear-gradient(180deg, #fff, #fffaf7);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(44, 44, 44, 0.08);
  padding: 28px;
}

.breadcrumb {
  font-size: 14px;
  color: #777;
  margin-bottom: 18px;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform .25s;
}

.main-img:hover {
  transform: scale(1.02);
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.thumbs img {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbs img.active {
  border-color: #a0522d;
}

.detail-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-title {
  font-size: 28px;
  color: #2b2b2b;
  margin: 0;
}

.detail-cat {
  font-size: 13px;
  color: #a0522d;
  background: #fff3eb;
  padding: 6px 10px;
  border-radius: 16px;
  display: inline-block;
}

.detail-desc {
  color: #4a4a4a;
  line-height: 1.7;
  margin-top: 8px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.detail-price {
  font-size: 26px;
  color: #b22222;
  font-weight: 700;
}

.stock {
  font-size: 13px;
  color: #3a3a3a;
}

.qty-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.qty {
  display: flex;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.qty button {
  background: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

.qty input {
  width: 64px;
  padding: 8px;
  border: 0;
  text-align: center;
  font-size: 15px;
}

.subtotal {
  margin-left: auto;
  color: #555;
  font-weight: 600;
}

.detail-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.btn-add, .btn-buy {
  padding: 12px 18px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}

.btn-add {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  color: #fff;
}

.btn-buy {
  background: linear-gradient(90deg, #ff8a5b, #ffb07b);
  color: #fff;
}

.related {
  margin-top: 28px;
}

.related h3 {
  margin: 0 0 12px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.related-card {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.related-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
}

@media(max-width: 900px) {
  .detail-content {
    grid-template-columns: 1fr;
  }

  .thumbs img {
    width: 64px;
    height: 48px;
  }
}

/* About */
.hero-about {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
  background: linear-gradient(180deg, #fff, #fff7f3);
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(20, 20, 20, 0.06);
}

.hero-about .copy h1 {
  font-size: 32px;
  margin: 0 0 10px;
  color: #8b4513;
}

.hero-about .copy p {
  margin: 0;
  color: #5a3b2e;
  line-height: 1.7;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.card-about {
  background: #fffaf6;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.card-about .material-icons {
  font-size: 36px;
  color: #d0893c;
  margin-bottom: 12px;
}

.card-about h3 {
  margin: 0 0 8px;
  color: #8b4513;
}

.card-about p {
  margin: 0;
  color: #5d4637;
  line-height: 1.6;
}

@media(max-width: 1000px) {
  .hero-about {
    grid-template-columns: 1fr 320px;
  }

  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 700px) {
  .hero-about {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .hero-about .art {
    order: -1;
  }

  .grid-cards {
    grid-template-columns: 1fr;
  }
}

/* Contact */
.contact-hero {
  background: linear-gradient(180deg, #fff, #fff7f3);
  padding: 36px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 24px;
  align-items: center;
}

.contact-hero h1 {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  margin-top: 20px;
}

.card {
  background: var(--card);
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.field {
  margin-bottom: 14px;
}

label {
  display: block;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}

input[type=text], input[type=email], textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  font-size: 15px;
}

textarea {
  min-height: 140px;
  resize: none;
}

.actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 10px 16px;
  border-radius: 10px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(90deg, #ff8a5b, #ffb07b);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.contact-info h3 {
  margin-top: 0;
  color: var(--accent);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

.info-list li {
  margin-bottom: 10px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  display: none;
  z-index: 999;
  transition: opacity 0.3s ease-in-out, bottom 0.3s ease-in-out;
  opacity: 0;
  bottom: -100px;
}

.toast.show {
  display: block;
  opacity: 1;
  bottom: 20px;
}

.toast.success {
  background: #28a745;
}

.toast.error {
  background: #e04a5a;
}

@media(max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    flex-direction: column;
  }

  .contact-hero img {
    max-width: 220px;
  }

  .btn {
    padding: 12px 20px; 
  }
}

:root {
  --bg: #e8f6fb;
  --accent: #8b4513;
  --muted: #6b4a36;
  --card: #fffaf6;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--muted);
  margin: 0;
  padding: 0;
}

.wrap {
  max-width: 1180px;
  margin: 36px auto;
  padding: 28px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
  background: linear-gradient(180deg, #fff, #fff7f3);
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(20, 20, 20, 0.06);
}

.hero .copy h1 {
  font-size: 32px;
  margin: 0 0 10px;
  color: var(--accent);
}

.hero .copy p {
  margin: 0;
  color: #5a3b2e;
  line-height: 1.7;
}

.hero .actions {
  margin-top: 18px;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(90deg, #ff8a5b, #ffb07b);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 8px 14px;
  margin-left: 10px;
}

.hero .art {
  display: flex;
  justify-content: center;
}

.hero .art img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.card {
  background: var(--card);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.card .material-icons {
  font-size: 36px;
  color: #d0893c;
  margin-bottom: 12px;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--accent);
}

.card p {
  margin: 0;
  color: #5d4637;
  line-height: 1.6;
}

@media(max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr 320px;
  }

  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* nota*/
* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
  color: #3d2b1f;
  margin: 0;
  padding: 0;
}

.nota-container {
  max-width: 700px;
  width: 100%;
  margin: 30px auto;
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.nota-header {
  text-align: center;
  margin-bottom: 25px;
}

.nota-header h2 {
  color: #8b4513;
  font-weight: 600;
  font-size: 22px;
  margin: 0;
}

.status-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 10px;
}

.status-pending { background: #ff9800; }
.status-dikirim { background: #0d6efd; }
.status-selesai { background: #198754; }

.info-section {
  background: #fff8f2;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.info-section p {
  margin: 5px 0;
  font-size: 15px;
}

.product-card {
  background: #fff8f2;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.product-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
}

.product-details {
  flex: 1;
}

.product-details h5 {
  margin: 0 0 5px 0;
  font-weight: 600;
  color: #8b4513;
  font-size: 16px;
}

.product-details p {
  margin: 2px 0;
  font-size: 14px;
}

.total-section {
  background: #fff3e6;
  padding: 15px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #8b4513;
  text-align: right;
  margin-top: 15px;
}

.btn-print {
  background: #8b4513;
  color: #fff;
  font-weight: 600;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.btn-print:hover {
  background: #5c2d10;
}

@media (max-width: 576px) {
  .nota-container {
    padding: 15px;
  }

  .product-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-card img {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
  }

  .product-details {
    width: 100%;
  }

  .total-section {
    font-size: 16px;
    text-align: center;
  }
}

/*cetak nota*/
body {
    background: #f5f5f5;
    padding: 20px;
}

.nota-container {
    width: 700px;          
    background: #fff;
    margin: auto;
    padding: 20px;
    font-family: monospace;
    font-size: 14px;
    border-radius: 8px;
}

.nota-header {
    text-align: center;
    margin-bottom: 10px;
}

.nota-header .logo {
    width: 70px;
    margin-bottom: 6px;
}

.nota-header h3 {
    margin: 0;
}

.sub {
    font-size: 13px;
    color: #555;
}

.divider {
    border-top: 1px dashed #aaa;
    margin: 12px 0;
}

.nota-info p,
.nota-total {
    display: flex;
    justify-content: space-between;
    margin: 6px 0;
}

.nota-items .item {
    margin-bottom: 10px;
}

.item-nama {
    font-weight: bold;
}

.item-detail {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-top: 3px;
}

.nota-total {
    font-size: 16px;
    font-weight: bold;
}

.nota-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
}

.btn-wrapper {
    display: flex !important;
    justify-content: center !important;
    margin-top: 25px;
}

#downloadNota {
    background-color: #299cf4 ;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 22px !important;
    font-size: 15px !important;
    border-radius: 8px !important;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

#downloadNota:hover {
    background-color: #084298 !important;
}


/* keranjang */
.cart-card {
  background: white;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 15px;
  align-items: center;
}

.cart-card img {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
}

.cart-card h5 {
  color: #333;
}

.cart-card p {
  color: #8b4513 !important;
  font-weight: 600;
}

.qty-box {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qty-box button {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 6px;
  background: #f0e0d8;
  font-weight: 600;
  cursor: pointer;
}
footer.checkout {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white !important;
  padding: 15px 20px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.12);
  color: #8b4513 !important;
}

footer.checkout .total-text {
  color: #8b4513 !important;
  font-weight: 600;
}

footer.checkout .total-harga {
  color: #8b4513 !important;
  font-weight: 700;
}

.btn-checkout {
  background: linear-gradient(135deg, rgb(64, 178, 212));
  color: white !important;
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
}

.btn-delete {
  color: #ff5b5b;
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
}

body footer.checkout,
body footer.checkout div,
body footer.checkout span {
  color: #8b4513 !important;
}

body footer.checkout .total-text {
  color: #8b4513 !important;
  font-weight: 600;
}

body footer.checkout .total-harga {
  color: #8b4513 !important;
  font-weight: 700;
}

body .cart-card .text-brown {
  color: #8b4513 !important;
  font-weight: 600;
}


body {
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
  color: #3d2b1f;
  margin: 0;
  padding: 0;
}

.nota-container {
  max-width: 700px;
  margin: 30px auto;
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nota-header {
  text-align: center;
  margin-bottom: 25px;
}

.nota-header h2 {
  color: #8b4513;
  font-weight: 600;
}

.status-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 10px;
}

.status-pending {
  background: #ff9800;
}

.status-dikirim {
  background: #0d6efd;
}

.status-selesai {
  background: #198754;
}

.info-section {
  background: #fff8f2;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.info-section p {
  margin: 5px 0;
  font-size: 15px;
}

.product-card {
  background: #fff8f2;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.product-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
}

.product-details {
  flex: 1;
}

.product-details h5 {
  margin: 0 0 5px 0;
  font-weight: 600;
  color: #8b4513;
  font-size: 16px;
}

.product-details p {
  margin: 2px 0;
  font-size: 14px;
}

.total-section {
  background: #fff3e6;
  padding: 15px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #8b4513;
  text-align: right;
  margin-top: 15px;
}

.btn-print {
  background: rgb(64, 178, 212);
  color: #fff;
  font-weight: 600;
  width: 100%;
}

.btn-print:hover {
  background: rgb(64, 178, 212);
}

@media (max-width: 576px) {
  .product-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-card img {
    width: 100%;
    max-width: 100%;
  }

  .product-details {
    width: 100%;
  }
}

/* Checkout */
body {
  font-family: 'Poppins', sans-serif;
  background: rgb(208, 235, 242);
  padding-bottom: 120px;
  margin: 0;
}

header {
  background: linear-gradient(90deg, rgb(64, 178, 212), #f5d5ab);
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.checkout-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.item-card {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  display: flex;
  gap: 15px;
  align-items: center;
}

.item-card img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

.item-info {
  flex-grow: 1;
}

footer.checkout {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 15px 20px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
  gap: 10px;
}

.btn-order {
  background: rgb(64, 178, 212);
  color: white;
  padding: 12px 22px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  min-width: 150px;
}

@media (max-width: 576px) {
  footer.checkout {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .btn-order {
    width: 100%;
  }

  .item-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .item-card img {
    margin-bottom: 8px;
  }
}

/* Pesanan */
body {
  font-family: 'Poppins', sans-serif;
  background: rgb(208, 235, 242);
  margin: 0;
  color: #3d2b1f;
}

header {
  background: linear-gradient(90deg, rgb(64, 178, 212), #f5d5ab);
  color: #fff;
  text-align: center;
  padding: 16px;
  font-weight: 600;
  font-size: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 15px;
}

.order-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.order-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.order-title {
  font-weight: 600;
  font-size: 20px;
  color: #8b4513;
  margin-bottom: 10px;
}

.status {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-top: 8px;
  text-transform: uppercase;
}

.status-pending {
  background: #ff9800;
}

.status-proses {
  background: #2196F3;
}

.status-dikirim {
  background: #0d6efd;
}

.status-selesai {
  background: #198754;
}

.status-siapdiambil {
  background: #795548;
}

.product-card {
  display: flex;
  gap: 15px;
  background: #fff8f2;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.product-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.product-info {
  flex: 1;
}

.product-info h6 {
  margin: 0 0 6px 0;
  font-weight: 600;
  color: #8b4513;
  font-size: 16px;
}

.product-info p {
  margin: 2px 0;
  font-size: 14px;
}

.btn-custom {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgb(64, 178, 212), rgb(64, 178, 212));
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 15px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: background 0.3s, transform 0.2s;
}

.btn-custom:hover {
  background: linear-gradient(135deg, #134b8b, #134b8b);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .product-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-card img {
    width: 100%;
    max-width: 100%;
  }
}

/* Produk*/
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: rgb(208, 235, 242);
  color: #3d2b1f;
}

.wrap {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 15px;
}

h2 {
  color: rgb(6, 6, 6);
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.card .meta {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card .title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card h3 {
  font-size: 18px;
  margin: 0;
  color: #5a3b2e;
}

.card .desc {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
}

.card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.card .price {
  color: #b22222;
  font-weight: bold;
  font-size: 16px;
}

.card .btn-add {
  background: linear-gradient(135deg, #b76e50, #8b4513);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.card .btn-add:hover {
  background: linear-gradient(135deg, #8b4513, #5c2d10);
  transform: translateY(-2px);
}

.empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px;
  color: #777;
  font-size: 18px;
}

@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card img {
    height: 180px;
  }

  .card .btn-add {
    width: 100%;
    padding: 10px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .card img {
    height: 150px;
  }

  .card h3 {
    font-size: 16px;
  }

  .card .desc {
    font-size: 14px;
  }

  .card .price {
    font-size: 14px;
  }
}
