*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Behove';
  src: url('font/Behove/Behove.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Baloo 2';
  src: url('../font/Baloo_2/Baloo2-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --brown: #8C5A3C;
  --brown-d: #5a3212;
  --brown-l: #a0672e;
  --brown-xl: #c08040;
  --beige: #F0E6D3;
  --beige-d: #e0d0b8;
  --cream: #FAF5EC;
  --dark: #1a1008;
  --tan: #C9A07A;
  --tan-l: #E2C9A8;
  --ink: #2c1a08;
  --rust: #8B3A1A;
}

html,
body {
  min-height: 100vh;
  background-color: var(--beige);
  font-family: 'Behove', sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}

/* NAVBAR */
@font-face {
  font-family: 'Behove';
  src: url('../font/Behove/Behove.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 15px 5%;

  background: #8C5A3C;
  border-bottom: 3px solid #2C1A08;

  font-family: 'Behove', sans-serif;
}

.nav-left,
.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.nav-center {
  flex: 0;
  text-align: center;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: 'Behove', sans-serif;
  color: #F9F8F6;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

.logo {
  font-family: 'Behove', sans-serif;
  color: #F9F8F6;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
}

.login-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #F9F8F6 !important;
  font-family: 'Behove', sans-serif;
}

.user-icon {
  width: 22px;
  height: 22px;
  stroke: #00BFFF;
  stroke-width: 2px;
}

.cart-icon {
  position: relative;
  font-size: 22px;
  text-decoration: none;
}

.cart-count {
  position: absolute;
  top: -10px;
  right: -12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: red;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  font-family: 'Behove', sans-serif;
}

/* Page wrapper */
.page {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-height: calc(100vh - 64px - 38px);
  padding: 0;
  overflow: hidden;
}

/* Decorative stamp */
.deco-stamp {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
}

.deco-stamp-1 {
  top: 60px;
  right: 32px;
  padding: 6px 10px;
  border: 2px solid var(--tan-l);
  border-radius: 4px;
  color: var(--tan-l);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.5;
  transform: rotate(8deg);
}

.deco-stamp-2 {
  bottom: 80px;
  left: 28px;
  font-size: 40px;
  opacity: 0.08;
  transform: rotate(-12deg);
}

.deco-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
  background: repeating-linear-gradient(90deg,
      var(--tan-l) 0px,
      var(--tan-l) 8px,
      transparent 8px,
      transparent 16px);
}

.deco-line-top {
  top: 0;
}

.deco-line-bottom {
  bottom: 0;
}

/* Layout */
.layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  width: 100%;
  max-width: 100%;
  margin: 0;
  gap: 0;
  animation: fadeUp 0.6s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

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

/* Left panel */
.left-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 56px 44px 48px;
  overflow: hidden;
  background: var(--brown);

  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.left-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 30px,
      rgba(255, 255, 255, 0.015) 30px,
      rgba(255, 255, 255, 0.015) 32px);
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.left-panel::after {
  content: '';
  position: absolute;
  top: 40px;
  right: 12px;
  bottom: 40px;
  width: 3px;
  opacity: 0.3;
  background: linear-gradient(to bottom, transparent, var(--tan-l), transparent);
}

/* Vintage badge */
.vintage-badge {
  margin-bottom: 32px;
}

.badge-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(226, 201, 168, 0.5);
  border-radius: 50%;
}

.badge-ring::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px dashed rgba(226, 201, 168, 0.4);
  border-radius: 50%;
}

.badge-inner {
  text-align: center;
  line-height: 1;
}

