 /* Tailwind-like CSS */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      line-height: 1.5;
      color: #1F2A44; /* text-dark */
    }

    /* Font imports */
    @font-face {
      font-family: 'Geist';
      src: url('/__nextjs_font/geist-latin.woff2') format('woff2');
      font-weight: 400 600;
      font-display: swap;
    }

    /* Container */
    .max-w-1170 {
      max-width: 1170px;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      padding-left: 1rem;
      padding-right: 1rem;
    }

    /* Spacing utilities */
    .pt-57\.5 { padding-top: 14.375rem; }
    .pb-10 { padding-bottom: 2.5rem; }
    .pt-17\.5 { padding-top: 4.375rem; }
    .pb-15 { padding-bottom: 3.75rem; }
    .mt-10 { margin-top: 2.5rem; }
    .mb-4 { margin-bottom: 1rem; }
    .mb-7\.5 { margin-bottom: 1.875rem; }
    .gap-5 { gap: 1.25rem; }
    .gap-7\.5 { gap: 1.875rem; }

    /* Flexbox */
    .flex { display: flex; }
    .flex-wrap { flex-wrap: wrap; }
    .items-center { align-items: center; }
    .justify-between { justify-content: space-between; }
    .justify-center { justify-content: center; }

    /* Backgrounds */
    .bg-e5eaf4 { background-color: #E5EAF4; }
    .bg-white { background-color: #fff; }
    .bg-f6f7fb { background-color: #F6F7FB; }
    .bg-blue { background-color: #3B82F6; }
    .bg-dark { background-color: #1F2A44; }
    .bg-blue-dark { background-color: #1E40AF; }

    /* Text */
    .text-dark { color: #1F2A44; }
    .text-dark-4 { color: #6B7280; }
    .text-blue { color: #3B82F6; }
    .text-red { color: #EF4444; }
    .text-white { color: #fff; }
    .text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .text-heading-5 { font-size: 1.5rem; line-height: 2rem; }
    .text-custom-sm { font-size: 0.875rem; line-height: 1.25rem; }
    .font-medium { font-weight: 500; }
    .font-semibold { font-weight: 600; }
    .line-through { text-decoration: line-through; }

    /* Buttons */
    .btn {
      display: inline-flex;
      padding: 0.75rem 2.25rem;
      border-radius: 0.375rem;
      font-size: 0.875rem;
      font-weight: 500;
      transition: background-color 0.2s ease-out;
    }
    .btn:hover { background-color: #1E40AF; }

    /* Hero Section */
    .hero-section {
      position: relative;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      right: 0;
      bottom: 0;
      z-index: -1;
    }
    .rounded-10 { border-radius: 10px; }
    .shadow-1 { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }

    /* Swiper */
    .swiper { width: 100%; }
    .swiper-slide { display: flex; }
    .swiper-button-prev,
    .swiper-button-next {
      width: 40px;
      height: 40px;
      background: #fff;
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .swiper-button-prev::after,
    .swiper-button-next::after {
      font-size: 16px;
      color: #1F2A44;
    }

    /* Product Item */
    .product-item {
      position: relative;
    }
    .product-item .actions {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      transform: translateY(100%);
      display: flex;
      justify-content: center;
      gap: 0.625rem;
      padding-bottom: 1.25rem;
      transition: transform 0.2s ease;
    }
    .product-item:hover .actions {
      transform: translateY(0);
    }