@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* CSS Variables */
:root {
  --merah: #c0392b;
  --merah-gelap: #922b21;
  --merah-terang: #e74c3c;
  --hijau: #1a6b3c;
  --hijau-muda: #27ae60;
  --krem: #fdf6ec;
  --putih: #ffffff;
  --abu-gelap: #2c2c2c;
  --abu-sedang: #555555;
  --abu-muda: #f4f4f4;
  --bayangan: 0 8px 32px rgba(0,0,0,0.12);
  --bayangan-kuat: 0 16px 48px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-besar: 24px;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--abu-gelap);
  background: var(--putih);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
}

img { max-width: 100%; }

a { text-decoration: none; }

/* NAVBAR */
.navbar {
  padding: 16px 0;
  background: transparent;
  transition: all 0.4s ease;
  z-index: 99;
}

.navbar.scroll-nav-active {
  background: var(--putih) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 10px 0;
}

.navbar.scroll-nav-active .nav-link,
.navbar.scroll-nav-active .navbar-brand {
  color: var(--abu-gelap) !important;
}

.navbar-brand img {
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  transition: transform 0.3s;
}
.navbar-brand img:hover { transform: rotate(5deg) scale(1.05); }

.nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: all 0.25s;
  font-size: 18px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--putih) !important;
  background: rgba(255,255,255,0.15);
}

.navbar.scroll-nav-active .nav-link:hover,
.navbar.scroll-nav-active .nav-link.active {
  color: var(--merah) !important;
  background: rgba(192,57,43,0.08);
}

.btn-cart {
    position: relative;
    border-radius: 10px;
    padding: 8px 12px;
    color: #333;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(98, 37, 37, 0.1);
    transition: 0.3s;
}

.btn-login {
  background: #1eab2e;
  color: black;
  border: none;
  padding: 10px 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  transition: all 0.25s;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: #fff;
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 50%;
}

.btn-login:hover {
  background: var(--merah-gelap);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192,57,43,0.35);
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.5);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* HERO SECTION */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(26,107,60,0.88) 0%, rgba(97, 122, 110, 0.82) 100%),
    url('/asset/image/3.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.9s ease both;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--putih);
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-title span { color: #ffd166; }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero-btn-group { 
  display: flex; 
  gap: 14px; 
  flex-wrap: wrap; 
}

.btn-hero-primary {
  background: var(--putih);
  color: var(--merah) !important;
  padding: 13px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-hero-primary:hover {
  background: var(--krem);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.btn-hero-outline {
  background: transparent;
  color: var(--putih) !important;
  padding: 13px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.3s;
}

.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--putih);
}

.hero-stats {
  display: flex;
  gap: 5px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.stat-item {
  color: var(--putih);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 0;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1px;
  margin-top: 1px;
}

.hero-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  align-self: center;
}

/* STATS CARD SECTION */
#stats-cards {
  margin-top: -50px;
  position: relative;
  z-index: 10;
  padding-bottom: 0;
}

.stat-card {
  background: var(--putih);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--bayangan);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
  border-top: 4px solid transparent;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease both;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; border-top-color: var(--merah); }
.stat-card:nth-child(2) { animation-delay: 0.2s; border-top-color: var(--hijau); }
.stat-card:nth-child(3) { animation-delay: 0.3s; border-top-color: #e67e22; }
.stat-card:nth-child(4) { animation-delay: 0.4s; border-top-color: #2980b9; }

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bayangan-kuat);
}

.stat-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.icon-merah { background: rgba(192,57,43,0.1); }
.icon-hijau { background: rgba(26,107,60,0.1); }
.icon-oranye { background: rgba(230,126,34,0.1); }
.icon-biru { background: rgba(41,128,185,0.1); }

.stat-card-info h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--abu-sedang);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.stat-card-info p {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--abu-gelap);
  margin: 0;
  line-height: 1.2;
}

/* CATALOG / PRODUK SECTION */
#katalog {
  padding: 80px 0;
  background: var(--krem);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  background: rgba(192,57,43,0.1);
  color: var(--merah);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 90;
  color: var(--abu-gelap);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-title span { 
  color: var(--merah); 
}

