/** Shopify CDN: Minification failed

Line 7:0 Unexpected "`"
Line 119:0 Unexpected "`"

**/
```css
/* Global background fix */
body {
  margin: 0;
  padding: 0;
  background: #FAF8F1;
}

/* Header */
.site-header {
  background: #FAF8F1;
  padding: 8px 40px 0; /* Reduced top padding */
  margin: 0;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1800px;
  margin: 0 auto;
  padding-bottom: 8px; /* Reduced bottom padding */
}

/* Logo */
.header-logo {
  flex: 0 1 auto;
  max-width: 150px;
  margin: 0 40px;
}

.header-logo__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: none; /* Ensure no filters are applied */
}

/* Header Items */
.header-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-item--right {
  justify-content: flex-end;
}

.header-link {
  color: #000000;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Cart */
.cart-link {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #000000;
  color: #ffffff;
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Menu */
.main-menu {
  padding: 4px 0; /* Reduced padding */
}

.main-menu__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu__link {
  color: #000000;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Remove any potential white space */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
```