:root {
  --primary: #D4A017;      /* Gold */
  --secondary: #F5C542;    /* Gold muda */
  --dark: #2B2B2B;         /* Abu gelap */
  --green: #4F7942;        /* Hijau daun */
  --cream: #FFFDF5;
  --cream2: #FFF8E1;
  --cream3: #f3e5b6;
  --light: #FFFBF0;

  --shadow: 0 8px 40px rgba(212, 160, 23, 0.15);
  --shadow-lg: 0 20px 60px rgba(212, 160, 23, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
body {
  font-family: "Poppins", sans-serif;
  color: #444;
  background: #fff;
  overflow-x: clip;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  color: var(--dark);
}
a {
  text-decoration: none;
  transition: all 0.3s;
}
img {
  max-width: 100%;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* ===================== TOP BAR ===================== */
#topbar {
  background: #111;
  padding: 8px 0;
  font-size: 0.82rem;
}
#topbar span {
  color: #ffffff;
  margin-right: 16px;
}
#topbar span i {
  color: var(--secondary);
  margin-right: 5px;
}
#topbar .tsoc a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.75rem;
  margin-left: 5px;
  transition: 0.3s;
}
#topbar .tsoc a:hover {
  background: var(--primary);
  color: #fff;
}

.ttag {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 4px 12px;
  border-radius: 999px;

  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;

  color: #ffffff;

  /* warna lebih terang & cerah */
  background: linear-gradient(135deg, #ff4d4d, #ffcc00);

  /* lebih soft & glowing */
  box-shadow: 0 6px 18px rgba(255, 200, 0, 0.25);

  border: 1px solid rgba(255, 255, 255, 0.35);

  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.ttag::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.25);
  transform: skewX(-25deg);
}

.ttag:hover::after {
  animation: shine 0.8s ease;
}

@keyframes shine {
  100% {
    left: 120%;
  }
}

/* ===================== NAVBAR ===================== */
#nav {
  background: #FFFBF0;
  position: sticky;
  top: 0;
  z-index: 990;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: 0.4s;
}

#nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.14);
}

.logo-img{
    width:280px;
    height:68px;
    object-fit:contain;
    margin-right:0;
    transform:scale(1.2);
    transform-origin:left center;
}

.blogo {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: visible;
}

.bico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(232, 40, 26, 0.35);
}

.bname {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
}

.bname span {
  color: var(--primary);
}

.bsub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #aaa;
}

.navbar-nav .nav-link {
  font-size: 0.87rem;
  font-weight: 500;
  color: #333 !important;
  padding: 26px 13px !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  transition: 0.3s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 55%;
}
.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}
/* FIX 1 â€” Search btn in navbar */
#navSearchBtn {
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.3s;
}
#navSearchBtn:hover {
  background: rgba(232, 40, 26, 0.08);
  color: var(--primary);
}
.nav-cta {
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 20px !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(232, 40, 26, 0.3);
  margin-left: 6px;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-cta:focus,
.nav-cta:active {
    outline: none;
    box-shadow: none;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 40, 26, 0.4);
}

/* ===================== SECTION COMMONS ===================== */
section {
  padding: 88px 0;
}

.slbl {
  font-family: "Dancing Script", cursive;
  font-size: 1.35rem;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.stitle {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}
.stitle span {
  color: var(--primary);
}
.sline {
  width: 58px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0 auto 12px;
}
.sline.lft {
  margin-left: 0;
}
.sdesc {
  color: #777;
  font-size: 0.93rem;
  line-height: 1.8;
}
.btn-red {
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.93rem;
  box-shadow: 0 8px 24px rgba(232, 40, 26, 0.35);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(232, 40, 26, 0.45);
  color: #fff;
}

/* ===================== HERO ===================== */
#hero {
  background: var(--cream);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hbgtxt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22vw;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  white-space: nowrap;
}
.hs {
  position: absolute;
  border-radius: 50%;
}
.hs1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232, 40, 26, 0.07), transparent 70%);
  top: -90px;
  right: -80px;
  animation: fsh 8s ease-in-out infinite;
}
.hs2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(246, 166, 35, 0.09),
    transparent 70%
  );
  bottom: -50px;
  left: 8%;
  animation: fsh 10s ease-in-out infinite reverse;
}
@keyframes fsh {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-28px);
  }
}
.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 30px;
  padding: 6px 16px 6px 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 22px;
}
.hbadge .hbi {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
}
.hbadge span {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--dark);
}
.htitle {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}
.htitle .hl {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.htitle .hl::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 7px;
  background: rgba(232, 40, 26, 0.14);
  border-radius: 4px;
  z-index: -1;
}
.hdesc {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  max-width: 470px;
  margin-bottom: 30px;
}
/* FIX 2 â€” Video play button */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 16px;
  transition: 0.3s;
  cursor: pointer;
}
.btn-play .pico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  color: var(--primary);
  font-size: 0.95rem;
  transition: 0.3s;
  flex-shrink: 0;
}
.btn-play:hover .pico {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}
.btn-play:hover {
  color: var(--primary);
}
.hstats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hstat .snum {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--dark);
  display: block;
  line-height: 1;
}
.hstat .snum em {
  color: var(--primary);
  font-style: normal;
}
.hstat small {
  font-size: 0.7rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sdiv {
  width: 1px;
  background: #ddd;
  height: 38px;
  align-self: center;
}
.hcircle {
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #fff8f0, #ffe5c8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 28px 76px rgba(232, 40, 26, 0.14);
}
.hcircle img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 50%;
}
.fcard {
  position: absolute;
  background: #fff;
  border-radius: 11px;
  padding: 10px 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 9px;
}
.fcard.fc1 {
  top: 55px;
  left: -15px;
  animation: fltc 4s ease-in-out infinite;
}
.fcard.fc2 {
  bottom: 75px;
  right: -25px;
  animation: fltc 4s ease-in-out infinite 1.5s;
}
.fcard.fc3 {
  top: 38%;
  right: -45px;
  animation: fltc 4s ease-in-out infinite 0.8s;
}
@keyframes fltc {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
.fcoi {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.fcoi.r {
  background: rgba(232, 40, 26, 0.11);
  color: var(--primary);
}
.fcoi.y {
  background: rgba(246, 166, 35, 0.14);
  color: var(--secondary);
}
.fcoi.g {
  background: rgba(45, 106, 79, 0.11);
  color: var(--green);
}
.fcnum {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
  display: block;
  line-height: 1;
}
.fcsm {
  font-size: 0.66rem;
  color: #999;
}

/* ===================== MARQUEE ===================== */
.mqsec {
  background: var(--primary);
  padding: 13px 0;
  overflow: hidden;
}

.mqtrack {
  display: flex;
  gap: 35px;
  white-space: nowrap;
  animation: mqrun 20s linear infinite;
}

.mqitem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 500;
}
.mqitem i {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.55rem;
}
@keyframes mqrun {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===================== CATEGORY ===================== */
#category {
  background: var(--cream);
}
.catcard {
  background: #fff;
  border-radius: 15px;
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
}
.catcard:hover,
.catcard.active {
  transform: translateY(-7px);
  box-shadow: 0 14px 38px rgba(232, 40, 26, 0.14);
  border-color: var(--primary);
}
.catimg {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
  transition: 0.4s;
}
.catcard:hover .catimg {
  transform: scale(1.1) rotate(-4deg);
}
.catnm {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}
.catct {
  font-size: 0.73rem;
  color: #bbb;
}

/* ===================== ABOUT ===================== */
#about {
  background: linear-gradient(180deg, #fff 0%, #fffdf7 100%);
  overflow: hidden;
}
.astack {
  position: relative;
  isolation: isolate;
  max-width: 500px;
  padding: 18px 18px 46px 28px;
  margin-right: 18px;
}
.astack::before {
  content: "";
  position: absolute;
  inset: 0 44px 34px 0;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.14), rgba(79, 121, 66, 0.08));
  z-index: -1;
}
.astack::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 72%;
  height: 58%;
  border: 2px solid rgba(212, 160, 23, 0.18);
  border-radius: 24px;
  z-index: -1;
}
.amain {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(43, 43, 43, 0.14);
  background: #fff;
}
.amain img {
  width: 100%;
  height: clamp(340px, 38vw, 460px);
  object-fit: cover;
  display: block;
}
.asm {
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(190px, 42%);
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 7px solid #fff;
  box-shadow: 0 16px 36px rgba(43, 43, 43, 0.18);
  background: #fff;
}
.asm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aexp {
  position: absolute;
  top: 38px;
  left: 0;
  background: linear-gradient(135deg, var(--primary), #b8860b);
  color: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(212, 160, 23, 0.32);
  border: 4px solid #fff;
}
.aexp .anum {
  font-family: "Playfair Display", serif;
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.aexp small {
  font-size: 0.7rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.fti {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(212, 160, 23, 0.1);
  transition: 0.25s;
}
.ftico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: 0.3s;
}
.ftico.r {
  background: rgba(232, 40, 26, 0.1);
  color: var(--primary);
}
.ftico.y {
  background: rgba(246, 166, 35, 0.11);
  color: var(--secondary);
}
.ftico.g {
  background: rgba(45, 106, 79, 0.1);
  color: var(--green);
}
.fti:hover .ftico {
  transform: scale(1.1);
}
.fti:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(43, 43, 43, 0.06);
}
.fti h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  font-family: "Poppins", sans-serif;
}
.fti p {
  font-size: 0.82rem;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

/* ===================== MENU ===================== */
#products {
  background: var(--light);
}

