/* style.css - Aestus Pharma Exporters Mockup */

/*body {
  font-family: Arial, sans-serif;
  background: #fff5f7;
}*/

body {
  display: flex;
  flex-direction: column;
}

html, body {
  height: 100%;
  margin: 0;
}

.navbar {
  background: #ffe4ec;
}

.navbar .nav-link {
  color: #d63384 !important; /* pink text for menu */
  font-weight: 600;
}

/*.navbar .nav-link {
  color: #444;
  font-weight: 600;
}*/

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #b02568 !important;
}

.navbar-brand {
  color: #d63384 !important;
}

.navbar-brand:hover {
  color: #b02568 !important; 
}


.navbar .nav-link:hover {
  color: #d63384;
}

.banner img {
  width: 100%;
  border-radius: 8px;
  margin-top: 20px;
}

.intro-box {
  background: #fff;
  border: 1px solid #f5c2d1;
  border-radius: 8px;
  padding: 20px;
  height: 100%;
}

.intro-box h5 {
  color: #d63384;
}

.product-card {
  background: #fff;
  border: 1px solid #f5c2d1;
  border-radius: 8px;
  padding: 15px;
  transition: 0.3s;
}

.product-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-card img {
  max-height: 120px;
  object-fit: contain;
}

.product-card .btn {
  margin-top: 10px;
  background: #d63384;
  color: #fff;
  border: none;
}

.product-card .btn:hover {
  background: #b02568;
}

/*footer {
  background: #ffe4ec;
  padding: 20px;
  text-align: center;
  color: #444;
}*/

footer {
  margin-top: auto;
  background: #ffe4ec; /* your theme color */
  text-align: center;
  padding: 10px 0;
}

footer a {
  color: #d63384;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.featured-title {
  color: #d63384;
  font-weight: 700;
}

.container.py-5 {
  padding-top: 40px !important;  /* reduce top padding */
  padding-bottom: 40px !important; /* reduce bottom padding */
}

.product-detail img {
  max-width: 200px;  /* adjust width */
  height: 200px;      /* keep aspect ratio */
}

.product-specs {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.product-specs div {
  display: flex;
}

.product-specs strong {
  min-width: 150px; /* same width for all labels */
  color: #444;
}

.pagination .page-link {
  color: #d63384; /* pink text */
  border: 1px solid #d63384; /* pink border */
}

.pagination .page-link:hover {
  background-color: #d63384;
  color: #fff; /* white text on hover */
}

.pagination .active .page-link {
  background-color: #d63384;
  border-color: #d63384;
  color: #fff;
}

.pagination .disabled .page-link {
  color: #aaa;
  border-color: #ddd;
}

.blog-home-btn {
  background: #d63384;
  color: #fff;
  font-size: 14px;
  padding: 6px 15px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}

.blog-home-btn:hover {
  background: #b1226c; /* darker pink on hover */
  color: #fff;
}