
/*SHOP.PHP*/


*{margin:0;padding:0;box-sizing:border-box}
body{font-family:Arial,Helvetica,sans-serif;background:#fff;color:#111}

/* TOP NAV */
.topbar{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  padding:22px 38px;
  gap:18px;
}
.topbar-left a{
  text-decoration:none;
  color:#111;
  font-size:12px;
  letter-spacing:1px;
  margin-right:14px;
}
.topbar-left a.active{font-weight:700}
.topbar-center{
  font-weight:800;
  letter-spacing:2px;
  font-size:18px;
  text-align:center;
}
.topbar-right{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14px;
}
.currency{font-size:14px}
.icon{opacity:.9}

/* RESULT COUNT */
.results{
  padding: 8px 38px 0;
}
.results-count{
  font-size:14px;
  color:#111;
}

/* SHOP GRID */
.shop{
  padding: 34px 38px 60px;
}
.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  border-top:1px solid #eee;
  border-left:1px solid #eee;
}

/* each item cell */
.item{
  border-right:1px solid #eee;
  border-bottom:1px solid #eee;
  padding: 0;
}

/* big grey tile like screenshot */
.tile {
  background: #f3f3f3;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


/* image centered, not too big */
.product-img {
  width: 62%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform .45s ease;
}


/* subtle hover zoom macam SVG */
.tile:hover .product-img{
  transform: scale(1.04);
}

/* Sold out badge bawah dalam tile */
.sold-badge {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #e5e5e5;
  color: #666;
  font-size: 12px;
  padding: 6px 16px;
  letter-spacing: 1px;
}


/* sold out look */
.is-sold .product-img{opacity:.95}

/* meta (name + price) under tile */
.meta {
  text-align: center;
  padding: 20px 0 25px;
}

.name{
  font-size:12px;
  letter-spacing:1.2px;
}
.price{
  margin-top:8px;
  font-size:12px;
  letter-spacing:1px;
}

/* responsive (kalau skrin kecil, jadi 2 kolum) */
@media (max-width: 1100px){
  .grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width: 600px){
  .grid{grid-template-columns:1fr;}
  .tile{height:360px;}
  .product-img{width:70%;}
}

.sold-badge { left: 26%; bottom: 22px; }


/* =========================
   PRODUCT DETAIL (product.php)
   ========================= */
.pd{
  padding: 40px 38px 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

/* LEFT */
.pd-left{
  padding-top: 120px;
}
.pd-brand{
  font-size: 12px;
  letter-spacing: 1px;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pd-title{
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 22px;
}
.pd-desc{
  font-size: 14px;
  line-height: 1.8;
  color: #222;
  max-width: 520px;
}
.pd-divider{
  margin: 28px 0 10px;
  border-top: 1px solid #eee;
  max-width: 520px;
}

/* accordion */
.pd-acc-btn{
  width: 100%;
  max-width: 520px;
  padding: 16px 0;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}
.pd-acc-panel{
  max-width: 520px;
  display: none;
  padding: 14px 0;
  font-size: 14px;
  color: #444;
}
.pd-acc-panel.open{ display: block; }
.pd-acc-btn.open .pd-acc-icon{ transform: rotate(180deg); }
.pd-acc-icon{ transition: transform .2s ease; }

/* CENTER */
.pd-center{
  padding-top: 90px;
  display: flex;
  justify-content: center;
  position: relative;
}
.pd-img{
  width: 380px;
  max-width: 100%;
  height: auto;
}
.pd-zoom{
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
}

/* RIGHT */
.pd-right{
  padding-top: 120px;
}
.pd-price{
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 22px;
}
.pd-label{
  font-size: 13px;
  color: #444;
  margin-bottom: 10px;
}
.pd-block{
  margin-bottom: 22px;
}

/* sizes */
.pd-size-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 420px;
}
.pd-size-grid-2{
  margin-top: 10px;
  grid-template-columns: repeat(5, 1fr);
}
.pd-size-btn{
  border: 1px solid #ddd;
  background: #fff;
  padding: 12px 0;
  font-size: 13px;
  cursor: pointer;
}
.pd-size-btn.active{
  background: #111;
  color: #fff;
  border-color: #111;
}

/* qty */
.pd-qty{
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  width: 170px;
  height: 48px;
}
.pd-qty-btn{
  width: 54px;
  height: 46px;
  border: none;
  background: #fff;
  font-size: 20px;
  cursor: pointer;
}
.pd-qty-num{
  flex: 1;
  text-align: center;
  font-size: 14px;
}

/* buttons */
.pd-btn{
  width: 100%;
  height: 52px;
  font-size: 14px;
  cursor: pointer;
}
.pd-btn-outline{
  border: 1px solid #111;
  background: #fff;
  margin-top: 8px;
}
.pd-btn-fill{
  border: none;
  background: #111;
  color: #fff;
  margin-top: 12px;
}
.pd-back{
  display: inline-block;
  margin-top: 18px;
  color: #666;
  text-decoration: none;
  font-size: 13px;
}
.btn-black{
  width:100%;
  height:50px;
  background:#000;
  color:#fff;
  border:none;
  font-size:14px;
  letter-spacing:1px;
  cursor:pointer;
}

.btn-buy{
  display:block;
  text-align:center;
  margin-top:10px;
  padding:14px;
  background:#111;
  color:#fff;
  text-decoration:none;
}

/* responsive */
@media (max-width: 1100px){
  .pd{ grid-template-columns: 1fr; }
  .pd-left,.pd-center,.pd-right{ padding-top: 20px; }
  .pd-title{ font-size: 34px; }
  .pd-center{ padding-top: 20px; }
}



/* =========================
   RESET
========================= */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  padding:0;
  font-family: Arial, Helvetica, sans-serif;
  color:#111;
  background:#fff;
}

/* =========================
   HEADER (DALTED CULTURE)
========================= */
.header{
  position: sticky;
  top:0;
  z-index:1000;

  height:72px;                 /* penting: supaya hero rapat */
  background:#fff;
  border-bottom:1px solid #eee;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:0 40px;
}



/* tengah logo */
.header-logo{
  font-weight:800;
  letter-spacing:6px;
  font-size:26px;
  text-align:center;
}

/* kanan menu */
.header-right{
  display:flex;
  align-items:center;
  gap:18px;
}
.header-right a{
  text-decoration:none;
  color:#111;
  font-size:14px;
  letter-spacing:.5px;
}
.cart-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:12px;
  margin-left:6px;
}