/* FIX 3 â€” Filter buttons */
.filtbtn {
  border: 2px solid #e5e5e5;
  background: #fff;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: 0.3s;
  margin: 3px;
  font-family: "Poppins", sans-serif;
}
.filtbtn.active,
.filtbtn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 5px 18px rgba(232, 40, 26, 0.24);
}

.mwrap {
  transition: 0.35s;
  display: none;
}
#products {
  scroll-margin-top: 78px;
}
.pagination-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.page-btn{
    min-width:42px;
    height:42px;
    border:none;
    border-radius:12px;
    background:#fff;
    color:#333;
    font-weight:600;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    cursor:pointer;
    transition:.25s ease;
    padding:0 14px;
}

.page-btn:hover{
    transform:translateY(-2px);
    background:#f8f8f8;
}

.page-btn.active{
    background:#D4A017;
    color:#fff;
    box-shadow:0 10px 25px rgba(212,160,23,.28);
}

.mwrap.gone {
  display: none !important;
}
.product-search-status {
  display: none;
  margin: 24px auto 0;
  padding: 12px 18px;
  width: fit-content;
  border-radius: 50px;
  background: #fff8e8;
  color: #7a5a16;
  font-size: 0.9rem;
  font-weight: 600;
}
.product-search-status:not(:empty) {
  display: block;
}
.product-search-status.empty {
  background: #fff0ef;
  color: var(--primary);
}
.mcard {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
  cursor: pointer;
}
.mcard:hover {
  transform: translateY(-9px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
}
.mimg {
  position: relative;
  overflow: hidden;
  height: 215px;
  background: var(--cream2);
}
.mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.mcard:hover .mimg img {
  transform: scale(1.09);
}
.mbdg {
  position: absolute;
  top: 13px;
  left: 13px;
  background: var(--primary);
  color: #fff;
  border-radius: 7px;
  padding: 3px 11px;
  font-size: 0.7rem;
  font-weight: 700;
}
.mbdg.new {
  background: var(--green);
}
.mbdg.hot {
  background: var(--secondary);
  color: var(--dark);
}
.mrating {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #34261f;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(38, 23, 16, 0.16);
  backdrop-filter: blur(6px);
}
.mrating i {
  color: #f4b400;
  font-size: 0.72rem;
}
/* FIX 4 â€” Heart & Plus buttons stop propagation */
.mhrt {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.1);
}
.mhrt:hover {
  color: var(--primary);
  transform: scale(1.18);
}
.mbody {
  padding: 18px;
}
.mcat {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.mtit {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
}
.mdesc {
  font-size: 0.78rem;
  color: #aaa;
  margin-bottom: 13px;
  line-height: 1.5;
}
.mfoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mprice {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  font-family: "Playfair Display", serif;
}
.mprice small {
  font-size: 0.72rem;
  font-weight: 400;
  color: #ccc;
  text-decoration: line-through;
  margin-left: 5px;
}
.mstars {
  font-size: 0.73rem;
  color: var(--secondary);
}
/* FIX 4 â€” Plus button opens detail popup */
.madd {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #c01e12);
  border: none;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 11px rgba(232, 40, 26, 0.28);
}
.madd:hover {
  transform: scale(1.15) rotate(90deg);
}

/* ===================== SPECIAL OFFER ===================== */
#special {
  background: linear-gradient(135deg, #1a1a00 0%, #b5a603 100%);
  position: relative;
  overflow: hidden;
}

.spbg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background: repeating-linear-gradient(
    45deg,
    #fff 0,
    #fff 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 40px 40px;
}
.sptag {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 6px;
  padding: 4px 15px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.sptitle {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.sptitle span {
  color: var(--secondary);
}
.spdesc {
  color: rgba(255, 255, 255, 0.62);
  margin: 18px 0;
  font-size: 0.93rem;
  line-height: 1.8;
}
.cdwrap {
  display: flex;
  gap: 14px;
  margin: 26px 0;
}
.cditem {
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 11px;
  padding: 13px 18px;
  min-width: 72px;
}
.cdnum {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
}
.cdlbl {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 3px;
  display: block;
}

.spimgw {
  position: relative;
  text-align: center;
}

.spglow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(246, 166, 35, 0.24),
    transparent 70%
  );
}

.spimgw img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 28px 56px rgba(246, 166, 35, 0.28));
  animation: fltimg 5s ease-in-out infinite;
}

@keyframes fltimg {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-17px);
  }
}
.sppbdg {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: var(--primary);
  color: #fff;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232, 40, 26, 0.5);
  animation: plsbdg 2.5s ease-in-out infinite;
}
@keyframes plsbdg {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 12px 34px rgba(232, 40, 26, 0.7);
  }
}
.sppbdg .old {
  font-size: 0.68rem;
  text-decoration: line-through;
  opacity: 0.7;
}
.sppbdg .np {
  font-size: 1.25rem;
  font-weight: 900;
}

/* ===================== GALLERY ===================== */
#gallery {
  background: var(--light);
}

/* WRAPPER */
.gallery-slider-wrap{
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* TRACK */
.gallery-slider{
  display: flex;
  transition: transform .55s ease;
  will-change: transform;
}

/* SATU HALAMAN */
.gallery-slide{
  min-width: 100%;
  flex: 0 0 100%;
}

/* GRID LAMA TETAP */
.ggrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 215px);
  gap: 13px;
}

.gitem {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #eee;
}

.gitem:first-child {
  grid-row: span 2;
}

.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gitem:hover img {
  transform: scale(1.08);
}

.gover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), transparent 60%);
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.gitem:hover .gover {
  opacity: 1;
}

.gover span {
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
}

.gover i {
  color: var(--secondary);
  margin-right: 5px;
}

/* NAVIGATION */
.gallery-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: #222;
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .25s ease;
}

.gallery-nav:hover{
  transform: translateY(-50%) scale(1.06);
  background: #fff;
}

.gallery-nav:disabled{
  opacity: .35;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.gallery-prev{
  left: -20px;
}

.gallery-next{
  right: -20px;
}

/* DOTS */
.gallery-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:22px;
}

