/** Shopify CDN: Minification failed

Line 85:0 Unexpected "{"
Line 85:1 Expected identifier but found "%"
Line 93:19 Expected identifier but found whitespace
Line 93:21 Unexpected "{"
Line 93:40 Expected ":"
Line 94:8 Expected identifier but found whitespace
Line 94:10 Unexpected "{"
Line 94:29 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:announcement-bar (INDEX:0, SCOPED:FALSE) */
.announcement-bar {
  background-color: rgb(var(--color-background-rgb));
  color: var(--color-foreground);
}

.announcement-bar__inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--spacing-2);
}

.announcement-bar__content {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-3);
  text-align: center;
  flex-wrap: wrap;
  font-size: var(--text-size-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.announcement-bar__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-1);
  padding: 4px 12px;
  border-radius: 999px;
  background-color: rgb(var(--color-foreground-rgb) / 0.15);
  color: var(--color-foreground);
  font-size: var(--text-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.announcement-bar__text {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
}

.announcement-bar__link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-1);
  font-weight: 600;
  text-decoration: underline;
  color: currentColor;
}

.announcement-bar__link:hover,
.announcement-bar__link:focus-visible {
  color: rgb(var(--color-foreground-rgb));
}

@media screen and (max-width: 768px) {
  .announcement-bar__content {
    gap: var(--spacing-2);
  }
}
/* END_SECTION:announcement-bar */

/* START_SECTION:footer (INDEX:10, SCOPED:FALSE) */
{% liquid
  assign footer_scheme = settings.color_schemes | where: 'id', section_color_scheme | first
  assign footer_background = footer_scheme.settings.background | default: settings.color_background | default: '#ffffff'
  assign footer_foreground = footer_scheme.settings.foreground | default: settings.color_text | default: '#111827'
%}

/* Region selector entry should match footer color scheme */
.as-region-selector {
  background-color: {{ footer_background }};
  color: {{ footer_foreground }};
}

.as-region-selector .container-custom {
  padding-right: calc(1.5rem + env(safe-area-inset-right));
}
.as-region-selector .as-region-selector-entry {
  display: flex;
  justify-content: flex-end;
}

/* Region selector modal: force full-screen + scrollable content */
.as-region-selector #regionSelectorModal.modal {
  padding: 0;
  align-items: stretch;
}

.as-region-selector #regionSelectorModal .modal-dialog {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: none;
  margin: 0;
}

.as-region-selector #regionSelectorModal .modal-content {
  height: 100%;
  max-height: 100%;
  border-radius: 0;
  overflow: hidden;
}

.as-region-selector #regionSelectorModal .modal-body {
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.as-region-selector .as-region-area-title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

@media (max-width: 767px) {
  .as-region-selector #regionSelectorModal.modal {
    align-items: flex-start;
  }
}

/* Footer Base */
.site-footer {
  background-color: var(--color-background);
  color: var(--color-foreground);
  border-top: 1px solid rgb(var(--color-border-rgb) / 0.4);
  margin-top: auto;
}

.footer__split {
  width: 100%;
}

.footer__split--newsletter,
.footer__split--navigation {
  background-color: var(--color-background);
  color: var(--color-foreground);
}

.footer__split--newsletter {
  border-bottom: 1px solid rgb(var(--color-border-rgb) / 0.4);
}

.footer__split--newsletter .footer__container {
  padding-top: clamp(48px, 8vw, 64px);
  padding-bottom: clamp(32px, 6vw, 48px);
}

.footer__split--navigation .footer__container {
  padding-top: clamp(32px, 6vw, 48px);
  padding-bottom: var(--spacing-8);
}

/* Newsletter Section - Full Width - Material Design Elevation */
.footer__newsletter-section {
  text-align: center;
}

.footer__newsletter-title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  margin: 0 0 var(--spacing-6);
  color: var(--color-foreground);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.footer__newsletter-text {
  font-size: var(--text-size-sm);
  color: var(--color-foreground);
  opacity: 0.7;
  margin: 0 0 var(--spacing-6);
}

.footer__newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.footer__newsletter-input-wrapper {
  display: flex;
  gap: 8px;
  background-color: rgb(var(--color-background-rgb) / 0.9);
  border: 1px solid rgb(255 255 255 / 0.9);
  border-radius: var(--radius-md);
  padding: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__newsletter-input-wrapper:focus-within {
  border-color: #ffffff;
  box-shadow: 0 0 0 4px rgb(255 255 255 / 0.2);
}

.footer__newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--color-foreground);
  outline: none;
}

.footer__newsletter-input::placeholder {
  color: var(--color-foreground);
  opacity: 0.5;
}

.footer__newsletter-button {
  min-width: 44px;
  height: 44px;
  padding: 0 var(--spacing-4);
}

.footer__newsletter-status {
  min-height: 20px;
  margin-top: var(--spacing-2);
  font-size: var(--text-size-sm);
  color: var(--color-foreground);
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__newsletter-status::before {
  content: "";
  display: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.7);
  background-color: rgb(255 255 255 / 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
  flex-shrink: 0;
}

.footer__newsletter-status--success {
  color: var(--color-foreground);
  opacity: 0.7;
}

.footer__newsletter-status--success::before {
  display: inline-flex;
  border-color: rgb(var(--color-success-rgb) / 0.6);
  background-color: rgb(var(--color-success-rgb) / 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E");
}

.footer__newsletter-status--error::before {
  display: inline-flex;
  border-color: rgb(var(--color-error-rgb) / 0.6);
  background-color: rgb(var(--color-error-rgb) / 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M8 3v6'/%3E%3Ccircle cx='8' cy='12' r='1' fill='white' stroke='white'/%3E%3C/svg%3E");
}

/* Main Footer Content */
.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 64px);
  margin-bottom: clamp(32px, 6vw, 48px);
}

/* Navigation Section */
.footer__nav-section {
  flex: 1;
}

.footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(var(--footer-columns), 1fr);
  gap: clamp(24px, 4vw, 48px);
}

