/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}

a {
  color: #834e09;
  text-decoration: none;
}

a:hover {
  color: #834e09;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", serif;
}

/* Anti scroll horizontal (mencegah overflow layout) */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #c78904;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #c78904;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* ===================== */
/* CUSTOM PRELOADER */
/* ===================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader img {
  width: 160px;
  height: auto;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* ===================== */
/* HEADER UTAMA */
/* ===================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 90px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: all 0.3s ease;
}

#header.shrink {
  height: 60px;
  padding: 0 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}


/* ===================== */
/* LOGO */
/* ===================== */
.navbar-logo img,
.navbar-container object {
  max-height: 55px;
  width: auto;
}

/* ===================== */
/* NAVBAR DESKTOP */
/* ===================== */
.navbar {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar a {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #191919;
  letter-spacing: 1.2px;
  position: relative;
  text-decoration: none;
  padding: 8px 0;
  transition: 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: #a37029;
}

.navbar a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #a37029;
  margin-top: 4px;
  transition: 0.3s;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

/* ===================== */
/* DROPDOWN MENU */
/* ===================== */
.navbar .dropdown {
  position: relative;
}

.navbar .dropdown ul {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 999;
}

.navbar .dropdown:hover > ul,
.navbar .dropdown ul.dropdown-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar .dropdown ul,
.navbar .dropdown ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar .dropdown ul li a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  color: #1a1a1a;
  font-family: 'Cinzel', serif;
  text-transform: none;
  transition: all 0.3s ease;
}

.navbar .dropdown ul li a:hover {
  background: #834e09;
  color: #fff;
}

/* ===================== */
/* MOBILE NAV TOGGLE */
/* ===================== */
.mobile-nav-toggle {
  display: none;
  font-size: 28px;
  color: #000;
  cursor: pointer;
  z-index: 9999;
  position: relative;
}

/* ===================== */
/* RESPONSIVE NAVBAR MOBILE */
/* ===================== */
@media (max-width: 991px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
  }

  .navbar li {
    width: 100%;
    margin-bottom: 6px;
    text-align: center;
  }

  .navbar a {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  /* ===================== */
  /* DROPDOWN (MOBILE) */
  /* ===================== */

  .navbar .dropdown {
    position: relative; /* ✅ Supaya ul nempel ke sini */
  }

  .navbar .dropdown ul {
    display: none;
    position: relative; /* ✅ Ganti dari absolute */
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 6px;
    z-index: 999;
    text-align: center;
  }

  .navbar .dropdown ul.dropdown-active {
    display: block;
  }

  .navbar .dropdown ul li {
    width: 100%;
  }

  .navbar .dropdown ul li a {
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    color: #191919;
    border-bottom: 1px solid #eee;
    background: none;
  }

  .navbar .dropdown ul li:last-child a {
    border-bottom: none;
  }
}

/* ===================== */
/* RESPONSIVE (MOBILE) */
/* ===================== */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  #navbar ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 999;
  }

  #navbar.navbar-mobile ul {
    display: flex;
  }

  .navbar {
    flex-direction: column;
    gap: 0;
  }

  .navbar a {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    width: 100%;
    text-align: left;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-slider {
  width: 100%;
  height: 100vh;
  position: relative;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* semi-gelap overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-content {
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: white;
  color: black;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s ease;
  font-weight: 500;
}

.hero-btn:hover {
  background-color: black;
  color: white;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: white;
}

.swiper-pagination-bullet {
  background: white;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 80vh; /* Dulu 100vh, biar lebih pendek */
  }

  .swiper-slide {
    height: 80vh;
  }

  .slide-content {
    text-align: center;
    padding: 0 20px;
  }

  .hero-title {
    font-size: 40px; /* Dulu 4rem, terlalu besar */
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero-btn {
    font-size: 14px;
    padding: 10px 24px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none; /* Sembunyikan tombol navigasi di mobile */
  }

  .swiper-pagination {
    bottom: 10px !important;
  }
}

/*===========================================
# PROMO SECTION
=============================================*/
.promo-section {
  padding: 60px 0; /* atas & bawah */
  margin-top: 80px; /* tambahin jarak dari section sebelumnya (slider) */
  background: #f6f6f6;
  color: #000000;
}

.hero-slider {
  margin-bottom: 80px;
}

.promo-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.promo-text {
  flex: 1;
  max-width: 550px;
}

.promo-text h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.promo-text p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #000000;
}

.btn-discover {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #000000;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  border-radius: 70px;
}

.btn-discover:hover {
  background: #000000;
  color: #ffffff;
}

.promo-image {
  flex: 1;
  text-align: center;
}

.promo-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.section-subtitle {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 10px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .promo-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .promo-text,
  .promo-image {
    max-width: 100%;
    flex: none;
  }

  .promo-image {
    width: 100%;
  }

  .promo-image img {
    width: 100% !important;
    height: none;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    max-height: none;
    border-radius: 0px;
  }

  .promo-text h2 {
    font-size: 24px;
  }

  .promo-text p {
    font-size: 15px;
  }
}

/* ======================= */
/*      PRODUCT SECTION    */
/* ======================= */
.product-section {
  padding: 60px 0;
  background: #fff;
}

.products-title {
  font-size: 30px;
  color: #000;
  letter-spacing: 2px;
  margin-bottom: 40px;
  position: relative;
  text-align: left;
  font-family: 'Cinzel', serif;
}

.products-title::after {
  content: "";
  width: 60px;
  height: 2px;
  background: #000;
  display: block;
  margin-top: 10px;
}

/* ======================= */
/*      PRODUCT GRID       */
/* ======================= */
.product-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* fix 2 kolom di desktop */
  gap: 32px;
}