.section-desc {
  font-size: 1rem;
  color: var(--abu-sedang);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Filter Pills */
.filter-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.pill {
  padding: 7px 20px;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s;
  background: var(--putih);
  color: var(--abu-sedang);
  border-color: #ddd;
}

.pill:hover, .pill.active {
  background: var(--merah);
  color: var(--putih);
  border-color: var(--merah);
}

/* Produk Cards */
.produk-card {
  background: var(--putih);
  border-radius: var(--radius-besar);
  overflow: hidden;
  box-shadow: var(--bayangan);
  transition: all 0.3s;
  margin-bottom: 28px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;

}
.produk-item {
    margin-bottom: 25px;
}

.produk-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--bayangan-kuat);
}

.produk-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--merah);
  color: var(--putih);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 2;
}

.produk-badge.hijau { 
  background: var(--hijau); 
}

.produk-badge.oranye { 
  background: #e67e22; 
}

.produk-img-wrap {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5e9, #fff3e0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.produk-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.produk-card:hover .produk-img-wrap img { 
  transform: scale(1.08); 
}

.produk-img-placeholder {
  font-size: 4rem;
  opacity: 0.4;
}

.produk-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}


.produk-jenis {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--hijau);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.produk-nama {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--abu-gelap);
  margin-bottom: 8px;
  line-height: 1.3;
}

.produk-desc {
  font-size: 0.86rem;
  color: var(--abu-sedang);
  line-height: 1.6;
  margin-bottom: 16px;
}

.produk-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 0px;
  font-size: 0.8rem;
  color: var(--abu-sedang);
}

.produk-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.produk-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}

.produk-harga {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--merah);
}

.produk-harga small {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--abu-sedang);
  font-weight: 400;
}

.btn-pesan {
  background: var(--merah);
  color: var(--putih);
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-pesan:hover {
  background: var(--merah-gelap);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192,57,43,0.3);
}

/* CARA PEMESANAN SECTION */
#cara-pesan {
  padding: 50px 0;  
}

.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  align-items: flex-start;
  animation: fadeInLeft 0.6s ease both;

}

.step-item:nth-child(2) { 
  animation-delay: 0.1s; 
}

.step-item:nth-child(3) { 
  animation-delay: 0.2s; 
}

.step-item:nth-child(4) { 
  animation-delay: 0.3s; 
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--merah), var(--merah-gelap));
  color: var(--putih);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(192,57,43,0.3);
}

.step-content h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--abu-gelap);
  margin-bottom: 1px;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--abu-sedang);
  line-height: 1.6;
  margin: 0;
}

/* form pemesanan*/
.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--abu-gelap);
  margin-bottom: 6px;
}

.form-control, .form-select {
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 0.92rem;
  transition: all 0.25s;
  background: #fafafa;
}

.form-control:focus, .form-select:focus {
  border-color: var(--merah);
  box-shadow: 0 0 0 4px rgba(192,57,43,0.1);
  background: var(--putih);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--merah), var(--merah-gelap));
  color: var(--putih);
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.4);
}

.kontak-info {
  color: var(--putih);
  padding: 20px 0;
}

.kontak-info h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.kontak-info p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 32px;
}

.kontak-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text h6 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.65;
  margin-bottom: 4px;
}

.info-text p {
  font-size: 0.93rem;
  opacity: 1;
  margin: 0;
  line-height: 1.4;
}

/* BERITA SECTION */
#berita {
  padding: 80px 0;
  background: var(--krem);
}

.berita-card {
  background: var(--putih);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--bayangan);
  transition: all 0.3s;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.berita-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bayangan-kuat);
}

.berita-img {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5e9, #fff3e0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.berita-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.berita-card:hover .berita-img img { transform: scale(1.06); }

.berita-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.berita-tanggal {
  font-size: 0.78rem;
  color: var(--abu-sedang);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.berita-judul {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--abu-gelap);
  margin-bottom: 10px;
  line-height: 1.4;
}

.berita-preview {
  font-size: 0.86rem;
  color: var(--abu-sedang);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.btn-selengkapnya {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--merah);
  font-weight: 600;
  font-size: 0.86rem;
  transition: gap 0.2s;
}

.btn-selengkapnya:hover { gap: 10px; }

/* ABOUT / JOIN SECTION */
#tentang {
  padding: 80px 0;
  background: var(--putih);
}