.gallery-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#d7d7d7;
  cursor:pointer;
  transition:.25s;
}

.gallery-dot.active{
  width:28px;
  border-radius:999px;
  background: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 991px){
  .gallery-prev{ left: 8px; }
  .gallery-next{ right: 8px; }

  .ggrid{
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 190px);
  }

  .gitem:first-child{
    grid-row: span 2;
  }
}

@media (max-width: 575px){
  .gallery-slide {
    box-sizing: border-box;
    padding: 0 7px;
  }

  .gallery-slide .ggrid {
    column-gap: 14px !important;
    row-gap: 0 !important;
  }

  .gallery-slide .gitem {
    margin-bottom: 20px !important;
  }

  .gallery-slide .gitem:last-child {
    margin-bottom: 0 !important;
  }

  .gallery-nav{
    width:42px;
    height:42px;
  }

  .ggrid{
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gitem,
  .gitem:first-child{
    grid-row: auto;
    height: 230px;
  }
}

/* Tablet: empat foto per slide, tersusun 2 kolom x 2 baris. */
@media (min-width: 576px) and (max-width: 991px) {
  .ggrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 190px);
  }

  .gitem:first-child {
    grid-row: auto;
  }
}

/* ===================== HISTORY â€” FIX 8 ===================== */
#history {
  background: var(--cream);
}
.timeline {
  position: relative;
  padding: 18px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  top: 0;
  bottom: 0;
}
/* Grid: left-col | dot-col | right-col */
.tli {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  margin-bottom: 50px;
  align-items: start;
}
.tl-left {
  padding-right: 32px;
  text-align: right;
}
.tl-center {
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.tl-right {
  padding-left: 32px;
  text-align: left;
}
/* ODD â†’ show LEFT text, hide RIGHT */
.tli:nth-child(odd) .tl-right {
  visibility: hidden;
}
/* EVEN â†’ hide LEFT, show RIGHT */
.tli:nth-child(even) .tl-left {
  visibility: hidden;
}
.tldot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px rgba(232, 40, 26, 0.3);
  flex-shrink: 0;
}
.tlyear {
  font-family: "Dancing Script", cursive;
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 3px;
}
.tl-left h5,
.tl-right h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 7px;
  font-family: "Playfair Display", serif;
  color: var(--dark);
}
.tl-left p,
.tl-right p {
  font-size: 0.83rem;
  color: #888;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 767px) {
  .timeline::before {
    left: 16px;
  }
  .tli {
    grid-template-columns: 32px 1fr;
    gap: 0;
  }
  .tl-left {
    display: none;
  }
  .tl-right {
    display: block !important;
    visibility: visible !important;
    padding-left: 18px;
    text-align: left;
  }
  .tl-center {
    padding-top: 5px;
  }
  .tli:nth-child(even) .tl-left {
    display: none;
  }
  .tli:nth-child(odd) .tl-right {
    visibility: visible !important;
  }
}

/* ===================== CHEFS ===================== */
#chefs {
  background: #fff;
}
.chcard {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}
.chcard:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
}
.chimg {
  position: relative;
  overflow: hidden;
  height: 268px;
  background: var(--cream2);
}
.chimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: 0.5s;
}
.chcard:hover .chimg img {
  transform: scale(1.05);
}
.chsoc {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  transition: 0.4s;
  padding: 10px 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}
.chcard:hover .chsoc {
  bottom: 0;
}
.chsoc a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  transition: 0.3s;
}
.chsoc a:hover {
  background: var(--primary);
}
.chbody {
  padding: 18px;
  text-align: center;
}
.chnm {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.chrole {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.chexp {
  font-size: 0.76rem;
  color: #bbb;
  margin-top: 5px;
}

/* ===================== TRACK ORDER ===================== */
.track-order-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fffaf5 0%, #fff 48%, #f8eee8 100%);
}
.track-order-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.track-order-orb-one {
  width: 320px;
  height: 320px;
  top: -170px;
  right: 8%;
  background: rgba(212, 160, 23, 0.11);
}
.track-order-orb-two {
  width: 240px;
  height: 240px;
  bottom: -130px;
  left: 4%;
  background: rgba(232, 40, 26, 0.07);
}
.track-order-description {
  max-width: 520px;
  color: #70625d;
  line-height: 1.8;
  margin: 20px 0 24px;
}
.track-order-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #62544f;
  font-size: 0.86rem;
  line-height: 1.6;
  margin-top: 13px;
}
.track-order-feature i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  color: var(--primary);
  background: rgba(232, 40, 26, 0.08);
}
.track-order-card {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(114, 73, 54, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 65px rgba(87, 52, 37, 0.14);
  backdrop-filter: blur(12px);
}
.track-order-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.track-order-card-head small {
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.6px;
}
.track-order-card-head h4 {
  color: #392c27;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 2px 0 0;
}
.track-order-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--primary), #bd2419);
  box-shadow: 0 10px 25px rgba(232, 40, 26, 0.25);
}
.track-order-form {
  display: flex;
  gap: 10px;
}
.track-order-input-wrap {
  position: relative;
  flex: 1;
}
.track-order-input-wrap i {
  position: absolute;
  top: 50%;
  left: 16px;
  color: #b8a7a0;
  transform: translateY(-50%);
}
.track-order-input-wrap input {
  width: 100%;
  height: 52px;
  padding: 0 16px 0 44px;
  border: 1px solid #eaded8;
  border-radius: 13px;
  outline: none;
  color: #3c302b;
  font-size: 0.88rem;
  text-transform: uppercase;
  transition: 0.25s;
}
.track-order-input-wrap input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232, 40, 26, 0.09);
}
#trackOrderSectionButton {
  height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--primary), #bd2419);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(232, 40, 26, 0.22);
}
#trackOrderSectionButton i { margin-right: 7px; }
#trackOrderSectionButton:disabled { opacity: 0.7; cursor: wait; }
.track-order-result { display: none; margin-top: 22px; }
.track-order-result.show { display: block; animation: fadeov 0.28s ease; }
.track-order-result-card {
  padding: 18px;
  border: 1px solid #eee1db;
  border-radius: 16px;
  background: #fffaf7;
}
.track-order-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.track-order-code { color: #3d2f2a; font-size: 0.9rem; font-weight: 800; }
.track-order-status {
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
}
.track-order-status.is-complete {
  background: #198754;
  box-shadow: 0 6px 16px rgba(25, 135, 84, 0.24);
}
.track-order-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.track-order-info {
  padding: 11px;
  border-radius: 11px;
  background: #fff;
}
.track-order-info small { display: block; color: #ae9c94; font-size: 0.66rem; margin-bottom: 3px; }
.track-order-info strong { color: #493a34; font-size: 0.8rem; }
.track-order-proof {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eaded8;
}
.track-order-proof-label {
  color: #493a34;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 9px;
}
.track-order-proof a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 13px;
  background: #f3e9e4;
}
.track-order-proof img {
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.track-order-proof a:hover img { transform: scale(1.02); }
.track-order-proof a span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(39, 28, 23, 0.82);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
}
.track-order-error {
  padding: 14px;
  border: 1px solid #ffd4d0;
  border-radius: 13px;
  background: #fff3f2;
  color: #ad2d24;
  font-size: 0.84rem;
}
@media (max-width: 575.98px) {
  .track-order-form { flex-direction: column; }
  #trackOrderSectionButton { width: 100%; }
  .track-order-info-grid { grid-template-columns: 1fr; }
}

/* ===================== HOURS ===================== */
#hours {
  background: linear-gradient(135deg, var(--green), #1a4a35);
  position: relative;
  overflow: hidden;
}
.hrsbg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: repeating-linear-gradient(
    45deg,
    #fff 0,
    #fff 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 28px 28px;
}
.hrscard {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 28px;
}
.hrsrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.hrsrow:last-child {
  border: none;
}
.hrsday {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 500;
}
.hrstime {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.hdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.hdot.on {
  background: #4ade80;
  box-shadow: 0 0 7px #4ade80;
}
.hdot.off {
  background: #ff6b6b;
}
.hrscta {
  background: var(--primary);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 18px 48px rgba(232, 40, 26, 0.4);
}
.hrscta h4 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}
.hrscta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  margin: 9px 0 18px;
}
.btnw {
  background: #fff;
  color: var(--primary);
  border-radius: 50px;
  padding: 11px 28px;
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-block;
  transition: 0.3s;
}
.btnw:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  color: var(--primary);
}