.product-box {
  position: relative;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  transition: transform 0.3s ease;
  cursor: pointer;
  border-radius: 0px;
}

/* ======================= */
/*      PRODUCT IMAGE      */
/* ======================= */
.product-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.product-img .default-img {
  opacity: 1;
  z-index: 1;
}

.product-img .hover-img {
  opacity: 0;
  z-index: 2;
}

.product-box:hover .default-img {
  opacity: 0;
  transform: scale(1.05);
}

.product-box:hover .hover-img {
  opacity: 1;
  transform: scale(1.05);
}

/* ======================= */
/*    OVERLAY + TEXT       */
/* ======================= */
.product-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.product-box:hover::before {
  opacity: 1;
}

.product-box span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 18px;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.product-box:hover span {
  opacity: 1;
  transform: translateY(0);
}

/* ======================= */
/*      RESPONSIVE FIX     */
/* ======================= */
@media (max-width: 991px) {
  .product-row {
    grid-template-columns: repeat(2, 1fr); /* Tetap 2 kolom tablet */
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .products-title {
    text-align: center;
  }

  .products-title::after {
    margin: 10px auto 0;
  }

  .product-row {
    grid-template-columns: 1fr; /* 1 kolom di mobile */
    gap: 24px;
  }

  .product-img {
    aspect-ratio: 4 / 5; /* gambar lebih tinggi di HP */
  }

  .product-box span {
    font-size: 14px;
    bottom: 16px;
    left: 0;
    width: 100%;
    text-align: center;
  }
}

/*========================
# CATALOG SECTION DOWNLOAD
========================*/
.catalogue-section {
  background: #f6f6f6;
  padding: 60px 0;
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.catalogue-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.catalogue-image {
  flex: 1;
  text-align: center;
}

.catalogue-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.catalogue-content {
  flex: 1;
  max-width: 600px;
}

.catalogue-content h2 {
  font-size: 36px;
  color: #000;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.catalogue-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

/*========================
# EXPLORE BUTTON
========================*/
.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1.5px solid #000;
  border-radius: 40px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-explore:hover {
  background-color: #000;
  color: #fff;
}

.btn-explore .arrow {
  font-size: 18px;
}

.btn-explore .text-hover {
  opacity: 0;
  position: absolute;
  left: auto;
  transition: opacity 0.3s ease;
}

.btn-explore:hover .text-default {
  opacity: 0;
}

.btn-explore:hover .text-hover {
  opacity: 1;
}

/*========================
# RESPONSIVE
========================*/
@media (max-width: 768px) {
  .catalogue-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .catalogue-content {
    padding: 0 16px;
    max-width: 100%;
  }

  .catalogue-content h2 {
    font-size: 24px;
  }

  .catalogue-content p {
    font-size: 15px;
  }

  .catalogue-image {
    max-width: 100%;
    width: 100%;
  }

  .catalogue-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3; /* Lebih tinggi dari 4:3 */
    object-fit: cover;
    max-height: none;
    border-radius: 0px;
  }

  .btn-explore {
    margin-top: 16px;
    padding: 10px 24px;
    font-size: 14px;
  }
}


/* ========================= */
/*     CONTACT SECTION       */
/* ========================= */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 16px;
  color: #bbbbbb;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch; /* Biar tinggi map & form nyatu */
  gap: 40px;
}

.contact-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}

.contact-map,
.contact-form {
  flex: 1 1 48%;
  min-width: 300px;
}

