/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}


.product {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.product h3 {
    font-size: 1.2em;
    margin: 10px 0;
}

.product p {
    margin: 5px 0;
}

.product form {
    margin-top: 10px;
}

.product input[type="number"] {
    width: 60px;
    padding: 5px;
}

.product button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .col-md-4 {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .col-md-4 {
        width: 100%;
    }
}
/* Modal CSS */

.button-container {
  display: inline-block;
  border: 6px solid #000000;
  border-radius: 15px;
  padding: 5px;
  background-color: #f0f0f0;
  cursor: pointer;
}

.button-container img {
  display: block;
  max-width: 100%;
  height: auto;
}

 .share-buttons {
      display: flex;
      gap: 14px;
      margin: 30px 0;
    }
    .share-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #eee;
      transition: background 0.2s, box-shadow 0.2s;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      cursor: pointer;
      border: none;
      text-decoration: none;
      font-size: 0;
    }
    .share-btn.facebook { background-color: #3b5998; }
    .share-btn.twitter { background-color: #1da1f2; }
    .share-btn.pinterest { background-color: #e60023; }
    .share-btn svg {
      width: 26px;
      height: 26px;
      fill: #fff;
    }
    .share-btn:hover {
      opacity: 0.85;
      box-shadow: 0 4px 16px rgba(0,0,0,0.14);
    }