/* ===== HERO FULL FIT ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px); /* 80px = tinggi header */
  overflow: hidden;
  background: #000;
}

/* slide */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;       /* 🔥 paling penting */
  background-position: center;  /* center cantik */
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* overlay gelap sikit (optional, nampak premium) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.35)
  );
  z-index: 2;
}

/* content atas gambar */
.hero-content {
  position: absolute;
  z-index: 3;
  left: 60px;
  bottom: 80px;
}

.hero-btn {
  background: rgba(255,255,255,0.85);
  color: #000;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #000;
  color: #fff;
}

/* arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
}

.hero-arrow.left { left: 20px; }
.hero-arrow.right { right: 20px; }

/* responsive */
@media (max-width: 768px) {
  .hero-slider {
    height: calc(100vh - 60px);
  }

  .hero-content {
    left: 20px;
    bottom: 40px;
  }
}

/* ===== FIX TOP MENU LINK (REMOVE BLUE LINK) ===== */
.top-menu a,
.top-menu a:visited,
.top-menu a:active {
  color: #000;            /* tukar ke #fff kalau header gelap */
  text-decoration: none; /* buang underline */
  font-weight: 600;
  font-size: 15px;
  margin-right: 18px;
}

/* hover effect (kemas, macam website sebenar) */
.top-menu a:hover {
  opacity: 0.7;
}

/* kalau header atas gambar (transparent / gelap) */
.home-full .top-menu a,
.home-full .top-menu a:visited {
  color: #fff;
}
header a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

header a:hover {
  opacity: 0.7;
}

/* atas hero image */
.home-full header a {
  color: #fff;
}

