/* [project]/apps/storefront-everpaws/src/app/globals.css [app-client] (css) */
:root {
  color: #23201d;
  background: #f8f5f0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.home {
  min-height: 100vh;
  padding: 32px;
}

.nav {
  border-bottom: 1px solid #ded6ca;
  justify-content: space-between;
  align-items: center;
  width: min(960px, 100%);
  margin-bottom: 24px;
  padding-bottom: 14px;
  display: flex;
}

.nav strong {
  font-size: 18px;
}

.brandLink {
  color: #23201d;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.nav div {
  flex-wrap: wrap;
  gap: 14px;
  display: flex;
}

.nav a {
  color: #4d4035;
  font-size: 14px;
  text-decoration: none;
}

.intro {
  background: #fff;
  border: 1px solid #ded6ca;
  border-radius: 8px;
  width: min(960px, 100%);
  padding: 24px;
}

.catalog {
  width: min(960px, 100%);
  margin-top: 24px;
}

.contentBand {
  background: #fff;
  border: 1px solid #ded6ca;
  border-radius: 8px;
  width: min(960px, 100%);
  margin-top: 24px;
  padding: 24px;
}

.sectionHeader {
  margin-bottom: 14px;
}

h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.productGrid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  display: grid;
}

.productCard {
  background: #fff;
  border: 1px solid #ded6ca;
  border-radius: 8px;
  overflow: hidden;
}

.productCard img, .imageFallback {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e9edf0;
  width: 100%;
  display: block;
}

.productBody {
  padding: 14px;
}

.productBody h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.3;
}

.faqList {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  display: grid;
}

.faqItem {
  border: 1px solid #ded6ca;
  border-radius: 8px;
  padding: 14px;
}

.faqItem h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.productBody strong {
  margin-top: 10px;
  font-size: 16px;
  display: block;
}

.brand {
  color: #7b6651;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
}

h1 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.15;
}

p {
  color: #5d544b;
  margin: 0;
  line-height: 1.6;
}

.facts {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 24px;
  display: grid;
}

.fact {
  border: 1px solid #ded6ca;
  border-radius: 8px;
  padding: 14px;
}

.fact span {
  color: #7b6651;
  font-size: 12px;
  display: block;
}

.fact strong {
  color: #23201d;
  margin-top: 6px;
  font-size: 15px;
  display: block;
}

.blogLayout {
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: start;
  gap: 20px;
  width: min(960px, 100%);
  margin-top: 24px;
  display: grid;
}

.blogGrid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  display: grid;
}

.blogCard, .blogSidebar, .relatedProduct {
  background: #fff;
  border: 1px solid #ded6ca;
  border-radius: 8px;
  overflow: hidden;
}

.blogCard img, .articleCover, .relatedProduct img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #e9edf0;
  width: 100%;
  display: block;
}

.blogCardBody, .blogSidebar {
  padding: 18px;
}

.blogCard h2, .blogSidebar h2 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
}

.blogCard h2 a, .relatedProduct, .productLink {
  color: #23201d;
  text-decoration: none;
}

.blogSidebar section + section {
  margin-top: 22px;
}

.tagRow {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  display: flex;
}

.tagRow a {
  color: #4d4035;
  border: 1px solid #ded6ca;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 13px;
  text-decoration: none;
}

.article {
  width: min(960px, 100%);
}

.productDetail {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: start;
  gap: 28px;
  width: min(1040px, 100%);
  display: grid;
}

.productMedia {
  background: #fff;
  border: 1px solid #ded6ca;
  border-radius: 8px;
  overflow: hidden;
}

.productMedia img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  display: block;
}

.productSummary {
  background: #fff;
  border: 1px solid #ded6ca;
  border-radius: 8px;
  padding: 24px;
}

.purchasePanel {
  gap: 16px;
  margin-top: 22px;
  display: grid;
}

.priceLine {
  align-items: baseline;
  gap: 12px;
  display: flex;
}

.priceLine strong {
  font-size: 24px;
}

.priceLine span {
  color: #827264;
  text-decoration: line-through;
}

.field {
  color: #4d4035;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  display: grid;
}

.field input, .field select, .checkoutForm input, .ordersPane input, .ordersPane select {
  color: #23201d;
  width: 100%;
  min-height: 42px;
  font: inherit;
  background: #fff;
  border: 1px solid #cfc5b8;
  border-radius: 8px;
  padding: 9px 11px;
}

