/**
* Template Name: Yummy
* Template URL: https://bootstrapmade.com/yummy-bootstrap-restaurant-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

.app-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.app-main {
  flex: 1;
}
/* custom */
/* Gambar sama tinggi & lebar */
.product-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.product-img:hover {
  transform: scale(1.03);
}
.product-card {
  font-size: 15px;
  min-width: 240px;
  max-width: 240px;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}
.product-card:not(.unavailable):hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}
.product-card:not(.unavailable):hover .product-img {
  transform: scale(1.05);
}
.img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
  font-size: 1.6rem;
  color: white;
  opacity: 0;
   pointer-events: none;
}

.product-card:not(.unavailable):hover .img-overlay {
  background: rgba(0,0,0,0.3);
  opacity: 1;
}

.img-modal-box {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: scaleIn 0.25s ease;
}

.img-modal-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.img-modal-info {
  padding: 20px 24px 24px;
}

.img-modal-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.img-modal-info .ingredients {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.img-modal-info .price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #ce1212;
  margin-bottom: 0;
}

.img-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: background 0.2s;
}

.img-modal-close:hover {
  background: rgba(0,0,0,0.8);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Skeleton */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

.skeleton-tab {
  width: 120px;
  height: 40px;
}

.skeleton-img {
  width: 100%;
  height: 250px;
}

.skeleton-title {
  width: 60%;
  height: 20px;
}

.skeleton-text {
  width: 90%;
  height: 15px;
}

.skeleton-price {
  width: 40%;
  height: 20px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
/* syarat order */
.how-to-order {
  background: #fff;
  padding: 0 0 80px;
  margin-top: -50px; 
}

/* ── Grid ── */
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .steps-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }
}
@media (max-width: 480px) {
  .steps-wrapper { grid-template-columns: 1fr; }
}

/* ── Item ── */
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

/* ── Head: garis + lingkaran ── */
.step-head {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
}

.step-line {
  flex: 1;
  height: 2px;
  background: #e8e8e8;
}
.step-line.invisible {
  background: transparent;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  position: relative;
  z-index: 1;
}

/* ── Body ── */
.step-body {
  padding: 0 8px;
}

.step-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.7;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.83rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 14px;
}

.step-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1.5px solid;
  background: transparent;
}