.stripe {
  width: 4px;
  height: 28px;
  background: linear-gradient(to bottom, var(--merah), var(--merah-terang));
  border-radius: 4px;
}

.tagline-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--merah);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tentang-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
}

.tentang-desc {
  font-size: 0.95rem;
  color: var(--abu-sedang);
  line-height: 1.8;
  margin-bottom: 24px;
}

.tentang-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.tentang-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--abu-sedang);
}

.tentang-highlights li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(26,107,60,0.12);
  color: var(--hijau);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.tentang-img-wrap {
  border-radius: var(--radius-besar);
  overflow: hidden;
  box-shadow: var(--bayangan-kuat);
}

.tentang-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* FOOTER */
footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--putih);
  margin-bottom: 12px;
}

.footer-about {
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-heading {
    font-size: 22px;
    font-weight: 600;
}
.footer-logo-text{
    font-size: 28px;
}

.footer-sosmed { display: flex; gap: 10px; }

.sosmed-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: var(--putih);
}

.sosmed-btn:hover {
  background: var(--merah);
  transform: translateY(-2px);
  color: var(--putih);
}

.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--putih);
  margin-bottom: 18px;
}

.footer-links { list-style: none; padding: 0; }

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--putih);
  gap: 10px;
}

.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  opacity: 0.5;
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--putih); }

/* MODAL PEMESANAN */
.modal-header {
  background: linear-gradient(135deg, var(--merah), var(--merah-gelap));
  color: var(--putih);
  border-bottom: none;
}

.modal-header .btn-close { filter: invert(1); }

.modal-title-custom {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
}

/* TOAST NOTIFICATION */
.toast-container { z-index: 9999; }

/* BACK TO TOP */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--merah);
  color: var(--putih);
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(192,57,43,0.4);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 999;
}

#backToTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.5);
}

#backToTop.show { display: flex; }

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-stats { gap: 20px; }
  .tentang-img-wrap img { height: 300px; }
  .nav-link { color: var(--abu-gelap) !important; }
  .navbar { background: var(--putih) !important; }
  .navbar-brand img { border-color: transparent; }
}

@media (max-width: 767px) {
  #hero { min-height: 90vh; }
  .hero-title { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 14px; }
  .hero-divider { display: none; }
  .cara-pesan-visual { padding: 32px 24px; }
  .kontak-form-card { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* TRACKING PAGE STYLE */

body {
  background: #f8f9fa;
  font-family: Arial, sans-serif;
}

/* CARD */
.card-tracking {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* PROGRESS BAR */
.progress-container {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  position: relative;
}

.progress-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 5px;
  background: #ddd;
  transform: translateY(-50%);
  z-index: 0;
}

.progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 5px;
  background: #28a745;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.4s ease;
}

/* HP MODE */
@media (max-width: 768px) {
  .brand-subtitle {
    display: none;
  }

  .brand-title {
    font-size: 13px;
  }

  .navbar-brand img {
    width: 42px;
    height: 42px;
  }

  .navbar-collapse {
    background: white;
    padding: 10px;
    border-radius: 10px;
  }
}

/* FIX HAMBURGER ICON BIAR KELIHATAN */
.navbar-toggler {
  border: none;
}

/* STEP */
.progress-step {
  z-index: 2;
  background: #fff;
  border: 3px solid #ddd;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.progress-step.active {
  border-color: #28a745;
  background: #28a745;
  color: white;
}

/* LABEL */
.step-label {
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
}

/* STATUS TEXT */
.status-pending {
  color: orange;
  font-weight: bold;
}

.status-diproses {
  color: #0d6efd;
  font-weight: bold;
}

.status-selesai {
  color: #28a745;
  font-weight: bold;
}

.map-responsive iframe {
  width: 100%;
  height: 130px;
  border-radius: 8px;
}


.product-card {
  border-radius: 14px;
  overflow: hidden;
  transition: 0.25s ease;
  background: #fff;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.product-img {
  height: 180px;
  object-fit: cover;
}

.product-card .card-body {
  padding: 12px;
}


.navbar-katalog{
  color: black !important;
    
}

/* KHUSUS HALAMAN KATALOG */
.page-katalog .nav-link{
  color: #000 !important;
  font-weight: 600;
}

.page-katalog .navbar-brand div{
  color: #000 !important;
}

.page-katalog .btn-cart{
  color: #000 !important;
  border-color: #000 !important;
}

.page-katalog .btn-login{
  background: #000 !important;
  color: #fff !important;
}

.page-katalog{
  padding-top: 90px;
}

.produk-img-wrap img{
  height: 215px;
  width: 100%;
  object-fit: cover;
}


/*css keranjang */
.cart-wrap {
  padding-top: 90px;
  padding-bottom: 4rem;
  min-height: 100vh;
  background: #f7f7f7;
}

.cart-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.cart-header .icon-box {
  width: 36px;
  height: 36px;
  background: #fff0ed;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.cart-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 16px;
  align-items: start;
}

@media (max-width: 768px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

.card-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  overflow: hidden;
}

.card-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 0.5px solid #f0f0f0;
  background: #fafafa;
}

