/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 222.2 84% 4.9%;
  --primary: 150 60% 35%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 222.2 47.4% 11.2%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 25 90% 55%;
  --accent-foreground: 210 40% 98%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 150 60% 35%;
  --radius: .75rem;
  --font-inter: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  border-color: hsl(var(--border));
  margin: 0;
  padding: 0;
}

html, body {
  background-color: hsl(var(--background));
  height: 100%;
  color: hsl(var(--foreground));
  font-family: var(--font-inter);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  flex-direction: column;
  display: flex;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* [project]/src/app/product.css [app-client] (css) */
.product-page {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.product-layout {
  gap: 3rem;
  display: grid;
}

@media (min-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 4rem;
  }
}

.info-section {
  flex-direction: column;
  display: flex;
}

.badges {
  gap: .5rem;
  margin-bottom: .5rem;
  display: flex;
}

.badge.organic {
  background-color: hsl(var(--primary));
  color: #fff;
  text-transform: uppercase;
  border-radius: 1rem;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 700;
}

.category {
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .25rem 0;
  font-size: .8rem;
  font-weight: 600;
}

.info-section h1 {
  margin-bottom: .5rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.reviews {
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.stars {
  gap: 2px;
  display: flex;
}

.review-count {
  color: hsl(var(--muted-foreground));
  font-size: .875rem;
  text-decoration: underline;
}

.price-container {
  border-bottom: 1px solid hsl(var(--border));
  align-items: baseline;
  gap: .5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
}

.price-container .price {
  color: hsl(var(--primary));
  font-size: 2rem;
  font-weight: 800;
}

.price-container .unit {
  color: hsl(var(--muted-foreground));
  font-size: 1.1rem;
}

.description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.features {
  gap: 2rem;
  margin-top: 1rem;
  display: flex;
}

.feature {
  color: hsl(var(--foreground));
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 500;
  display: flex;
}

.feature-icon {
  color: hsl(var(--primary));
}

/*# sourceMappingURL=src_app_5258ee9f._.css.map*/