/* ===============================
   ROOT VARIABLES (BRANDING)
================================ */
:root {
  --color-primary: #492828;   /* Deep Navy */
  --color-accent: #C9A24D;    /* Brass Gold */
  --color-bg: #F5F6F7;
  --color-text: #1F2933;
  --color-muted: #6B7280;
  --color-accent-hover: #b8943e;


  --font-body: "Inter", sans-serif;
  --font-heading: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ===============================
   RESET & GLOBAL
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

section {
  padding: 70px 40px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
}

h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* ===============================
   BOLD
================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading) !important;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ===============================
   NAVBAR WRAPPER
================================ */
.main-header {
  background-color: var(--color-primary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ===============================
   TOP BAR
================================ */
.top-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 40px;

  display: flex;
  justify-content: space-between;  /* Ini yang bikin kiri & kanan */
  align-items: center;

  border-bottom: 1px solid rgba(255,255,255,0.1);
}
/* Logo */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.store-name {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 1px;
}

/* Search */
.search-box input {
  width: 100%;
  max-width: 360px;
  padding: 10px 14px;
  border-radius: 4px;
  border: none;
  outline: none;
  font-size: 14px;
}

/* Contact */
.top-contact {
  display: flex;
  align-items: center;
}

.top-contact a {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}
.top-contact a:hover {
  color: var(--color-accent);
}

.main-header {
  border-bottom: 1px solid #000;
}

/* ===============================
   BOTTOM BAR
================================ */
.bottom-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 40px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom-bar .nav-links {
  display: flex;
  gap: 40px;
}


/* Navigation */
.nav {
  justify-self: center;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links li a {
  position: relative;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 6px 0;
  transition: color 0.3s ease;
}

/* garis underline */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

/* hover effect */
.nav-links li a:hover {
  color: var(--color-accent);
}

.nav-links li a:hover::after {
  width: 100%;
}


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background-color: #fff;
  display: block;
}



/* ===============================
   PAGE INTRO - FULL CENTER
================================ */
#welcome-full {
  padding: 60px 20px;     /* tinggi section tetap normal */
  text-align: center;     /* teks tepat di tengah */
}

.welcome-inner {
  max-width: 900px;
  margin: 0 auto;         /* biar konten benar-benar center */
}



/* ===============================
   PAGE INTRO - FULL CENTER
================================ */
.page-intro {
  min-height: 40vh; /* bisa 40vh / 60vh sesuai selera */
  display: flex;
  align-items: center;     /* vertical center */
  justify-content: center; /* horizontal center */
  padding: 40px 20px;
}

.page-intro-inner {
  max-width: 800px;
  text-align: center;
}

.page-intro h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--color-text);
  margin-bottom: 12px;
  position: relative;
}

.page-intro h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--color-accent);
  margin: 14px auto 0;
}

.page-intro p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-top: 16px;
}


/* ===============================
   HERO SECTION
================================ */
#hero {
  min-height: 60vh;
  background: url("/assets/images/hero1.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
 background: 
    linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("/assets/images/hero-box.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  padding: 40px 80px;
  max-width: 900px;
  color: #fff;
  text-align: center;
}

.hero-text h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 18px;
  color: #ddd;
}
.hero-text {
  padding: 60px;
  max-width: 600px;
}

.hero-text {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===============================
   BUTTONS
================================ */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  margin-top: 20px;
  border-radius: 4px;
  background-color: var(--color-accent);
  color: #111;
  font-size: 14px;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  margin-top: 20px;
  margin-left: 10px;
  border-radius: 4px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #111;
}

/* ===============================
   PRODUCT GRID
================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

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

.product-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card h3 {
  margin: 15px;
  font-size: 18px;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card p {
  margin: 0 15px 20px;
  font-weight: 600;
  color: var(--color-accent);
}

.service-style {
  padding: 40px 30px;
  text-align: center;
}

.service-style h4 {
  margin-bottom: 15px;
}

.service-style p {
  margin: 0;
  font-weight: 400; /* hilangkan bold harga */
  color: #555;      /* bukan warna accent */
  line-height: 1.6;
}




/* ===============================
   BRASSWIND – 3 COLUMNS ONLY
================================ */
.brasswind-products .product-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}




/* ===============================
   SERVICE SECTION
================================ */
#service {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
}

#service p {
  max-width: 600px;
  margin: 0 auto 25px;
  color: #ddd;
}

/* =========================
   REPAIR SHOWCASE
========================= */

.repair-showcase {
  padding: 80px 8%;
  background: #f8f8f8;
  text-align: center;
}

.section-header h2 {
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.section-header p {
  color: #666;
  margin-bottom: 50px;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 kolom */
  gap: 25px;
}

.before-after-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.before-after-card:hover {
  transform: translateY(-5px);
}

/* =========================
   REPAIR SHOWCASE - 1:1 RATIO
========================= */

.image-compare {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;   /* Paksa rasio 1:1 */
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  background: #eee;
}

.image-compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* Tetap proporsional */
}

