/** Shopify CDN: Minification failed

Line 1159:19 Expected identifier but found whitespace
Line 1159:21 Unexpected "{"
Line 1159:30 Expected ":"
Line 1160:8 Expected identifier but found whitespace
Line 1160:10 Unexpected "{"
Line 1160:19 Expected ":"

**/
/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  color: rgb(var(--color-foreground));
  background-color: rgb(var(--color-background));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  line-height: 1.1;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: none;
}

.btn-primary {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  border: 1px solid currentColor;
  background: transparent;
}

.btn-outline:hover {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}

.btn-secondary {
  background-color: rgb(var(--color-secondary));
  color: rgb(var(--color-foreground));
}

.btn-secondary:hover {
  opacity: 0.8;
}

/* Forms */
.input {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgb(var(--color-border));
  background: transparent;
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

.input:focus {
  outline: none;
  border-color: rgb(var(--color-foreground));
}

.input::placeholder {
  color: rgb(var(--color-foreground) / 0.5);
}

/* Grid */
.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slide-out-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

.animate-fade-in {
  animation: fade-in 0.5s ease-out forwards;
}

.animate-slide-up {
  animation: slide-up 0.6s ease-out forwards;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero--full {
  height: 100vh;
}

.hero--large {
  height: 85vh;
}

.hero--medium {
  height: 60vh;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .hero__content {
    padding-bottom: 6rem;
  }
}

.hero__text {
  max-width: 42rem;
  animation: slide-up 0.6s ease-out forwards;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.hero__title {
  color: white;
  margin-bottom: 1.5rem;
}

.hero__cta {
  border-color: white;
  color: white;
}

.hero__cta:hover {
  background-color: white;
  color: black;
}

/* Product Card */
.product-card {
  display: block;
}

.product-card__image-container {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: rgb(var(--color-secondary));
  margin-bottom: 1rem;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.5rem;
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-card__brand {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(var(--color-foreground) / 0.6);
}

.product-card__title {
  font-size: 0.875rem;
  font-weight: 500;
}

.product-card__price {
  font-size: 0.875rem;
  font-weight: 600;
}

.product-card__price--compare {
  text-decoration: line-through;
  color: rgb(var(--color-foreground) / 0.5);
  margin-left: 0.5rem;
}

/* Category Card */
.category-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: rgb(var(--color-secondary));
}

.category-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-card:hover .category-card__image {
  transform: scale(1.05);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.category-card:hover .category-card__overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.category-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card__title {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .category-card__title {
    font-size: 1.5rem;
  }
}

/* Section Spacing */
.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.section--large {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 768px) {
  .section--large {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

/* Editorial Block */
.editorial {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .editorial {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.editorial--reverse .editorial__image {
  order: 2;
}

.editorial--reverse .editorial__content {
  order: 1;
}

.editorial__image-container {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: rgb(var(--color-secondary));
}

.editorial__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.editorial__image-container:hover .editorial__image {
  transform: scale(1.05);
}

.editorial__title {
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .editorial__title {
    font-size: 3rem;
  }
}

.editorial__description {
  color: rgb(var(--color-foreground) / 0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 28rem;
}

/* Newsletter */
.newsletter {
  background-color: rgb(var(--color-secondary));
  text-align: center;
}

.newsletter__title {
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .newsletter__title {
    font-size: 2.25rem;
  }
}

.newsletter__description {
  color: rgb(var(--color-foreground) / 0.7);
  margin-bottom: 2rem;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .newsletter__form {
    flex-direction: row;
  }
}

.newsletter__input {
  flex: 1;
}

/* Collection Page */
.collection-header {
  padding-top: 8rem;
  padding-bottom: 3rem;
  text-align: center;
}

.collection-header__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.collection-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgb(var(--color-border));
  margin-bottom: 2rem;
}

.collection-filters__count {
  font-size: 0.875rem;
  color: rgb(var(--color-foreground) / 0.6);
}

.collection-filters__sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.collection-filters__select {
  padding: 0.5rem 1rem;
  border: 1px solid rgb(var(--color-border));
  background: transparent;
  font-size: 0.875rem;
  cursor: pointer;
}

/* Product Page */
.product {
  padding-top: 8rem;
}

.product__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .product__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.product__gallery {
  display: grid;
  gap: 1rem;
}

.product__main-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: rgb(var(--color-secondary));
}

.product__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__thumbnails {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}

.product__thumbnail {
  width: 80px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
  background-color: rgb(var(--color-secondary));
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.product__thumbnail.active,
.product__thumbnail:hover {
  border-color: rgb(var(--color-foreground));
}

.product__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__info {
  position: sticky;
  top: 8rem;
}

.product__brand {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgb(var(--color-foreground) / 0.6);
  margin-bottom: 0.5rem;
}

.product__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .product__title {
    font-size: 2rem;
  }
}

.product__price {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.product__price--compare {
  text-decoration: line-through;
  color: rgb(var(--color-foreground) / 0.5);
  margin-left: 0.75rem;
}

.product__variants {
  margin-bottom: 1.5rem;
}

.product__variant-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.product__variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product__variant-option {
  min-width: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgb(var(--color-border));
  background: transparent;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product__variant-option:hover,
.product__variant-option.selected {
  border-color: rgb(var(--color-foreground));
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}

.product__variant-option:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.product__quantity {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product__quantity-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product__quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid rgb(var(--color-border));
}

.product__quantity-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.product__quantity-btn:hover {
  background-color: rgb(var(--color-secondary));
}

.product__quantity-value {
  width: 3rem;
  text-align: center;
  font-size: 0.875rem;
}

.product__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.product__add-to-cart {
  flex: 1;
}

.product__wishlist {
  width: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(var(--color-border));
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product__wishlist:hover {
  border-color: rgb(var(--color-foreground));
}

.product__description {
  padding-top: 2rem;
  border-top: 1px solid rgb(var(--color-border));
}

.product__description-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.product__description-text {
  font-size: 0.875rem;
  color: rgb(var(--color-foreground) / 0.7);
  line-height: 1.7;
}

/* Page Headers */
.page-header {
  padding-top: 10rem;
  padding-bottom: 4rem;
  text-align: center;
  background-color: rgb(var(--color-secondary));
}

.page-header__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .page-header__title {
    font-size: 3.5rem;
  }
}

.page-header__subtitle {
  margin-top: 1rem;
  color: rgb(var(--color-foreground) / 0.7);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Rich Text */
.rich-text {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.rich-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.rich-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.rich-text p {
  color: rgb(var(--color-foreground) / 0.7);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.rich-text ul,
.rich-text ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.rich-text li {
  color: rgb(var(--color-foreground) / 0.7);
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-form__group {
  margin-bottom: 1.5rem;
}

.contact-form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.contact-form__textarea {
  width: 100%;
  min-height: 150px;
  padding: 1rem;
  border: 1px solid rgb(var(--color-border));
  background: transparent;
  font-size: 0.875rem;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.contact-form__textarea:focus {
  outline: none;
  border-color: rgb(var(--color-foreground));
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid rgb(var(--color-border));
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
}

.faq-item__icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  display: none;
  padding-bottom: 1.5rem;
  color: rgb(var(--color-foreground) / 0.7);
  line-height: 1.7;
}

.faq-item.active .faq-item__answer {
  display: block;
}

/* Locations */
.location-card {
  padding: 2rem;
  background-color: rgb(var(--color-secondary));
}

.location-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.location-card__type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(var(--color-foreground) / 0.6);
  margin-bottom: 1rem;
}

.location-card__address,
.location-card__hours,
.location-card__phone {
  font-size: 0.875rem;
  color: rgb(var(--color-foreground) / 0.7);
  margin-bottom: 0.25rem;
}

.location-card__phone a {
  text-decoration: underline;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}
.collection-header {
  padding-top: 4rem;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .section {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}
.product-card__title {
  font-size: 16px;
  font-weight: 600;
}
.hero-title {
  text-transform: capitalize;
}
.editorial__title {
  text-transform: capitalize;
}
.product {
  padding-top: 3rem;
}
.product__title {
  text-transform: capitalize;
}
.collection-header {
  padding-top: 7rem;
  padding-bottom: 0rem;
}
/* --- Announcement / Top bar fix --- */
.announcement-bar {
  min-height: 0;
  padding: 8px 0;
  line-height: 1.2;
}

/* Center content and prevent weird full-width padding */
.announcement-bar__inner,
.announcement-bar .page-width,
.announcement-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* If it's rendering empty, hide it (prevents thin black strip) */
.announcement-bar:empty {
  display: none !important;
}
/* --- Header search width fix --- */
.header__search,
.header-search {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 220px;
}

.header__search input,
.header-search input,
.header__search .field__input {
  width: 180px !important;
  max-width: 180px !important;
}

/* Keep icons from being pushed out */
.header__icons,
.header-icons {
  flex: 0 0 auto !important;
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 14px;
}
.search-drawer__overlay{
  position: fixed;
  left: 0;
  right: 0;
  top: var(--announcement-height, 0px);
  bottom: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 160ms ease, visibility 160ms ease;
  z-index: 1500;
}

.search-drawer{
  position: fixed;
  left: 0;
  right: 0;
  top: var(--announcement-height, 0px);
  background: rgb(var(--color-background));
  border-bottom: 1px solid rgb(var(--color-border));
  transform: translateY(-110%);
  transition: transform 200ms ease;
  z-index: 1501;
}
.header--transparent .header__logo-image--default{ display:none; }
.header--transparent .header__logo-image--transparent{ display:block; }

.header--scrolled .header__logo-image--default{ display:block; }
.header--scrolled .header__logo-image--transparent{ display:none; }
/* Use the alt (transparent/white) logo on SOLID header too when needed */
/* Use alt logo on SOLID header only when NOT scrolled */
.header--alt-logo-solid:not(.header--scrolled) .header__logo-image--default { display: none; }
.header--alt-logo-solid:not(.header--scrolled) .header__logo-image--transparent { display: block; }

/* If scrolled header uses light text, use alt logo while scrolled */
.header--scrolled.header--alt-logo-scrolled .header__logo-image--default { display: none; }
.header--scrolled.header--alt-logo-scrolled .header__logo-image--transparent { display: block; }
/* Never apply scrolled styles unless header--scrolled is present */
.header:not(.header--scrolled):not(.header--transparent){
  background-color: {{ section.settings.color_header_bg }};
  color: {{ section.settings.color_header_text }};
}
