* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background-color: #f8fafc;
      color: #1f2937;
    }
    .hero {
      background-color: #ffffff;
      padding: 1.5rem 1rem;
      text-align: center;
    }
    .hero img {
      height: 100px;
      width: auto;
      max-width: 100%;
    }
    .hero h2 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .hero p {
      font-size: 0.75rem;
      color: #6b7280;
    }
    .social-icons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1rem;
    }
    .social-icons a {
      display: inline-block;
    }
    .social-icons img {
      width: 24px;
      height: 24px;
      transition: opacity 0.2s ease-in-out;
    }
    .social-icons a:hover img {
      opacity: 0.7;
    }
    .products {
      padding: 2rem 1rem;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    .search-container {
      max-width: 320px;
      margin: 0 auto 1.25rem;
    }
    .search-container input {
      width: 100%;
      padding: 0.5rem;
      font-size: 0.875rem;
      border: 1px solid #e5e7eb;
      border-radius: 0.25rem;
      outline: none;
      touch-action: manipulation;
    }
    .search-container input:focus {
      border-color: #2563eb;
      box-shadow: 0 0 0 2px #dbeafe;
    }
    .product-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      max-width: 1000px;
      margin: 0 auto;
    }
    .product-card {
      background-color: #ffffff;
      border-radius: 0.25rem;
      overflow: hidden;
      transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
      width: 100%;
      max-width: 200px;
    }
    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      cursor: pointer;
    }
    .product-card img {
      width: 100%;
      height: 140px;
      object-fit: cover;
    }
    .product-card h3 {
      font-size: 1rem;
      font-weight: 500;
      text-align: center;
      padding: 0.75rem;
      color: #1f2937;
    }
    footer {
      background-color: #f3f4f6;
      padding: 1rem;
      text-align: center;
    }
    footer p {
      font-size: 0.75rem;
      color: #6b7280;
    }
    footer a {
      color: #6b7280;
      text-decoration: none;
      margin: 0 0.5rem;
    }
    footer a:hover {
      color: #4b5563;
      text-decoration: underline;
    }
    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }
    .modal-content {
      background-color: #ffffff;
      border-radius: 0.5rem;
      width: 90%;
      max-width: 800px;
      padding: 1.5rem;
      display: flex;
      flex-direction: row;
      gap: 1rem;
      position: relative;
    }
    .modal-video {
      flex: 1;
      max-width: 50%;
    }
    .modal-video iframe {
      width: 100%;
      height: 300px;
      border: none;
    }
    .modal-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 1rem;
    }
    .modal-info h3 {
      font-size: 1.25rem;
      font-weight: 600;
      text-align: center;
    }
    .modal-buy-buttons {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
    }
    .modal-buy-buttons .buy-button {
      background-color: #fcae33;
      color: #000000;
      padding: 0.75rem 1.5rem;
      border-radius: 0.25rem;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: background-color 0.2s;
      text-align: center;
    }
    .modal-buy-buttons .buy-button:hover {
      background-color: #d09029;
    }
    .modal-buy-buttons .share-button {
      background-color: #6b7280;
      color: #ffffff;
      padding: 0.75rem 1.5rem;
      border-radius: 0.25rem;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: background-color 0.2s;
      text-align: center;
      cursor: pointer;
    }
    .modal-buy-buttons .share-button:hover {
      background-color: #4b5563;
    }
    .modal-disclosure {
      font-size: 0.75rem;
      color: #6b7280;
      text-align: center;
      margin-bottom: 0.5rem;
    }
    .modal-text-content {
      flex: 1;
      max-height: 400px;
      overflow-y: auto;
      font-size: 0.875rem;
      line-height: 1.5;
      color: #1f2937;
    }
    /* Responsive Design */
    @media (min-width: 640px) {
      .hero {
        padding: 2rem 1rem;
      }
      .hero h2 {
        font-size: 1.5rem;
      }
      .hero p {
        font-size: 0.875rem;
      }
      .products {
        padding: 3rem 1rem;
      }
      .search-container {
        margin-bottom: 1.5rem;
      }
      .product-card {
        width: calc(50% - 0.5rem); /* 2 per row */
      }
      .product-card img {
        height: 160px;
      }
      .product-card h3 {
        font-size: 1.125rem;
        padding: 1rem;
      }
      footer p {
        font-size: 0.875rem;
      }
    }
    @media (min-width: 1024px) {
      .product-card {
        width: calc(25% - 0.75rem); /* 4 per row */
      }
    }
    @media (max-width: 639px) {
      .hero img {
        height: 50px;
      }
      .social-icons {
        gap: 0.5rem;
      }
      .social-icons img {
        width: 18px;
        height: 18px;
      }
    }
    @media (max-width: 768px) {
      .modal-content {
        flex-direction: column;
        max-width: 95%;
      }
      .modal-video {
        max-width: 100%;
      }
      .modal-video iframe {
        height: 200px;
      }
    }