/* ===================== TESTIMONIALS ===================== */
#testimonials {
  background: #fff;
}
.tescard {
  background: var(--cream);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}
.tescard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.tesq {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 4.5rem;
  color: rgba(212, 175, 55, 0.12);
  font-family: "Playfair Display", serif;
  line-height: 1;
}

.tess {
  color: var(--secondary);
  font-size: 0.83rem;
  margin-bottom: 12px;
}
.testxt {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 18px;
}
.tesauth {
  display: flex;
  align-items: center;
  gap: 11px;
}
.tesauth img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}
.tesnm {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 1px;
  font-family: "Poppins", sans-serif;
}
.tesrl {
  font-size: 0.73rem;
  color: #aaa;
}

/* ===================== RESERVATION â€” FIX 5 ===================== */
#reservation {
  background: var(--light);
}
.resico {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: rgba(232, 40, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.flbl {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
  display: block;
}
.fctrl {
  width: 100%;
  border: 2px solid #eee;
  border-radius: 9px;
  padding: 11px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: 0.3s;
  color: var(--dark);
  background: #fff;
  appearance: auto;
}
.fctrl:focus {
  border-color: var(--primary);
}
.fcard {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}
.sucmsg {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(45, 106, 79, 0.07);
  border-radius: 11px;
  margin-top: 14px;
}
.sucmsg i {
  color: var(--green);
  font-size: 1.7rem;
  display: block;
  margin-bottom: 7px;
}
.sucmsg p {
  color: var(--green);
  font-weight: 600;
  margin: 0;
  font-size: 0.88rem;
}

/* ===================== BLOG ===================== */
#blog {
  background: var(--light);
  position: relative;
}

/* WRAP */
.blog-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* VIEWPORT */
.blog-slider-viewport {
  overflow: hidden;
  width: 100%;
}

/* TRACK */
.blog-slider-track {
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}

/* SETIAP ITEM */
.blog-slide{
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 0 10px;
  box-sizing: border-box;
}

/* card lama tetap dipakai */
.blcard {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.blcard:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.blimg {
  position: relative;
  height: 195px;
  overflow: hidden;
}

.blimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.blcard:hover .blimg img {
  transform: scale(1.06);
}

.bldatebdg {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 9px;
  padding: 5px 11px;
  text-align: center;
  line-height: 1.2;
  z-index: 2;
}

.bldatebdg .bd {
  font-size: 1.15rem;
  font-weight: 800;
  display: block;
}

.bldatebdg .bm {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.blbody {
  padding: 20px;
}

.bltag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 7px;
}

.bltit {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 9px;
  line-height: 1.4;
}

.bltit a {
  color: var(--dark);
  text-decoration: none;
}

.bltit a:hover {
  color: var(--primary);
}

.blmeta {
  display: flex;
  gap: 14px;
  font-size: 0.76rem;
  color: #bbb;
  margin-bottom: 13px;
  flex-wrap: wrap;
}

.blmeta i {
  color: var(--primary);
  margin-right: 3px;
}

.blmore {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.blmore i {
  transition: 0.3s;
}

.blmore:hover {
  color: var(--dark);
}

.blmore:hover i {
  transform: translateX(5px);
}

/* TOMBOL PANAH */
.blog-nav{
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  flex-shrink: 0;
  cursor: pointer;
}

.blog-nav:hover{
  background: var(--primary);
  color: #fff;
}

.blog-nav:disabled{
  opacity: .35;
  cursor: not-allowed;
}

/* DOTS */
.blog-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.blog-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7d7d7;
  cursor: pointer;
  transition: .3s;
}

.blog-dot.active {
  width: 28px;
  border-radius: 20px;
  background: var(--primary);
}

/* TABLET */
@media (max-width: 991px){
  .blog-slide{
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* MOBILE */
@media (max-width: 575px){
  .blog-slide{
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 4px;
  }

  .blog-nav{
    width: 40px;
    height: 40px;
  }
}

/* ===================== CONTACT â€” FIX 6 ===================== */
#contact-section {
  background: #fff;
}
.ctdark {
  background: var(--dark);
  border-radius: 18px;
  padding: 38px;
  height: 100%;
}
.ctdark h4 {
  color: #fff;
  margin-bottom: 7px;
}
.ctdark .ctsub {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  margin-bottom: 26px;
}
.ctitem {
  display: flex;
  gap: 13px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.cticon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(232, 40, 26, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ctinfo strong {
  display: block;
  color: #aaa;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1px;
  font-family: "Poppins", sans-serif;
}
.ctinfo span {
  color: #fff;
  font-size: 0.87rem;
}
.ctsocrow {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.ctsocrow a {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  transition: 0.3s;
}
.ctsocrow a:hover {
  background: var(--primary);
  color: #fff;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--dark);
  padding: 68px 0 0;
}
.fnm {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
}
.fnm span {
  color: var(--primary);
}
.fdesc {
  color: #777;
  font-size: 0.86rem;
  line-height: 1.8;
  margin-top: 9px;
}
.fsoc {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}
.fsoc a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.88rem;
  transition: 0.3s;
}
.fsoc a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.ftit {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  font-family: "Poppins", sans-serif;
}
.flinks li {
  list-style: none;
  margin-bottom: 9px;
}
.flinks a {
  color: #777;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: 0.3s;
}
.flinks a:hover {
  color: var(--secondary);
  padding-left: 5px;
}
.flinks a i {
  color: var(--primary);
  font-size: 0.68rem;
}
.fci {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px;
}
.fciico {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(232, 40, 26, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.82rem;
  flex-shrink: 0;
}
.fciinfo {
  color: #777;
  font-size: 0.83rem;
  line-height: 1.6;
}
.fciinfo strong {
  color: #bbb;
  display: block;
  font-size: 0.77rem;
}
.fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  margin-top: 46px;
}
.fbot p {
  color: #555;
  font-size: 0.8rem;
  margin: 0;
}
.fbot span {
  color: var(--primary);
}
.fbot a {
  color: #555;
  font-size: 0.8rem;
  margin-left: 18px;
}
.fbot a:hover {
  color: var(--secondary);
}

/* ===================== UTILITIES ===================== */
#waBtn,
#btt {
  position: fixed;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: 0.35s ease;
  z-index: 9000;
}

/* BTT */
#btt {
  bottom: 28px;
  background: linear-gradient(135deg, var(--primary), #c01e12);

  opacity: 0;
  transform: translateY(18px);
}

#btt.show {
  opacity: 1;
  transform: translateY(0);
}

/* WA default = di posisi BTT */
#waBtn {
  bottom: 28px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  opacity: 1;
  transform: translateY(0);
}

/* WA naik kalau BTT muncul */
#waBtn.up {
  bottom: 88px;
}

.cartfl {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9000;
  background: var(--secondary);
  border-radius: 50px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 7px 22px rgba(246, 166, 35, 0.38);
  cursor: pointer;
  transition: 0.3s;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.cartfl:focus,
.cartfl:active {
    outline: none;
    box-shadow: none;
}

.cartfl:hover {
  transform: translateY(-4px);
}

.cartfl .ccount {
  background: var(--primary);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
}

/* ====================================================
   ALL POPUP / MODAL STYLES
==================================================== */

/* --- FIX 1: SEARCH POPUP --- */
#searchOv {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 5, 5, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 78px;
  overflow-y: auto;
}
#searchOv.open {
  display: flex;
  animation: fadeov 0.28s ease;
}
@keyframes fadeov {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#searchOv .sovclose {
  position: absolute;
  top: 22px;
  right: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  transition: 0.3s;
}
#searchOv .sovclose:hover {
  background: var(--primary);
}
.sovbox {
  width: 100%;
  max-width: 680px;
  padding: 0 18px;
}
.sovbox h4 {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 26px;
  font-family: "Playfair Display", serif;
}
.sovinput {
  display: flex;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 60px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}