.footer__nav-column {
  min-width: 0;
}

.footer__nav-column-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  margin-bottom: var(--spacing-4);
}

.footer__nav-column-toggle .footer__heading {
  margin: 0;
  pointer-events: none;
  cursor: default;
}

.footer__toggle-icon {
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.footer__nav-column-toggle[aria-expanded="true"] .footer__toggle-icon {
  transform: rotate(180deg);
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3);
}

.footer__nav-link {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-size-sm);
  color: rgb(var(--color-foreground-rgb) / 0.7);
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__nav-link:hover,
.footer__nav-link:focus-visible {
  color: rgb(var(--color-foreground-rgb) / 0.9);
  background-color: transparent;
}

.footer__nav-link:focus-visible {
  outline: 2px solid rgb(var(--color-primary-rgb) / 0.35);
  outline-offset: 2px;
}

/* Contact Section */
.footer__contact-section {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3);
}

.footer__contact-section .footer__heading {
  margin-bottom: var(--spacing-2);
}

.footer__contact-link,
.footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-3);
  font-size: var(--text-size-sm);
  color: rgb(var(--color-foreground-rgb) / 0.7);
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__contact-item {
  align-items: flex-start;
}

.footer__contact-item span {
  line-height: 1.4;
}

.footer__contact-link:hover,
.footer__contact-link:focus-visible {
  color: rgb(var(--color-foreground-rgb) / 0.9);
  background-color: transparent;
}

.footer__contact-link:focus-visible {
  outline: 2px solid rgb(var(--color-primary-rgb) / 0.35);
  outline-offset: 2px;
}

.footer__social {
  display: flex;
  gap: var(--spacing-3);
  margin-top: var(--spacing-2);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgb(var(--color-foreground-rgb) / 0.06);
  color: var(--color-foreground);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__social-link:hover {
  background-color: var(--color-primary);
  color: var(--color-background);
  transform: translateY(-2px);
}

.footer__app-download {
  margin-top: var(--spacing-4);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3);
}

.footer__app-download-title {
  font-size: var(--text-size-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0;
  color: rgb(var(--color-foreground-rgb) / 0.75);
}

.footer__app-download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-3);
}

.footer__app-download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
}


.footer__app-download-image {
  display: block;
  max-height: 44px;
  width: auto;
}

/* Footer Heading */
.footer__heading {
  font-size: var(--text-size-base);
  font-weight: 600;
  margin: 0 0 var(--spacing-4);
  color: var(--color-foreground);
  letter-spacing: -0.01em;
}

.heyup-footer .footer__heading {
  font-weight: 400;
}

/* Footer Bottom */
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-6);
  padding-top: var(--spacing-8);
  border-top: 1px solid rgb(var(--color-border-rgb) / 0.4);
}

.footer__bottom-left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
}

.footer__copyright {
  font-size: var(--text-size-xs);
  color: var(--color-foreground);
  opacity: 0.6;
  margin: 0;
}

.footer__authorized {
  font-size: var(--text-size-xs);
  color: var(--color-foreground);
  opacity: 0.7;
  margin: 0;
}

.footer__payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-3);
  align-items: center;
}

.footer__payment-icon {
  height: 24px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer__payment-icon:hover {
  opacity: 1;
}

/* Mobile: Collapsible Columns */
@media screen and (max-width: 989px) {
  .footer__nav-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
  }
  
  .footer__nav-column-toggle[aria-expanded="true"] + .footer__nav-list {
    max-height: 500px;
    opacity: 1;
  }
  
  .footer__nav-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
  }
  
  .footer__main {
    grid-template-columns: 1fr;
  }
  
  /* Ensure toggle button is visible and clickable */
  .footer__nav-column-toggle {
    pointer-events: auto;
  }
}

/* Desktop Breakpoint */
@media screen and (min-width: 990px) {
  .footer__main {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
  
  .footer__nav-column-toggle {
    pointer-events: none;
    cursor: default;
  }
  
  .footer__toggle-icon {
    display: none;
  }
  
  .footer__nav-list {
    max-height: none !important;
    opacity: 1 !important;
    display: flex !important;
  }
  
  .footer__contact-section {
    min-width: 200px;
  }
  
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .footer__nav-link,
  .footer__social-link,
  .footer__newsletter-button,
  .footer__toggle-icon {
    transition: none !important;
  }
  
  .footer__nav-link:hover {
    transform: none;
  }
  
  .footer__social-link:hover {
    transform: none;
  }
}
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:11, SCOPED:FALSE) */
.header {
  color: var(--color-foreground);
  background-color: rgb(var(--color-background-rgb) / 0.90);
  border-bottom: 1px solid rgb(var(--color-border-rgb) / 0.4);
  backdrop-filter: blur(8px);
}
.header__logo-text,
.header__nav-link,
.header__action-link {
  color: rgb(var(--color-foreground-rgb) / 0.85);
}
.header__action-link:hover {
  color: var(--color-primary);
}
.header__icon { color: rgb(var(--color-foreground-rgb) / 0.85); }
.header__cart-count {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
}
.header__mobile-drawer { background-color: var(--color-background); color: var(--color-foreground); }
.header__mobile-backdrop { background-color: rgb(var(--color-foreground-rgb) / 0.2); }
/* END_SECTION:header */