:root {
  --primary: #dda853;
  --bg: #000000;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Amiri", serif;
  background-color: #fff;
  color: #000;
  font-size: 20px;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}

p {
  color: #555;
}

/* ================= NAVBAR ================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 5%;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid #8f6d36;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.navbar-logo img {
  height: 70px;
}

.navbar .navbar-nav a {
  color: #fff;
  display: inline-block;
  font-size: 1.2rem;
  margin: 0 1rem;
  transition: 0.3s ease;
}

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

.navbar .navbar-extra a {
  color: #fff;
  margin: 0 0.5rem;
  transition: 0.3s ease;
}

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

#menu {
  display: none;
}

/* ===============================
   CART BADGE (NAVBAR)
================================ */

#cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--primary);
  color: #000;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
/* ================= MINI CART TEXT FIX ================= */

.mini-cart-body .cart-item {
  font-size: 0.85rem;
  color: #333;
}

.mini-cart-body .cart-item span:last-child {
  font-weight: 600;
  color: #000;
}
.mini-cart-footer .subtotal {
  font-size: 0.9rem;
  font-weight: 600;
}
.mini-cart-header h4 {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
/* ================= MINI CART FONT ================= */

.mini-cart {
  font-family: "Poppins", sans-serif;
}

.mini-cart-body .cart-item {
  font-size: 0.85rem;
}

.mini-cart-footer .subtotal {
  font-size: 0.9rem;
  font-weight: 600;
}
.cart-item span:last-child {
  font-weight: 600;
  letter-spacing: 0.5px;
}
/* ===============================
   PRODUCT QUANTITY CONTROL
================================ */

.product-card {
  position: relative; /* penting agar absolute bekerja */
}

.product-quantity {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  backdrop-filter: blur(5px);
  z-index: 10;
}

.product-quantity button {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s ease;
}

.product-quantity button:hover {
  transform: scale(1.2);
}

.product-quantity span {
  min-width: 20px;
  text-align: center;
  color: #fff;
  font-weight: 500;
}

/* ===============================
   RESPONSIVE ADJUSTMENT
================================ */

@media (max-width: 768px) {
  .product-quantity {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .product-quantity button {
    font-size: 0.9rem;
  }
}

/* ================= HERO ================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* background layer */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1.8s ease-in-out;
  opacity: 0;
}

/* active image */
.hero-bg.active {
  opacity: 1;
}

.hero .content {
  position: relative;
  z-index: 10;
}

.hero::before,
.hero::after {
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 10%,
    rgba(255, 255, 255, 0) 60%
  );
}

.hero .content {
  padding: 1.4rem 5%;
  max-width: 60rem;
}

.hero .content h1 {
  font-size: clamp(3.5rem, 6vw, 5rem);
  color: #fff;
  line-height: 1;
}

.hero .content h1 span {
  color: var(--primary);
}

.hero .content p {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 1.5rem;
  margin-top: 1rem;
  letter-spacing: 5px;
}

.hero .content .cta {
  margin-top: 2rem;
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  color: #fff;
  background-color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.hero .content .cta:hover {
  background-color: #fff;
  color: var(--primary);
  transform: translateY(-3px);
}
/* ================= HERO CINEMATIC ================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* background layer */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

/* active slide */
.hero-bg.active {
  opacity: 1;
  animation: heroZoom 12s ease-in-out;
}

/* cinematic slow zoom */
@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
/* ================= SECTIONS ================= */

.about,
.product,
.contact {
  padding: 8rem 7% 4rem;
}

section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

section h2.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= ABOUT ================= */

.about .row {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.about-img {
  flex: 1;
  overflow: hidden;
  border-radius: 1.5rem;
}

.about-img img {
  transition: transform 0.8s ease;
}

.about-img:hover img {
  transform: scale(1.1);
}

.about .content {
  flex: 1;
}

.about .content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about .content p {
  line-height: 1.8;
}

/* ================= PRODUCT ================= */

.product > p {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.product .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.product-card {
  flex: 1 1 calc(33.33% - 2rem); /* Desktop: 3 produk per row */
  max-width: 400px; /* opsional supaya tidak terlalu besar */
  padding: 2rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card-img {
  border-radius: 1rem;
  transition: 0.5s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

.product-card-tittle {
  margin-top: 1rem;
}

.product-card-price {
  font-weight: 600;
  margin-top: 0.5rem;
}

.product-card-desc {
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 0.5rem;
}

/* ================= TEAM SECTION ================= */

.team-section {
  margin-top: 5rem;
  text-align: center;
}

.team-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.team-card {
  text-align: center;
  transition: all 0.4s ease;
}

.team-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--primary);
  margin-bottom: 1rem;
  transition: all 0.4s ease;
}

.team-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  margin-top: 0.3rem;
}

/* hover effect */
.team-card:hover {
  transform: translateY(-8px);
}

.team-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.team-toggle {
  cursor: pointer;
}

.team-hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.team-hidden.show {
  max-height: 600px;
}

.team-role {
  font-size: 0.9rem;
  color: #777;
}

.team-hidden.show .team-card {
  animation: fadeTeam 0.6s ease forwards;
}

@keyframes fadeTeam {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .team-grid {
    gap: 2rem;
  }

  .team-card img {
    width: 120px;
    height: 120px;
  }
}

/* ================= CONTACT ================= */

.contact {
  padding: 8rem 7% 4rem;
}

/* subtitle */

.contact-sub {
  text-align: center;
  max-width: 600px;
  margin: auto;
  margin-bottom: 3rem;
}

/* ================= CONTACT CARDS ================= */

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 2rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
}

/* icon */

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  margin-bottom: 3px;
}