.badge-est {
  margin-bottom: 2px;
  color: var(--tan-l);
  font-family: 'Baloo 2', cursive;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.badge-year {
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.badge-name {
  margin-top: 2px;
  color: var(--tan-l);
  font-family: 'Baloo 2', cursive;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 0.7;
}

/* Left text */
.panel-title {
  margin-bottom: 14px;
  color: #fff;
  font-family: 'Baloo 2';
  font-size: 44px;
  font-weight: 700;
  line-height: 1.05;
}

.panel-title em {
  color: var(--tan-l);
  font-style: normal;
}

.panel-desc {
  max-width: 260px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Paperlogy';
  src: url('../font/paperlogy/Paperlogy-6SemiBold.ttf') format('truetype');
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}

.ornament {
  margin-bottom: 24px;
  color: var(--tan-l);
  font-size: 18px;
  letter-spacing: 8px;
  opacity: 0.5;
}

/* jam */
.hours-block {
  width: 100%;
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(226, 201, 168, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.hours-heading {
  margin-bottom: 12px;
  color: var(--tan-l);
  font-family: 'Baloo 2', cursive;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 3px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12.5px;
  font-weight: 600;
}

.dot-leader {
  flex: 1;
  margin: 0 4px;
  border-bottom: 1px dotted rgba(226, 201, 168, 0.25);
}

.hours-val {
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(226, 201, 168, 0.15);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.status-text {
  font-family: 'Baloo 2', cursive;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* Floating art */
.brownie-art {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.art-piece {
  display: inline-block;
  font-size: 26px;
  animation: bob ease-in-out infinite alternate;
}

.a1 {
  animation-duration: 3s;
}

.a2 {
  animation-duration: 4s;
  animation-delay: 0.5s;
}

.a3 {
  animation-duration: 3.5s;
  animation-delay: 1s;
}

.a4 {
  animation-duration: 5s;
  animation-delay: 1.5s;
}

@keyframes bob {
  0% {
    transform: translateY(0);
  }

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

/* Right panel */
.right-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 52px 48px 48px;
  background: var(--beige);
  background-image: repeating-linear-gradient(to bottom,
      transparent,
      transparent 27px,
      rgba(193, 140, 80, 0.06) 27px,
      rgba(193, 140, 80, 0.06) 28px);
}

.right-header {
  margin-bottom: 28px;
}

.right-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 14px;
  border: 1.5px solid var(--beige);
  border-radius: 20px;
  background: var(--beige);
  color: var(--brown);
  font-family: 'Baloo 2', cursive;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.right-title {
  color: var(--dark);
  font-family: 'Baloo 2', cursive;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
}


/* Contact grid */
.contact-icon i {
  font-size: 26px;
  color: #9b623b;

  transition: 0.3s ease;
}

.contact-card:hover .contact-icon i {
  transform: scale(1.12);
  color: #6e3f20;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.citem {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(90, 50, 18, 0.07), 0 1px 3px rgba(90, 50, 18, 0.05);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  animation: popItem 0.45s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

.citem:nth-child(1) {
  animation-delay: 0.08s;
}

.citem:nth-child(2) {
  animation-delay: 0.14s;
}

.citem:nth-child(3) {
  animation-delay: 0.20s;
}

.citem:nth-child(4) {
  animation-delay: 0.26s;
}

.citem:nth-child(5) {
  animation-delay: 0.32s;
}

@keyframes popItem {
  0% {
    opacity: 0;
    transform: scale(0.88) translateY(10px);
  }

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

.citem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  border-radius: 0 0 3px 3px;
  opacity: 0;
  background: var(--brown-l);
  transition: opacity 0.2s;
}

.citem:hover {
  transform: translateY(-4px);
  border-color: var(--tan-l);
  box-shadow: 0 10px 28px rgba(90, 50, 18, 0.14);
}

.citem:hover::before {
  opacity: 1;
}

.citem:active {
  transform: translateY(-1px) scale(0.99);
}

.citem--wide {
  grid-column: 1 / -1;
}

.citem--green:hover {
  border-color: #a5d6a7;
}

.citem--pink:hover {
  border-color: #f48fb1;
}

.citem--blue:hover {
  border-color: #90caf9;
}

.citem--purple:hover {
  border-color: #ce93d8;
}

.citem--green::before {
  background: #4caf50;
}

.citem--pink::before {
  background: #e91e63;
}

.citem--blue::before {
  background: #2196f3;
}

.citem--purple::before {
  background: #9c27b0;
}

.citem-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.warm-orange {
  background: #fff3e0;
}

.warm-green {
  background: #e8f5e9;
}

.warm-pink {
  background: #fce4ec;
}

.warm-blue {
  background: #e3f2fd;
}

.warm-purple {
  background: #f3e5f5;
}

.citem-body {
  flex: 1;
  min-width: 0;
}

.citem-label {
  margin-bottom: 2px;
  color: var(--tan);
  font-family: 'Baloo 2', cursive;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.citem-value {
  color: var(--dark);
  font-family: 'Baloo 2', cursive;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
}

.citem-arrow {
  flex-shrink: 0;
  color: var(--tan-l);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s, color 0.2s;
}

.citem:hover .citem-arrow {
  transform: translateX(4px);
  color: var(--brown);
}

/* Button */
.btn-wa {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 54px;
  margin-bottom: 14px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-l) 100%);
  box-shadow: 0 5px 0 var(--brown-d), 0 8px 24px rgba(90, 50, 18, 0.28);
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 var(--brown-d), 0 14px 32px rgba(90, 50, 18, 0.35);
  filter: brightness(1.05);
}

.btn-wa:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--brown-d);
}

.btn-wa-icon {
  font-size: 20px;
}

.btn-wa-arrow {
  margin-left: auto;
  font-size: 18px;
  opacity: 0.8;
}

.reply-note {
  color: var(--tan);
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
}

.reply-note strong {
  color: var(--brown);
}

/* Tampilan mobile */
@media (max-width: 768px) {
  nav {
    padding: 0 18px;
  }

  .nav-left,
  .nav-right {
    gap: 14px;
  }

  .nav-link {
    font-size: 11px;
  }

  .nav-brand {
    font-size: 16px;
  }

  .layout {
    grid-template-columns: 1fr;
  }

  .left-panel {
    padding: 40px 28px 36px;
  }

  .left-panel::after {
    display: none;
  }

  .panel-title {
    font-size: 34px;
  }

  .right-panel {
    padding: 36px 24px 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .deco-stamp-1 {
    display: none;
  }
}

/* MOBILE RESPONSIVE */
@media screen and (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
  }

  .nav-left,
  .nav-right {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    font-size: 16px;
  }

  /* LOGO */
  .logo {
    width: 220px;
    height: 70px;
  }

  .logo-static,
  .logo-hover {
    width: 200px;
  }

  /* HERO */
  .hero {
    display: flex;
    flex-direction: column;

    gap: 30px;

    padding: 30px 20px 50px;

    min-height: auto;
  }

  /* BOX PUTIH */
  .hero-center {
    width: 100%;

    padding: 35px 25px;

    order: 1;

    border-radius: 20px;
  }

  .hero-center h1 {
    font-size: 48px;
    line-height: 0.95;
  }

  .hero-description {
    font-size: 15px;
  }

  /* BROWNIES KIRI */
  .hero-side:first-child {
    order: 2;
  }

  .hero-side:first-child .floating-img {
    width: 90%;

    transform: none;
  }

  /* BOX KANAN */
  .hero-side:last-child {
    order: 3;
    justify-content: center;
  }

  .hero-side:last-child .floating-img {
    width: 130%;

    max-width: 500px;

    transform: translateX(40px);
  }

  /* BUTTON */
  .btn-order {
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 16px;
  }

  /* TICKER */
  .ticker-text span {
    font-size: 12px;
    padding: 0 25px;
  }

}