/* =========================
   SHOP - FIX LINK LOOK
   ========================= */

/* buang link biru/underline (global) */
a{ color:inherit; text-decoration:none; }

/* 1 card = 1 link */
.item-link{
  display:block;
  color:#111;
  text-decoration:none;
}

/* hover effect satu card */
.item-link:hover .tile{
  background:#ededed; /* sikit berubah */
}
.item-link:hover .name{
  text-decoration: underline; /* gaya brand */
  text-underline-offset: 4px;
}

/* nama + harga supaya tak jadi link biru */
.meta{
  text-align:center;
  padding: 18px 0 24px;
}

.name{
  font-size:12px;
  letter-spacing:1.4px;
  text-transform:uppercase;
  font-weight:500;
}

.price{
  margin-top:8px;
  font-size:12px;
  letter-spacing:1px;
  font-weight:700;
}

/* kekalkan hover zoom gambar */
.tile:hover .product-img{
  transform: scale(1.05);
}

/* (optional) bagi tile nampak macam kotak besar dalam contoh */
.tile{
  background:#f3f3f3;
  height: 420px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
/* =========================
   HEADER MENU STYLE
   ========================= */
.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 22px 38px;
  border-bottom:1px solid #eee;
}

.top-menu a,
.header-right a{
  font-size:12px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  padding:8px 10px;
}

.top-menu a:hover,
.header-right a:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-logo{
  font-size:24px;
  font-weight:800;
  letter-spacing:3px;
  text-transform:uppercase;
}
.cart-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;height:18px;
  border-radius:50%;
  background:#111;color:#fff;
  font-size:11px;
  margin-left:6px;
}

/* ===== CONTACT PAGE ===== */
.page{
  padding: 24px 0 60px;
}

.contact-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
}

.kicker{
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
  color: #777;
}

.title{
  font-size: 40px;
  line-height: 1.05;
  margin: 10px 0 10px;
  font-weight: 800;
}

.sub{
  color: #555;
  line-height: 1.7;
  max-width: 520px;
}

.contact-cards{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 20px;
}

.c-card{
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 16px 18px;
  background: #fff;
}

.c-label{
  font-size: 12px;
  color: #777;
  letter-spacing: .08em;
  font-weight: 700;
  text-transform: uppercase;
}

.c-value{
  margin-top: 6px;
  font-size: 18px;
  font-weight: 800;
  color: #111;
}

.c-mini{
  margin-top: 6px;
  color: #666;
  font-size: 13px;
}

.form-card{
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 22px;
  background: #fff;
}

.form-head{
  margin-bottom: 14px;
}

.form-title{
  font-size: 18px;
  font-weight: 800;
}

.form-desc{
  margin-top: 4px;
  color: #666;
  font-size: 13px;
}

.contact-form .field{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.contact-form label{
  font-size: 12px;
  font-weight: 700;
  color: #444;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.contact-form textarea{
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color: #111;
}

.row2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-primary{
  margin-top: 16px;
  width: 100%;
  padding: 14px 14px;
  border: none;
  border-radius: 14px;
  background: #111;
  color: #fff;
  font-weight: 800;
  letter-spacing: .06em;
  cursor: pointer;
}

.btn-primary:hover{
  opacity: .9;
}

.form-note{
  margin-top: 10px;
  font-size: 12px;
  color: #777;
}

.alert{
  border-radius: 14px;
  padding: 12px 14px;
  margin: 12px 0 6px;
  font-size: 14px;
}

.alert.success{
  background: #f2fbf5;
  border: 1px solid #cfeeda;
  color: #1f6b3b;
}

.alert.error{
  background: #fff5f5;
  border: 1px solid #ffd0d0;
  color: #a02525;
}

@media (max-width: 900px){
  .contact-wrap{
    grid-template-columns: 1fr;
  }
  .title{ font-size: 34px; }
  .row2{ grid-template-columns: 1fr; }
}
/* =========================
   DALTED CULTURE – FINAL THEME
   Soft Warm Grey (#f5f5f4)
   ========================= */

/* ===== THEME ===== */
:root{
  --bg-main: #f5f5f4;      /* background utama */
  --bg-card: #ffffff;     /* card/section */
  --text-main: #111111;
  --text-muted: #6b6b6b;
  --border: #e7e7e7;
  --shadow: 0 6px 24px rgba(0,0,0,.06);
  --btn: #111111;
  --btn-text: #ffffff;
}

/* ===== RESET ===== */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
}

