/* =============================================
   STYLE CAHAYA GHEA SPONGE - RESPONSIF
   Support HP, Tablet, Desktop
   ============================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #0a2e5c;
  --primary-dark: #061e3d;
  --primary-light: #1a4a7a;
  --secondary-blue: #eef2f8;
  --white: #ffffff;
  --gray-light: #f5f7fa;
  --gray: #64748b;
  --dark: #1e293b;
  --success: #4caf50;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 12px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER ========== */
header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  flex-wrap: wrap;
  gap: 15px;
}

.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo h1 {
  color: var(--primary-blue);
  font-size: 1.3rem;
  margin: 0;
}

.logo p {
  color: var(--gray);
  font-size: 0.7rem;
  margin: 0;
}

/* ========== NAVIGASI ========== */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-blue);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}

/* ========== CAROUSEL / SLIDER ========== */
.hero-carousel {
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
}

.carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.slide-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: auto;
  background: rgba(6, 30, 61, 0.85);
  color: white;
  padding: 12px 20px;
  border-radius: var(--border-radius);
  backdrop-filter: blur(8px);
  max-width: 80%;
}

.slide-caption h2 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.slide-caption p {
  font-size: 0.8rem;
  opacity: 0.95;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 46, 92, 0.8);
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
  z-index: 10;
  font-size: 0.9rem;
}

.carousel-btn:hover {
  background: var(--primary-blue);
}

.prev-btn {
  left: 10px;
}
.next-btn {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: var(--primary-blue);
  width: 20px;
  border-radius: 20px;
}

/* ========== SECTION TITLE ========== */
.section-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 0.8rem;
  margin-bottom: 25px;
}

/* ========== PRODUK TERLARIS (BEST SELLER CAROUSEL) ========== */
.best-seller {
  padding: 30px 0;
  background: var(--white);
  border-bottom: 1px solid #eee;
}

.best-seller-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.best-seller-container {
  overflow: hidden;
  width: 100%;
}

.best-seller-slides {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease;
}

.best-seller-card {
  min-width: calc(25% - 15px);
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
  transition: transform 0.3s;
}

.best-seller-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.best-seller-img {
  width: 100%;
  height: 150px;
  overflow: hidden;
  background: #f5f5f5;
}

.best-seller-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.best-seller-info {
  padding: 10px;
  text-align: center;
}

.best-seller-info h4 {
  font-size: 0.8rem;
  margin-bottom: 5px;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.best-seller-info .price {
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--primary-blue);
  margin: 5px 0;
}

.best-seller-info .stock-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 600;
  margin: 5px 0;
}

.best-seller-info .stock-badge.tersedia {
  background: #e8f5e9;
  color: var(--success);
}

.best-seller-info .stock-badge.habis {
  background: #ffebee;
  color: #f44336;
}

.best-seller-info .btn-small {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 4px 10px;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.65rem;
  transition: 0.3s;
}

.best-seller-info .btn-small:hover {
  background: #128c7e;
}

.best-seller-prev,
.best-seller-next {
  background: var(--primary-blue);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 10;
  flex-shrink: 0;
}

.best-seller-prev:hover,
.best-seller-next:hover {
  background: var(--primary-dark);
}

