/* src/styles/SignUp.css */
.signup-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.signup-form button {
  grid-column: span 2;
  margin-top: 1rem;
}

/* src/styles/SignIn.css */
.signin-form {
  display: flex;
  flex-direction: column;
}
.signin-form .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

/* src/styles/Checkout.css */
.checkout-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.checkout-form button {
  grid-column: span 2;
  margin-top: 1rem;
}

/* src/styles/Product.css */
.product-img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 4px;
}
.product-details {
  line-height: 1.6;
}
.product-price {
  font-size: 1.4rem;
  color: #e0e0e0;
  margin-top: 0.5rem;
}
.add-to-cart {
  margin-top: 1rem;
}

/* src/styles/Inventory.css */
.inventory-page {
  padding: 2rem 3rem;
  color: #17202a;
  background: #f5f6f8;
  min-height: 100vh;
}
.inventory-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}
.inventory-header h1 {
  margin: 0.25rem 0;
  font-size: 2.5rem;
}
.inventory-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: #5d6d7e;
  margin: 0;
}
.inventory-header .subhead {
  margin: 0;
  color: #566573;
}
.inventory-stats {
  display: flex;
  gap: 1rem;
}
.stat-card {
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  min-width: 140px;
}
.stat-card .label {
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: #5d6d7e;
  margin-bottom: 0.3rem;
}
.stat-card .value {
  font-size: 1.75rem;
  margin: 0;
}
.inventory-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.inventory-controls input,
.inventory-controls select {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #d5d8dc;
  font-size: 1rem;
}
.inventory-controls input {
  flex: 1;
}
.inventory-banner {
  background: #fef5e7;
  color: #935116;
  border: 1px solid #fad7a0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}
.inventory-banner.error {
  background: #fdecea;
  color: #a93226;
  border-color: #f5b7b1;
}
.inventory-table-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.inventory-table {
  width: 100%;
  border-collapse: collapse;
}
.inventory-table thead {
  background: #f1f3f5;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #5d6d7e;
}
.inventory-table th,
.inventory-table td {
  text-align: left;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #ecf0f1;
  vertical-align: top;
}
.inventory-table tbody tr:last-child td {
  border-bottom: none;
}
.product-number {
  font-weight: 600;
  font-size: 0.9rem;
}
.item-name {
  margin: 0;
  font-weight: 600;
}
.item-description {
  margin: 0.25rem 0 0;
  color: #5d6d7e;
  font-size: 0.9rem;
}
.inventory-pill {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}
.inventory-pill.low {
  background: #fdecea;
  color: #a93226;
}
.inventory-pill.healthy {
  background: #e8f8f5;
  color: #1d8348;
}
.inventory-pill.unknown {
  background: #f4f6f7;
  color: #5d6d7e;
}
.empty-state {
  text-align: center;
  padding: 2rem;
  color: #5d6d7e;
}
@media (max-width: 900px) {
  .inventory-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .inventory-controls {
    flex-direction: column;
  }
  .inventory-controls input,
  .inventory-controls select {
    width: 100%;
  }
}

/* src/styles/Home.css */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 4.5rem 5vw 4rem;
  color: var(--text-primary);
  background-size: cover;
  background-position: center center;
  background-color: #fdfdfd;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(9, 14, 24, 0.75),
      rgba(23, 32, 48, 0.35));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
  align-items: stretch;
}
.hero-content {
  max-width: 580px;
}
.hero-copy-surface {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 32px;
  padding: 2.1rem;
  box-shadow: 0 35px 90px rgba(9, 14, 24, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
}
.hero-copy-surface .hero-heading,
.hero-copy-surface .hero-subtitle,
.hero-copy-surface .hero-tagline,
.hero-copy-surface .hero-stats {
  position: relative;
  z-index: 1;
}
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-heading {
  font-family:
    "Playfair Display",
    "Cormorant Garamond",
    "Times New Roman",
    serif;
  font-size: clamp(2.4rem, 3.2vw + 1.5rem, 3.5rem);
  line-height: 1.07;
  margin: 1rem 0 0.75rem;
}
.hero-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 34rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.hero-stats {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-stat {
  min-width: 135px;
}
.hero-stat-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(31, 37, 51, 0.5);
  margin-bottom: 0.2rem;
}
.hero-stat-value {
  font-size: 0.95rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 5.5rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-copy-surface {
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.97);
  }
}
.hero-highlight-card {
  align-self: stretch;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at top left,
      #ffffff,
      #f5f7fc);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 1.7rem 1.7rem 1.9rem;
  max-width: 360px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.highlight-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}
