@import "https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@300;400;500;600;700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --background: #fbfbfd;
  --foreground: #1d1d1f;
  --primary: #1d1d1f;
  --primary-foreground: #fff;
  --primary-hover: #000;
  --secondary: #f5f5f7;
  --secondary-foreground: #1d1d1f;
  --muted: #f5f5f7;
  --muted-foreground: #86868b;
  --border: #d2d2d7;
  --input: #d2d2d7;
  --radius: 18px;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --shadow-sm: 0 2px 8px #0000000a;
  --shadow: 0 4px 14px #0000000f;
  --shadow-md: 0 8px 24px #00000014;
  --shadow-lg: 0 16px 48px #0000001f;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #000;
    --foreground: #f5f5f7;
    --primary: #f5f5f7;
    --primary-foreground: #000;
    --primary-hover: #fff;
    --secondary: #1c1c1e;
    --secondary-foreground: #f5f5f7;
    --muted: #1c1c1e;
    --muted-foreground: #86868b;
    --border: #38383a;
    --input: #38383a;
    --shadow-sm: 0 2px 8px #0003;
    --shadow: 0 4px 14px #0000004d;
    --shadow-md: 0 8px 24px #0006;
    --shadow-lg: 0 16px 48px #00000080;
  }
}

*, :before, :after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  letter-spacing: -.022em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.47059;
  transition: background-color .4s cubic-bezier(.4, 0, .2, 1), color .4s;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -.015em;
  color: var(--foreground);
  font-weight: 600;
}

.app-wrapper {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.site-header {
  background: rgba(var(--background), .72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  z-index: 100;
  border-bottom: 1px solid #86868b26;
  transition: background-color .4s;
  position: sticky;
  top: 0;
}

.header-container {
  justify-content: space-between;
  align-items: center;
  height: 3.5rem;
  display: flex;
}

.logo {
  letter-spacing: -.01em;
  color: var(--foreground);
  font-size: 1.125rem;
  font-weight: 600;
}

.header-nav {
  align-items: center;
  gap: 2rem;
  display: flex;
}

.nav-link {
  color: var(--foreground);
  opacity: .8;
  font-size: .8125rem;
  transition: opacity .2s;
}

.nav-link:hover {
  opacity: 1;
}

.main-content {
  flex: 1;
}

.site-footer {
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted-foreground);
  background-color: var(--secondary);
  margin-top: auto;
  padding: 3rem 0;
  font-size: .8125rem;
}

.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.hero-section {
  text-align: center;
  background: var(--background);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 0 6rem;
  display: flex;
}

.hero-title {
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
}

.hero-subtitle {
  color: var(--muted-foreground);
  max-width: 650px;
  margin: 0 auto 3rem;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.4;
}

.hero-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  display: flex;
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  display: grid;
}

.btn {
  border: 1px solid #0000;
  border-radius: 980px;
  justify-content: center;
  align-items: center;
  padding: .875rem 2rem;
  font-size: 1rem;
  font-weight: 400;
  transition: all .3s;
  display: inline-flex;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: scale(1.02);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background-color: var(--border);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: .8s cubic-bezier(.16, 1, .3, 1) forwards fadeInUp;
}

.product-card {
  background: var(--background);
  border-radius: var(--radius);
  cursor: pointer;
  flex-direction: column;
  height: 100%;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-8px)scale(1.01);
}

.product-card-image-wrap {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (prefers-color-scheme: dark) {
  .product-card-image-wrap {
    background: #111;
  }
}

.product-card-image {
  object-fit: contain;
  width: 100%;
  height: 100%;
  padding: 10%;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.product-card:hover .product-card-image {
  transform: scale(1.08);
}

.product-card-content {
  text-align: center;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
  padding: 1.5rem .5rem .5rem;
  display: flex;
}

.product-category {
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted-foreground);
  font-size: .75rem;
  font-weight: 500;
}

.product-title {
  color: var(--foreground);
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.125rem;
  font-weight: 500;
  display: -webkit-box;
  overflow: hidden;
}

.product-price {
  color: var(--muted-foreground);
  margin-top: .5rem;
  font-size: 1.125rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .hero-section {
    padding: 5rem 0 3rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
  }

  .product-card-content {
    padding: 1rem .25rem;
  }

  .product-title, .product-price {
    font-size: .9375rem;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

nextjs-portal, [data-nextjs-dialog-overlay] {
  display: none !important;
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/