/* Custom JPF - Minimal styles for Combi Crépi Joint layout */

/* Featured product layout on homepage */
.combi-crepi-featured {
  margin-bottom: 30px;
}

/* Ensure featured product container doesn't break layout */
.combi-crepi-featured .product-miniature {
  margin-bottom: 0;
}

/* Simple responsive adjustment */
@media (max-width: 767px) {
  .combi-crepi-featured .col-sm-8 {
    margin-top: 20px;
  }
}

/* Rental button styling */
.product-rental-link {
  margin-top: 12px;
  text-align: center;
}

.btn-rental {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  color: #2c5282;
  text-decoration: none;
  border: 2px solid #2c5282;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.btn-rental:hover {
  background: #2c5282;
  color: #fff;
  text-decoration: none;
}

.btn-rental .material-icons {
  display: none;
}

/* Add to cart button styling */
.btn-add-to-cart {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  color: #25b9d7;
  border: 2px solid #25b9d7;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-add-to-cart:hover {
  background: #25b9d7;
  color: #fff;
}

/* Company intro section */
.company-intro-section {
  background: #f5f5f5;
  padding: 40px 0;
  margin-top: 40px;
  border-top: 1px solid #ddd;
}

.company-intro-content {
  background: #fff;
  padding: 30px;
  border: 1px solid #ddd;
}

.company-intro-content h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  border-bottom: 2px solid #2c5282;
  padding-bottom: 8px;
}

.company-intro-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.company-intro-content ul {
  margin: 15px 0 0 20px;
}

.company-intro-content ul li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.company-intro-content a {
  color: #2c5282;
  text-decoration: none;
}

.company-intro-content a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .company-intro-section {
    padding: 30px 0;
    margin-top: 30px;
  }

  .company-intro-content {
    padding: 20px;
  }

  .company-intro-content h2 {
    font-size: 20px;
  }
}