/* Map Style */
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
  font-family: 'Cinzel', serif;
}

/* Form Style */
.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 18px;
  color: #fff;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #a1793a;
  box-shadow: 0 0 0 3px rgba(161, 121, 58, 0.12);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-button-wrapper {
  display: flex;
  justify-content: center;
}

.btn-send {
  background: #c5a265;
  color: #111;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
}

.btn-send:hover {
  background: #8f6b2a;
  transform: translateY(-2px);
  cursor: pointer;
}

.contact-divider {
  border-top: 1px solid #ccc;
  margin: 40px 0 20px;
}

.map-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Optional: untuk padding tambahan */
.contact-map iframe {
  width: 100%;
  height: 300px;
  border-radius: 12px;
}


/* Garis pembatas elegan */
.contact-divider {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 40px 0 32px;
}

/* Judul Our Location */
.map-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

/* Jarak bawah form */
.contact-form {
  margin-bottom: 32px;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-map iframe {
    height: 300px;
  }

  .map-title {
    font-size: 20px;
    margin-top: 0;
  }

  .contact-divider {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.premium-footer {
  background: #111;
  color: #eee;
  font-family: 'Poppins', sans-serif;
  padding: 60px 0 30px;
}

.footer-column ul li a:hover,
.social-icons a:hover {
  color: #fff;
  text-decoration: underline;
}

.premium-footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.premium-footer .footer-logo img {
  width: 300px;
  margin-bottom: 20px;
}

.premium-footer .footer-logo p {
  max-width: 300px;
  font-size: 14px;
  color: #aaa;
}

.premium-footer .footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.premium-footer .footer-column h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}

.premium-footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-footer .footer-column ul li {
  margin-bottom: 8px;
}

.premium-footer .footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.premium-footer .footer-column ul li a:hover {
  color: #fff;
}

.premium-footer .social-icons a {
  display: inline-block;
  font-size: 18px;
  color: #ccc;
  margin-right: 15px;
  transition: 0.3s;
}

.premium-footer .social-icons a:hover {
  color: #fff;
}

.premium-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #888;
}

.section-links button:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

@media (max-width: 768px) {
  .premium-footer .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .premium-footer .footer-logo img {
    width: 200px;
  }

  .premium-footer .footer-logo p {
    max-width: 100%;
    margin: 0 auto 20px;
  }

  .premium-footer .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .premium-footer .footer-column {
    width: 100%;
    max-width: 300px;
    margin-bottom: 30px;
  }

  .premium-footer .social-icons a {
    margin: 0 10px;
  }
}

/*--------------------------------------------------------------
# sidebar
--------------------------------------------------------------*/
.sidenav {
  height: 100%; /* Full-height: remove this if you want "auto" height */
  width: 200px; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 0; /* Stay on top */
  top: 22px; /* Stay at the top */
  left: 0;
  background-color: #191919; /* Black */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 15px;
  color: #aaaaaa;
}

/* The navigation menu links */
.sidenav a {
  padding: 6px 8px 6px 10px;
  text-decoration: none;
  font-size: 13px;
  color: #818181;
  display: block;
  justify-content: space-between;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Style page content */
.main {
  margin-left: 160px; /* Same as the width of the sidebar */
  padding: 0px 10px;
}

/* Hamburger Menu */
.menu-toggle {
  display: flex;
  flex-direction: column;
  height: 20px;
  justify-content: space-between;
  background-color: #ffffff;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #aaaaaa;
  border-radius: 3px;
}

.menu-toggle input {
  position: absolute;
  width: 40px;
  height: 28px;
  left: -5px;
  top: -3px;
  opacity: 0;
  cursor: pointer;
}

@media screen and (max-height: 600px) {
  #header {
  height: 65px; /* Dulu 90px */
  padding: 0 30px;
}

@keyframes fadeInItem {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PRODUCT SHOWCASE*/
.product-showcase {
  padding: 80px 20px;
  text-align: center;
}

.product-title {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* ✅ 2 kolom */
  gap: 40px;
  padding: 40px 0;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr; /* Mobile jadi 1 kolom */
  }
}

.product-card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.product-card .image-wrapper {
  position: relative;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  display: block;
  transition: opacity 0.4s ease;
}

.product-card .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-card:hover .hover-img {
  opacity: 1;
}

.product-card:hover .default-img {
  opacity: 0;
}

.product-card h3 {
  margin-top: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 4px;
}

html {
  scroll-behavior: smooth;
}

button, .btn-explore {
  transition: all 0.3s ease;
}

.btn-explore:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

}