.card-box-header span {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.item-count-badge {
  background: #ee4d2d;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 20px;
}

.item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 0.5px solid #f5f5f5;
  transition: background .12s;
}

.item-row:last-child {
  border-bottom: none;
}

.item-row:hover {
  background: #fafafa;
}

.item-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: #f5f5f5;
  border: 0.5px solid #eee;
  object-fit: cover;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.item-info {
  flex: 1;
  min-width: 0;
}

.item-name {
  font-size: 13px;
  font-weight: 600;
  color: #222;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-price-each {
  font-size: 12px;
  color: #aaa;
}

.item-qty {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.item-right {
  text-align: right;
  flex-shrink: 0;
}

.item-total {
  font-size: 14px;
  font-weight: 700;
  color: #ee4d2d;
  margin-bottom: 8px;
}

.btn-hapus {
  background: none;
  border: 0.5px solid #eee;
  color: #aaa;
  font-size: 12px;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 6px;
  transition: all .12s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: inherit;
}

.btn-hapus:hover {
  background: #fef2f2;
  color: #ee4d2d;
  border-color: #fca5a5;
}

.summary-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  padding: 18px 16px;
  position: sticky;
  top: 90px;
}

.summary-title {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin-bottom: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}

.summary-row.total {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  border-top: 0.5px solid #f0f0f0;
  padding-top: 12px;
  margin-top: 6px;
}

.summary-row.total span:last-child {
  color: #ee4d2d;
}

.btn-clear {
  display: block;
  width: 100%;
  padding: 9px;
  background: transparent;
  color: #aaa;
  font-size: 12px;
  font-weight: 500;
  border: 0.5px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 14px;
  text-align: center;
  transition: all .12s;
  font-family: inherit;
}

.btn-clear:hover {
  background: #fef2f2;
  color: #ee4d2d;
  border-color: #fca5a5;
}

.empty-cart {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  text-align: center;
  padding: 5rem 2rem;
}

.empty-cart .empty-icon {
  font-size: 52px;
  margin-bottom: 12px;
}

.empty-cart p {
  font-size: 13px;
  color: #bbb;
}

/*my-ordes.blade*/
.pesanan-wrap{
  padding-top:90px;
  padding-bottom:3rem;
  min-height:100vh;
  background:#f7f7f7;
}

.pesanan-header{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:1rem;
}

.pesanan-header h2{
  font-size:20px;
  font-weight:700;
  margin:0;
}

