/* [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/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/about.css [app-client] (css) */
.body {
  box-sizing: border-box;
  background: #f5f5f5;
  align-items: flex-start;
  gap: 20px;
  width: min(100%, 1680px);
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  font-family: Inter, sans-serif;
  display: flex;
}

.aboutMenu {
  background-color: #fff;
  border-radius: 5px;
  flex-direction: column;
  flex: 0 0 220px;
  align-items: center;
  width: 220px;
  height: auto;
  max-height: calc(100vh - 40px);
  padding: 20px 0;
  display: flex;
  position: sticky;
  top: 20px;
}

.aboutMenu a {
  cursor: pointer;
  text-align: center;
  border-radius: 10px;
  width: 80%;
  padding: 10px 14px;
  display: block;
}

.aboutMenu a:hover {
  background: #f5f5f5;
  border-radius: 10px;
}

.aboutPage {
  flex: 1;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 20px;
  width: 100%;
  min-width: 0;
  padding: 0;
  display: grid;
}

.terms {
  background: #fff;
  border-radius: 5px;
  grid-column: span 24;
  padding: 40px;
  line-height: 1.6;
}

.terms h1 {
  margin-bottom: 10px;
  font-size: 28px;
}

.terms .lastUpdated {
  color: #777;
  margin-bottom: 30px;
  font-size: 14px;
}

.terms h2 {
  border-bottom: 1px solid #e5e5e5;
  margin-top: 30px;
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
}

.terms p {
  margin-bottom: 12px;
}

.terms ul {
  margin-bottom: 12px;
  padding-left: 20px;
}

.terms li {
  margin-bottom: 6px;
}

.privacy {
  background: #fff;
  border-radius: 5px;
  grid-column: span 24;
  padding: 40px;
  font-family: Inter, sans-serif;
  line-height: 1.6;
}

.privacy h1 {
  margin-bottom: 10px;
  font-size: 28px;
}

.privacy .lastUpdated {
  color: #777;
  margin-bottom: 30px;
  font-size: 14px;
}

.privacy h2 {
  border-bottom: 1px solid #e5e5e5;
  margin-top: 30px;
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
}

.privacy p {
  margin-bottom: 12px;
}

.privacy ul {
  margin-bottom: 12px;
  padding-left: 20px;
}

.privacy li {
  margin-bottom: 6px;
}

.shipping {
  background: #fff;
  border-radius: 5px;
  grid-column: span 24;
  padding: 40px;
  font-family: Inter, sans-serif;
  line-height: 1.6;
}

.shipping h1 {
  margin-bottom: 10px;
  font-size: 26px;
}

.shipping h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.shipping p {
  color: #333;
  margin-bottom: 12px;
  font-size: 14px;
}

.shipping ul {
  margin-bottom: 12px;
  padding-left: 20px;
}

.shipping li {
  color: #333;
  margin-bottom: 6px;
  font-size: 14px;
}

.shipping h2:not(:first-of-type) {
  border-top: 1px solid #eaeaea;
  padding-top: 20px;
}

.contact {
  background: #fff;
  border-radius: 5px;
  grid-column: span 24;
  padding: 40px;
  font-family: Inter, sans-serif;
  line-height: 1.6;
}

.contact h1 {
  margin-bottom: 20px;
  font-size: 26px;
}

.contact form {
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  display: flex;
}

.contact input, .contact textarea {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  outline: none;
  width: 100%;
  padding: 12px;
  font-family: inherit;
  font-size: 14px;
}

.contact textarea {
  resize: vertical;
  min-height: 140px;
}

.contact input:focus, .contact textarea:focus {
  border-color: #1e5fe0;
}

.contact button {
  color: #fff;
  cursor: pointer;
  background: #000;
  border: none;
  border-radius: 4px;
  width: fit-content;
  padding: 10px 20px;
  font-size: 14px;
}

.contact button:hover {
  opacity: .9;
}

.contact p {
  color: #333;
  margin-top: 10px;
  font-size: 14px;
}

.aboutContent {
  background: #fff;
  border-radius: 5px;
  grid-column: span 24;
  padding: 40px;
  font-family: Inter, sans-serif;
  line-height: 1.6;
}

.terms, .privacy, .shipping, .contact, .aboutContent {
  overflow-wrap: break-word;
  width: 100%;
  min-width: 0;
}

.terms h1, .terms h2, .terms p, .terms li, .privacy h1, .privacy h2, .privacy p, .privacy li, .shipping h1, .shipping h2, .shipping p, .shipping li, .contact h1, .contact p, .aboutContent h1, .aboutContent h2, .aboutContent p, .aboutContent li {
  overflow-wrap: anywhere;
}

.aboutContent section, .aboutHero, .steps div, .contact form {
  min-width: 0;
  max-width: 100%;
}

.aboutContent section {
  margin-bottom: 40px;
}

.aboutHero {
  color: #fff;
  background: linear-gradient(135deg, #1e5fe0, #6b8cff);
  border-radius: 6px;
  padding: 30px;
}

.aboutHero h1 {
  margin-bottom: 10px;
  font-size: 28px;
}

.aboutHero p {
  font-size: 15px;
}

.aboutContent h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

.aboutContent ul {
  padding-left: 20px;
}

.aboutContent li {
  margin-bottom: 6px;
  font-size: 14px;
}

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

.steps div {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 12px;
  font-size: 14px;
}

.aboutCTA {
  text-align: center;
  padding-top: 20px;
}

.ctaButtons {
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  display: flex;
}

.ctaButtons button {
  color: #fff;
  cursor: pointer;
  background: #000;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
}

.ctaButtons button:hover {
  opacity: .9;
}

@media (max-width: 900px) {
  .body {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
  }

  .aboutMenu {
    flex-flow: wrap;
    flex-basis: auto;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    max-height: none;
    padding: 16px;
    position: static;
  }

  .aboutMenu a {
    border: 1px solid #e5e5e5;
    flex: calc(50% - 10px);
    width: auto;
    min-width: 160px;
  }

  .aboutPage {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px 0;
  }

  .terms, .privacy, .shipping, .contact, .aboutContent {
    grid-column: 1 / -1;
    padding: 24px 20px;
  }

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

  .ctaButtons {
    flex-direction: column;
  }

  .ctaButtons button, .contact button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .aboutMenu a {
    flex-basis: 100%;
    min-width: 0;
  }

  .aboutHero {
    padding: 24px 18px;
  }

  .aboutHero h1 {
    font-size: 24px;
  }

  .terms, .privacy, .shipping, .contact, .aboutContent {
    padding: 20px 16px;
  }
}

/*# sourceMappingURL=app_css_0v.r8_8._.css.map*/