.sovinput input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 17px 24px;
  color: #fff;
  font-size: 1.05rem;
  font-family: "Poppins", sans-serif;
  outline: none;
}
.sovinput input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}
.sovinput button {
  background: var(--primary);
  border: none;
  padding: 0 26px;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}
.sovinput button:hover {
  background: #c01e12;
}
.sovhint {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  font-size: 0.78rem;
}
.sovcats {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-top: 28px;
}
.sovcat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50px;
  padding: 7px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Poppins", sans-serif;
}
.sovcat img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}
.sovcat:hover,
.sovcat.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.sovtrend {
  text-align: center;
  margin-top: 26px;
}
.sovtrend p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  margin-bottom: 9px;
}
.sovtrend .ttag {
  display: inline-block;
  margin: 3px;
  background: rgba(246, 166, 35, 0.13);
  border: 1px solid rgba(246, 35, 35, 0.28);
  color: var(--secondary);
  border-radius: 20px;
  padding: 3px 13px;
  font-size: 0.76rem;
  cursor: pointer;
  transition: 0.3s;
}
.sovtrend .ttag:hover {
  background: var(--secondary);
  color: var(--dark);
}

/* --- FIX 4: MENU DETAIL POPUP --- */
#menuPop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 18px;
}
#menuPop.open {
  display: flex;
  animation: fadeov 0.28s ease;
}
.mpbox {
  background: #fff;
  border-radius: 22px;
  max-width: 900px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.mpbox::-webkit-scrollbar {
  width: 3px;
}
.mpbox::-webkit-scrollbar-thumb {
  background: var(--primary);
}
.mpbox .mpimg {
  width: 44%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.98) 0 34%, rgba(255, 247, 242, 0.94) 68%, rgba(244, 224, 215, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px 0 0 22px;
  overflow: hidden;
  min-height: 400px;
  padding: 26px;
  position: relative;
}
.mpbox .mpimg img {
  width: 100%;
  height: auto;
  max-height: calc(88vh - 52px);
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  box-shadow:
    0 18px 42px rgba(89, 48, 34, 0.18),
    0 3px 10px rgba(89, 48, 34, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.mpbox .mpimg:hover img {
  transform: scale(1.015);
  box-shadow:
    0 22px 48px rgba(89, 48, 34, 0.22),
    0 4px 12px rgba(89, 48, 34, 0.12);
}

@media (max-width: 767.98px) {
  .mpbox .mpimg {
    padding: 14px;
  }

  .mpbox .mpimg img {
    max-height: 42vh;
    border-radius: 12px;
  }
}
.mpbox .mpbody {
  width: 56%;
  padding: 34px 30px;
}
.mpclose {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2f2f2;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 2;
}
.mpclose:hover {
  background: var(--primary);
  color: #fff;
}
#mpCat {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 7px;
}
#mpTitle {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 9px;
  font-family: "Playfair Display", serif;
  color: var(--dark);
}
#mpStars {
  color: var(--secondary);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
#mpDesc {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 18px;
}
#mpPrice {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 14px;
  font-family: "Playfair Display", serif;
}

#mpPrice small {
  font-size: 0.95rem;
  color: #ccc;
  text-decoration: line-through;
  margin-left: 7px;
}

.mpmeta {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.mpnote-wrap {
    margin-top: 14px;
    padding: 12px;
    background: #fafcf9;
    border: 1px solid #edf2ed;
    border-radius: 14px;
}

.mpnote-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #2d3a2d;
    margin-bottom: 8px;
}

.mpnote-input {
    width: 100%;
    min-height: 90px;
    border: 1px solid #dfe7df;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 13px;
    color: #333;
    background: #fff;
    outline: none;
    resize: vertical;
    transition: .2s ease;
}

.mpnote-input:focus {
    border-color: #D4A017;
    box-shadow: 0 0 0 4px rgba(212,160,23,.12);
}

.mpm {
  text-align: center;
  background: var(--light);
  border-radius: 9px;
  padding: 9px 14px;
}
.mpmv {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
}
.mpml {
  font-size: 0.68rem;
  color: #bbb;
}
.mpqty {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}
.mpqbtn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-weight: 700;
}
.mpqbtn:hover {
  background: var(--primary);
  color: #fff;
}
.mpqnum {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  min-width: 30px;
  text-align: center;
}
.mptags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
}
.mptag {
  background: rgba(246, 166, 35, 0.11);
  color: var(--dark);
  border-radius: 20px;
  padding: 3px 11px;
  font-size: 0.73rem;
  font-weight: 600;
}
.mpaddcart {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.mpaddcart:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232, 40, 26, 0.38);
}

/* --- FIX 7: GALLERY POPUP --- */
#galPop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.96);
  align-items: center;
  justify-content: center;
  padding: 18px;
}
#galPop.open {
  display: flex;
  animation: fadeov 0.28s ease;
}
.gpbox {
  max-width: 880px;
  width: 100%;
  position: relative;
  text-align: center;
}
.gpbox img {
  width: 100%;
  max-height: 64vh;
  object-fit: contain;
  border-radius: 14px;
}
.gpclose {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.gpclose:hover {
  background: var(--primary);
}
.gpcap {
  color: #fff;
  margin-top: 18px;
}
.gpcap h5 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #fff;
}
.gpcap p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}
.gpnav {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 14px;
}
.gpnav button {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 50px;
  padding: 7px 20px;
  cursor: pointer;
  font-size: 0.83rem;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
}
.gpnav button:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Magnific video override */
.mfp-bg {
  background: #000 !important;
  opacity: 0.93 !important;
}
.mfp-close {
  color: #fff !important;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .hcircle {
    width: 320px;
    height: 320px;
  }
  .fc1,
  .fc2,
  .fc3 {
    transform: scale(0.82);
    transform-origin: center;
  }
  .ggrid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 190px);
  }
  .gitem:first-child {
    grid-row: span 1;
  }
  .asm {
    display: block;
    width: min(170px, 38%);
  }
  .mpbox .mpimg,
  .mpbox .mpbody {
    width: 100%;
  }
  .mpbox .mpimg {
    border-radius: 22px 22px 0 0;
    min-height: 240px;
  }
  .mpbox .mpbody {
    padding: 22px 18px;
  }
  /* Timeline mobile: collapse to single column */
  .timeline::before {
    left: 16px;
  }
  .tli {
    grid-template-columns: 32px 1fr !important;
  }
  .tl-left {
    display: none !important;
  }
  .tl-right {
    display: block !important;
    visibility: visible !important;
    padding-left: 18px !important;
    text-align: left !important;
  }
  .tl-center {
    padding-top: 5px;
  }
  .tli:nth-child(odd) .tl-right,
  .tli:nth-child(even) .tl-right {
    visibility: visible !important;
    display: block !important;
  }
}
@media (max-width: 767px) {
  section {
    padding: 55px 0;
  }
  #topbar .top-contact span:last-child {
    display: none;
  }
  .hcircle {
    width: 260px;
    height: 260px;
  }
  /* Hide only hero floating cards, NOT form cards */
  .fcard.fc1,
  .fcard.fc2,
  .fcard.fc3 {
    display: none !important;
  }
  .hstats {
    display: none !important;
  }
  .ggrid {
    grid-template-columns: 1fr 1fr;
  }
  .cdwrap {
    gap: 8px;
  }
  .cditem {
    min-width: 56px;
    padding: 9px;
  }
  .nl-form-wrap {
    flex-direction: column;
    padding: 0 8px;
  }
  .nlinput,
  .nlbtn {
    width: 100%;
    border-radius: 12px;
  }
  .fcard {
    padding: 22px 18px;
  }
}
@media (max-width: 480px) {
  .hcircle {
    width: 220px;
    height: 220px;
  }
  .htitle {
    font-size: 2.4rem;
  }
  .stitle {
    font-size: 1.8rem;
  }
}


