/* ========================================
   Homepage – ameridac.ro
   ======================================== */

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
}

/* ---- Hero ---- */
.hero-section {
  background-color: #f8f9fa;
}

.hero-section .bg-light {
  background-color: #f8f9fa !important;
}

/* ---- Sticky header ---- */
.site-header {
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

.site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

body.header-sticky-active .sticky-spacer {
  height: 72px;
}

/* ---- Nav pills ---- */
.nav-pills .nav-link {
  color: #495057;
  border-radius: 50rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-pills .nav-link:hover {
  background-color: #e9ecef;
  color: #212529;
}

.nav-pills .nav-link.active {
  background-color: #0d6efd;
  color: #fff;
}

/* ---- Product cards ---- */
.product-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1rem;
  height: 100%;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  border-color: #0d6efd;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.12);
  color: inherit;
  text-decoration: none;
}

.product-card .card-thumb {
  background-color: #e9ecef;
  width: 100%;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

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

.product-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.product-card p {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0;
}

/* ---- Section styles ---- */
.category-section {
  padding: 3rem 0;
}

.category-section + .category-section {
  border-top: 1px solid #e9ecef;
}

.category-section h2 {
  font-weight: 700;
}

.category-section h3 {
  font-weight: 600;
}

h3[id^="sub-"] {
  scroll-margin-top: 110px;
}

/* ---- FAQ accordion ---- */
.accordion-custom .accordion-item {
  border: 1px solid #dee2e6;
  border-radius: 8px !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.accordion-custom .accordion-button {
  background-color: #fff;
  box-shadow: none;
  font-size: 0.95rem;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #212529;
}

.accordion-custom .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-custom .accordion-body {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- Newsletter ---- */
.newsletter-input {
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

/* ---- Reviews ---- */
.review-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1.5rem;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .nav-pills {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
  }

  .nav-pills .nav-link {
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .product-card .card-thumb {
    height: 100px;
  }

  .category-section {
    padding: 2rem 0;
  }
}