.image-compare .after {
  clip-path: inset(0 0 0 50%);
}

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

.about-page {
  padding: 100px 0;
  background-color: #f4f4f4;
}

.about-container {
  width: 85%;
  max-width: 1000px;
  margin: 0 auto;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 40px;
  margin-bottom: 40px;
  font-weight: 700;
}

.about-content {
  border-left: 4px solid #d6d6d6;
  padding-left: 25px;
}

.about-content p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 25px;
}


/* ===============================
   FOOTER
================================ */
.main-footer {
  background-color: var(--color-primary);
  color: #ccc;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-footer h3 {
  color: #fff;
  font-family: var(--font-heading);
}



/* ===============================
   PRODUCT DETAIL LAYOUT
================================ */
.product-detail {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}


/* ===============================
   PRODUCT GALLERY (LEFT)
================================ */
.product-gallery {
  position: relative;
  width: 100%;
  max-width: 500px;
}

/* Carousel */
.carousel {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.carousel img.active {
  opacity: 1;
}

/* Controls */
.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-controls button {
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-controls {
  z-index: 5;
}

/* ===============================
   PRODUCT INFO (RIGHT)
================================ */
.product-detail-info {
  display: flex;
  flex-direction: column;
}

.product-detail-info h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 14px;
}

.product-price {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 20px;
}

/* ===============================
   PRODUCT DESCRIPTION (FULL WIDTH)
================================ */
.product-description {
  grid-column: 1 / -1;     /* full row grid */
  max-width: 1000px;      /* lebar nyaman baca */
  margin: 60px auto 0;    /* CENTER HORIZONTAL */
  padding: 0 20px;        /* nafas kiri kanan */

  font-size: 16px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

.product-description p {
  margin-bottom: 16px;
}

.product-description ul {
  margin: 16px 0;
  padding-left: 20px;
}

.product-description li {
  margin-bottom: 6px;
}





/* Buttons */

.product-actions .btn-primary,
.product-actions .btn-secondary {
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  transition: 0.3s;
}

.product-actions .btn-primary {
  background-color: var(--color-accent);
  color: #111;
}

.product-actions .btn-primary:hover {
  opacity: 0.9;
}

.product-actions .btn-secondary {
  border: 1px solid var(--color-text);
  color: var(--color-text);
}

.product-actions .btn-secondary:hover {
  background-color: var(--color-text);
  color: #fff;
}




/* ===============================
   PAGE HEADER
================================ */
.page-header {
  max-width: 900px;
  margin: 80px auto 60px;
  padding: 0 20px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 14px;
}

.page-header p {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.7;
}


/* ===============================
   SERVICES
================================ */
.services-section {
  background-color: #fff;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--color-bg);
  padding: 30px;
  border-radius: 6px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.service-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: var(--color-muted);
}

/* ===============================
   SERVICE CTA
================================ */
.service-cta {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 70px 40px;
}

.service-cta h2 {
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.service-cta p {
  margin-bottom: 25px;
  color: #eee;
}

/* ===============================
   DROPDOWN MENU (ACCESSORIES)
================================ */

/* Parent */
.nav-dropdown {
  position: relative;
}

/* Link utama */
.nav-dropdown > a {
  position: relative;
  padding-bottom: 6px;
  cursor: pointer;
}

/* Dropdown box (DESKTOP) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  background-color: #ffffff;
  min-width: 200px;
  padding: 10px 0;
  list-style: none;

  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;

  z-index: 999;
}

/* Show dropdown on hover (DESKTOP) */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(6px);
}

/* Dropdown links */
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;

  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);

  transition: background-color 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
  background-color: var(--color-bg);
  color: var(--color-accent);
}

/* ===============================
   CONTACT PAGE
================================ */
.contact-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 40px;
}

/* ===============================
   CONTACT CARDS (NEW STYLE)
================================ */

.contact-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  background-color: #fff;
  border-radius: 6px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.contact-card h3 {
  font-family: var(--font-body) !important;  /* Pakai Inter */
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.contact-card p {
  font-family: var(--font-body) !important;  /* Samakan semua */
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
}

.contact-card h4 {
  font-family: var(--font-body) !important;  /* Samakan semua */
  margin-top: 20px;
  font-size: 13px;
  color: var(--color-text);
  opacity: 0.7;
}

.contact-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--color-accent);
  transition: 0.3s;
}

.contact-link:hover {
  color: var(--color-accent-hover);
}



/* ===============================
   GOOGLE MAP
================================ */
.map-container {
  margin-top: 15px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 250px;
}

/* ===============================
   SOCIAL CONTACT FIX (CLEAN)
================================ */

.social-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px;     /* JARAK DARI JUDUL */
  width: 100%;
  text-decoration: none;
}