/* buang link biru global */
a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.9; }

/* =========================
   HEADER
   ========================= */
.header{
  position: sticky;
  top:0;
  z-index:1000;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 16px 28px;

  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
}

/* menu kiri */
.top-menu{
  display:flex;
  gap:18px;
}
.top-menu a{
  font-size:14px;
  font-weight:600;
  padding:8px 10px;
  border-radius:10px;
}
.top-menu a:hover{
  background:#efefef;
}

/* logo tengah */
.header-logo{
  font-weight:900;
  letter-spacing:6px;
  font-size:26px;
  text-align:center;
}

/* kanan */
.header-right{
  display:flex;
  justify-content:flex-end;
  gap:18px;
}
.header-right a{
  font-size:14px;
  font-weight:600;
  padding:8px 10px;
  border-radius:10px;
}
.header-right a:hover{
  background:#efefef;
}

.cart-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;height:20px;
  border-radius:999px;
  background:#111;color:#fff;
  font-size:12px;
  margin-left:6px;
}

/* =========================
   HERO (FULL, FIT NGAM)
   ========================= */
.h2-hero{
  position:relative;
  width:100%;
  height: calc(100vh - 88px); /* ikut header */
  min-height: 520px;
  overflow:hidden;
  background:#eaeaea;
}

/* slider */
.hero-slider{
  position:absolute;
  inset:0;
}
.hero-slide{
  position:absolute;
  inset:0;
  background-size: cover;       /* PENTING: fit atas bawah */
  background-position: center;
  background-repeat:no-repeat;
  opacity:0;
  transition: opacity .8s ease;
}
.hero-slide.active{ opacity:1; }

/* overlay lembut */
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.35),
    rgba(0,0,0,.15),
    rgba(0,0,0,.05)
  );
  pointer-events:none;
}

/* content */
.hero-content{
  position:absolute;
  left:70px;
  bottom:60px;
  z-index:5;
}
.hero-logo{
  margin:0 0 14px 0;
  font-size:44px;
  font-weight:900;
  letter-spacing:2px;
  color:#fff;
  text-shadow:0 6px 18px rgba(0,0,0,.25);
}
.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:46px;
  padding:0 22px;
  border-radius:12px;
  background:rgba(255,255,255,.92);
  color:#111;
  font-weight:800;
  border:1px solid rgba(255,255,255,.6);
  box-shadow:0 10px 25px rgba(0,0,0,.16);
}
.hero-btn:hover{ background:#fff; }

/* arrows */
.h2-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;height:44px;
  border-radius:999px;
  border:none;
  background:rgba(0,0,0,.2);
  color:#fff;
  font-size:28px;
  cursor:pointer;
  z-index:6;
}
.h2-arrow.left{ left:18px; }
.h2-arrow.right{ right:18px; }
.h2-arrow:hover{ background:rgba(0,0,0,.35); }

/* =========================
   CARD / SECTION (SHOP, CONTACT, CART)
   ========================= */
.section,
.card,
.form-card{
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px){
  .header{
    grid-template-columns: 1fr;
    gap:10px;
    padding:14px 16px;
  }
  .top-menu,
  .header-right{
    justify-content:center;
    flex-wrap:wrap;
  }
  .header-logo{ font-size:22px; }

  .h2-hero{
    height: calc(100vh - 160px);
    min-height: 460px;
  }
  .hero-content{
    left:18px;
    right:18px;
    bottom:28px;
  }
  .hero-logo{ font-size:32px; }
}

/* =========================
   CHECKOUT PAGE (checkout.php)
   Theme: Soft Warm Grey
   ========================= */