.contact-card p {
  font-size: 0.9rem;
  color: #666;
}
/* ================= CONTACT MAIN LAYOUT ================= */

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: auto;
  margin-top: 2rem;
}
/* ================= MAP ================= */

.contact-map {
  width: 100%;
  height: 350px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================= FORM ================= */

.contact-form-wrapper {
  width: 100%;
}

.contact-form-wrapper form {
  background: #fff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
/* form row */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* input group */

.input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
}

.input-group i {
  color: #999;
  flex-shrink: 0;
}

.input-group input,
.input-group textarea {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.9rem;
  background: transparent;
}

textarea {
  min-height: 120px;
  resize: none;
}
.input-group:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(221, 168, 83, 0.15);
}

.input-group i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 16px;
  pointer-events: none;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1px solid #eee;
  border-radius: 10px;
  font-size: 0.9rem;
  background: #fff;
  border: 1px solid #eee;
}
.input-group textarea {
  padding-top: 14px;
}

.input-group textarea ~ i {
  top: 18px;
  transform: none;
}
textarea {
  min-height: 130px;
  resize: none;
  padding-top: 14px;
}
.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--primary);
}

textarea {
  min-height: 130px;
  resize: none;
}

/* button */

.btn {
  display: block;
  margin: 1.5rem auto 0;
  padding: 0.9rem 2.4rem;
  background: var(--primary);
  border: none;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #000;
}
.btn:hover {
  background: #000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .contact-main {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 260px;
  }
}
/* ================= FOOTER ================= */

footer {
  background-color: var(--bg);
  text-align: center;
  padding: 2rem 0;
  margin-top: 4rem;
}

footer .socials a,
footer .links a {
  color: #fff;
  margin: 0 1rem;
  transition: 0.3s ease;
}

footer .socials a:hover,
footer .links a:hover {
  color: var(--primary);
}

footer .credit {
  margin-top: 1rem;
  color: var(--primary);
  font-size: 0.9rem;
}
footer .navbar-nav a {
  color: #fff;
  margin: 0 1rem;
  transition: 0.3s ease;
}

footer .navbar-nav a:hover {
  color: var(--primary);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .product-card {
    flex: 1 1 calc(50% - 2rem); /* 2 produk per row */
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }

  #menu {
    display: inline-block;
  }

  .navbar .navbar-nav {
    position: absolute;
    top: 100%;
    right: -100%;
    background: #fff;
    width: 70%;
    height: 100vh;
    transition: 0.3s;
    padding-top: 2rem;
  }

  .navbar .navbar-nav.active {
    right: 0;
  }

  .navbar .navbar-nav a {
    color: #000;
    display: block;
    margin: 2rem;
    font-size: 1.5rem;
  }

  .about .row,
  .contact .row {
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 450px) {
  html {
    font-size: 60%;
  }

  .product-card {
    flex: 1 1 100%; /* 1 produk per row */
    max-width: none;
  }
}

/* ===============================
   LANGUAGE SWITCHER
================================ */

.language-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  transition: all 0.3s ease;
}

.language-toggle:hover {
  transform: translateY(-3px);
}

/* Popup */
.language-popup {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: #fff;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 99999;
  animation: fadeUp 0.3s ease forwards;
}

.language-popup.active {
  display: flex;
}

