/** Shopify CDN: Minification failed

Line 328:0 Unexpected "}"

**/
/* Landing Page Layout Styles */

/* Header Styles */
.landing-page-header {
  background: rgb(var(--color-background));
  border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.2rem 0 1rem 0;
}

.landing-page-header__wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "nav logo cart";
  align-items: center;
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 2rem;
  gap: 2rem;
}

/* Navigation Styles */
.landing-page-header__nav {
  grid-area: nav;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* Logo Styles */
.landing-page-header__logo {
  grid-area: logo;
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-page-header__nav-list {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-page-header__nav-item {
  margin: 0;
}

.landing-page-header__nav-link {
  color: rgb(var(--color-foreground));
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.8rem 1.2rem;
  border-radius: var(--buttons-radius);
  transition: all 0.15s ease-in-out;
  white-space: nowrap;
}

.landing-page-header__nav-link:hover {
  background-color: rgba(var(--color-foreground), 0.05);
  color: rgb(var(--color-foreground));
}

/* Button-styled navigation links */
.landing-page-header__nav-link--button {
  background-color: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  border: var(--buttons-border-width) solid rgba(var(--color-button), var(--buttons-border-opacity));
  box-shadow: 0 var(--buttons-shadow-vertical-offset) var(--buttons-shadow-blur-radius) rgba(var(--color-shadow), var(--buttons-shadow-opacity));
}

.landing-page-header__nav-link--button:hover {
  background-color: rgba(var(--color-button), 0.85);
  color: rgb(var(--color-button-text));
}

.landing-page-header__logo-link {
  display: inline-block;
  text-decoration: none;
  color: rgb(var(--color-foreground));
  line-height: 1;
}

.landing-page-header__logo-image {
  max-height: 5rem;
  width: auto;
  height: auto;
  display: block;
}

.landing-page-header__logo-text {
  font-weight: var(--font-heading-weight);
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
}

/* Cart Styles */
.landing-page-header__cart {
  grid-area: cart;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.landing-page-header__cart-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: rgb(var(--color-foreground));
  text-decoration: none;
  padding: 0.8rem;
  border-radius: var(--buttons-radius);
  transition: all 0.15s ease-in-out;
}

.landing-page-header__cart-link:hover {
  background-color: rgba(var(--color-foreground), 0.05);
}

.landing-page-header__cart-icon {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-page-header__cart-icon svg {
  width: 2.2rem;
  height: 2.2rem;
}

/* Cart Count Bubble */
.cart-count-bubble {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  border-radius: 50%;
  min-width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.2rem;
}

.cart-count-bubble:empty {
  display: none;
}

/* Footer Styles */
.landing-page-footer {
  background: rgb(var(--color-background));
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.landing-page-footer__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.landing-page-footer__logo {
  flex-shrink: 0;
}

.landing-page-footer__logo-image {
  max-height: 4rem;
  width: auto;
  height: auto;
}

.landing-page-footer__logo-text {
  color: rgb(var(--color-foreground));
  margin: 0;
}

.landing-page-footer__links {
  flex-grow: 1;
}

.landing-page-footer__link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin: 0;
  padding: 0;
}

.landing-page-footer__link {
  color: rgba(var(--color-foreground), 0.75);
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.15s ease-in-out;
}

.landing-page-footer__link:hover {
  color: rgb(var(--color-foreground));
}

.landing-page-footer__copyright {
  color: rgba(var(--color-foreground), 0.6);
  font-size: 1.3rem;
}

.landing-page-footer__copyright a {
  color: inherit;
  text-decoration: none;
}

.landing-page-footer__copyright a:hover {
  color: rgba(var(--color-foreground), 0.75);
}

/* Responsive Design */
@media screen and (max-width: 749px) {
  .landing-page-header {
    padding: 1rem 0 0.8rem 0;
  }
  
  .landing-page-header__wrapper {
    padding: 0 1.5rem;
    gap: 1rem;
  }
  
  .landing-page-header__logo-image {
    max-height: 4rem;
  }
  
  .landing-page-header__cart-icon {
    width: 2rem;
    height: 2rem;
  }
  
  .landing-page-header__cart-icon svg {
    width: 2rem;
    height: 2rem;
  }
  
  .cart-count-bubble {
    min-width: 1.6rem;
    height: 1.6rem;
    font-size: 1.1rem;
  }
  
  /* Navigation responsive adjustments */
  .landing-page-header__nav-list {
    gap: 1.5rem;
  }
  
  .landing-page-header__nav-link {
    font-size: 1.4rem;
    padding: 0.6rem 0.8rem;
  }
  
  .landing-page-footer {
    padding: 3rem 0 1.5rem;
  }
  
  .landing-page-footer__wrapper {
    padding: 0 1.5rem;
    gap: 1.5rem;
  }
  
  .landing-page-footer__logo-image {
    max-height: 3.5rem;
  }
  
  .landing-page-footer__link-list {
    flex-direction: column;
    gap: 1rem;
  }
  
  .landing-page-footer__link {
    font-size: 1.3rem;
  }
}

/* Very small screens - mobile layout */
@media screen and (max-width: 480px) {
  .landing-page-header__wrapper {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "logo"
      "nav";
    gap: 1rem;
    text-align: center;
  }
  
  .landing-page-header__cart {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
  }
  
  .landing-page-header__nav {
    justify-content: center;
  }
}
}

/* Focus States for Accessibility */
.landing-page-header__logo-link:focus,
.landing-page-header__cart-link:focus,
.landing-page-header__nav-link:focus,
.landing-page-footer__link:focus {
  outline: 2px solid rgb(var(--color-button));
  outline-offset: 2px;
  border-radius: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .landing-page-header {
    border-bottom-color: rgb(var(--color-foreground));
  }
  
  .landing-page-footer {
    border-top-color: rgb(var(--color-foreground));
  }
  
  .landing-page-header__cart-link:hover {
    background-color: rgba(var(--color-foreground), 0.1);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .landing-page-header__cart-link,
  .landing-page-footer__link {
    transition: none;
  }
}