.highlight-title {
  font-size: 1.3rem;
  margin: 0 0 0.4rem;
}
.highlight-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.highlight-meta {
  font-size: 0.88rem;
  color: rgba(31, 37, 51, 0.6);
  margin-top: 1.3rem;
}
.hero-highlight-card .hero-highlight-image {
  padding-top: 130%;
  border-radius: var(--radius-md);
  width: 70%;
  margin: 0 auto 1rem;
}
.section {
  padding: 3.5rem 5vw 1rem;
  background: transparent;
}
.section-header {
  max-width: 760px;
  margin: 0 auto 2.5rem;
}
.section-header h2 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}
.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}
.section-header--center {
  text-align: center;
}
.section-collections {
  max-width: 1200px;
  margin: 0 auto;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.7rem;
}
.collection-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 40px rgba(24, 37, 56, 0.12);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease;
}
.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(24, 37, 56, 0.2);
  border-color: rgba(31, 37, 51, 0.16);
}
.collection-image {
  position: relative;
  padding-top: 66%;
  background-size: cover;
  background-position: center;
}
.collection-body {
  padding: 1.3rem 1.4rem 1.5rem;
}
.collection-tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(31, 37, 51, 0.5);
  margin-bottom: 0.4rem;
}
.collection-body h3 {
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
}
.collection-body p {
  margin: 0.25rem 0;
  font-size: 0.94rem;
  color: var(--text-muted);
}
.collection-meta {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: rgba(31, 37, 51, 0.6);
}
.section-benefits {
  max-width: 1200px;
  margin: 0 auto;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  margin-top: 0.5rem;
}
.benefit-item {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 6px 18px rgba(24, 37, 56, 0.08);
}
.benefit-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}
.benefit-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.section-about {
  max-width: 1200px;
  margin: 0 auto 1rem;
}
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
}
.about-text h2 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}
.about-text p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.about-text ul {
  margin: 1.4rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.about-text li + li {
  margin-top: 0.3rem;
}
.about-image {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at top left,
      #ffffff,
      #f3f5fb);
  padding: 0.3rem;
  border: 1px solid var(--border-subtle);
}
.about-image-inner {
  border-radius: calc(var(--radius-lg) - 4px);
  background-size: cover;
  background-position: center;
  min-height: 260px;
}
.section-contact {
  padding-bottom: 4rem;
}
.section-contact .contact-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem 2.2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
  text-align: left;
}
.section-contact h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}
.section-contact p {
  margin: 0 0 1.2rem;
  color: var(--text-muted);
  font-size: 0.96rem;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-bottom: 1.4rem;
}
.contact-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(31, 37, 51, 0.5);
  margin-bottom: 0.1rem;
}
.section-contact a {
  color: var(--accent);
  text-decoration: none;
}
.section-contact a:hover {
  text-decoration: underline;
}
.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero-content p {
  font-size: 1.2rem;
}
.feature h3 {
  margin-top: 0.5rem;
  font-size: 1.3rem;
  color: var(--text-primary);
}
@media (max-width: 960px) {
  .hero-inner,
  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-highlight-card {
    max-width: 100%;
    margin-left: 0;
  }
  .hero {
    padding-top: 5.2rem;
  }
}
@media (max-width: 640px) {
  .hero-stats {
    gap: 1rem;
  }
  .hero-heading {
    font-size: 2.2rem;
  }
  .section {
    padding-inline: 1.25rem;
  }
  .section-contact .contact-card {
    padding-inline: 1.4rem;
  }
}

/* src/styles/App.css */
:root {
  --bg: #f8f9fb;
  --bg-elevated: #ffffff;
  --bg-soft: #f0f2f8;
  --border-subtle: #dde2ec;
  --text-primary: #1f2533;
  --text-muted: #667089;
  --accent: #f08a24;
  --accent-soft: rgba(240, 138, 36, 0.12);
  --accent-strong: #d96f0c;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 18px 45px rgba(60, 72, 96, 0.12);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Inter",
    "Open Sans",
    Arial,
    sans-serif;
  background:
    radial-gradient(
      circle at top left,
      #ffffff 0,
      #f3f6fb 45%);
  color: var(--text-primary);
}
nav.main-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  padding: 0.85rem 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 8px 24px rgba(24, 37, 56, 0.06);
}
nav.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
nav.main-nav a:hover {
  color: var(--accent);
}
.nav-left {
  justify-self: start;
  display: flex;
  gap: 1.25rem;
}
.nav-center {
  justify-self: center;
  text-align: center;
}
.site-name {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.container {
  max-width: 720px;
  margin: 2.5rem auto;
  background: var(--bg-elevated);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
}
.form-group {
  margin-bottom: 1.25rem;
}
label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
input {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background-color: #fff;
  color: var(--text-primary);
  font-size: 0.95rem;
}
input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(240, 138, 36, 0.18);
}
button {
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
button:hover {
  background-color: var(--accent-strong);
}
.about,
.contact {
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 0 5vw;
}
.home-page {
  overflow-x: hidden;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.12s ease,
    box-shadow 0.12s ease,
    border-color 0.2s ease;
}
.cta-button--primary {
  background-color: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(240, 138, 36, 0.2);
}
.cta-button--primary:hover {
  background-color: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(240, 138, 36, 0.3);
}
.cta-button--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-subtle);
}
.cta-button--ghost:hover {
  background-color: rgba(31, 37, 51, 0.04);
  border-color: rgba(31, 37, 51, 0.16);
}
.cta-button--full {
  width: 100%;
  justify-content: center;
}
.status-message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.status-message.success {
  background-color: #e6f4ea;
  color: #2e7d32;
}
.status-message.error {
  background-color: #fde0e6;
  color: #c62828;
}
.cart-items {
  margin: 1rem 0 2rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background-color: var(--bg-soft);
  border: 1px solid var(--border-subtle);
}
.cart-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
}
/*# sourceMappingURL=bundle.css.map */
