#featured-products-list::-webkit-scrollbar {
        display: none;
      }
      .featured-card {
        min-width: 280px;
        max-width: 300px;
        flex: 0 0 auto;
        scroll-snap-align: start;
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        transition:
          transform 0.3s,
          box-shadow 0.3s,
          border-color 0.3s;
        text-decoration: none;
        color: inherit;
      }
      .featured-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-color: var(--blue-300);
      }
      .featured-img-container {
        width: 100%;
        height: 200px;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .featured-img-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
      }
      .featured-tag {
        position: absolute;
        top: 1rem;
        left: 1rem;
        background: var(--error);
        color: white;
        font-size: 0.75rem;
        font-weight: 700;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        text-transform: uppercase;
      }
      .featured-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--gray-900);
        margin-bottom: 0.5rem;
        flex-grow: 1;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-clamp: 2;
      }
      .featured-cat {
        font-size: 0.85rem;
        color: var(--gray-500);
      }