/* ICON */
.social-block i {
  font-size: 72px;
  margin-bottom: 35px;   /* JARAK BESAR KE TEXT */
}

/* TEXT */
.social-block span {
  font-family: var(--font-body);   /* SAMA SEPERTI LOCATION */
  font-size: 15px;
  font-weight: 700;                /* BOLD */
  color: var(--color-text);
  line-height: 1.6;
}

/* WARNA */
.social-block.wa i {
  color: #25D366;
}

.social-block.ig i {
  color: #E1306C;
}

.social-block.email i {
  color: #444;
}

/* HOVER */
.social-block:hover {
  transform: translateY(-6px);
}

/* ===============================
   MODERN CONTACT CARD
================================ */

.modern-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 8px;
  text-align: center;
  transition: 0.3s ease;
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* ICON */
.card-icon {
  font-size: 60px;
  margin-bottom: 25px;
}

/* ICON COLORS */
.card-icon.wa { color: #25D366; }
.card-icon.ig { color: #E1306C; }
.card-icon.email { color: var(--color-accent); }

/* TITLE */
.modern-card h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* INFO TEXT */
.card-info {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 25px;
  line-height: 1.6;
}

/* BUTTON */
.card-btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--color-accent);
  color: #111;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
}

.card-btn:hover {
  background: var(--color-accent-hover);
}


/* ===============================
   SHOP LAYOUT
================================ */
.shop-layout {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

/* SIDEBAR */
.shop-sidebar {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
}

.filter-box {
  margin-bottom: 30px;
}

.filter-box h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.filter-box ul {
  list-style: none;
  padding: 0;
}

.filter-box li {
  margin-bottom: 8px;
  font-size: 14px;
}
.filter-title {
  background: #111;
  color: #fff;
  padding: 8px 12px;
  font-size: 14px;
  margin-bottom: 14px;
  border-radius: 4px;
}

.filter-box label {
  display: block;        /* bikin turun ke bawah */
  margin-bottom: 8px;    /* jarak antar checkbox */
  font-size: 14px;
  cursor: pointer;
}

.filter-box input[type="checkbox"] {
  margin-right: 8px;
}


/* ===============================
   PRODUCT GRID SMALL
================================ */
.product-grid.small {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-grid.small .product-card {
  border: 1px solid #eee;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  transition: 0.3s;
}

.product-grid.small .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.product-grid.small img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 10px;
}

.product-grid.small h4 {
  font-size: 14px;
  margin-bottom: 6px;
}

.product-grid.small p {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 600;
}
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
}

.badge.available {
  background: #1a8f4d;
  color: #fff;
}

.badge.sold {
  background: #b00020;
  color: #fff;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
}

.meta-category {
  background: #f2f2f2;
  padding: 3px 8px;
  border-radius: 4px;
}

.meta-price {
  font-weight: 600;
  color: var(--color-accent);
}


/* ===============================
   MOBILE NAVBAR CLEAN FIX
================================ */
@media (max-width: 768px) {

/* Sembunyikan navigasi secara default di mobile */
  .nav-links {
    display: none !important; /* Paksa sembunyi */
    flex-direction: column;
    position: absolute;
    top: 100%; /* Muncul tepat di bawah header */
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    padding: 20px;
    z-index: 999;
  }
  
  /* Tampilkan hanya ketika class .active ditambahkan oleh JS */
  .nav-links.active {
    display: flex !important; 
  }

  /* Pastikan hamburger muncul */
  .hamburger {
    display: flex !important;
  }

  /* Hilangkan garis underline hover di mobile agar lebih bersih */
  .nav-links li a::after {
    display: none;
  }

  /* Matikan hover desktop */
  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }

  /* Dropdown jadi normal flow */
  .dropdown-menu {
    position: static !important;
    display: none;
    background: none;
    box-shadow: none;
    padding: 0;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible;
    width: 100% !important;
    left: 0 !important;
  }

  /* Show ketika diklik */
  .nav-dropdown.active .dropdown-menu {
    display: block !important;
  }

  .dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: #fff;
  }

  .dropdown-menu li a:active {
    background: var(--color-accent);
    color: #000;
  }

  .nav-links li a::after {
    display: none !important;
  }
}


/* Mobile */
@media (max-width: 768px) {
  .page-intro {
    min-height: 40vh;
  }

  .page-intro h1 {
    font-size: 28px;
  }

  .page-intro p {
    font-size: 14px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .brasswind-products .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .brasswind-products .product-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .product-grid.small {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .product-grid.small {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* Responsive */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   MOBILE DROPDOWN
================================ */
@media (max-width: 768px) {
  #hero {
    min-height: 70vh;        /* lebih pendek di mobile */
    padding: 60px 16px;
  }

  .hero-text {
    padding: 32px;
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .before-after-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .before-after-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-description {
    grid-column: auto;
    text-align: left;
  }
}