.mp-meta {
  display: flex;
  gap: 12px;
}

.mpm.option {
  flex: 1;
  padding: 10px 12px;
  border-radius: 11px;
  border: 2px solid #eee;
  cursor: pointer;
  transition: 0.25s;
  background: #fff;
  text-align: center;
}

.mpm.option:hover {
  transform: translateY(-3px);
  border-color: #f6a623;
  box-shadow: 0 8px 20px rgba(246,166,35,0.2);
}

.mpm.option.active {
  border-color: var(--primary);
  background: linear-gradient(135deg, #fff7e6, #fff);
  box-shadow: 0 10px 22px rgba(232,40,26,0.15);
}

.mpmv {
  font-weight: 800;
  font-size: 0.92rem;
  color: #222;
}

/* ===================== MOBILE RESPONSIVE POLISH ===================== */
.mobile-nav-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.mobile-cart-btn,
.navbar-toggler {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(43, 43, 43, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  position: relative;
}

.mobile-cart-btn .ccount {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 18px;
}

@media (max-width: 1199px) {
  .logo-img {
    width: 190px;
    height: 66px;
    transform: scale(1.12);
  }

  .navbar-nav .nav-link {
    padding: 24px 8px !important;
    font-size: 0.82rem;
  }
}

@media (max-width: 991px) {
  #topbar > .container > .d-flex {
    justify-content: center !important;
    text-align: center;
  }

  #topbar .top-contact,
  #topbar .top-contact + .d-flex {
    width: 100%;
    justify-content: center;
  }

  #topbar span {
    margin-right: 10px;
    line-height: 1.5;
  }

  .mobile-nav-actions {
    display: inline-flex;
    margin-left: auto;
  }

  #nav .container {
    gap: 10px;
  }

  .navbar-brand {
    min-width: 0;
    max-width: calc(100% - 104px);
    margin-right: 0;
  }

  .blogo {
    min-width: 0;
  }

  .logo-img {
    width: 125px;
    height: 68px;
    margin-right: 0;
    flex-shrink: 0;
    transform: scale(1);
  }

  .bname {
    font-size: 1.22rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .bsub {
    font-size: 0.55rem;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #navmenu {
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
  }

  .navbar-nav .nav-link {
    padding: 11px 12px !important;
    border-radius: 10px;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  #navmenu .d-flex.align-items-center.gap-1 {
    align-items: stretch !important;
    gap: 8px !important;
    margin-top: 8px;
  }

  #navSearchBtn,
  .nav-cta {
    min-height: 42px;
  }

  .nav-cta {
    flex: 1;
    margin-left: 0;
    justify-content: center;
  }

  #hero {
    min-height: auto;
    padding: 56px 0 42px;
  }

  #hero .row {
    min-height: auto !important;
    gap: 24px;
  }

  .hdesc {
    max-width: 100%;
  }

  .hcircle {
    width: min(360px, 78vw);
    height: min(360px, 78vw);
  }

  .astack {
    max-width: 460px;
    margin: 0 auto;
    padding: 16px 16px 42px 20px;
  }

  .blog-slide {
    flex-basis: 50%;
    max-width: 50%;
  }

  .ctdark,
  #contact-section .fcard {
    height: auto;
  }

  .cart-dialog,
  .modal-dialog {
    max-width: calc(100vw - 24px);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  body {
    min-width: 0;
  }

  section {
    padding: 48px 0;
  }

  #topbar {
    padding: 9px 0;
    font-size: 0.74rem;
  }

  #topbar .top-contact {
    gap: 6px 10px;
  }

  #topbar .top-contact span {
    margin-right: 0;
  }

  #topbar .top-contact span:last-child {
    display: inline-flex;
  }

  #topbar .top-contact span i {
    margin-right: 4px;
  }

  #topbar .ttag {
    display: none;
  }

  #topbar .tsoc {
    display: flex;
    justify-content: center;
    gap: 6px;
  }

  #topbar .tsoc a {
    margin-left: 0;
  }

  #nav {
    top: 0;
  }

  .htitle {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.13;
  }

  .hbadge {
    max-width: 100%;
    align-items: flex-start;
    border-radius: 18px;
    padding: 8px 12px 8px 8px;
  }

  .hbadge span,
  .hdesc,
  .sdesc {
    font-size: 0.86rem;
  }

  .btn-red,
  .btn-play {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    text-align: center;
  }

  .btn-play {
    padding: 6px 12px;
  }

  .hcircle {
    width: min(290px, 74vw);
    height: min(290px, 74vw);
  }

  .hbgtxt,
  .hs {
    display: none;
  }

  .mqsec {
    padding: 10px 0;
  }

  .mqitem {
    font-size: 0.82rem;
    padding: 0 16px;
  }

  .catcard {
    height: 100%;
    padding: 16px 10px;
  }

  .catimg {
    width: 72px;
    height: 72px;
  }

  .astack {
    max-width: 430px;
    min-height: 0;
    padding: 12px 12px 72px;
    margin-bottom: 10px;
  }

  .amain {
    width: 100%;
    border-radius: 20px;
  }

  .amain img {
    height: min(360px, 78vw);
  }

  .asm {
    width: 42%;
    right: 12px;
    bottom: 16px;
    border-width: 5px;
    border-radius: 16px;
  }

  .aexp {
    top: auto;
    left: 24px;
    bottom: 20px;
    padding: 12px 16px;
    border-radius: 14px;
  }

  .aexp .anum {
    font-size: 1.7rem;
  }

  .aexp small {
    font-size: 0.62rem;
  }

  .fti {
    padding: 13px 14px;
  }

  #about .stitle,
  #about .sdesc {
    text-align: left;
  }

  .filtbtn {
    margin: 4px;
    padding: 9px 14px;
    font-size: 0.78rem;
  }

  .blog-slider-wrap {
    display: block;
  }

  .blog-slide {
    flex-basis: 100%;
    max-width: 100%;
    padding: 0 4px;
  }

  .blog-nav {
    position: absolute;
    top: 36%;
    z-index: 4;
  }

  .blog-prev {
    left: 2px;
  }

  .blog-next {
    right: 2px;
  }

  #contact-section .fcard {
    padding: 22px 16px;
    border-radius: 14px;
  }

  .ctdark {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .ctitem,
  .fci {
    align-items: flex-start;
  }

  .cartfl {
    left: 14px;
    bottom: 18px;
    padding: 11px 13px;
  }

  .cartfl span {
    display: none;
  }

  #waBtn,
  #btt {
    right: 14px;
    width: 46px;
    height: 46px;
  }

  #waBtn {
    bottom: 18px;
  }

  #waBtn.up {
    bottom: 74px;
  }

  #btt {
    bottom: 18px;
  }

  .cart-modal-header,
  .checkout-header {
    align-items: flex-start;
    gap: 12px;
  }

  .cart-header-left {
    min-width: 0;
  }

  .cart-logo-wrap {
    width: 78px;
    height: 54px;
    flex-shrink: 0;
  }

  .cart-modal-title,
  .checkout-header h5 {
    font-size: 1.05rem;
  }

  .cart-modal-subtitle,
  .checkout-header small {
    font-size: 0.72rem;
  }

  .cart-item {
    grid-template-columns: 86px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .cart-item-img-wrapper {
    width: 86px;
    height: 86px;
  }

  .cart-total-box,
  .cart-action-box,
  .cartCheckout-action-box {
    flex-direction: column;
    gap: 10px;
  }

  .cart-btn {
    width: 100%;
  }

  .checkout-card,
  .checkout-summary-card,
  .payment-card {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .checkout-items-table {
    overflow-x: auto;
  }

  .sovbox h4 {
    font-size: 1.2rem;
  }

  .sovinput {
    border-radius: 16px;
  }

  .sovinput input {
    min-width: 0;
    padding: 13px 14px;
    font-size: 0.9rem;
  }

  .sovinput button {
    padding: 0 16px;
  }

  .sovcat {
    padding: 6px 10px;
    font-size: 0.74rem;
  }

  .mpbox {
    border-radius: 16px;
    max-height: 92vh;
  }

  .mpbox .mpimg {
    min-height: 210px;
    border-radius: 16px 16px 0 0;
  }

  #mpTitle {
    font-size: 1.35rem;
  }

  #mpPrice {
    font-size: 1.5rem;
  }

  .mp-meta,
  .mpmeta {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  #topbar .top-contact {
    flex-direction: column;
    align-items: center;
  }

  .navbar-brand {
    max-width: calc(100% - 96px);
  }

  .logo-img {
    width: 105px;
    height: 60px;
  }

  .bname {
    font-size: 1.05rem;
  }

  .bsub {
    max-width: 150px;
  }

  .mobile-cart-btn,
  .navbar-toggler {
    width: 39px;
    height: 39px;
  }

  .stitle {
    font-size: 1.65rem;
  }

  .hcircle {
    width: min(240px, 72vw);
    height: min(240px, 72vw);
  }

  .astack {
    padding: 8px 8px 88px;
  }

  .amain img {
    height: 300px;
  }

  .asm {
    width: 48%;
    right: 8px;
    bottom: 20px;
  }

  .aexp {
    left: 12px;
    bottom: 28px;
  }

  .fti {
    gap: 12px;
    padding: 12px;
  }

  .ftico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1rem;
  }

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

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-img-wrapper {
    width: 100%;
    height: 160px;
  }

  .cart-top,
  .cart-bottom,
  .summary-row {
    gap: 8px;
  }
}