.compactField {
  max-width: 150px;
}

.actionRow {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
  display: flex;
}

.primaryButton, .secondaryButton {
  min-height: 42px;
  font: inherit;
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
}

.primaryButton {
  color: #fff;
  background: #263a42;
  border: 1px solid #263a42;
}

.secondaryButton {
  color: #263a42;
  background: #fff;
  border: 1px solid #cfc5b8;
}

.primaryButton:disabled, .secondaryButton:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.inlineButton {
  width: fit-content;
}

.formNotice {
  color: #2e6b4f;
  font-size: 14px;
}

.formError {
  color: #a33a2a;
  font-size: 14px;
}

.cartLayout, .checkoutLayout {
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: start;
  gap: 20px;
  width: min(1040px, 100%);
  display: grid;
}

.lineItemList, .checkoutForm, .orderSummary {
  background: #fff;
  border: 1px solid #ded6ca;
  border-radius: 8px;
}

.lineItemList {
  overflow: hidden;
}

.lineItem {
  border-bottom: 1px solid #ede7de;
  grid-template-columns: 88px minmax(0, 1fr) 86px max-content max-content;
  align-items: center;
  gap: 14px;
  padding: 14px;
  display: grid;
}

.lineItem:last-child {
  border-bottom: 0;
}

.lineItem img, .lineItemImageFallback {
  aspect-ratio: 1;
  object-fit: cover;
  background: #e9edf0;
  border-radius: 8px;
  width: 88px;
}

.lineItem h2, .orderSummary h2 {
  margin: 0 0 6px;
  font-size: 17px;
}

.checkoutForm, .orderSummary {
  gap: 16px;
  padding: 20px;
  display: grid;
}

.formGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

.orderSummary dl {
  gap: 10px;
  margin: 0;
  display: grid;
}

.orderSummary dl div, .compactList div {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.orderSummary dt {
  color: #5d544b;
}

.orderSummary dd {
  margin: 0;
  font-weight: 800;
}

.optionGroup, .compactList {
  gap: 10px;
  display: grid;
}

.compactList small {
  color: #827264;
  margin-top: 2px;
  font-size: 12px;
  display: block;
}

.orderLookupResult {
  gap: 20px;
}

.orderResultHeader {
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  display: flex;
}

.orderResultHeader h2 {
  margin-bottom: 4px;
}

.orderResultHeader > strong {
  color: #263a42;
  white-space: nowrap;
  font-size: 22px;
}

.statusPills {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.statusPills span {
  color: #4d4035;
  background: #f8f5f0;
  border: 1px solid #cfc5b8;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 800;
}

.orderDetailSection {
  border-top: 1px solid #ede7de;
  gap: 10px;
  padding-top: 16px;
  display: grid;
}

.orderDetailSection h3 {
  margin: 0;
  font-size: 16px;
}

.orderDetailSection address {
  color: #5d544b;
  gap: 3px;
  font-style: normal;
  line-height: 1.45;
  display: grid;
}

.timelineList {
  gap: 10px;
  display: grid;
}

.timelineList div {
  border: 1px solid #ede7de;
  border-radius: 8px;
  gap: 2px;
  padding: 10px;
  display: grid;
}

.timelineList span, .timelineList a {
  color: #5d544b;
  font-size: 14px;
}

.timelineList a {
  color: #263a42;
  font-weight: 800;
}

.radioOption {
  border: 1px solid #ded6ca;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 10px;
  display: flex;
}

.radioOption span {
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  display: flex;
}

.resultGrid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
  display: grid;
}

@media (max-width: 760px) {
  .home {
    padding: 18px;
  }

  .nav, .productDetail, .cartLayout, .checkoutLayout, .blogLayout {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 12px;
    display: grid;
  }

  .lineItem {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .lineItem > strong, .lineItem > button, .lineItem > label {
    grid-column: 2;
  }

  .formGrid {
    grid-template-columns: 1fr;
  }
}

.articleCover {
  border-radius: 8px;
  margin-top: 24px;
}

.relatedGrid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  display: grid;
}

.relatedProduct span {
  padding: 12px;
  font-weight: 700;
  display: block;
}

@media (max-width: 720px) {
  .home {
    padding: 20px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .blogLayout {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=apps_storefront-everpaws_src_app_globals_0u5weh7.css.map*/