/* ================= GLOBAL FIX ================= */
/* REMOVE DEFAULT BROWSER GAP */
html, body {
  margin: 0;
  padding: 0;
}

/* REMOVE GAP BETWEEN NAVBAR & HERO */
header,
.site-header,
.navbar,
.main-header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.hero-section,
.hero-banner,
.hero,
.banner {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero img,
.hero-image {
  display: block;
}

header + section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ================= PRODUCT SECTION ================= */
.product-section {
  width: 100%;
  padding: 25px 0;
  background: #ffffff;
  border-bottom: 1px solid #f1f3f5;
}

.product-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0 5%;
}

/* IMAGE BOXES */
.product-image {
  flex: 0 0 400px;
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* CONTENT */
.product-content {
  flex: 1;
}

.product-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0b1220;
  line-height: 1.3;
}

.product-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 20px;
  text-align: justify;
}

.product-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0078B8;
}

.product-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.product-content ul li {
  font-size: 15px;
  line-height: 1.6;
  color: #2d3748;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.product-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0078B8;
  font-size: 20px;
}

/* BUTTONS */
.product-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.btn-whatsapp,
.btn-contact {
  padding: 13px 28px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  color: #fff;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}

.btn-whatsapp {
  background: #25D366;
}

.btn-whatsapp:hover {
  background: #1ebc59;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.btn-contact {
  background: #007BFF;
}

.btn-contact:hover {
  background: #0069d9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

/* HERO IMAGE SECTION */
.hero-image-section {
  width: 100%;
  overflow: hidden;
  padding: 0;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .product-container {
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }

  .product-image {
    flex: 0 0 auto;
    width: 80%;
    max-width: 450px;
    margin: 0 auto;
  }

  .product-content p {
    text-align: center;
  }
  
  .product-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .product-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-whatsapp,
  .btn-contact {
    width: 100%;
  }
}
