.creative-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1d1f2f;
    color: #ffffff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
  }
  
  .creative-content {
    max-width: 600px;
    text-align: center;
    z-index: 2;
  }
  
  .creative-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .creative-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
  }
  
  .creative-button {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    background: #f72585;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .creative-button:hover {
    background: #b5179e;
  }
  
  .creative-art {
    position: relative;
    margin-top: 50px;
    width: 100%;
    max-width: 600px;
  }
  
  .main-image {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    z-index: 2;
    position: relative;
  }
  
  .blob-shape {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    opacity: 0.2;
    z-index: 1;
  }
  
  .circle-shape {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 120px;
    opacity: 0.1;
    z-index: 1;
  }
  
  @media (min-width: 768px) {
    .creative-banner {
      flex-direction: row;
      padding: 100px 80px;
      gap: 60px;
    }
  
    .creative-content {
      text-align: left;
      flex: 1;
    }
  
    .creative-art {
      flex: 1;
      margin-top: 0;
    }
  }




  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }

  .product-card {
    position: relative;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }

  .product-card:hover {
    transform: translateY(-10px);
  }

  .product-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background-color: #f9f9f9;
  }

  .product-info {
    padding: 20px;
    text-align: center;
  }

  .product-info h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
  }

  .price {
    font-size: 1rem;
    color: #28a745;
    margin-bottom: 15px;
  }

  .price del {
    color: #999;
    margin-right: 5px;
  }

  .btn-buy {
    display: inline-block;
    padding: 10px 20px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s;
  }

  .btn-buy:hover {
    background: #000;
  }

  .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff6f61;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 5px;
  }

  .badge.sale {
    left: auto;
    right: 15px;
    background: #28a745;
  }

  .footer-link {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-link:hover {
    color: #fff;
    text-decoration: underline;
  }
  .social-links a {
    color: #bbb;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .social-links a:hover {
    color: #0d6efd; /* Bootstrap primary blue */
  }



  .social-links {
    padding: 10;
    margin: 10;
  }
  
  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #333;
    color: white;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-decoration: none;
  }
  
  .social-icon:hover,
  .social-icon:focus {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    color: white;
  }
  
  /* Brand colors on hover */
  .social-icon.facebook:hover {
    background-color: #3b5998; /* Facebook blue */
  }
  
  .social-icon.linkedin:hover {
    background-color: #0077b5; /* LinkedIn blue */
  }
  
  .social-icon.twitter:hover {
    background-color: #1da1f2; /* Twitter blue */
  }
  
  /* Optional: Icon size adjustment */
  .social-icon span {
    font-size: 1.6rem;
    pointer-events: none; /* So icon doesn’t block the link */
  }
  