.language-popup button {
  padding: 0.6rem 1rem;
  border: none;
  background: #f5f5f5;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.language-popup button:hover {
  background: var(--primary);
  color: #fff;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================= MINI CART DROPDOWN ================= */
.mini-cart {
  position: absolute;
  top: 60px; /* sesuaikan dengan navbar */
  right: 5%;
  width: 300px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  z-index: 99999;
  overflow: hidden;
}

.mini-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--primary);
  color: #000;
}

.mini-cart-header h4 {
  margin: 0;
}

#close-cart {
  cursor: pointer;
  font-size: 1.5rem;
}

.mini-cart-body {
  max-height: 300px;
  overflow-y: auto;
  padding: 1rem;
}

.mini-cart-body .cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.mini-cart-body .cart-item span {
  font-weight: 500;
}

.mini-cart-footer {
  padding: 1rem;
  border-top: 1px solid #ddd;
}

.mini-cart-footer .subtotal {
  font-weight: 600;
  margin-bottom: 1rem;
}

.mini-cart-buttons {
  display: flex;
  justify-content: flex-end;
}

.mini-cart-buttons button {
  padding: 0.6rem 1.2rem;

  background: var(--primary);

  border: none;

  border-radius: 30px;

  font-family: "Poppins", sans-serif;

  font-size: 0.8rem;

  cursor: pointer;

  transition: 0.3s;
}

.mini-cart-buttons button:hover {
  background: #000;

  color: var(--primary);
}

/* Responsive mini cart (mobile full width) */
@media (max-width: 450px) {
  .mini-cart {
    width: 90%;
    right: 5%;
  }
}
/* ================= SEARCH ================= */

