/* [project]/app/css/footer.css [app-client] (css) */
#footer {
  background: var(--if-bg);
  padding: 40px clamp(16px, 5vw, 80px);
}

#footer-top {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas: "nav brand social";
  align-items: start;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

.footer-col {
  text-align: left;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  display: flex;
}

.footer-col h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
}

.footer-col a, .footer-col p {
  color: var(--if-muted);
  margin: 0;
  font-weight: 600;
  text-decoration: none;
}

.footer-nav {
  grid-area: nav;
}

.footer-brand {
  grid-area: brand;
}

.footer-social {
  grid-area: social;
}

.footer-col a:hover, .footer-col p:hover {
  color: var(--if-text);
}

.footer-brand p {
  font-weight: 500;
  line-height: 1.6;
}

.footer-logo {
  width: fit-content;
  margin-bottom: 4px;
  line-height: 0;
  display: inline-flex;
}

#footer-bottom {
  border-top: 1px solid var(--if-border);
  text-align: center;
  max-width: 1200px;
  color: var(--if-muted);
  margin: 30px auto 0;
  padding-top: 15px;
  font-size: 14px;
}

#footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  #footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "brand brand"
                         "nav social";
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  #footer {
    padding: 32px 16px;
  }

  #footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "brand brand"
                         "nav social";
    gap: 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* [project]/app/css/navBar.css [app-client] (css) */
body {
  overflow-x: hidden;
}

body:has(#mobileMenuToggle:checked) {
  overflow: hidden;
}

#navHolder {
  z-index: 30;
  justify-content: center;
  margin-top: 10px;
  padding: 0 12px;
  display: flex;
  position: relative;
}

#mobileMenuToggle {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

#navbar {
  align-items: center;
  gap: 20px;
  width: min(100%, 1680px);
  min-width: 0;
  min-height: 68px;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  position: relative;
}

#navLogo {
  flex-shrink: 0;
  align-items: center;
  line-height: 0;
  display: inline-flex;
}

#links {
  align-items: center;
  gap: 22px;
  display: flex;
}

#navbar a {
  color: inherit;
  text-decoration: none;
  position: relative;
}

#navbar a:hover {
  cursor: pointer;
}

#links a:after {
  content: "";
  background: currentColor;
  width: 0;
  height: 2px;
  transition: width .3s;
  position: absolute;
  bottom: -2px;
  left: 0;
}

#links a:hover:after {
  width: 100%;
}

#rightMenuPart {
  align-items: center;
  gap: 14px;
  margin-left: 0;
  display: flex;
}

.navIconButton {
  color: inherit;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.navCartButton {
  position: relative;
}

.navCartBadge {
  background: var(--if-primary);
  color: #fff;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  position: absolute;
  top: -6px;
  right: -8px;
}

.navProfileButton {
  cursor: pointer;
  font: inherit;
  background: none;
  border: 0;
  padding: 0;
}

.navMenuButton {
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  width: 30px;
  height: 30px;
  display: none;
}

.navMenuButton span {
  background: var(--if-text);
  border-radius: 999px;
  width: 22px;
  height: 2px;
  display: block;
}

.navSearch {
  background: var(--if-surface-soft);
  border: 1px solid var(--if-border-strong);
  border-radius: 8px;
  align-items: center;
  min-width: min(28vw, 320px);
  padding: 8px 12px;
  display: flex;
  position: relative;
}

.desktopSearch {
  flex: 0 320px;
  margin-left: auto;
}

.navSearchInput {
  appearance: none;
  box-shadow: none;
  background: none;
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
}

.navSearchResults {
  background: var(--if-surface);
  border: 1px solid var(--if-border);
  z-index: 9999;
  width: 100%;
  max-height: min(60vh, 320px);
  box-shadow: var(--if-shadow-strong);
  border-radius: 8px;
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  overflow-y: auto;
}

.result {
  cursor: pointer;
  align-items: center;
  gap: 10px;
  padding: 8px;
  display: flex;
}

.result:hover {
  background: var(--if-surface-soft);
}

.result img {
  object-fit: cover;
  width: 40px;
  height: 60px;
}

#accountWrapper {
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
}