/* ========== VALUE PROPOSITION ========== */
.value-prop {
  padding: 40px 0;
  background: var(--gray-light);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card i {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ========== CTA WHATSAPP ========== */
.lead-capture {
  padding: 40px 0;
}

.lead-card {
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 25px;
  border-radius: var(--border-radius);
  text-align: center;
}

.lead-card i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.lead-card h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.lead-card p {
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.btn-primary {
  background: var(--white);
  color: #25d366;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 40px 0;
  background: var(--secondary-blue);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
}

.stars {
  color: #ffc107;
  font-size: 1rem;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 0.85rem;
  margin-bottom: 10px;
  font-style: italic;
}

.testimonial-card h4 {
  font-size: 0.8rem;
  color: var(--primary-blue);
}

/* ========== KATALOG PAGE ========== */
.page-header {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
  color: white;
  padding: 40px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 1.5rem;
}

.page-header p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.catalog-filters {
  text-align: center;
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.filter-btn {
  background: var(--gray-light);
  border: none;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 30px;
  transition: 0.3s;
  font-size: 0.85rem;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-blue);
  color: white;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.catalog-item {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.catalog-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.catalog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #f5f5f5;
}

.catalog-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.catalog-info h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.catalog-info p {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.4;
}

.price {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--primary-blue);
  margin: 8px 0;
}

.stock-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  margin: 8px 0;
}

.stock-badge.tersedia {
  background: #e8f5e9;
  color: var(--success);
}

.stock-badge.habis {
  background: #ffebee;
  color: #f44336;
}

.btn-small {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.75rem;
  transition: 0.3s;
  text-align: center;
  margin-top: auto;
}

.btn-small:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

.loading-products,
.no-products {
  text-align: center;
  padding: 50px;
  grid-column: 1 / -1;
  color: var(--gray);
}

/* ========== TENTANG KAMI ========== */
.about-section {
  padding: 40px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.about-content h2 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin: 20px 0 10px;
}

.about-content h2:first-child {
  margin-top: 0;
}

.about-content p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.stat-box {
  text-align: center;
  padding: 20px;
  background: var(--secondary-blue);
  border-radius: var(--border-radius);
}

.stat-box i {
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.stat-box h3 {
  font-size: 1.3rem;
  margin: 5px 0;
}

/* ========== HUBUNGI KAMI ========== */
.contact-section {
  padding: 40px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-top: 3px;
}

.info-item h3 {
  font-size: 1rem;
  margin-bottom: 3px;
  color: var(--dark);
}

.info-item p {
  font-size: 0.85rem;
  color: var(--gray);
}

.maps-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 0.8rem;
}

.maps-link:hover {
  text-decoration: underline;
}

/* CTA WhatsApp Card */
.wa-promo-card {
  background: #f0fdf4;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wa-icon {
  font-size: 4rem;
  color: #25d366;
  margin-bottom: 10px;
}

.wa-promo-card h2 {
  margin: 15px 0;
  font-size: 1.3rem;
  color: var(--dark);
}

.wa-promo-card p {
  margin-bottom: 20px;
  color: var(--gray);
}

.wa-btn-custom {
  background: #25d366 !important;
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.1rem;
  color: white !important;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.wa-btn-custom:hover {
  background: #128c7e !important;
  transform: translateY(-2px);
}

.cod-badge {
  background: var(--primary-blue);
  color: white;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
}

/* Map Section */
.map-section {
  margin-bottom: 40px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 10px;
}

.map-subtitle {
  text-align: center;
  margin-bottom: 20px;
}

.map-container {
  margin: 20px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.maps-buttons {
  text-align: center;
  margin-top: 15px;
}

.maps-link-direct {
  display: inline-block;
  margin: 5px;
  background: var(--primary-blue);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.maps-link-direct:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.maps-link-green {
  background: #25d366;
}

.maps-link-green:hover {
  background: #128c7e;
}

.location-card {
  background: #f0f7ff;
  padding: 15px;
  border-radius: 12px;
  margin-top: 15px;
  border-left: 4px solid var(--primary-blue);
}

.alamat-lengkap {
  background: var(--secondary-blue);
  padding: 12px 15px;
  border-radius: 10px;
  font-family: monospace;
  margin-bottom: 15px;
}

.map-note {
  background: var(--secondary-blue);
  padding: 15px;
  border-radius: 10px;
  margin-top: 25px;
  text-align: center;
}

/* ========== FOOTER ========== */
footer {
  background: var(--dark);
  color: white;
  padding: 30px 0 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #64b5f6;
}

.footer-col p,
.footer-col li {
  font-size: 0.7rem;
  line-height: 1.4;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 5px;
}

.footer-col a {
  color: white;
  text-decoration: none;
}

.footer-col a:hover {
  color: #64b5f6;
}

.footer-bottom {
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.6rem;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128c7e;
}

/* ========== RESPONSIVE ========== */

/* Tablet (max 1024px) */
@media (max-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .best-seller-card {
    min-width: calc(33.33% - 14px);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* HP (max 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .logo img {
    height: 40px;
  }

  .logo h1 {
    font-size: 1rem;
  }

  .logo p {
    font-size: 0.6rem;
  }

  .carousel-slide img {
    max-height: 200px;
  }

  .slide-caption {
    bottom: 10px;
    left: 10px;
    padding: 8px 12px;
    max-width: 90%;
  }

  .slide-caption h2 {
    font-size: 0.85rem;
  }

  .slide-caption p {
    font-size: 0.65rem;
  }

  .carousel-btn {
    padding: 5px 8px;
    font-size: 0.65rem;
  }

  .section-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .value-card {
    padding: 10px 8px;
  }

  .value-card i {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }

  .value-card h3 {
    font-size: 0.7rem;
    margin-bottom: 3px;
  }

  .value-card p {
    font-size: 0.6rem;
  }

  .catalog-grid {
    gap: 15px;
  }

  .catalog-item img {
    height: 160px;
  }

  .catalog-info {
    padding: 12px;
  }

  .catalog-info h3 {
    font-size: 0.9rem;
  }

  .catalog-info p {
    font-size: 0.7rem;
  }

  .price {
    font-size: 0.95rem;
  }

  .filter-btn {
    padding: 6px 14px;
    font-size: 0.75rem;
  }

  .btn-small {
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  .best-seller-card {
    min-width: calc(50% - 10px);
  }

  .best-seller-img {
    height: 110px;
  }

  .best-seller-info {
    padding: 8px;
  }

  .best-seller-info h4 {
    font-size: 0.7rem;
  }

  .best-seller-info .price {
    font-size: 0.75rem;
  }

  .best-seller-info .stock-badge {
    font-size: 0.55rem;
    padding: 1px 6px;
  }

  .best-seller-info .btn-small {
    padding: 3px 8px;
    font-size: 0.55rem;
  }

  .best-seller-prev,
  .best-seller-next {
    width: 28px;
    height: 28px;
    font-size: 0.65rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .testimonial-card {
    padding: 12px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    text-align: left;
  }

  .footer-col h4 {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .footer-col p,
  .footer-col li {
    font-size: 0.6rem;
    line-height: 1.3;
  }

  .footer-bottom {
    font-size: 0.55rem;
    padding-top: 10px;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    bottom: 15px;
    right: 15px;
  }

  /* ========== HUBUNGI KAMI - KHUSUS HP ========== */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    margin: 20px 0 !important;
  }

  .contact-info h2 {
    font-size: 1.1rem !important;
    margin-bottom: 15px !important;
  }

  .info-item {
    gap: 12px !important;
    margin-bottom: 18px !important;
  }

  .info-item i {
    font-size: 1rem !important;
    width: 24px !important;
  }

  .info-item h3 {
    font-size: 0.85rem !important;
  }

  .info-item p {
    font-size: 0.75rem !important;
  }

  .alamat-lengkap {
    padding: 10px !important;
    font-size: 0.7rem !important;
  }

  .location-card {
    padding: 10px !important;
    font-size: 0.7rem !important;
  }

  .wa-promo-card {
    padding: 20px !important;
  }

  .wa-icon {
    font-size: 2.5rem !important;
  }

  .wa-promo-card h2 {
    font-size: 1rem !important;
    margin: 10px 0 !important;
  }

  .wa-promo-card p {
    font-size: 0.75rem !important;
  }

  .wa-btn-custom {
    padding: 8px 20px !important;
    font-size: 0.85rem !important;
  }

  .cod-badge {
    font-size: 10px !important;
    padding: 2px 6px !important;
  }

  .map-container iframe {
    height: 300px !important;
  }

  .maps-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .maps-link-direct {
    display: block !important;
    width: 90% !important;
    margin: 0 auto !important;
    text-align: center !important;
    font-size: 0.75rem !important;
    padding: 8px !important;
  }

  .map-note {
    font-size: 0.7rem !important;
    padding: 12px !important;
  }
}

/* HP KECIL (max 480px) */
@media (max-width: 480px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .value-grid {
    gap: 8px;
  }
  .value-card {
    padding: 8px 5px;
  }
  .value-card i {
    font-size: 1.1rem;
  }
  .value-card h3 {
    font-size: 0.65rem;
  }
  .value-card p {
    font-size: 0.55rem;
  }
  .filter-btn {
    padding: 5px 12px;
    font-size: 0.7rem;
  }
  .best-seller-card {
    min-width: calc(50% - 8px);
  }
  .best-seller-img {
    height: 95px;
  }
  .best-seller-info h4 {
    font-size: 0.65rem;
  }
  .best-seller-info .price {
    font-size: 0.7rem;
  }
  .best-seller-info .btn-small {
    padding: 2px 6px;
    font-size: 0.5rem;
  }
  .lead-card {
    padding: 15px;
  }
  .lead-card h2 {
    font-size: 1rem;
  }
  .btn-primary {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
  .carousel-slide img {
    max-height: 150px;
  }
  .slide-caption h2 {
    font-size: 0.7rem;
  }
  .slide-caption p {
    font-size: 0.55rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .footer-col h4 {
    font-size: 0.7rem;
  }
  .footer-col p,
  .footer-col li {
    font-size: 0.55rem;
  }
  .whatsapp-float {
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
    bottom: 12px;
    right: 12px;
  }

  /* Hubungi Kami HP Kecil */
  .contact-info h2 {
    font-size: 0.95rem !important;
  }
  .info-item i {
    font-size: 0.85rem !important;
    width: 20px !important;
  }
  .info-item h3 {
    font-size: 0.75rem !important;
  }
  .info-item p {
    font-size: 0.65rem !important;
  }
  .alamat-lengkap {
    font-size: 0.6rem !important;
  }
  .location-card {
    font-size: 0.6rem !important;
  }
  .wa-promo-card {
    padding: 15px !important;
  }
  .wa-icon {
    font-size: 2rem !important;
  }
  .wa-promo-card h2 {
    font-size: 0.85rem !important;
  }
  .wa-promo-card p {
    font-size: 0.65rem !important;
  }
  .wa-btn-custom {
    padding: 6px 15px !important;
    font-size: 0.7rem !important;
  }
  .map-container iframe {
    height: 200px !important;
  }
  .maps-link-direct {
    font-size: 0.65rem !important;
    padding: 6px !important;
  }
  .map-note {
    font-size: 0.6rem !important;
  }
}

/* TABLET (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .carousel-slide img {
    max-height: 350px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* DESKTOP (min 1025px) */
@media (min-width: 1025px) {
  .value-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
  }
  .carousel-slide img {
    max-height: 450px;
  }
  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========== UTILITY ========== */
.text-center {
  text-align: center;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}
