
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.hero {
    width: 100%;
    height: auto;
    min-height: 100vh;
}
.container {
    width: 100%;
    margin: auto;
    padding-top: 30px;
}

body {
    font-family: 'Montserrat';
    background-color: #f4f4f4;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.product-card {
    width: 300px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.product-image img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #e0e0e0;
}
.product-details {
    padding: 20px;
}
.product-name {
    font-size: 1.5rem;
    color: #6c3a76; 
    margin-bottom: 10px;
    font-weight: bold;
}
.fab-con {
    display: flex;
    gap: 30px; 
    justify-content: center; 
    align-items: center;
}
.product-price {
    font-size: 1.2rem;
    color: #5ad0c3; 
    margin-bottom: 20px;
}

.product-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}
.buy-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6c3a76;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.buy-btn:hover {
    background-color: #5ad0c3;
}
.buy-btn:active {
    transform: scale(0.98);
}
@media screen and (max-width: 425px) {
    .hero .container {
      flex-direction: column;
      gap: 20px;
      padding: 0 10px;
    }
  
    .product-card {
      width: 100%;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 15px;
    }
  
    .product-image img {
      width: 100%;
      height: auto;
      display: block;
      margin-bottom: 10px;
    }
  
    .product-name {
      font-size: 1.2rem;
      text-align: center;
    }
  
    .product-price {
      font-size: 1rem;
      text-align: center;
      margin: 5px 0;
    }
  
    .product-description {
      font-size: 0.95rem;
      text-align: center;
    }
  
    .buy-btn {
      display: block;
      width: 100%;
      text-align: center;
      padding: 10px;
      margin-top: 10px;
      background-color: #000;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
    }
  }
  