.resultText {
  flex: 1;
  min-width: 0;
}

.resultStatus {
  color: var(--if-muted);
  padding: 12px;
  font-size: 14px;
}

.name {
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
}

.resultCreator {
  color: var(--if-muted);
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 2px;
  font-size: 12px;
  display: block;
  overflow: hidden;
}

.stockin, .stockout {
  white-space: nowrap;
  margin-left: auto;
  font-size: 15px;
  font-weight: 600;
}

.stockin {
  color: var(--if-text);
}

.stockout {
  color: #c84d4d;
}

.login-panel {
  background: var(--if-surface);
  border: 1px solid var(--if-border);
  width: min(280px, 100vw - 24px);
  box-shadow: var(--if-shadow-strong);
  z-index: 10001;
  border-radius: 16px;
  max-height: min(80vh, 520px);
  padding: 16px;
  font-family: sans-serif;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  overflow-y: auto;
}

.login-panel input {
  font-size: 15px;
}

#loginHeader {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

#loginHeader h3 {
  margin: 0;
  font-size: 18px;
}

.close {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 18px;
}

.login-panel input[type="email"], .login-panel input[type="password"] {
  border: 1px solid var(--if-border);
  background: var(--if-surface-raised);
  width: 100%;
  color: var(--if-text);
  box-sizing: border-box;
  border-radius: 10px;
  outline: none;
  margin-bottom: 10px;
  padding: 10px;
}

.login-panel button[type="submit"] {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  border: none;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 5px;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
}

.login-options {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  display: flex;
}

.login-options label {
  align-items: center;
  gap: 5px;
  display: flex;
}

.login-options a {
  color: var(--if-primary);
  text-decoration: none;
}

.login-divider {
  background: var(--if-border);
  height: 1px;
  margin: 12px 0;
}

.login-signup {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  display: flex;
}

.signup-btn {
  border: 1px solid var(--if-border);
  color: var(--if-primary);
  background: var(--if-surface-raised);
  border-radius: 8px;
  padding: 6px 12px;
  text-decoration: none;
}

.google-btn-login {
  border: 1px solid var(--if-primary);
  background: var(--if-surface-raised);
  width: 100%;
  color: var(--if-primary);
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 12px;
  display: flex;
}

.google-btn-login:hover {
  background: var(--if-surface-soft);
}

.google-btn-login img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.login-g-divider {
  color: #999;
  text-align: center;
  margin: 5px 0;
  font-size: 13px;
  position: relative;
}

.login-g-divider:before, .login-g-divider:after {
  content: "";
  background: var(--if-border);
  width: 40%;
  height: 1px;
  position: absolute;
  top: 50%;
}

.login-g-divider:before {
  left: 0;
}

.login-g-divider:after {
  right: 0;
}

.logged-in-panel button {
  cursor: pointer;
  border: none;
  font-size: 14px;
  font-weight: 500;
}

