/* ============================================================
   AlatauPack — Custom CSS (SEO + UX Improvements)
   ============================================================ */

:root {
  --brand-green: #198754;
  --brand-dark: #212529;
}

/* === Typography === */
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #333;
}

/* === Top Nav === */
#templatemo_nav_top a {
  font-size: 0.85rem;
}

/* === Logo === */
.logo {
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* === Hero Banner === */
.hero-banner {
  background: linear-gradient(135deg, #198754 0%, #0d6640 100%);
  color: #fff;
  padding: 80px 0;
}
.hero-banner h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}
.hero-banner .lead {
  font-size: 1.15rem;
  opacity: 0.92;
}

/* === Product Card === */
.product-card {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}
.product-card .card-img-top {
  object-fit: contain;
  height: 200px;
  padding: 16px;
  background: #f8f9fa;
}
.product-card .badge-stock {
  position: absolute;
  top: 12px;
  left: 12px;
}

/* === Product Detail === */
.product-detail-img {
  border-radius: 12px;
  border: 1px solid #dee2e6;
  object-fit: contain;
  max-height: 380px;
  width: 100%;
  background: #f8f9fa;
  padding: 24px;
}
.price-block .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-green);
}

/* === WhatsApp button === */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
}

/* === Benefits strip === */
.benefits-strip {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}
.benefit-item {
  text-align: center;
  padding: 20px 10px;
}
.benefit-item i {
  font-size: 1.8rem;
  color: var(--brand-green);
  margin-bottom: 8px;
}
.benefit-item p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: #555;
}

/* === Breadcrumb === */
.breadcrumb {
  background: transparent;
  padding: 8px 0;
  font-size: 0.875rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
}

/* === Table === */
.specs-table th {
  width: 45%;
  background: #f8f9fa;
  font-weight: 600;
}

/* === Footer === */
#tempaltemo_footer {
  margin-top: 60px;
}
.footer-link-list li {
  margin-bottom: 8px;
}
.footer-link-list a {
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-link-list a:hover {
  color: #fff;
}

/* === FAQ === */
.faq-section .accordion-button:not(.collapsed) {
  background-color: #e8f5e9;
  color: var(--brand-green);
}

/* === Sticky WhatsApp float === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float i {
  color: #fff;
  font-size: 1.7rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero-banner h1 { font-size: 1.7rem; }
  .price-block .price { font-size: 1.6rem; }
}