.mpml {
  font-size: 0.75rem;
  color: #777;
}

.modal {
  z-index: 9999;
}

.cart-modal{
    background: var(--cream2);
    border-radius: 18px;
    border: 1px solid #e6f2e6;    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: var(--cream3);
    border-bottom: 1px solid #eef2ee;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.cart-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-logo-wrap {
    width: 118px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,.48);
    border: 1px solid rgba(212,160,23,.2);
    padding: 4px;
    box-shadow: 0 8px 22px rgba(110,82,12,.12);
}

.cart-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-header-text {
    display: flex;
    flex-direction: column;
}

.cart-header-eyebrow {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9b7210;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.cart-modal-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #2f3028;
    line-height: 1.2;
}

.cart-modal-subtitle {
    color: #716b5b;
    font-size: 0.84rem;
    margin-top: 4px;
}

.custom-close {
    background-size: 12px;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.custom-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.cart-list{
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 4px;
}

.cart-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px 10px;
    border-radius:12px;
    background:#fff;
    border:1px solid #eef3ee;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
    margin-bottom:10px;
    transition:0.2s ease;
}

.cart-item:hover{
    transform: translateY(-1px);
    box-shadow:0 8px 18px rgba(0,0,0,0.08);
}

/* IMAGE lebih kecil */
.cart-item-img-wrapper{
    width:140px;
    height:90px;
    flex-shrink:0;
    border-radius:10px;
    overflow:hidden;
    background:#f3f6f3;
}

.cart-item-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* BODY lebih rapat */
.cart-item-body{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:2px;
    font-size:13px;
}

/* optional: judul & harga */
.cart-item-title{
    font-size:13px;
    font-weight:600;
    line-height:1.2;
}

.cart-item-price{
    font-size:12px;
    color:#666;
}

.cart-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.cart-title {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    color: #222;
}

.cart-category {
    font-size: 11px;
    background: #f0f7f0;
    color: #2f6b2f;
    padding: 3px 8px;
    border-radius: 999px;
}