.logged-in-panel {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.loggedInSummary {
  align-items: center;
  gap: 12px;
  display: flex;
}

.loggedInSummaryImage {
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
}

.loggedInSummaryText {
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.loggedInEyebrow {
  color: var(--if-muted);
  font-size: 12px;
}

.loggedInSummaryText strong {
  color: var(--if-text);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 15px;
  overflow: hidden;
}

.loggedInSummaryText span {
  color: var(--if-muted);
  font-size: 13px;
}

.loggedInActions {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.accountPrimaryAction, .accountSecondaryAction, .accountGhostAction {
  text-align: center;
  border-radius: 10px;
  width: 100%;
  padding: 10px 12px;
}

.accountPrimaryAction {
  color: #fff;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.accountPrimaryAction:hover {
  background: linear-gradient(90deg, #4c8ef7, #2f69ec);
}

.accountSecondaryAction {
  background: var(--if-surface-raised);
  color: var(--if-text);
  border: 1px solid var(--if-border-strong);
}

.accountSecondaryAction:hover {
  background: var(--if-surface-soft);
}

.accountGhostAction {
  color: var(--if-muted);
  border: 1px solid var(--if-border);
  background: none;
}

.accountGhostAction:hover {
  background: var(--if-surface-soft);
}

.navProfileImage {
  object-fit: cover;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: block;
}

#mobileMenuOverlay, #mobileMenuDrawer {
  display: none;
}

@media (max-width: 900px) {
  #navHolder {
    padding: 0 16px;
  }

  #navbar {
    gap: 12px;
    min-height: 64px;
  }

  #navLogo img {
    width: 150px;
    height: auto;
  }

  #links, .desktopSearch {
    display: none;
  }

  .mobileSearch {
    z-index: 2;
    background: var(--if-surface-soft);
    min-width: 100%;
    position: sticky;
    top: 0;
  }

  #rightMenuPart {
    gap: 12px;
    margin-left: auto;
  }

  .navMenuButton {
    order: 3;
    display: inline-flex;
  }

  .navCartButton {
    order: 1;
  }

  #accountWrapper {
    order: 2;
  }

  #mobileMenuOverlay {
    background: var(--if-overlay);
    opacity: 0;
    pointer-events: none;
    z-index: 9997;
    transition: opacity .2s;
    display: block;
    position: fixed;
    inset: 0;
  }

  #mobileMenuDrawer {
    background: var(--if-surface);
    z-index: 9998;
    width: min(100vw, 420px);
    height: 100dvh;
    padding: calc(16px + env(safe-area-inset-top, 0px)) 16px calc(24px + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    transition: transform .25s;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    overflow-y: auto;
    transform: translateX(100%);
    box-shadow: -8px 0 24px #0000001f;
  }

  #mobileMenuHeader {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
  }

  .mobileMenuClose {
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
  }

  #mobileLinks {
    flex-direction: column;
    gap: 18px;
    padding-top: 20px;
    display: flex;
  }

  #mobileLinks a {
    border-bottom: 1px solid var(--if-border);
    padding: 12px 0;
    font-size: 18px;
  }

  #mobileMenuToggle:checked ~ #navbar #mobileMenuOverlay {
    opacity: 1;
    pointer-events: auto;
  }

  #mobileMenuToggle:checked ~ #navbar #mobileMenuDrawer {
    transform: translateX(0);
  }

  #mobileMenuToggle:checked ~ #navbar .navMenuButton span:first-child {
    transform: translateY(6px)rotate(45deg);
  }

  #mobileMenuToggle:checked ~ #navbar .navMenuButton span:nth-child(2) {
    opacity: 0;
  }

  #mobileMenuToggle:checked ~ #navbar .navMenuButton span:nth-child(3) {
    transform: translateY(-6px)rotate(-45deg);
  }

  .navMenuButton span {
    transition: transform .2s, opacity .2s;
  }

  .login-panel {
    top: calc(100% + 8px);
    right: 0;
  }
}

@media (max-width: 560px) {
  #navHolder {
    padding: 0 12px;
  }

  #navLogo img {
    width: 132px;
  }

  #rightMenuPart {
    gap: 10px;
  }

  .navProfileImage, .navIconButton svg {
    width: 28px;
    height: 28px;
  }

  .login-panel {
    width: auto;
    max-height: calc(100dvh - 96px);
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
  }

  .login-options, .login-signup {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* [project]/app/css/cartPage.css [app-client] (css) */
.cartPage {
  width: min(100%, 1200px);
  margin: 24px auto 48px;
  padding: 0 clamp(16px, 3vw, 20px);
}

.cartHeader {
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
  display: flex;
}

.cartEyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--if-primary);
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
}

