/* [next]/internal/font/google/inter_5972bc34.module.css [app-client] (css) */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/2c55a0e60120577a-s.0-dom-5bn10r2.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/9c72aa0f40e4eef8-s.1y4-pdgsjb-pw.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/ad66f9afd8947f86-s.3lvt2whj97whp.woff2") format("woff2");
  unicode-range: U+1F??;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/5476f68d60460930-s.2uwcyprjm3xu3.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/2bbe8d2671613f1f-s.0k62hbripvv8p.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/1bffadaabf893a1e-s.3-6t-g6q0vh0a.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/83afe278b6a6bb3c-s.p.2bn3s6zvc0dyp.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter Fallback;
  src: local(Arial);
  ascent-override: 90.44%;
  descent-override: 22.52%;
  line-gap-override: 0.0%;
  size-adjust: 107.12%;
}

.inter_5972bc34-module__OU16Qa__className {
  font-family: Inter, Inter Fallback;
  font-style: normal;
}

/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --color-primary: #065f46;
  --color-primary-light: #10b981;
  --color-secondary: #d97706;
  --color-bg: #f8fafc;
  --color-surface: #fff;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

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

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

h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary);
  margin-bottom: .5rem;
  font-weight: 700;
  line-height: 1.2;
}

.transition-transform {
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.hover-lift:hover {
  transform: translateY(-4px);
}

.hover-scale:hover {
  transform: scale(1.02);
}

.shadow-sm {
  box-shadow: 0 1px 2px #0000000d;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;
}

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

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #10b9814d;
}

.btn-outline {
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-md);
  background-color: #0000;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: all .2s;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.input-field {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  width: 100%;
  padding: .75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .2s;
}

.input-field:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px #10b9811a;
}

.label {
  color: var(--color-text);
  margin-bottom: .5rem;
  font-weight: 500;
  display: block;
}

.navbar {
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  z-index: 50;
  position: sticky;
  top: 0;
  box-shadow: 0 1px 3px #0000000d;
}

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

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

.nav-link {
  color: var(--color-text-muted);
  font-weight: 500;
  transition: color .2s;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

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

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.product-image-container {
  aspect-ratio: 3 / 4;
  background-color: #f1f5f9;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.product-image-container img {
  object-fit: cover;
  transition: transform .5s;
}

.product-card:hover .product-image-container img {
  transform: scale(1.05);
}

.product-info {
  flex-direction: column;
  flex-grow: 1;
  padding: 1.5rem;
  display: flex;
}

.product-title {
  margin-bottom: .25rem;
  font-size: 1.125rem;
}

.product-author {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-size: .875rem;
}

.product-footer {
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  display: flex;
}

.product-price {
  color: var(--color-secondary);
  font-size: 1.25rem;
  font-weight: 700;
}

@keyframes bump {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.bump-animation {
  animation: .3s ease-out bump;
}

/*# sourceMappingURL=%5Broot-of-the-server%5D__1_cxnk7._.css.map*/