/* ── CTA ── */
.how-to-cta {
  text-align: center;
  padding: 36px 20px;
  border-top: 1px solid #f0f0f0;
}
.how-to-cta p {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 18px;
}
.cta-btn-wa {
  display: inline-flex;
  align-items: center;
  background: #25d366;
  color: #fff;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  margin: 0 6px 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.cta-btn-wa:hover { background: #1db954; transform: translateY(-2px); color: #fff; }

.cta-btn-menu {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #333;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  margin: 0 6px 8px;
  border: 1.5px solid #e0e0e0;
  transition: all 0.25s;
}
.cta-btn-menu:hover {
  border-color: var(--accent-color, #ce1212);
  color: var(--accent-color, #ce1212);
  transform: translateY(-2px);
}
/* end */
.cart-icon {
  position: relative;
  font-size: 1.4rem;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.cart-icon:hover { color: #ce1212; }
.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ce1212;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-add-cart {
  background: #ce1212;
  color: white;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.btn-add-cart:hover { background: #a50e0e; }

/* ── Skeleton ── */
.carousel-skeleton-wrapper {
  display: flex;
  gap: 20px;
  overflow: hidden;
  padding: 8px 0;
}
.carousel-skeleton-item {
  min-width: 240px;
  flex-shrink: 0;
}
/* ── Carousel ── */
.product-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 4px 20px;
  scrollbar-width: none;
}
.product-carousel::-webkit-scrollbar { display: none; }

/* ── Arrow buttons ── */
.carousel-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background: white;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.carousel-arrow:hover {
  background: #ce1212;
  border-color: #ce1212;
  color: white;
}
/* Modal */
.img-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

.img-modal-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 520px;
  width: 100%;
  position: relative;
  animation: scaleIn 0.25s ease;
}
.img-modal-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.img-modal-info { padding: 20px 24px 24px; }
.img-modal-info h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.modal-description { color: #777; font-size: 0.9rem; margin-bottom: 10px; line-height: 1.6; }
.modal-price { font-weight: 800; font-size: 1.2rem; color: #ce1212; margin-bottom: 0; }
.img-modal-close {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.5); border: none; color: #fff;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 1; transition: background 0.2s;
}
.img-modal-close:hover { background: rgba(0,0,0,0.85); }

.product-img-wrapper {
  position: relative;
  overflow: hidden;
}
.unavailable-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.65);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
}

.unavailable .product-img {
  filter: grayscale(100%);
  opacity: 0.55;
}


.unavailable h4 {
  color: #aaa;
}

.unavailable .price {
  color: #aaa !important;
}
.btn-add-cart:not(:disabled):hover {
  background: #a50e0e;
  transform: scale(1.1);
}
/* ── Card Body ── */
.product-card-body {
  padding: 14px 16px 16px;
}
.product-name {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ce1212;
}

.btn-add-cart:disabled {
  background: #ccc !important;
  cursor: not-allowed;
}

/* cart view */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

/* loading cart */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(2px);
}
.checkout-loading-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  text-align: center;
  min-width: 280px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.checkout-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid #e2e8f0;
  border-top-color: #e53e3e;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1.25rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-title {
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 4px;
  color: #1a202c;
}
.loading-sub {
  font-size: 13px;
  color: #718096;
  margin: 0;
}
.loading-steps {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  text-align: left;
}
.loading-steps li {
  font-size: 13px;
  color: #a0aec0;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.loading-steps li.done   { color: #38a169; }
.loading-steps li.active { color: #1a202c; font-weight: 600; }
.step-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e2e8f0;
  flex-shrink: 0;
  transition: background 0.3s;
}
.loading-steps li.done   .step-dot { background: #38a169; }
.loading-steps li.active .step-dot {
  background: #e53e3e;
  animation: pulse-dot 1s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Qty control */
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
.qty-control button {
  background: #f5f5f5; border: none;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem;
}
.qty-control button:hover { background: #e0e0e0; }
.qty-control span { padding: 0 14px; font-weight: 600; min-width: 36px; text-align: center; }

.btn-modal-cart {
  flex: 1;
  background: #ce1212; color: white;
  border: none; border-radius: 8px;
  padding: 8px 16px; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.btn-modal-cart:hover { background: #a50e0e; }

/* ongkir */
.ongkir-option {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.ongkir-option:hover {
  border-color: #90cdf4;
  background: #ebf8ff;
}
.ongkir-option.active {
  border-color: #3182ce;
  background: #ebf8ff;
}

/* Toast */
.cart-toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a; color: white;
  padding: 12px 24px; border-radius: 30px;
  font-size: 0.9rem; z-index: 99999;
  animation: fadeIn 0.3s ease;
  white-space: nowrap;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.cart-page { background: #f8f8f8; min-height: 100vh; }
.cart-title { font-size: 2rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 2rem; }

.cart-item {
  display: flex;
  gap: 16px;
  background: white;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  align-items: center;
}
.cart-item-img { width: 90px; height: 90px; object-fit: cover; border-radius: 8px; }
.cart-item-info { flex: 1; }
.cart-item-info h5 { font-weight: 600; margin-bottom: 4px; }
.cart-item-price { color: #888; font-size: 0.9rem; margin: 0; }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.cart-item-subtotal { font-weight: 700; font-size: 1rem; margin: 0; }

.btn-remove {
  background: none; border: none;
  color: #aaa; cursor: pointer; font-size: 1rem;
  transition: color 0.2s;
}
.btn-remove:hover { color: #ce1212; }

.qty-control {
  display: flex; align-items: center;
  border: 1.5px solid #e0e0e0; border-radius: 8px; overflow: hidden;
}

.qty-control button {
  background: #f7f7f7; border: none;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; transition: background 0.2s;
}

.qty-control button:hover { background: #ebebeb; }
.qty-control span {
  padding: 0 16px; font-weight: 700;
  min-width: 40px; text-align: center;
}
.alert {
  position: relative !important;
  z-index: 0 !important;
}

.order-summary {
  position: relative !important;
  z-index: 1 !important;
}
.summary-title { font-size: 1rem; font-weight: 700; letter-spacing: 1px; }

.delivery-options { display: flex; gap: 12px; }
.delivery-option {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  padding: 12px; border: 2px solid #e0e0e0;
  border-radius: 10px; cursor: pointer;
  transition: all 0.2s; font-size: 0.85rem;
}
.delivery-option i { font-size: 1.4rem; }
.delivery-option.active { border-color: #ce1212; color: #ce1212; background: #fff5f5; }

.btn-checkout {
  background: #ce1212; color: white;
  border: none; border-radius: 8px;
  padding: 14px; font-weight: 700;
  font-size: 1rem; cursor: pointer;
  transition: background 0.2s;
}
.btn-checkout:hover { background: #a50e0e; }

/* invoice view */
/* ── Modal Overlay ──────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 2rem 1.75rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  position: relative;
}

/* ── Modal Transitions ──────────────────────── */
.modal-fade-enter-active,
.modal-fade-leave-active {
  transition: opacity 0.25s ease;
}
.modal-fade-enter-active .modal-box,
.modal-fade-leave-active .modal-box {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}
.modal-fade-enter-from,
.modal-fade-leave-to {
  opacity: 0;
}
.modal-fade-enter-from .modal-box {
  transform: scale(0.85) translateY(20px);
  opacity: 0;
}

/* ── Modal Isi ──────────────────────────────── */
.modal-icon {
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.modal-title {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: #1a1a1a;
}

.modal-subtitle {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #888;
  font-size: 0.8rem;
  transition: background 0.15s;
}
.modal-close:hover { background: #e0e0e0; color: #333; }

.modal-actions {
  display: flex;
  gap: 0.75rem;
  flex-direction: column;
}

/* ── Tombol Modal ───────────────────────────── */
.modal-btn {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}
.modal-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.modal-btn:active:not(:disabled) { transform: translateY(0); }
.modal-btn:disabled { opacity: 0.55; cursor: not-allowed; }

.btn-confirm-yes {
  background: #22c55e;
  color: #fff;
}
.btn-confirm-no {
  background: #f5f5f5;
  color: #555;
}

.btn-submit-review {
  background: #ef4444;
  color: #fff;
  margin-top: 1rem;
}

.btn-close-thanks {
  background: #f5f5f5;
  color: #333;
  margin-top: 0.5rem;
}

/* ── Bintang ────────────────────────────────── */
.star-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.star-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.1rem 0.15rem;
  color: #d1d5db;
  transition: color 0.15s, transform 0.15s;
  line-height: 1;
}
.star-btn:hover,
.star-btn.active,
.star-btn.hovered {
  color: #f59e0b;
  transform: scale(1.2);
}

.star-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f59e0b;
  margin-bottom: 1rem;
  min-height: 1.2em;
}

/* ── Textarea Review ────────────────────────── */
.review-textarea {
  width: 100%;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  resize: none;
  outline: none;
  transition: border-color 0.15s;
  color: #333;
  font-family: inherit;
}
.review-textarea:focus { border-color: #ef4444; }

.char-count {
  text-align: right;
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 0.25rem;
}

.review-error {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* ── Thanks Modal ───────────────────────────── */
.thanks-confetti {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
  animation: bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounce {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* ── wa-banner (dari komponen asli) ────────── */
.wa-banner {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
}

/* end invoice */


/* Swiper pagination */
:deep(.swiper-pagination) {
  margin-top: 10px;
  position: relative;
}
:deep(.swiper-pagination-bullet) {
  width: 8px;
  height: 8px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s;
}
:deep(.swiper-pagination-bullet-active) {
  background: var(--accent-color, #ce1212);
  width: 24px;
  border-radius: 4px;
}

/* ── Testimonial Card ── */
.testi-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  margin: 10px 16px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.11);
}

/* Dekorasi quote besar */
.testi-quote-icon {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-color, #ce1212);
  opacity: 0.08;
  font-family: Georgia, serif;
  font-weight: 900;
  pointer-events: none;
  user-select: none;
}

/* Bintang */
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.testi-stars i {
  color: #ffc107;
  font-size: 15px;
}

/* Komentar */
.testi-comment {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 1.5rem;
  font-style: italic;
}
/* testi section */
/* Profil */
.testi-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 1.25rem;
  border-top: 1px solid #f0f0f0;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.testi-meta h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 2px;
  color: #1a1a1a;
}
.testi-meta h4 {
  font-size: 0.78rem;
  color: #999;
  margin: 0;
  font-weight: 400;
}


/* ── Form Testimoni ── */
.btn-testi-toggle {
  background: none;
  border: 1.5px solid var(--accent-color, #ce1212);
  color: var(--accent-color, #ce1212);
  border-radius: 30px;
  padding: 0.5rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-testi-toggle:hover { background: var(--accent-color, #ce1212); color: #fff; }

.guest-form-box {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.guest-form-title { font-weight: 700; font-size: 1rem; margin-bottom: 1.25rem; color: #1a1a1a; }
.guest-field { margin-bottom: 1rem; }
.guest-field label { display: block; font-size: 0.8rem; font-weight: 600; color: #555; margin-bottom: 0.4rem; }
.guest-input, .guest-textarea {
  width: 100%; border: 1.5px solid #e5e7eb; border-radius: 10px;
  padding: 0.65rem 1rem; font-size: 0.875rem; outline: none;
  transition: border-color 0.15s; font-family: inherit;
}
.guest-input:focus, .guest-textarea:focus { border-color: var(--accent-color, #ce1212); }
.guest-textarea { resize: none; }
.char-count { text-align: right; font-size: 0.72rem; color: #aaa; margin-top: 0.2rem; }

.star-row { display: flex; gap: 0.3rem; margin-bottom: 0.3rem; }
.star-btn {
  background: none; border: none; font-size: 1.6rem; cursor: pointer;
  color: #d1d5db; transition: color 0.15s, transform 0.15s; line-height: 1; padding: 0;
}
.star-btn:hover, .star-btn.active, .star-btn.hovered { color: #f59e0b; transform: scale(1.2); }
.star-label { font-size: 0.8rem; font-weight: 600; color: #f59e0b; }

.btn-guest-submit {
  width: 100%; background: var(--accent-color, #ce1212); color: #fff; border: none;
  border-radius: 10px; padding: 0.75rem; font-size: 0.9rem;
  font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.15s; margin-top: 0.5rem;
}
.btn-guest-submit:hover:not(:disabled) { opacity: 0.88; transform: translateY(-1px); }
.btn-guest-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.guest-error { color: #ef4444; font-size: 0.8rem; margin-bottom: 0.5rem; }

.guest-success { text-align: center; padding: 1rem 0; }
.guest-success-icon { font-size: 3rem; margin-bottom: 0.5rem; }
.guest-success h6 { font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }
.guest-success p { color: #666; font-size: 0.875rem; }

.form-slide-enter-active, .form-slide-leave-active { transition: all 0.3s ease; overflow: hidden; }
.form-slide-enter-from, .form-slide-leave-to { opacity: 0; transform: translateY(-10px); }

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Amatic SC",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37373f; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ce1212; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #7f7f90;  /* The default color of the main navmenu links */
  --nav-hover-color: #ce1212; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #7f7f90; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ce1212; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f2f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1f1f24;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #37373f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  min-height: 64px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 90px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--default-font);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 36px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #1a1a2e !important;
    font-size: 0.89rem;
    padding: 6px 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    letter-spacing: 0.3px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 3px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    /* color :#1a6fd4 !important; */
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 80%, black 50%);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* search bar */
.header-search {
  display: flex;
  align-items: center;
  margin-right: 0;
  position: relative;
  max-width: 180px;
}

.search-toggle-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--nav-color, #555);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.search-toggle-btn:hover {
  color: var(--accent-color, #e8a045);
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  background: #f5f5f5;
  border-radius: 20px;
  border: 1.5px solid transparent;
}

.search-open .search-input-wrapper {
  width: 220px;
  opacity: 1;
  border-color: var(--accent-color, #e8a045);
  background: #fff;
}

.search-icon-inner {
  padding: 0 10px;
  color: #aaa;
  font-size: 14px;
  flex-shrink: 0;
}

.search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.88rem;
  color: #333;
  width: 100%;
  padding: 7px 0;
}

.search-clear {
  background: none;
  border: none;
  padding: 0 10px;
  color: #aaa;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.search-clear:hover { color: #555; }

@media (max-width: 768px) {
  .search-open .search-input-wrapper {
    width: 160px;
  }
}

.cart-preview-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: inherit;
  padding: 4px 6px;
  line-height: 1;
}

.cart-preview-btn .cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e53e3e;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ── Backdrop ── */
.cart-preview-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1040;
}

/* ── Panel ── */
.cart-preview-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: 380px;
  max-width: 95vw;
  background: #fff;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}

/* Slide transition */
.cart-slide-enter-active,
.cart-slide-leave-active {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-slide-enter-from,
.cart-slide-leave-to {
  transform: translateX(100%);
}

/* ── Header panel ── */
.cp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}
.cp-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cp-badge {
  background: #e53e3e;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}
.cp-close {
  background: none;
  border: 1px solid #eee;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #555;
  transition: background 0.2s;
}
.cp-close:hover { background: #f5f5f5; }

/* ── Empty ── */
.cp-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #aaa;
  gap: 12px;
  font-size: 0.9rem;
}
.cp-empty i { font-size: 2.5rem; }

/* ── Body (scroll) ── */
.cp-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cp-list {
  flex: 1;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Item ── */
.cp-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.cp-item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
  flex-shrink: 0;
}
.cp-item-info {
  flex: 1;
  min-width: 0;
}
.cp-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cp-item-price {
  font-size: 0.8rem;
  color: #888;
  margin: 0 0 6px;
}
.cp-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cp-qty button {
  width: 26px;
  height: 26px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #f9f9f9;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cp-qty button:hover { background: #eee; }
.cp-qty span {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}
.cp-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.cp-item-subtotal {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}
.cp-remove {
  background: none;
  border: none;
  color: #bbb;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 2px;
  transition: color 0.2s;
}
.cp-remove:hover { color: #e53e3e; }

/* ── Footer ── */
.cp-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid #eee;
  flex-shrink: 0;
}
.cp-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.cp-subtotal-val {
  font-weight: 700;
  font-size: 1rem;
}
.cp-checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #e53e3e;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.cp-checkout-btn:hover { background: #c53030; color: #fff; }

.cp-footer-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cp-clear-btn {
  flex: 1;
  padding: 10px;
  border: 1.5px solid #e74c3c;
  background: transparent;
  color: #e74c3c;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cp-clear-btn:hover {
  background: #e74c3c;
  color: #fff;
}

.cp-checkout-btn {
  flex: 2; 
}
/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --f-bg: #2a2f25;
  --f-bg-bottom: #1f2419;
  --f-accent: #e8c97a;
  --f-text: rgba(255, 255, 255, 0.8);
  --f-muted: rgba(255, 255, 255, 0.45);
  --f-border: rgba(255, 255, 255, 0.1);
  font-family: 'Segoe UI', system-ui, sans-serif;
}


.footer .icon {
  color: var(--f-accent);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 25px;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #EAB308;
  font-size: 16px;
  color: #EAB308;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/* ── Wavy Divider ── */
.footer-divider {
  color: #1a0a00;
  line-height: 0;
  margin-bottom: -2px;
}
.footer-divider svg {
  display: block;
  width: 100%;
  height: 40px;
}

/* ── Body ── */
.footer-body {
  background: #2D1B0E !important;
  padding: 60px 0 40px;
}
/* ── Main Grid ── */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.5fr 1.5fr;
  gap: 48px;
}
@media (max-width: 992px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 576px) {
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Brand Column ── */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.brand-emoji {
  font-size: 1.6rem;
  line-height: 1;
}
.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.brand-tagline {
  color: #EAB308;
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 12px;
}
.brand-desc {
  color: #fff;
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ── Social ── */
.social-links {
  display: flex;
  gap: 10px;
}


/* ── Column Title ── */
.col-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--f-border);
}

/* ── List ── */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--f-text);
  font-size: 0.88rem;
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-list li i {
  color: #EAB308;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-list a {
  color: var(--f-text);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-list a:hover { color: var(--f-accent); }

.list-label {
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.list-value { color: var(--f-text); font-size: 0.9rem; }
.list-value.accent {
  color: #EAB308;
  font-weight: 600;
  font-size: 1rem;
}
.mt-2 { margin-top: 8px !important; }

/* ── Payment ── */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.payment-badge {
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--f-border);
  color: var(--f-text);
  font-size: 0.78rem;
  background: rgba(255,255,255,0.05);
  transition: all 0.2s;
}
.payment-badge:hover {
  border-color: var(--f-accent);
  color: var(--f-accent);
}

.bca-card {
  border: 1.5px solid #e0e0e0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,108,200,0.07);
}
.bca-header {
  background: linear-gradient(135deg, #006cc8 0%, #004fa3 100%);
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bca-logo {
  height: 28px;
  background: #fff;
  border-radius: 4px;
  padding: 2px 6px;
}
.bca-label {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
}
.bca-body {
  padding: 16px 18px 8px;
}
.bca-row {
  margin-bottom: 12px;
}
.bca-field-label {
  display: block;
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.bca-value-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bca-value {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
}
.bca-rekening {
  font-size: 20px;
  letter-spacing: 2px;
  font-family: 'Courier New', monospace;
}
.bca-total {
  color: #dc3545;
  font-size: 17px;
}
.btn-copy {
  border: 1.5px solid #006cc8;
  color: #006cc8;
  background: transparent;
  border-radius: 20px;
  font-size: 12px;
  padding: 4px 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.btn-copy:hover  { background: #e8f0fe; }
.btn-copy.copied { border-color: #198754; color: #198754; }
.bca-note {
  background: #fffbea;
  border-top: 1px solid #f0e68c;
  padding: 10px 18px;
  font-size: 12px;
  color: #7a6000;
}
 
/* ===== Upload Card ===== */
.upload-card {
  border: 1.5px solid #e0e0e0;
  border-radius: 14px;
  padding: 20px;
  background: #fafafa;
}
.upload-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 14px;
}
.drop-zone {
  border: 2px dashed #b0b0b0;
  border-radius: 10px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 16px;
  transition: border-color .2s, background .2s;
  text-align: center;
}
.drop-zone:hover {
  border-color: #006cc8;
  background: #f0f6ff;
}
.drop-hint { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.proof-preview {
  max-width: 100%;
  max-height: 220px;
  border-radius: 8px;
  object-fit: contain;
  border: 1px solid #e0e0e0;
}
 
/* ===== Buttons ===== */
.btn-confirm {
  background: linear-gradient(135deg, #198754, #157347);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-confirm:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-confirm:hover:not(:disabled) { opacity: 0.9; }
 
.btn-outline-upload {
  border: 1.5px solid #6c757d;
  color: #6c757d;
  background: transparent;
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all .2s;
}
.btn-outline-upload:hover { background: #f0f0f0; }

/* ── Bottom Bar ── */
.footer-bottom {
  background-color: #24160C ;
  padding: 16px 0;
  border-top: 1px solid var(--f-border);
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 8px;
}
.copyright-text {
  color: var(--f-muted);
  font-size: 0.82rem;
  margin: 0;
}
.copyright-text strong { color: var(--f-accent); }

/* ── Scroll Top ── */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--f-accent);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  transition: all 0.4s;
  color: #2a2f25;
}
.scroll-top i { font-size: 22px; line-height: 0; }
.scroll-top:hover { opacity: 0.85; color: #2a2f25; }
.scroll-top.active { visibility: visible; opacity: 1; bottom: 20px; }
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

.social-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--f-muted);
  margin-bottom: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.social-section {
  margin-top: 4px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: var(--default-font);
}

.breadcrumb-bar {
  background-color: #f3f4f6;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 17px 0;
  margin-bottom: 2rem;
}
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 48px;
  font-weight: 500;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 500;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about .book-a-table {
  text-align: center;
  border: 4px solid color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 22px;
}

.about .book-a-table h3 {
  font-family: var(--default-font);
  margin: 0 0 0 0;
  font-size: 24px;
}

.about .book-a-table p {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 28px;
  margin: 0;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.why-us .why-box h3 {
  color: var(--contrast-color);
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.why-us .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .icon-box i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 30px 0;
  font-family: var(--default-font);
}

.why-us .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  position: relative;
  padding: 120px 0;
}

.stats img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.stats:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.stats .container {
  position: relative;
  z-index: 3;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--default-color);
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
}

.menu .nav-link {
  background-color: var(--background-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 15px;
  padding: 10px 5px;
  transition: 0.3s;
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--default-font);
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.menu .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
}

.menu .tab-content .menu-item {
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img {
  padding: 0 60px;
  margin-bottom: 15px;
}

.menu .tab-content .menu-item h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 5px;
  font-family: var(--default-font);
}

.menu .tab-content .menu-item .ingredients {
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--accent-color);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .container-fluid {
  padding: 0;
}

.events .event-item {
  background-size: cover;
  background-position: cente;
  min-height: 600px;
  padding: 30px;
}

@media (max-width: 575px) {
  .events .event-item {
    min-height: 500px;
  }
}

.events .event-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.events .event-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffffff;
  position: relative;
}

.events .event-item .price {
  color: #ffffff;
  border-bottom: 2px solid var(--accent-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.events .event-item .description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.events .swiper-wrapper {
  height: auto;
}

.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

.chefs .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.chefs .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.chefs .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}

.chefs .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.chefs .team-member .social a:hover {
  color: var(--default-color);
}

.chefs .team-member .social i {
  font-size: 18px;
}

.chefs .team-member .member-info {
  padding: 10px 15px 20px 15px;
}

.chefs .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  font-family: var(--default-font);
}

.chefs .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.chefs .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.chefs .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.chefs .team-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.book-a-table .reservation-form-bg {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.book-a-table .php-email-form {
  padding: 30px;
}

@media (max-width: 575px) {
  .book-a-table .php-email-form {
    padding: 20px;
  }
}

.book-a-table .php-email-form input[type=text],
.book-a-table .php-email-form input[type=email],
.book-a-table .php-email-form input[type=number],
.book-a-table .php-email-form input[type=date],
.book-a-table .php-email-form input[type=time],
.book-a-table .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.book-a-table .php-email-form input[type=text]:focus,
.book-a-table .php-email-form input[type=email]:focus,
.book-a-table .php-email-form input[type=number]:focus,
.book-a-table .php-email-form input[type=date]:focus,
.book-a-table .php-email-form input[type=time]:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.book-a-table .php-email-form input[type=text]::placeholder,
.book-a-table .php-email-form input[type=email]::placeholder,
.book-a-table .php-email-form input[type=number]::placeholder,
.book-a-table .php-email-form input[type=date]::placeholder,
.book-a-table .php-email-form input[type=time]::placeholder,
.book-a-table .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.book-a-table .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 14px 60px;
  transition: 0.4s;
  border-radius: 4px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border: 0;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  opacity: 1;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
}

.contact .info-item .icon {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
  font-family: var(--default-font);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
  /* color: var(--accent-color); */
  color : #EAB308;
  /* color: color-mix(in srgb, var(--default-color), transparent 50%); */
}

.contact .info-item .social-links a:hover {
     color: var(--accent-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* invoice menu */
/* ── Search ── */
.search-box {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid #e0e0e0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 13px 18px;
  font-size: 0.95rem;
  background: #fff;
  color: #222;
}
.search-btn {
  background: #e63946;
  color: #fff;
  border: none;
  padding: 13px 22px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 0.95rem;
}
.search-btn:hover { background: #c1121f; }
.search-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── WA Banner ── */
.wa-banner {
  background: #0d1f0d;
  border: 1px solid #25D366;
  border-radius: 10px;
  padding: 14px 18px;
  color: #ccc;
}

/* ── Invoice Card ── */
.invoice-card {
  background: #12122a;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  color: #e8e8f0;
}

/* ── Header ── */
.invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.store-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}
.store-address {
  font-size: 0.82rem;
  color: #888;
  margin-top: 3px;
}
.invoice-label {
  font-size: 1.1rem;
  font-weight: 800;
  color: #e63946;
  letter-spacing: 2px;
}
.invoice-number {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 2px;
}
.invoice-date {
  font-size: 0.8rem;
  color: #666;
  margin-top: 2px;
}

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 20px 0;
}

/* ── Customer ── */
.customer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.section-label {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.customer-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.customer-detail {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 2px;
}
.badge-lunas {
  display: inline-block;
  background: rgba(40, 167, 69, 0.15);
  color: #4caf7d;
  border: 1px solid rgba(40, 167, 69, 0.35);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.paid-date {
  font-size: 0.78rem;
  color: #666;
  margin-top: 6px;
}

/* ── Table ── */
.invoice-table {
  width: 100%;
  border-collapse: collapse;
}
.invoice-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: transparent;
}
.invoice-table td {
  font-size: 0.9rem;
  color: #ddd;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: transparent;
}
.invoice-table tbody tr:last-child td {
  border-bottom: none;
}

/* ── Totals ── */
.totals-box {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 16px;
}
.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #aaa;
  margin-bottom: 6px;
}
.total-final {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}
.total-amount {
  color: #e63946;
  font-size: 1.1rem;
}

/* ── Info ── */
.info-row {
  display: flex;
  justify-content: space-between;
}
.info-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ddd;
  margin-top: 4px;
}
.notes-box {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid #e63946;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 16px;
}
.thankyou-text {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: #555;
}

/* ── Action Buttons ── */
.action-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.action-btn {
  flex: 1;
  border: none;
  border-radius: 10px;
  padding: 13px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-download {
  background: red;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-download:hover { background: #1e1e3a; }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebe5d; }
.btn-search {
  background: blue;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}


/* ── Print ── */
@media print {
  .no-print { display: none !important; }
  .invoice-card { box-shadow: none !important; border: none !important; }
  body * { visibility: hidden; }
  #invoice-content, #invoice-content * { visibility: visible; }
  #invoice-content { position: absolute; left: 0; top: 0; width: 100%; }
}

/* ── Mobile ── */
@media (max-width: 576px) {
  .invoice-card { padding: 24px 20px; }
  .action-buttons { flex-direction: column; }
}

/* menu katalog */
/* ── Layout ── */
.katalog-page { background: #f8f8f6; min-height: 100vh; }

.katalog-page .container {
  max-width: 1400px;
}

.katalog-breadcrumb {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}
.katalog-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  color: #1a1a1a;
}

.katalog-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 240px; /* kiri dari 220px → 180px, kanan dari 260px → 240px */
  gap: 1.5rem;
  align-items: start;
  width: 100%;
}

/* ── Sidebar ── */
.katalog-sidebar, .katalog-cart { position: sticky; top: 80px; }

.sidebar-card, .cart-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  padding: 1.25rem;
}

.sidebar-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.category-list { list-style: none; padding: 0; margin: 0; }

.category-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  color: #444;
  transition: all 0.2s;
  margin-bottom: 2px;
}
.category-item:hover { background: #f5f5f3; color: #111; }
.category-item.active { background: #451A03; color: #fff; }
.category-item.active .cat-count { background: rgba(255,255,255,0.2); color: #fff; }

.cat-count {
  margin-left: auto;
  background: #f0f0ee;
  color: #666;
  font-size: 0.75rem;
  padding: 1px 7px;
  border-radius: 20px;
}

/* ── Main ── */
.result-info { font-size: 0.85rem; color: #666; }

.search-bar-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
}
.search-bar-inline i { color: #aaa; font-size: 0.85rem; }
.search-inline-input {
  border: none;
  outline: none;
  font-size: 0.85rem;
  width: 160px;
  background: transparent;
  color: #333;
}

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  min-width: 0; 
}

.product-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.product-card.unavailable { opacity: 0.6; }

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 1/1;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-img { transform: scale(1.04); }
.item-unavailable {
  opacity: 0.6;
}
.badge-unavailable {
  font-size: 0.7rem;
  color: #dc3545;
  font-weight: 500;
}
.btn-to-cart.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}
.unavailable-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.8rem; font-weight: 600;
}
.hover-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.25);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
  color: #fff; font-size: 1.4rem;
}
.product-card:hover .hover-overlay { opacity: 1; }

.product-info { padding: 0.75rem; }
.product-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.product-price { font-size: 0.85rem; font-weight: 700; color: #c0392b; }

.btn-add-cart {
  width: 30px; height: 30px;
  border-radius: 8px;
  border: 1px solid #1a1a1a;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.btn-add-cart:hover { background: #333; }
.btn-add-cart:disabled { background: #ccc; border-color: #ccc; cursor: not-allowed; }

/* ── Empty State ── */
.empty-state {
  text-align: center;
  padding: 4rem 0;
  color: #bbb;
}
.empty-state i { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }
.empty-state p { font-size: 0.9rem; }

/* ── Cart ── */
.cart-badge-count {
  background: #c0392b;
  color: #fff;
  font-size: 0.7rem;
  padding: 1px 6px;
  border-radius: 20px;
  margin-left: 4px;
}

.cart-empty {
  text-align: center;
  padding: 1.5rem 0;
  color: #ccc;
}
.cart-empty i { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.cart-empty p { font-size: 0.85rem; margin: 0; }

.cart-item-list { list-style: none; padding: 0; margin: 0; }

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-item-thumb {
  width: 40px; height: 40px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.cart-item-detail { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price { font-size: 0.75rem; color: #888; margin: 0; }

.cart-item-actions {
  display: flex; align-items: center; gap: 4px; flex-shrink: 0;
}
.qty-btn {
  width: 22px; height: 22px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  border-radius: 5px;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.qty-btn:hover { background: #e8e8e8; }
.qty-val { font-size: 0.8rem; font-weight: 600; min-width: 16px; text-align: center; }

.cart-divider { margin: 0.75rem 0; border-color: #eee; }
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem;
  color: #444;
}
.subtotal-val { font-weight: 700; color: #c0392b; }

.btn-to-cart {
  background: #ce1212;
  color: #fff !important;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-to-cart:hover { background: var(--accent-color); }

/* ── Skeleton ── */
.sk-title { height: 14px; width: 60%; }
.sk-cat-item { height: 36px; width: 100%; border-radius: 8px; }
.sk-img { height: 160px; width: 100%; border-radius: 10px; }
.sk-name { height: 14px; width: 80%; }
.sk-price { height: 14px; width: 45%; }
.product-card-skeleton { background: #fff; border-radius: 12px; border: 1px solid #eee; padding: 0.75rem; }


/* ── Toast ── */
.cart-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: #1a1a1a; color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  z-index: 99999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}


.desktop-only { display: block; }
.mobile-only { display: none; }

/* Dropdown */
.category-dropdown { position: relative; }

.cat-dropdown-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.85rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  font-size: 0.88rem;
  color: #333;
  cursor: pointer;
  font-weight: 500;
}

.cat-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 100;
  overflow: hidden;
}

.cat-dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
  color: #444;
  cursor: pointer;
  transition: background 0.15s;
}
.cat-dropdown-item:hover { background: #f5f5f3; }
.cat-dropdown-item.active { background: #1a1a1a; color: #fff; }
.cat-dropdown-item.active .cat-count { background: rgba(255,255,255,0.2); color: #fff; }
@media (max-width: 1200px) {
  .katalog-layout {
    grid-template-columns: 180px minmax(0, 1fr) 220px;
    gap: 0.75rem;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .katalog-layout {
    grid-template-columns: 1fr;
  }
  .katalog-sidebar { position: static; }
  .katalog-cart { position: static; }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }

  .katalog-layout { grid-template-columns: 1fr; }
  .katalog-sidebar { position: static; }
  .katalog-cart { position: static; }
  .katalog-main { min-width: 0; }

  .product-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .product-grid::-webkit-scrollbar { display: none; }
  .product-card { flex-shrink: 0; width: 160px; }

  .search-bar-inline { width: 100%; }
  .search-inline-input { width: 100%; }

  .d-flex.justify-content-between.align-items-center.mb-3 {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 8px;
  }
}

@media (max-width: 400px) {
  .product-card { width: 140px; }
}

/* filter harga katalog */

.price-range-wrapper {
  position: relative;
  height: 20px;
  margin: 0.75rem 0 0.5rem;
}

.price-slider {
  position: absolute;
  width: 100%;
  height: 4px;
  appearance: none;
  background: transparent;
  pointer-events: none;
  outline: none;
}

.price-slider::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px #1a1a1a;
  pointer-events: all;
  cursor: pointer;
}

.price-slider::-webkit-slider-runnable-track {
  height: 4px;
  background: #e0e0e0;
  border-radius: 4px;
}

.price-range-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 600;
  color: #c0392b;
  margin-top: 0.5rem;
}

.btn-reset-price {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.35rem;
  font-size: 0.78rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #f5f5f5;
  cursor: pointer;
  color: #555;
  transition: background 0.2s;
}
.btn-reset-price:hover { background: #eee; }

.price-range-inputs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0.75rem 0 0.5rem;
}

.price-slider-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-slider-label {
  font-size: 0.72rem;
  color: #888;
  width: 24px;
  flex-shrink: 0;
}

.price-slider-single {
  width: 100%;
  height: 4px;
  accent-color: #1a1a1a;
  cursor: pointer;
}

/* pagination katalog */
.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-size: 0.85rem;
  color: #444;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-btn:hover:not(:disabled) { background: #f5f5f3; border-color: #bbb; }
.page-btn.active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.page-ellipsis {
  font-size: 0.85rem;
  color: #aaa;
  padding: 0 4px;
}


/* banner pending payment */
.pending-banner {
  background: #faeeda;
  border-bottom: 1px solid #EF9F27;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1040;
}
.pending-banner.urgent {
  background: #FCEBEB;
  border-bottom-color: #E24B4A;
}
.pending-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pending-banner-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #EF9F27;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.urgent .pending-banner-icon {
  background: #E24B4A;
}
.pending-banner-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.pending-banner-title {
  font-size: 13px;
  font-weight: 600;
  color: #633806;
}
.urgent .pending-banner-title {
  color: #501313;
}
.pending-banner-sub {
  font-size: 12px;
  color: #854F0B;
}
.urgent .pending-banner-sub {
  color: #791F1F;
}
.pending-banner-btn {
  background: #EF9F27;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.pending-banner-btn:hover { opacity: 0.85; }
.urgent .pending-banner-btn {
  background: #E24B4A;
}
.pending-banner-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #854F0B;
  font-size: 13px;
  padding: 0;
  flex-shrink: 0;
  opacity: 0.7;
}
.urgent .pending-banner-close { color: #791F1F; }
.pending-banner-close:hover { opacity: 1; }

/* ── Transition ─────────────────────────────── */
.banner-slide-enter-active,
.banner-slide-leave-active {
  transition: all 0.3s ease;
}
.banner-slide-enter-from,
.banner-slide-leave-to {
  opacity: 0;
  transform: translateY(-100%);
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 576px) {
  .pending-banner-sub { display: none; }
}

.timer-box {
  background: #faeeda;
  border: 1px solid #EF9F27;
  border-radius: 10px;
  padding: 12px 16px;
}
.timer-box.urgent {
  background: #FCEBEB;
  border-color: #E24B4A;
}
.timer-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.timer-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #EF9F27;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}
.urgent .timer-icon {
  background: #E24B4A;
}
.timer-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.timer-label {
  font-size: 12px;
  color: #854F0B;
  font-weight: 500;
}
.urgent .timer-label {
  color: #791F1F;
}
.timer-countdown {
  font-size: 18px;
  font-weight: 700;
  color: #633806;
  letter-spacing: 0.5px;
}
.urgent .timer-countdown {
  color: #A32D2D;
}
.timer-warning {
  font-size: 11px;
  color: #791F1F;
  margin: 8px 0 0;
  text-align: center;
}

/* why us section */
.why-us {
  padding: 80px 0;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e63946;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-sub {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Card */
.wcu-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s, border-color 0.25s;
}
.wcu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
}

.wcu-card-accent {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
}

.wcu-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.wcu-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: black;
  margin-bottom: 10px;
}

.wcu-card-desc {
  font-size: 0.875rem;
  color: #999;
  line-height: 1.7;
  margin-bottom: 16px;
}

.wcu-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}

/* Promise bar */
.wcu-promise {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.wcu-promise-text {
  font-size: 0.875rem;
  color: #999;
  line-height: 1.6;
  margin: 0;
}

.wcu-promise-text strong {
  color: #fff;
  font-weight: 600;
}