.cartHeader h1 {
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
}

.cartSubcopy {
  color: var(--if-muted);
  max-width: 620px;
  margin: 0;
}

.cartContinueLink, .cartPrimaryLink {
  border: 1px solid var(--if-border-strong);
  background: var(--if-surface);
  min-height: 48px;
  color: var(--if-text);
  box-shadow: var(--if-shadow);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 0 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.cartLayout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  align-items: start;
  gap: 28px;
  display: grid;
}

.cartLines, .cartSummary, .cartEmptyState {
  background: var(--if-surface);
  border: 1px solid var(--if-border);
  box-shadow: var(--if-shadow);
  border-radius: 20px;
}

.cartLines {
  padding: 10px 24px;
}

.cartLine {
  border-bottom: 1px solid var(--if-border);
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  display: grid;
}

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

.cartLineImageLink {
  line-height: 0;
  display: block;
}

.cartLineImage {
  object-fit: cover;
  background: var(--if-surface-soft);
  border-radius: 16px;
  width: 112px;
  height: 112px;
}

.cartLineImagePlaceholder {
  border: 1px dashed var(--if-border-strong);
}

.cartLineDetails {
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  display: flex;
}

.cartLineTop, .cartLineBottom {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  display: flex;
}

.cartLineTitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  display: inline-block;
}

.cartLineMeta {
  color: var(--if-muted);
  margin: 6px 0 0;
  font-weight: 600;
}

.cartRemoveButton {
  color: var(--if-danger);
  cursor: pointer;
  background: none;
  border: 0;
  font-weight: 600;
}

.cartQuantityControl {
  border: 1px solid var(--if-border-strong);
  background: #fff;
  border-radius: 12px;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: stretch;
  width: min(180px, 100%);
  display: grid;
  overflow: hidden;
}

.cartQuantityControl button {
  background: var(--if-surface-soft);
  cursor: pointer;
  color: var(--if-text);
  border: 0;
  font-size: 18px;
  font-weight: 700;
}

.cartQuantityControl button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.cartQuantityControl input {
  text-align: center;
  background: #fff;
  border: 0;
  width: 100%;
  font-weight: 600;
}

.cartLinePrices {
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  display: flex;
}

.cartLinePrices span {
  color: var(--if-muted);
}

.cartLinePrices strong {
  font-size: 20px;
}

.cartSummary {
  padding: 24px;
  position: sticky;
  top: 92px;
}

.cartSummary h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

.cartSummaryRow {
  border-bottom: 1px solid var(--if-border);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  display: flex;
}

.cartSummaryRow:last-of-type {
  border-bottom: 0;
}

.cartSummaryNote {
  color: var(--if-muted);
  margin: 18px 0 0;
}

.cartCheckoutButton {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  border: 0;
  border-radius: 14px;
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  font-weight: 700;
  box-shadow: 0 16px 30px #3b82f633;
}

.cartCheckoutButton:disabled {
  opacity: .75;
  cursor: progress;
}

.cartError {
  color: var(--if-danger);
  margin: 12px 0 0;
  font-weight: 600;
}

.cartEmptyState {
  text-align: center;
  padding: 48px 32px;
}

.cartEmptyState h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.cartEmptyState p {
  color: var(--if-muted);
  margin: 0;
}

.cartEmptyState .cartPrimaryLink {
  margin-top: 20px;
}

@media (max-width: 960px) {
  .cartHeader {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cartSummary {
    position: static;
  }
}

@media (max-width: 700px) {
  .cartLines {
    padding: 10px 18px;
  }

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

  .cartLineImage {
    aspect-ratio: 1;
    width: 100%;
    height: auto;
  }

  .cartLineTop, .cartLineBottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cartLinePrices {
    align-items: flex-start;
  }
}

/*# sourceMappingURL=app_css_0cx9-8w._.css.map*/