.cart-meta {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.cart-badge {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 8px;
    background: #f7f7f7;
    color: #444;
}

.cart-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.cart-subtotal {
    font-size: 10px;
    color: #666;
}

.cart-subtotal strong {
    display: block;
    font-size: 10px;
    color: #D4A017;
}

.cart-old-subtotal {
    color: #aaa;
    font-weight: 500;
    margin-right: 6px;
}

.cart-remove {
    border: none;
    background: rgba(255, 77, 77, 0.08);
    color: #ff4d4d;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
}

.cart-remove:hover {
    background: rgba(255, 77, 77, 0.15);
    transform: scale(1.05);
}

.cart-remove:active {
    transform: scale(0.95);
}

.cart-note {
    margin-top: 10px;
    padding: 10px 12px;
    background: #fffdf6;
    border: 1px solid #f3e6b3;
    border-left: 4px solid #D4A017;
    border-radius: 10px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.cart-item-top{
    display:flex;
    justify-content:space-between;
    gap:15px;
}

.cart-item-title{
    margin:0 0 4px;
    font-weight:700;
    font-size:1rem;
}

.cart-item-cat{
    color:#888;
    font-size:.85rem;
    margin-bottom:8px;
}

.cart-item-meta{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.cart-badge{
    background:#f5f5f5;
    border-radius:999px;
    padding:4px 10px;
    font-size:.78rem;
}

.cart-price{
    font-weight:700;
    color:#16a34a;
    white-space:nowrap;
}

.cart-subtotal{
    margin-top:8px;
    font-size:.9rem;
    font-weight:600;
}

.cart-actions{
    display:flex;
    align-items:center;
}

.cart-remove{
    border:none;
    background:#fff0f0;
    color:#d62828;
    padding:8px 12px;
    border-radius:10px;
    cursor:pointer;
}

.cart-total-box{
    background: var(--cream3);
    margin-top:10px;
    padding:5px;
    border-top:1px solid #eee;
    text-align:right;
    font-size:0.8 rem;
}

.cart-body{
    padding: 0;
    display: flex;
    flex-direction: column;
    max-height: 70vh;
}

.cart-list{
    overflow-y: auto;
    padding: 18px;
    flex: 1;
}

.cart-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:6px;
    font-size:.95rem;
    color:#444;
}

.cart-row.grand-total{
    margin-top:10px;
    padding-top:10px;
    border-top:1px solid #eee;
    font-weight:700;
}

.cartCheckout-action-box{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    padding:12px 18px;
    border-top:1px solid #eee;
    background: var(--cream3);
    position: sticky;
    bottom: 0;
}

.cart-btn {
    flex: 1;
    height: 48px;
    border: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
}

/* tombol cancel */
.cart-btn-cancel {
    background: #fff;
    color: #495057;
    border: 1px solid #dfe7df;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.01);
}

.cart-btn-cancel:hover {
    background: #f7f9f7;
    transform: translateY(-1px);
}

/* tombol checkout */
.cart-btn-checkout {
    background: linear-gradient(135deg, #D4A017 0%, #c28d0d 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(212, 160, 23, 0.25);
}

.cart-btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(212, 160, 23, 0.35);
}

.cart-btn-checkout:active,
.cart-btn-cancel:active {
    transform: scale(0.98);
}

/* Modal Checkout */
.checkout-modal{
    background: var(--cream2);
    border-radius: 20px;
    border: 1px solid #e6f2e6;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

/* HEADER */
.checkout-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 16px;
    background: var(--cream3);
    border-bottom:1px solid #eef2ee;
}

.checkout-header h5{
    font-size:1.1rem;
    font-weight:700;
    color:#1f2a1f;
}

.checkout-header small{
    color:#716b5b;
    font-size:.82rem;
}

.checkout-header-left {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.checkout-logo-wrap {
    width: 112px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 4px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255,255,255,.48);
    border: 1px solid rgba(212,160,23,.2);
    box-shadow: 0 8px 22px rgba(110,82,12,.12);
}

.checkout-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkout-header-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.checkout-header-eyebrow {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9b7210;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

/* CARD FORM */
.checkout-card{
    background:#fff;
    border:1px solid #eef3ee;
    border-radius:14px;
    padding:14px;
    box-shadow:0 4px 12px rgba(0,0,0,0.04);
}

/* LABEL */
.checkout-card label{
    font-size:13px;
    font-weight:600;
    color:#2f3b2f;
    margin-bottom:4px;
}

/* INPUT */
.checkout-card .form-control{
    border-radius:10px;
    border:1px solid #e5e9e5;
    font-size:14px;
    transition:0.2s;
}

.checkout-card .form-control:focus{
    border-color:#7bbf7b;
    box-shadow:0 0 0 3px rgba(123,191,123,0.15);
}

/* SUMMARY CARD */
.checkout-summary-card{
    background:#fff;
    border:1px solid #eef3ee;
    border-radius:14px;
    padding:14px;
    box-shadow:0 4px 12px rgba(0,0,0,0.04);
}

.checkout-summary-card h6{
    font-weight:700;
    color:#1f2a1f;
    margin-bottom:10px;
}

/* ROW TOTAL */
.summary-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:8px;
    font-size:14px;
    color:#3a4a3a;
}

.summary-row.total{
    font-size:16px;
    font-weight:700;
    color:#1f2a1f;
}

/* TABLE ITEM LIST */
.checkout-items-table{
    max-height:180px;
    overflow-y:auto;
    border-radius:10px;
    margin-bottom:10px;
}

/* PAYMENT */
.payment-card{
    background:#fff;
    border:1px solid #eef3ee;
    border-radius:14px;
    padding:14px;
    margin-top:12px;
    text-align:center;
    box-shadow:0 4px 12px rgba(0,0,0,0.04);
}

.payment-card h6{
    font-weight:700;
    color:#1f2a1f;
}

.qris-box img{
    width:100%;
    max-width:220px;
    border-radius:10px;
}

/* BUTTON AREA */
.cart-action-box{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    padding:12px 16px;
}

.cart-btn{
    padding:10px 18px;
    border-radius:10px;
    font-weight:600;
    border:none;
    transition:0.2s;
}

.cart-btn-cancel{
    background:#f1f1f1;
    color:#333;
}

.cart-btn-cancel:hover{
    background:#e2e2e2;
}

.cart-btn-checkout:disabled{
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Final responsive overrides: keep these after modal/cart styles. */
@media (max-width: 991px) {
  .cart-dialog,
  .modal-dialog {
    max-width: calc(100vw - 24px);
    margin-left: auto;
    margin-right: auto;
  }

  .cart-modal,
  .checkout-modal {
    max-height: calc(100vh - 24px);
    overflow: hidden;
  }

  .cart-body,
  .checkout-modal .modal-body {
    max-height: calc(100vh - 130px);
    overflow-y: auto;
  }
}

@media (max-width: 767px) {
  .checkout-header-left {
    gap: 10px;
  }

  .checkout-logo-wrap {
    width: 76px;
    height: 54px;
    border-radius: 13px;
  }

  .checkout-header-eyebrow {
    font-size: .58rem;
    letter-spacing: .08em;
  }

  .cart-modal-header,
  .checkout-header {
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }

  .cart-header-left {
    min-width: 0;
  }

  .cart-logo-wrap {
    width: 78px;
    height: 54px;
    flex-shrink: 0;
  }

  .cart-modal-title,
  .checkout-header h5 {
    font-size: 1.05rem;
  }

  .cart-modal-subtitle,
  .checkout-header small {
    font-size: 0.72rem;
  }

  .cart-item {
    gap: 12px;
    padding: 12px;
  }

  .cart-item-img-wrapper {
    width: 86px;
    height: 86px;
    flex: 0 0 86px;
  }

  .cart-item-body {
    min-width: 0;
  }

  .cart-title,
  .cart-item-title {
    overflow-wrap: anywhere;
  }

  .cart-total-box,
  .cart-action-box,
  .cartCheckout-action-box {
    flex-direction: column;
    gap: 10px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .cart-btn {
    width: 100%;
  }

  .checkout-card,
  .checkout-summary-card,
  .payment-card {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .checkout-items-table {
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .cart-item {
    flex-direction: column;
  }

  .cart-item-img-wrapper {
    width: 100%;
    height: 160px;
    flex-basis: 160px;
  }

  .cart-top,
  .cart-bottom,
  .summary-row {
    gap: 8px;
  }
}

/* Keep floating action buttons inside mobile, tablet, and small laptop viewport. */
@media (max-width: 1199px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  #waBtn,
  #btt {
    right: max(16px, env(safe-area-inset-right));
    left: auto;
    width: 44px;
    height: 44px;
    max-width: calc(100vw - 24px);
    transform: none;
    box-sizing: border-box;
  }

  #waBtn {
    bottom: max(16px, env(safe-area-inset-bottom));
  }

  #waBtn.up {
    bottom: calc(max(16px, env(safe-area-inset-bottom)) + 56px);
  }

  #btt {
    bottom: max(16px, env(safe-area-inset-bottom));
    transform: translateY(12px);
  }

  #btt.show {
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  #waBtn,
  #btt {
    right: max(12px, env(safe-area-inset-right));
  }
}

@media (max-width: 360px) {
  #waBtn,
  #btt {
    right: 10px;
    width: 42px;
    height: 42px;
  }
}

/* Blog responsive: laptop 3, tablet 2, mobile 1 kartu per baris. */
@media (min-width: 576px) and (max-width: 991px) {
  .blog-slide {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
  }
}

@media (max-width: 575px) {
  .blog-slide {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 4px;
  }
}

/* Contact tablet: kartu bertumpuk dan tetap berada dalam alur section. */
#contact-section .fcard {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  transform: none;
}

@media (min-width: 576px) and (max-width: 991px) {
  #contact-section {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  #contact-section > .container > .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    row-gap: 24px;
    height: auto;
  }

  #contact-section .col-lg-4,
  #contact-section .col-lg-8 {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  #contact-section .ctdark,
  #contact-section .fcard {
    position: relative !important;
    inset: auto !important;
    height: auto !important;
    min-height: 0;
  }

  #contact-section .ctinfo {
    min-width: 0;
  }

  #contact-section .ctinfo span {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 575px) {
  #contact-section {
    height: auto !important;
    min-height: 0;
    overflow: visible;
  }

  #contact-section > .container > .row,
  #contact-section .col-lg-4,
  #contact-section .col-lg-8 {
    position: relative;
    height: auto;
    min-height: 0;
  }

  #contact-section .ctdark,
  #contact-section .fcard {
    position: relative !important;
    inset: auto !important;
    display: block;
    width: 100%;
    height: auto !important;
    min-height: 0;
    transform: none;
  }
}

/* Final mobile gallery layout: keep card spacing from being overridden. */
@media (max-width: 767.98px) {
  #gallery .gallery-slide {
    box-sizing: border-box;
    padding: 0 8px;
  }

  #gallery .gallery-slide .ggrid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  #gallery .gallery-slide .gitem,
  #gallery .gallery-slide .gitem:first-child,
  #gallery .gallery-slide .gitem:last-child {
    flex: 0 0 220px;
    width: 100%;
    height: 220px !important;
    margin: 0 !important;
  }
}