.search-box {
  position: absolute;
  top: 70px;
  right: 5%;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  display: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.search-box input {
  border: none;
  outline: none;
  font-size: 14px;
  padding: 8px 12px;
  width: 200px;
}

.search-box.active {
  display: block;
}
/* ================= SEARCH RESULT ================= */

.search-results {
  margin-top: 8px;
  max-height: 200px;
  overflow-y: auto;
}

.search-results div {
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 14px;
}

.search-results div:hover {
  background: #f5f5f5;
}
/* ================= CART PAGE ================= */

.cart-page {
  padding: 8rem 7%;

  max-width: 900px;

  margin: auto;
}

.cart-container {
  background: #fff;

  border-radius: 1rem;

  padding: 2rem;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  margin-bottom: 3rem;
}

.cart-item {
  display: flex;

  justify-content: space-between;

  margin-bottom: 12px;

  font-family: "Poppins", sans-serif;

  font-size: 0.9rem;
}

.cart-total {
  border-top: 1px solid #eee;

  padding-top: 1rem;

  display: flex;

  justify-content: space-between;

  font-family: "Poppins", sans-serif;
}

.cart-total h3 {
  color: var(--primary);
}

.preorder-form {
  background: #fff;

  padding: 2rem;

  border-radius: 1rem;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.preorder-form input {
  width: 100%;

  padding: 0.9rem;

  margin-bottom: 1rem;

  border: 1px solid #ddd;

  border-radius: 8px;
}

.preorder-form button {
  width: 100%;

  padding: 1rem;

  background: var(--primary);

  color: #fff;

  border: none;

  border-radius: 50px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.preorder-form button:hover {
  background: #000;
}
/* ================= CART PAGE PREMIUM ================= */

.cart-page {
  padding: 8rem 7%;

  max-width: 1100px;

  margin: auto;
}

.cart-page h2 {
  text-align: center;

  margin-bottom: 3rem;
}

/* LAYOUT */

.cart-layout {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 3rem;
}

/* SUMMARY CARD */

.cart-summary {
  background: #fff;

  padding: 2rem;

  border-radius: 1rem;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.cart-summary h3 {
  font-family: "Poppins", sans-serif;

  margin-bottom: 1.5rem;
}

.cart-item {
  display: flex;

  justify-content: space-between;

  margin-bottom: 12px;

  font-size: 0.9rem;

  font-family: "Poppins", sans-serif;
}

/* TOTAL */

.cart-total {
  margin-top: 1.5rem;

  padding-top: 1rem;

  border-top: 1px solid #eee;

  display: flex;

  justify-content: space-between;

  font-family: "Poppins", sans-serif;
}

.cart-total h3 {
  color: var(--primary);
}

/* FORM */

.preorder-form {
  background: #fff;

  padding: 2rem;

  border-radius: 1rem;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.preorder-form h3 {
  margin-bottom: 1.5rem;

  font-family: "Poppins", sans-serif;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;

  font-size: 0.8rem;

  margin-bottom: 6px;

  font-family: "Poppins", sans-serif;
}

.form-group input {
  width: 100%;

  padding: 0.8rem;

  border: 1px solid #ddd;

  border-radius: 8px;

  font-size: 0.9rem;
}

/* BUTTON */

.submit-order {
  width: 100%;

  padding: 1rem;

  border: none;

  border-radius: 50px;

  background: var(--primary);

  color: #fff;

  font-family: "Poppins", sans-serif;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.submit-order:hover {
  background: #000;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}
.form-group select {
  width: 100%;

  padding: 0.8rem;

  border: 1px solid #ddd;

  border-radius: 8px;

  font-size: 0.9rem;

  background: #fff;

  font-family: "Poppins", sans-serif;

  cursor: pointer;
}
/* ================= CART ITEM PREMIUM ================= */

.cart-product {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 1rem;

  padding-bottom: 1rem;

  border-bottom: 1px solid #eee;
}

.cart-product-left {
  display: flex;

  align-items: center;

  gap: 12px;
}

.cart-product img {
  width: 70px;
  height: 70px;

  object-fit: contain;

  background: #fff;

  border-radius: 8px;

  padding: 4px;
}
.cart-product-info {
  font-family: "Poppins", sans-serif;

  font-size: 0.85rem;
}

.cart-product-controls {
  display: flex;

  align-items: center;

  gap: 6px;
}

.cart-product-controls button {
  width: 26px;

  height: 26px;

  border: none;

  border-radius: 50%;

  background: #f3f3f3;

  cursor: pointer;

  font-weight: bold;
}

.remove-item {
  font-size: 0.8rem;

  color: #999;

  cursor: pointer;

  margin-left: 10px;
}

.remove-item:hover {
  color: #000;
}

.about .row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.about .row.reverse {
  flex-direction: row-reverse;
}

.about-img img {
  width: 100%;
  border-radius: 15px;
}

.about .content {
  flex: 1;
}

.quota-left {
  position: absolute;
  top: 20px;
  left: 20px;

  background: #8b5e3c;
  color: #fff;

  padding: 5px 14px;
  border-radius: 20px;

  font-size: 12px;
  font-weight: 600;

  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);

  z-index: 10; /* ini yang penting */
}
/* ===============================
   ABOUT RESPONSIVE IMPROVEMENT
================================ */

/* Desktop spacing lebih elegan */
.about .row {
  margin-bottom: 5rem;
}

.about .content p {
  margin-bottom: 1rem;
}

/* Mobile layout */
@media (max-width: 768px) {
  .about {
    padding: 6rem 6% 3rem;
  }

  .about .row {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .about .row.reverse {
    flex-direction: column;
  }

  .about-img {
    width: 100%;
  }

  .about-img img {
    border-radius: 12px;
  }

  .about .content h3 {
    font-size: 1.8rem;
  }

  .about .content p {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

/* Extra small device */
@media (max-width: 450px) {
  .about h2 {
    font-size: 2rem;
  }

  .about .content h3 {
    font-size: 1.6rem;
  }

  .about .content p {
    font-size: 1.3rem;
  }
}
/* ===============================
   PREMIUM ABOUT SECTION
================================ */

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}

/* reverse layout */
.about-row.reverse {
  grid-template-columns: 1fr 1fr;
}

.about-img {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

/* cinematic hover */
.about-img:hover img {
  transform: scale(1.08);
}

/* luxury text spacing */

.about .content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.about .content p {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #555;
}

/* subtle divider */

.about-row:not(:last-child)::after {
  content: "";
  grid-column: span 2;
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd, transparent);
  margin-top: 3rem;
}

/* ===============================
   MOBILE LUXURY LAYOUT
================================ */

@media (max-width: 768px) {
  .about-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: center;
  }

  .about-row.reverse {
    grid-template-columns: 1fr;
  }

  .about .content h3 {
    font-size: 1.8rem;
  }

  .about .content p {
    font-size: 1.4rem;
  }
}
/* ===============================
   JOURNAL PAGE
================================ */

.journal {
  padding: 8rem 7% 4rem;
  max-width: 1200px;
  margin: auto;
}

.journal > p {
  text-align: center;
  max-width: 600px;
  margin: auto;
  margin-bottom: 4rem;
}

/* ===============================
   FEATURE ARTICLE
================================ */

.journal-feature {
  margin-bottom: 5rem;
}

.journal-feature a {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.journal-feature img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.journal-feature:hover img {
  transform: scale(1.03);
}

.journal-feature-text h2 {
  font-size: 2.2rem;
  margin: 10px 0;
}

.journal-meta {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #999;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

.journal-read {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary);
  font-size: 0.9rem;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
}

.journal-read:hover {
  letter-spacing: 1px;
}

/* ===============================
   JOURNAL GRID
================================ */

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.journal-card {
  transition: 0.3s ease;
}

.journal-card a {
  text-decoration: none;
  color: inherit;
}

.journal-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
  transition: transform 0.5s ease;
}

.journal-card:hover img {
  transform: scale(1.04);
}

.journal-card h3 {
  font-size: 1.2rem;
  margin: 6px 0;
}

.journal-card p {
  font-size: 0.95rem;
  color: #666;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .journal-feature a {
    grid-template-columns: 1fr;
  }

  .journal-feature img {
    height: 300px;
  }

  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-feature-text h2 {
    font-size: 1.8rem;
  }
}
/* ===============================
ARTICLE HERO
================================ */

.article-hero {
  position: relative;

  margin-top: 80px;
}

.article-hero {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000; /* biar ada frame elegan */
}

.article-hero img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* overlay cinematic */

.article-hero::after {
  content: "";

  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 50%;

  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.article-hero-text {
  position: absolute;

  bottom: 70px;

  left: 8%;

  color: white;

  max-width: 600px;

  z-index: 2;
}

.article-category {
  font-family: "Poppins", sans-serif;

  font-size: 0.8rem;

  letter-spacing: 2px;

  opacity: 0.8;
}

.article-hero h1 {
  font-size: 3.5rem;

  margin: 10px 0;
}

.article-author {
  font-size: 0.9rem;

  opacity: 0.85;
}

/* ===============================
ARTICLE CONTENT
================================ */

.article-content {
  width: 100%;

  max-width: 1100px;

  margin: auto;

  padding: 6rem 10%;

  font-size: 1.35rem;

  line-height: 2.1;

  color: #333;
}

.article-content p {
  margin-bottom: 2.2rem;

  text-align: justify;
}
/* ===============================
DROP CAP (MAGAZINE STYLE)
================================ */
.dropcap::first-letter {
  float: left;

  font-size: 4.6rem;

  line-height: 0.9;

  padding-right: 10px;

  padding-top: 6px;

  font-weight: bold;

  color: var(--primary);
}
/* ===============================
ARTICLE DIVIDER
================================ */

.article-content p:nth-child(4)::after {
  content: "";

  display: block;

  width: 80px;

  height: 2px;

  background: #ddd;

  margin: 3rem auto;
}

/* ===============================
ARTICLE FOOTER
================================ */
.article-content {
  margin-top: 3rem;
}

.article-content p {
  text-align: justify;
}
.article-footer {
  text-align: center;

  padding-bottom: 6rem;
}

.back-journal {
  font-family: "Poppins", sans-serif;

  text-decoration: none;

  color: var(--primary);

  font-size: 0.9rem;

  letter-spacing: 1px;

  transition: 0.3s;
}

.back-journal:hover {
  letter-spacing: 2px;
}

/* ===============================
RESPONSIVE
================================ */

@media (max-width: 768px) {
  .article-hero img {
    height: 60vh;
  }

  .article-hero h1 {
    font-size: 2.4rem;
  }

  .article-content {
    font-size: 1.25rem;
  }
}
/* ===============================
ARTICLE RESPONSIVE
================================ */

/* Tablet */

@media (max-width: 1024px) {
  .article-content {
    max-width: 900px;

    padding: 5rem 8%;

    font-size: 1.3rem;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .article-content {
    padding: 4rem 6%;

    font-size: 1.15rem;

    line-height: 1.9;
  }

  .article-hero h1 {
    font-size: 2.2rem;
  }
}
/* ===============================
COMING SOON ARTICLE
================================ */

.coming-soon {
  display: flex;

  align-items: center;

  justify-content: center;

  background: #fafafa;

  border-radius: 16px;

  padding: 2rem;

  text-align: center;
}

.coming-box {
  max-width: 260px;
}

.coming-meta {
  font-size: 0.75rem;

  letter-spacing: 2px;

  color: #999;

  font-family: "Poppins", sans-serif;

  text-transform: uppercase;
}

.coming-label {
  display: inline-block;

  margin-top: 1rem;

  font-size: 0.8rem;

  letter-spacing: 2px;

  color: var(--primary);

  font-family: "Poppins", sans-serif;
}
/* SAMAKAN STYLE PARAGRAF */
.product > p,
.contact-sub,
.about .content p {
  font-size: 1.5rem;
  line-height: 1.9;
}
