/* Général */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f4f4f4;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  background-color: #04B4AE;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.navbar-custom {
  background-color: #04B4AE !important;
}


.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 200px;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.nav-bar {
  display: flex;
  justify-content: space-around;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-list li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-list li a:hover {
  background-color: #ff6347;
}

.cart-container {
  display: flex;
  align-items: center;
}

.cart {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.cart-icon {
  width: 30px;
  height: 30px;
}

.cart-count {
  background-color: #ff6347;
  border-radius: 50%;
  padding: 5px 10px;
  font-size: 14px;
  color: white;
  margin-right: 10px;
}

/* Main Content */
main {
  padding: 20px;
}

/* Affichage des produits */
.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.product-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

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

.product-card-content {
  padding: 15px;
}

.product-card-content h2 {
  font-size: 18px;
  margin: 10px 0;
}

.product-card-content p.price {
  font-size: 16px;
  color: #ff6347;
  font-weight: bold;
}

.buy-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.buy-button:hover {
  background-color: #ff6347;
}

/* Footer */
footer {
  background-color: #222;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info,
.footer-links,
.footer-social {
  flex: 1;
}

.footer-info h3,
.footer-links h3,
.footer-social h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-info p {
  font-size: 14px;
}

.footer-links ul,
.social-links {
  list-style: none;
  padding: 0;
}

.footer-links li,
.social-links li {
  margin-bottom: 8px;
}

.footer-links a,
.social-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover,
.social-links a:hover {
  color: #ff6347;
}

.social-links img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.footer-bottom {
  margin-top: 30px;
  font-size: 14px;
  background-color: #111;
  padding: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  /* Header */
  header {
      flex-direction: column;
      text-align: center;
  }

  .nav-bar {
      flex-direction: column;
      width: 100%;
      margin-top: 20px;
  }

  .cart-container {
      margin-top: 20px;
  }

  .nav-list {
      flex-direction: column;
      gap: 10px;
  }

  .cart-count {
      font-size: 12px;
  }

  /* Footer */
  .footer-container {
      flex-direction: column;
      gap: 30px;
  }

  .footer-info,
  .footer-links,
  .footer-social {
      text-align: center;
      flex: none;
  }

  .footer-bottom {
      margin-top: 30px;
  }

  /* Produits */
  .product-container {
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 20px;
  }

  .product-card img {
      height: 180px;
  }
}

@media screen and (max-width: 480px) {
  .logo-text {
      font-size: 20px;
  }

  .nav-list li a {
      font-size: 14px;
  }

  .cart-icon {
      width: 25px;
      height: 25px;
  }

  .footer-info h3,
  .footer-links h3,
  .footer-social h3 {
      font-size: 16px;
  }

  .footer-info p {
      font-size: 12px;
  }

  .footer-links a,
  .social-links a {
      font-size: 12px;
  }

  /* Produits */
  .product-card img {
      height: 160px;
  }

  .product-card-content h2 {
      font-size: 16px;
  }

  .product-card-content p.price {
      font-size: 14px;
  }
   
  /* Global container */
.product-detail-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.product-detail-main {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Image du produit */
.product-detail-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Détails du produit */
.product-detail-info {
  flex: 1 1 50%;
  padding: 20px;
}

.product-name {
  font-size: 2em;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.product-price {
  font-size: 1.6em;
  color: #E67E22;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-description {
  font-size: 1.2em;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}

.seller-info {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 10px;
}

.product-stock {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 20px;
}

.product-stock span {
  font-weight: 600;
  color: #E67E22;
}

/* Bouton Ajouter au panier */
.add-to-cart {
  margin-top: 30px;
}

.add-to-cart-button {
  display: inline-block;
  background-color: #27ae60;
  color: white;
  padding: 15px 30px;
  font-size: 1.2em;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.add-to-cart-button:hover {
  background-color: #2ecc71;
}

/* Responsive design */
@media (max-width: 768px) {
  .product-detail-main {
      flex-direction: column;
      align-items: center;
  }

  .product-detail-info {
      width: 100%;
      text-align: center;
  }

  .product-image {
      max-width: 350px;
  }

  .add-to-cart-button {
      width: 100%;
  }
}
  
}
/* Global container */
.product-detail-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.product-detail-main {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Image du produit */
.product-detail-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Détails du produit */
.product-detail-info {
  flex: 1 1 50%;
  padding: 20px;
}

.product-name {
  font-size: 2em;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.product-price {
  font-size: 1.6em;
  color: #E67E22;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-description {
  font-size: 1.2em;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}

.seller-info {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 10px;
}

.product-stock {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 20px;
}

.product-stock span {
  font-weight: 600;
  color: #E67E22;
}

/* Bouton Ajouter au panier */
.add-to-cart {
  margin-top: 30px;
}

.add-to-cart-button {
  display: inline-block;
  background-color: #27ae60;
  color: white;
  padding: 15px 30px;
  font-size: 1.2em;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.add-to-cart-button:hover {
  background-color: #2ecc71;
}

/* Responsive design */
@media (max-width: 768px) {
  .product-detail-main {
      flex-direction: column;
      align-items: center;
  }

  .product-detail-info {
      width: 100%;
      text-align: center;
  }

  .product-image {
      max-width: 350px;
  }

  .add-to-cart-button {
      width: 100%;
  }
}

/* Cart Page Styles */
.cart-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  background-color: #f9f9f9;
}

.cart-header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.cart-header p {
  font-size: 1.2em;
  color: #555;
}

.cart-items {
  margin-bottom: 40px;
}

.cart-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.cart-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cart-item-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-details h3 {
  font-size: 1.3em;
  margin: 0;
  color: #333;
}

.cart-item-price {
  font-size: 1.2em;
  color: #333;
}

.cart-item-quantity {
  margin-top: 10px;
}

.quantity-input {
  width: 60px;
  padding: 5px;
  font-size: 1em;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.cart-item-actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

.remove-btn {
  background-color: #ff4c4c;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.remove-btn:hover {
  background-color: #ff0000;
}

.empty-cart {
  font-size: 1.5em;
  text-align: center;
  color: #999;
}

.cart-summary {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 20px;
}

.cart-summary h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.cart-summary p {
  font-size: 1.2em;
  margin: 10px 0;
}

.cart-summary .checkout-btn {
  background-color: #4CAF50;
  color: white;
  padding: 12px 4px;
  font-size: 1.2em;
  border-radius: 5px;
  text-align: center;
  width: 100%;
  display: inline-block;
  transition: background-color 0.3s;
}

.cart-summary .checkout-btn:hover {
  background-color: #45a049;
}

@media (max-width: 768px) {
  .cart-item {
      flex-direction: column;
      align-items: flex-start;
  }

  .cart-item-image img {
      width: 80px;
      height: 80px;
  }

  .cart-summary {
      position: relative;
  }
}

/* styles/user_profile.css */

/* Conteneur général */
.user-profile-container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  background-color: #f4f7fa;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
}

/* En-tête du profil */
.profile-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.profile-header .profile-image {
  flex: 0 0 150px;
  margin-right: 20px;
}

.profile-header .profile-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.profile-header .profile-info {
  flex: 1;
}

.profile-header .profile-info h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}

.profile-header .profile-info .email {
  font-size: 1.1rem;
  color: #777;
}

.profile-header .profile-info .location {
  font-size: 1rem;
  color: #555;
}

/* Actions (message / rendez-vous) */
.profile-actions {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.profile-actions .button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.profile-actions .button:hover {
  background-color: #45a049;
}

.profile-actions .appointment-button {
  background-color: #FF6F61;
}

.profile-actions .appointment-button:hover {
  background-color: #e05c53;
}

/* Description */
.profile-description {
  margin-top: 40px;
}

.profile-description h2 {
  font-size: 1.6rem;
  color: #333;
}

.profile-description p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
}

/* Section des produits */
.user-products {
  margin-top: 40px;
}

.user-products h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #333;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #333;
}

.product-card p {
  font-size: 1.1rem;
  color: #777;
  margin-top: 5px;
}

.view-product-button {
  display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    font-size: 14px;
    text-align: center;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.view-product-button:hover {
  background-color: #0056b3;
}

/* Ajouter produit  */
/* Conteneur principal */
.add-product-wrapper {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  background: linear-gradient(145deg, #ffffff, #f1f1f1);
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1), 0px 2px 5px rgba(0, 0, 0, 0.06);
  font-family: 'Arial', sans-serif;
}

/* Titre principal */
.add-product-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
}

/* Description */
.add-product-description {
  font-size: 1rem;
  color: #555;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Formulaire */
.add-product-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Groupes de champs */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 1rem;
  color: #444;
  font-weight: 600;
}

/* Champs d'entrée */
.add-product-form input,
.add-product-form textarea,
.add-product-form select {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Interaction focus */
.add-product-form input:focus,
.add-product-form textarea:focus,
.add-product-form select:focus {
  border-color: #0078d7;
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 120, 215, 0.5);
}

/* Boutons */
.submit-btn {
  display: inline-block;
  background-color: #04B4AE;
  color: #fff;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s;
  text-align: center;
}

.submit-btn:hover {
  background-color: #04B4AE;
  transform: translateY(-2px);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Bouton secondaire */
.reset-btn {
  background-color: #e0e0e0;
  color: #555;
  padding: 15px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
}

.reset-btn:hover {
  background-color: #d6d6d6;
}

/* Message d'erreur */
.error-message {
  color: #d9534f;
  background-color: #f2dede;
  border: 1px solid #ebccd1;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .add-product-wrapper {
      padding: 20px;
  }

  .add-product-title {
      font-size: 1.8rem;
  }

  .submit-btn,
  .reset-btn {
      font-size: 1rem;
      padding: 12px;
  }
}

/* Systeme de messagerie */
.page-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.conversation-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.conversation-item {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
  transition: background 0.3s, box-shadow 0.3s;
}

.conversation-item:hover {
  background: #f1f5f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.conversation-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.conversation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.conversation-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.conversation-date {
  font-size: 0.875rem;
  color: #777;
}

.conversation-preview {
  font-size: 1rem;
  color: #555;
  margin-top: 0.5rem;
}

.no-conversations {
  font-size: 1rem;
  color: #999;
  text-align: center;
  margin-top: 2rem;
}

/* Template Conversation détaillé */
.conversation-header {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

.message-list {
  max-height: 60vh;
  overflow-y: auto;
  padding: 1rem;
  background: #f1f1f1;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.message {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  max-width: 70%;
}

.message.sent {
  align-self: flex-end;
  background-color: #d1ffd6;
  margin-left: auto;
}

.message.received {
  align-self: flex-start;
  background-color: #ffffff;
  border: 1px solid #ddd;
}

.message-content {
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 1rem;
  background: #f7f7f7;
}

.message-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #666;
  padding: 0.5rem;
}

.message-info .sender {
  font-weight: bold;
}

.message-info .timestamp {
  color: #888;
}

.no-messages {
  text-align: center;
  color: #999;
}

.message-form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  resize: none;
}

.send-button {
  background: #007bff;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.send-button:hover {
  background: #0056b3;
}

/* Systeme  de messagerie */
.conversation {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.messages {
  max-height: 500px;
  overflow-y: auto;
  margin-bottom: 10px;
}

.message {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.sent {
  align-items: flex-end;
}

.received {
  align-items: flex-start;
}

.message-content {
  background-color: #e0e0e0;
  padding: 10px;
  border-radius: 8px;
  max-width: 80%;
  word-wrap: break-word;
}

.sent .message-content {
  background-color: #0078FF;
  color: white;
}

.received .message-content {
  background-color: #e5e5e5;
}

.message-time {
  font-size: 12px;
  color: #888;
  margin-top: 5px;
}

.send-message-form {
  display: flex;
  justify-content: space-between;
}

textarea {
  width: 80%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  background-color: #0078FF;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #005BB5;
}

/* Home page */
/* Section principale */
.home-container {
  font-family: 'Arial', sans-serif;
  color: #333;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  color: #fff;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero-text .brand-name {
  color: #ffeb3b;
  font-weight: bold;
}

.hero-text p {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-text .btn-explore {
  background-color: #ff5722;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 1.1em;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.hero-text .btn-explore:hover {
  background-color: #e64a19;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Features Section */
.features-section {
  text-align: center;
  margin-top: 40px;
}

.features-section h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.features {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.feature {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #4caf50;
}

.feature p {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
}

.filter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.search-input, .price-input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.filter-button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
}

.filter-button:hover {
  background-color: #0056b3;
}