.icon-box{
  width:40px;
  height:40px;
  border-radius:10px;
  background:#fff0ed;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}

.tabs{
  display:flex;
  gap:8px;
  overflow:auto;
  margin-bottom:1rem;
  background:#fff;
  padding:8px;
  border-radius:10px;
}

.tab{
  text-decoration:none;
  font-size:12px;
  padding:6px 14px;
  border-radius:8px;
  color:#666;
  white-space:nowrap;
}

.tab.active{
  background:#ee4d2d;
  color:#fff;
  font-weight:600;
}

.order-card{
  background:#fff;
  border-radius:14px;
  margin-bottom:14px;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.order-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 16px;
  border-bottom:1px solid #f1f1f1;
  background:#fafafa;
}

.shop{
  font-size:13px;
  font-weight:600;
}

.status{
  font-size:11px;
  padding:5px 12px;
  border-radius:20px;
  font-weight:700;
}
.pending{    
  background:#fff7ed;    
  color:#c2410c;
}

.processing{    
  background:#eff6ff;    
  color:#1d4ed8;
}

.shipped{    
  background:#ecfeff;    
  color:#0f766e;
}

.completed{
  background:#f0fdf4;
  color:#15803d;
}

.cancelled{
  background:#fef2f2;
  color:#b91c1c;
}

.order-body{
  display:flex;
  gap:14px;
  padding:14px 16px;
}

.thumb{
  width:70px;
  height:70px;
  border-radius:10px;
  object-fit:cover;
  background:#f5f5f5;
  border:1px solid #eee;
}

.mid{
  flex:1;
}

.pname{
  font-size:14px;
  font-weight:700;
  margin-bottom:4px;
}

.meta{
  font-size:12px;
  color:#777;
  margin-bottom:4px;
}

.pay{
  margin-top:6px;
  font-size:12px;
  font-weight:600;
}

.pay-paid{
  color:#16a34a;
}

.pay-rejected{
  color:#dc2626;
}

.pay-processing{
  color:#2563eb;
}

.pay-unpaid{
  color:#d97706;
}

.price{
  font-size:15px;
  font-weight:700;
  color:#ee4d2d;
  text-align:right;
}

.resi{
  border-top:1px solid #f5f5f5;
  background:#fafafa;
  padding:10px 16px;
  font-size:12px;
  color:#555;
}

.courier{
  margin-top:5px;
  font-size:12px;
  color:#444;
  font-weight:600;
}

/*sekrol hp*/
.navbar-toggler-icon{
  filter: brightness(0);
    .brand-title{
    font-family:'Playfair Display', serif;
    font-weight:100;
    color:#0e0e0e;
    font-size:100rem;
    line-height:1.1;
  }

  .brand-subtitle{
    font-size:100rem;
    color:rgba(24,23,23,0.7);
    letter-spacing:0.5px;
  }
}

/* card */
.cart-wrap{
  min-height: 100vh;
  padding: 40px 0;

  background-image:
    linear-gradient(
      rgba(12, 163, 69, 0.35),
      rgba(22, 101, 52, 0.35)
    ),
    url('/asset/image/5.jpeg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.cart-layout{
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

@media(max-width: 992px){
  .cart-layout{
    grid-template-columns: 1fr;
  }
}

.card-box,
.summary-box{
  background: rgba(255,255,255,0.96);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  backdrop-filter: blur(8px);
}

.card-box-header{
  padding: 20px 24px;
  background: linear-gradient(to right,#15803d,#16a34a);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
}

.item-count-badge{
  background: rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.item-row{
  display: flex;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
  align-items: center;
}

.item-row:last-child{
  border-bottom: none;
}

.item-check{
  width: 22px;
  height: 22px;
  accent-color: #16a34a;
  cursor: pointer;
}

.item-thumb{
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 16px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}

.item-info{
  flex: 1;
}

.item-name{
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.item-price-each{
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 5px;
}

.item-qty{
  color: #6b7280;
  font-size: 14px;
}

.item-right{
  text-align: right;
  min-width: 140px;
}

.item-total{
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.btn-hapus{
  border: none;
  background: #ef4444;
  color: white;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-hapus:hover{
  background: #dc2626;
}

.summary-box{
  padding: 24px;
  position: sticky;
  top: 100px;
}

.summary-title{
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111827;
}

.summary-row{
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: #374151;
}

.summary-row.total{
  border-top: 1px dashed #d1d5db;
  margin-top: 18px;
  padding-top: 18px;
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.btn-clear{
  width: 100%;
  margin-top: 14px;
  border: none;
  background: #ef4444;
  color: white;
  padding: 14px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-clear:hover{
  background: #dc2626;
}

.btn-checkout{
  width: 100%;
  border: none;
  background: linear-gradient(to right,#15803d,#22c55e);
  color: white;
  padding: 16px;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 800;
  margin-top: 20px;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(34,197,94,0.3);
}

.btn-checkout:hover{
  transform: translateY(-2px);
}

.empty-cart{
  background: rgba(255,255,255,0.95);
  padding: 80px 20px;
  border-radius: 24px;
  text-align: center;
}

.empty-icon{
  font-size: 70px;
  margin-bottom: 16px;
}

.icon-box{
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}