.ck-header{
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 72px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.ck-logo{
  font-weight: 900;
  letter-spacing: 6px;
  font-size: 22px;
  color: var(--text-main);
  text-transform: uppercase;
}

.ck-wrap{
  max-width: 1200px;
  margin: 22px auto 60px;
  padding: 0 22px;

  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

/* LEFT FORM */
.ck-left{
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.ck-left h2{
  margin: 14px 0 10px;
  font-size: 16px;
  letter-spacing: .06em;
  font-weight: 900;
  text-transform: uppercase;
}

.ck-left input,
.ck-left select{
  width: 100%;
  height: 46px;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 0 12px;
  background: #fff;
  font-size: 14px;
  outline: none;
  margin-bottom: 12px;
}

.ck-left input:focus,
.ck-left select:focus{
  border-color: #111;
}

/* 2 column row */
.ck-left .row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}



/* Pay button */
.pay-btn{
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 14px;
  background: var(--btn);
  color: var(--btn-text);
  font-weight: 900;
  letter-spacing: .06em;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
}
.pay-btn:hover{
  transform: translateY(-1px);
  opacity: .95;
}

/* RIGHT SUMMARY */
.ck-right{
  background: #f7f7f7; /* sedikit kelabu macam checkout site */
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.summary{
  max-width: 520px;
  margin: 0 auto;
}

.summary .title{
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Product row */
.product{
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 12px 0 16px;
  border-bottom: 1px solid #eaeaea;
}

.img-box{
  width: 64px;
  height: 64px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  position: relative;
}

.img-box img{
  width: 80%;
  height: auto;
  display:block;
}

.img-box span{
  position:absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
}

.product .title{
  font-size: 14px;
  font-weight: 800;
  margin: 0;
  color: var(--text-main);
}

.product .size{
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

.product .price{
  margin-left: auto;
  font-weight: 900;
  font-size: 14px;
}

/* Totals */
.line{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin: 12px 0;
  font-size: 14px;
  color: var(--text-main);
}

.line small{
  color: var(--text-muted);
  font-size: 12px;
}

.total{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #eaeaea;
  font-weight: 900;
  font-size: 18px;
}

/* Promo code (optional kalau awak tambah) */
.ck-coupon{
  display:flex;
  gap: 10px;
  margin-top: 14px;
}
.ck-coupon input{
  margin: 0;
}
.ck-coupon button{
  height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

/* Responsive */
@media (max-width: 980px){
  .ck-wrap{
    grid-template-columns: 1fr;
  }
  .ck-right{
    order: 2;
  }
  .ck-left .row{
    grid-template-columns: 1fr;
  }
}



.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 28px;
  border-bottom:1px solid #eee;
  background:#fff;
}

.top-menu a,
.header-right a{
  text-decoration:none;
  color:#111;
  font-weight:600;
  margin-right:18px;
}

.header-logo{
  font-weight:900;
  letter-spacing:3px;
  font-size:20px;
}

.nav-cart{
  position:relative;
}

.cart-badge{
  background:#111;
  color:#fff;
  border-radius:999px;
  padding:2px 7px;
  font-size:12px;
  font-weight:800;
  margin-left:6px;
}

/* ===============================
   FIX ADD TO CART & BUY NOW
   JANGAN UBAH DESIGN
   =============================== */

/* pastikan area product boleh klik */
.pd,
.pd-left,
.pd-center,
.pd-right {
  position: relative;
  z-index: 50;
}

/* pastikan button boleh terima click */
.pd-btn,
.btn-black,
.btn-buy,
button {
  position: relative;
  z-index: 60;
  pointer-events: auto;
}

/* MATIKAN SEMUA OVERLAY DARI BLOCK CLICK */
.hero-overlay,
.hero-slider,
.hero-slide {
  pointer-events: none;
}

/* header jangan block bawah */
.header {
  pointer-events: auto;
}

/* safety: kalau ada layer invisible */
body::before,
body::after {
  pointer-events: none;
}

/* =========================
   CART (OLD LOOK - like your screenshot)
   ========================= */

.cart-wrap{
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 18px;
}

.cart-title{
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  margin: 10px 0 26px;
}

/* table */
.cart-table{
  width: 100%;
  border-collapse: collapse;
}

.cart-table thead th{
  font-size: 14px;
  font-weight: 800;
  padding: 16px 14px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.cart-table td{
  padding: 18px 14px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
  font-size: 14px;
}

.cart-table th:nth-child(2),
.cart-table th:nth-child(3),
.cart-table th:nth-child(4),
.cart-table th:nth-child(5),
.cart-table td:nth-child(2),
.cart-table td:nth-child(3),
.cart-table td:nth-child(4),
.cart-table td:nth-child(5){
  text-align: center;
}

.cart-product{
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-product img{
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #f6f6f6;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 8px;
}

.cart-pname{
  font-weight: 900;
  letter-spacing: .02em;
}

/* qty input kecil */
.cart-qty{
  width: 64px;
  height: 36px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
}

/* remove button kecil */
.btn-remove{
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 14px;
  border-radius: 12px;
  cursor: pointer;
}
.btn-remove:hover{ background:#f5f5f5; }

/* bawah: button row */
.cart-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* kiri */
.cart-left-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* tengah */
.cart-mid-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* kanan subtotal + checkout */
.cart-right{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cart-subtotal{
  font-size: 22px;
  font-weight: 900;
  border-left: 1px solid #eee;
  padding-left: 16px;
}

/* button style sama macam screenshot */
.btn-cart{
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
}
.btn-cart:hover{ background:#f5f5f5; }

.btn-checkout{
  height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  border: none;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}
.btn-checkout:hover{ opacity:.92; }

/* note bawah */
.cart-note{
  margin-top: 10px;
  color: #666;
  font-size: 13px;
}

/* mobile */
@media (max-width: 780px){
  .cart-subtotal{ border-left: 0; padding-left: 0; }
  .cart-right{ width: 100%; justify-content: flex-start; }
  .btn-checkout{ width: 100%; }
}

/* kolum cart align cantik */
.cart-table th,
.cart-table td{
  vertical-align: middle;
}

.cart-table th:nth-child(2),
.cart-table td:nth-child(2){ /* Size */
  width: 90px;
  text-align:center;
}

.cart-table th:nth-child(3),
.cart-table td:nth-child(3){ /* Price */
  width: 140px;
  text-align:center;
}

.cart-table th:nth-child(4),
.cart-table td:nth-child(4){ /* Qty */
  width: 120px;
  text-align:center;
}

.cart-table th:nth-child(5),
.cart-table td:nth-child(5){ /* Total */
  width: 140px;
  text-align:center;
}

body{
  background:#f5f5f4;   /* soft warm grey – nampak premium */
  color:#111;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:40px 24px;
}

.product-card{
  background:#fff;
  border-radius:18px;
  padding:18px;
  box-shadow:0 8px 30px rgba(0,0,0,.06);
  transition:.25s;
}

.product-card:hover{
  transform:translateY(-4px);
}

.btn{
  height:46px;
  padding:0 20px;
  border-radius:12px;
  border:1px solid #111;
  background:#111;
  color:#fff;
  font-weight:700;
  letter-spacing:.5px;
  cursor:pointer;
  transition:.2s;
}

.btn:hover{
  transform:translateY(-1px);
  opacity:.9;
}

.btn-outline{
  background:#fff;
  color:#111;
}
.product-img{
  width:100%;
  border-radius:14px;
  background:#f3f3f3;
  padding:18px;
}

/* ===== CHECKOUT checkbox small + align bawah email ===== */
.ck-left label.checkbox,
.ck-left .checkbox,
.ck-check {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:#666;
  cursor:pointer;
  margin-top:-6px;
  margin-bottom:18px;
}

.ck-left label.checkbox input[type="checkbox"],
.ck-left .checkbox input[type="checkbox"],
.ck-check input[type="checkbox"]{
  width:14px;
  height:14px;
  margin:0;
  accent-color:#111;
  transform:scale(.9);
}

/* ===== ADMIN UI FIX ===== */
.admin-box{
  background:#fff;
  border:1px solid #eee;
  border-radius:18px;
  padding:18px;
  box-shadow:0 6px 22px rgba(0,0,0,.06);
  margin-bottom:18px;
}

.admin-box h2{
  margin:0 0 14px;
  font-size:16px;
  font-weight:900;
}

.admin-msg{
  background:#ecfdf5;
  border:1px solid #bbf7d0;
  color:#065f46;
  padding:12px 14px;
  border-radius:14px;
  margin-bottom:16px;
  font-weight:800;
}

.admin-form{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap:10px;
  align-items:center;
}

.admin-form input{
  height:44px;
  border:1px solid #ddd;
  border-radius:12px;
  padding:0 12px;
}

.admin-check{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:#444;
  white-space:nowrap;
}

.admin-table{
  width:100%;
  border-collapse:collapse;
}

.admin-table th,
.admin-table td{
  border-bottom:1px solid #f0f0f0;
  padding:14px 12px;
  text-align:left;
  vertical-align:middle;
}

.admin-table th{
  font-size:13px;
  font-weight:900;
  color:#111;
}

.admin-img{
  width:70px;
  height:70px;
  object-fit:contain;
  background:#f6f6f6;
  border:1px solid #eee;
  border-radius:14px;
  padding:8px;
}

.admin-action{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.btn-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:38px;
  padding:0 14px;
  border-radius:12px;
  font-weight:900;
  text-decoration:none;
  border:1px solid #ddd;
  background:#fff;
  color:#111;
}

.btn-action.edit{
  border-color:#111;
}

.btn-action.delete{
  border-color:#fecaca;
  background:#fff1f2;
  color:#be123c;
}

.btn-action:hover{ opacity:.9; }

@media(max-width:900px){
  .admin-form{ grid-template-columns: 1fr; }
}

/* ===== HERO TEXT CENTER OVER IMAGE ===== */

.hero-slider{
  position: relative;
  height: 60vh;
  min-height: 380px;
  max-height: 520px;
  overflow: hidden;
}

.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .6s ease;
}

.hero-slide.active{
  opacity: 1;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.hero-content{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  z-index: 2;
  padding: 20px;
}

.hero-content h1{
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-content p{
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 18px;
}

.hero-buttons{
  display: flex;
  gap: 12px;
}

.hero-btn{
  display: inline-block;
  padding: 10px 22px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}

.hero-btn:hover{
  transform: translateY(-2px);
}

.hero-btn.outline{
  background: transparent;
  color: white;
  border: 1px solid white;
}
/* ===== CINEMATIC HERO EFFECT ===== */

.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);              
  transition: opacity .8s ease, transform 6s ease;
}

.hero-slide.active{
  opacity: 1;
  transform: scale(1.08);           
}

/* Overlay lebih premium */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.45)
  );
  z-index: 1;
}

/* Text animation */
.hero-content{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  z-index: 2;
  padding: 20px;
  animation: heroFade 1.2s ease;
}

@keyframes heroFade{
  from{
    opacity: 0;
    transform: translateY(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Text polish */
.hero-content h1{
  font-size: 44px;
  letter-spacing: 1px;
}

.hero-content p{
  font-size: 15px;
  opacity: 0.85;
}

/* Button glow subtle */
.hero-btn{
  backdrop-filter: blur(6px);
}

.hero-btn:hover{
  transform: translateY(-2px) scale(1.03);
}
/* ===== FULL HERO HEIGHT (NO WHITE GAP) ===== */
.h2-hero{
  height: calc(100vh - 70px);   /* 70px anggaran header height */
  min-height: 520px;
}

.hero-slider{
  height: 100%;
  position: relative;
  overflow: hidden;
}
/* ===== MAKE BUTTON CLICKABLE ===== */
.hero-overlay{
  pointer-events: none;    /* overlay tak ganggu click */
}

.hero-content{
  z-index: 5;              /* pastikan atas overlay */
}

.h2-arrow{
  z-index: 6;              /* arrow atas semua */
}

.hero-buttons a{
  pointer-events: auto;
  cursor: pointer;
}
/* ===== FULLSCREEN HERO FIX ===== */

html, body{
  height: 100%;
  margin: 0;
}

/* HERO FULL SCREEN */
.h2-hero{
  height: 100vh;
  position: relative;
}

/* SLIDER CONTAINER */
.hero-slider{
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* SLIDES */
.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity .8s ease, transform 6s ease;
}

.hero-slide.active{
  opacity: 1;
  transform: scale(1.08);   /* slow zoom premium effect */
}

/* DARK OVERLAY */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 2;
  pointer-events: none;      /* IMPORTANT – jangan block button */
}

/* TEXT ATAS GAMBAR */
.hero-content{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  z-index: 5;
  padding: 20px;
  animation: heroFade 1.2s ease;
}

@keyframes heroFade{
  from{ opacity:0; transform:translateY(10px); }
  to{ opacity:1; transform:translateY(0); }
}

.hero-content h1{
  font-size: 44px;
  margin-bottom: 10px;
}

.hero-content p{
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 20px;
}

/* BUTTON */
.hero-buttons{
  display: flex;
  gap: 12px;
  z-index: 6;
}

.hero-btn{
  display: inline-block;
  padding: 10px 24px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s ease;
}

.hero-btn:hover{
  transform: translateY(-2px) scale(1.03);
}

.hero-btn.outline{
  background: transparent;
  color: white;
  border: 1px solid white;
}

/* ARROWS ALWAYS CLICKABLE */
.h2-arrow{
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
/* ===== FORCE HERO FIT FULL SCREEN ===== */
:root{
  --header-h: 90px; /* adjust kalau header awak lain (contoh 80px) */
}

html, body{
  height: 100%;
  margin: 0;
}

body{
  overflow-x: hidden;
}

/* hero full bawah header */
.h2-hero{
  height: calc(100vh - var(--header-h));
  min-height: 520px;
  position: relative;
  background: #000; /* kalau image load lambat tak nampak putih */
}

/* slider ikut hero */
.hero-slider{
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* slide cover penuh */
.hero-slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity .7s ease, transform 6s ease;
}

.hero-slide.active{
  opacity: 1;
  transform: scale(1.06);
}

/* overlay jangan block click */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 2;
  pointer-events: none;
}

/* content atas gambar */
.hero-content{
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: #fff;
}

/* buttons */
.hero-buttons{
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.hero-btn{
  display: inline-block;
  padding: 10px 24px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: .2s ease;
  background: #fff;
  color: #000;
}

.hero-btn:hover{ transform: translateY(-2px); }

.hero-btn.outline{
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

/* arrows */
.h2-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* responsive */
@media (max-width: 700px){
  :root{ --header-h: 60px; }
  .hero-content h1{ font-size: 32px; }
}
/* ===== HARD OVERRIDE (CONFIRM FULL, FIX SEPARUH) ===== */

html, body{
  height: 100% !important;
  margin: 0 !important;
}

.h2-hero{
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: none !important;
  background: #000 !important;
  position: relative !important;
}

/* paksa heroSlider full tinggi */
#heroSlider{
  height: 100% !important;
  min-height: 100% !important;
  width: 100% !important;
  position: relative !important;
  overflow: hidden !important;
}

/* paksa slide cover penuh */
#heroSlider .hero-slide{
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  opacity: 0 !important;
  transition: opacity .7s ease !important;
}

#heroSlider .hero-slide.active{
  opacity: 1 !important;
}

/* overlay full & tak block click */
#heroSlider .hero-overlay{
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0,0,0,0.35) !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

/* content full center */
#heroSlider .hero-content{
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding: 20px !important;
  color: #fff !important;
}

/* button clickable */
#heroSlider .hero-buttons{
  display: flex !important;
  gap: 12px !important;
  margin-top: 14px !important;
}

#heroSlider .hero-btn{
  display: inline-block !important;
  padding: 10px 24px !important;
  border-radius: 24px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  background: #fff !important;
  color: #000 !important;
}

#heroSlider .hero-btn.outline{
  background: transparent !important;
  color: #fff !important;
  border: 1px solid #fff !important;
}

/* arrows on top */
.h2-arrow{
  z-index: 10 !important;
}