:root {
  --eu-ink: #1c1917;
  --eu-muted: #57534e;
  --eu-line: #e7e5e4;
  --eu-paper: #f6f4f0;
  --eu-card: #ffffff;
  --eu-brand: #2f6bff;
  --eu-brand-dark: #1e4fd6;
  --eu-radius: 1rem;
  --eu-safe-bottom: env(safe-area-inset-bottom, 0px);
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--eu-ink);
  background: var(--eu-paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .font-display {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-optical-sizing: auto;
  letter-spacing: -0.018em;
  line-height: 1.2;
}

button, a, input, select {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--eu-brand);
  outline-offset: 2px;
}

.eu-card-copy {
  padding: 0.55rem 0.55rem 0.65rem;
  border-top: 1px solid #f5f5f4;
}

.eu-wrap {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.eu-topbar {
  background: #1a1464;
  color: #fff;
}

@media (max-width: 639px) {
  .eu-topbar {
    display: none;
  }
}

.eu-card {
  background: var(--eu-card);
  border: 1px solid var(--eu-line);
  border-radius: var(--eu-radius);
}

.eu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1.15rem;
  border-radius: 0.75rem;
  font-family: Manrope, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.eu-btn:active {
  transform: scale(0.98);
}

.eu-btn-primary {
  background: var(--eu-brand);
  color: #fff;
}

.eu-btn-primary:hover {
  background: var(--eu-brand-dark);
}

.eu-btn-whatsapp {
  background: #128c4b;
  color: #fff;
}

.eu-btn-whatsapp:hover {
  background: #0f7a41;
}

.eu-btn-charcoal {
  background: #36454f;
  color: #fff;
}

.eu-btn-charcoal:hover {
  background: #2c3942;
}

.eu-btn-ghost {
  background: #fff;
  color: var(--eu-ink);
  border: 1px solid var(--eu-line);
}

.eu-input,
.eu-select {
  min-height: 2.75rem;
  border: 1px solid #d6d3d1;
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.5rem 0.85rem;
  font-size: 16px;
  color: var(--eu-ink);
}

.eu-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--eu-line);
}

.eu-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.eu-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.eu-logo img {
  display: block;
  height: 3.35rem;
  width: auto;
  max-width: min(14.5rem, 58vw);
}

@media (min-width: 768px) {
  .eu-logo img {
    height: 4.15rem;
    max-width: 17.5rem;
  }
}

@media (min-width: 1024px) {
  .eu-header-main {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
  .eu-logo img {
    height: 4.65rem;
    max-width: 19.5rem;
  }
}

.eu-search {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 42rem;
}

@media (max-width: 639px) {
  .eu-header-main {
    flex-wrap: wrap;
    row-gap: 0.4rem;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }
  .eu-logo {
    flex: 1 1 auto;
  }
  .eu-logo img {
    height: 3.5rem;
    max-width: 15rem;
  }
  .eu-header-actions {
    margin-left: auto;
  }
  .eu-search {
    flex: 1 1 100%;
    max-width: none;
    order: 5;
  }
}

.eu-search .eu-input {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
}

.eu-header-actions {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.eu-text-link {
  min-height: 44px;
  align-items: center;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.eu-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
  color: var(--eu-ink);
}

.eu-icon-btn:hover {
  background: #eef3ff;
  color: var(--eu-brand);
}

.eu-icon-btn-label {
  display: none;
  font-size: 0.875rem;
  font-weight: 700;
}

.eu-cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--eu-brand);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.05rem;
  text-align: center;
}

@media (min-width: 768px) {
  .eu-icon-btn-label {
    display: inline;
  }
  .eu-icon-btn {
    border-radius: 0.75rem;
    padding: 0 0.65rem;
    min-width: 0;
  }
  .eu-cart-btn .eu-icon-btn-label {
    display: none;
  }
}

.eu-nav-scroll {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.3rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.15rem 0 0.7rem;
  margin: 0;
  list-style: none;
}

.eu-nav-scroll > li {
  flex: 0 0 auto;
  position: static;
}

.eu-nav-scroll::-webkit-scrollbar {
  display: none;
}

.eu-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--eu-muted);
  white-space: nowrap;
  scroll-snap-align: start;
}

.eu-nav-link:hover,
.eu-nav-link.is-active {
  background: #eef3ff;
  color: var(--eu-brand);
}

.eu-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-left: -0.35rem;
  border: 0;
  background: transparent;
  border-radius: 0.75rem;
  color: var(--eu-ink);
}

.eu-menu-btn:hover {
  background: #eef3ff;
  color: var(--eu-brand);
}

.eu-drawer-back {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(28, 25, 23, 0.42);
}

.eu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  width: min(20.5rem, 88vw);
  height: 100%;
  background: #fff;
  box-shadow: 12px 0 32px rgba(28, 25, 23, 0.12);
  transform: translateX(-105%);
  transition: transform 0.2s ease;
}

.eu-drawer.is-open {
  transform: translateX(0);
}

.eu-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0.85rem 0.85rem 1.1rem;
  border-bottom: 1px solid var(--eu-line);
}

.eu-drawer-logo {
  display: flex;
  align-items: center;
  min-width: 0;
}

.eu-drawer-logo img {
  display: block;
  height: 3.35rem;
  width: auto;
  max-width: 15rem;
}

.eu-drawer-nav {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1.5rem;
}

.eu-drawer-nav > a,
.eu-drawer-details summary,
.eu-drawer-sub a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.4rem 1.15rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--eu-ink);
}

.eu-drawer-nav > a:hover,
.eu-drawer-details summary:hover,
.eu-drawer-sub a:hover {
  background: #eef3ff;
  color: var(--eu-brand);
}

.eu-drawer-label {
  margin: 0.85rem 1.15rem 0.2rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eu-muted);
}

.eu-drawer-details summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2.25rem;
}

.eu-drawer-details summary::-webkit-details-marker {
  display: none;
}

.eu-drawer-details summary:after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  width: 0.4rem;
  height: 0.4rem;
  margin-top: -0.28rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.eu-drawer-details[open] summary:after {
  margin-top: -0.05rem;
  transform: rotate(-135deg);
}

.eu-drawer-sub a {
  padding-left: 1.85rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--eu-muted);
}

body.eu-menu-open {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .eu-menu-btn {
    display: none;
  }
}

@media (max-width: 1023px) {
  .eu-nav-scroll {
    display: none;
  }
  .eu-account-btn {
    display: none;
  }
}

.hero-slide {
  min-height: auto;
}

.eu-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--eu-line);
  border-radius: var(--eu-radius);
  background: #111;
}

.eu-hero-slide {
  display: none;
  position: relative;
}

.eu-hero-slide.is-on {
  display: block;
}

.eu-hero-shot {
  display: block;
  line-height: 0;
  background: #f4f1ea;
}

.eu-hero-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.eu-hero-copy {
  position: relative;
  z-index: 1;
  padding: 1.15rem 1.15rem 3.6rem;
  background: #fff;
}

.eu-hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  z-index: 2;
}

.eu-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 0;
  color: var(--eu-ink);
}

.eu-hero-btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.eu-hero-dots {
  display: flex;
  gap: 0.3rem;
}

.eu-hero-dot {
  width: 1.35rem;
  height: 0.22rem;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
}

.eu-hero-dot.is-on {
  background: var(--eu-brand);
  width: 2.15rem;
}

.eu-hero-logo {
  display: block;
  height: 3.75rem;
  width: auto;
  margin-top: 1.15rem;
}

@media (min-width: 768px) {
  .eu-hero-logo {
    position: absolute;
    right: 2.25rem;
    bottom: 1.75rem;
    margin-top: 0;
    height: 7rem;
  }
}

@media (min-width: 1024px) {
  .eu-hero-logo {
    right: 2.75rem;
    bottom: 2rem;
    height: 8.5rem;
  }
}

.eu-about-logo {
  display: block;
  height: 5.5rem;
  width: auto;
}

.eu-legal-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1.15rem 0 0.35rem;
}

.eu-legal-switch a,
.eu-legal-switch span {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid var(--eu-line);
  color: #57534e;
}

.eu-legal-switch a:hover {
  color: var(--eu-brand);
  border-color: var(--eu-brand);
}

.eu-legal-switch [aria-current="page"] {
  background: var(--eu-brand);
  border-color: var(--eu-brand);
  color: #fff;
}

.eu-legal {
  margin-top: 1.25rem;
  color: #44403c;
  font-size: 0.95rem;
  line-height: 1.7;
}

.eu-legal h2 {
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1c1917;
  margin: 1.65rem 0 0.55rem;
}

.eu-legal p + h2,
.eu-legal ul + h2 {
  margin-top: 1.75rem;
}

.eu-legal p {
  margin: 0 0 0.85rem;
}

.eu-legal ul {
  margin: 0 0 0.95rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.eu-legal li {
  margin: 0.35rem 0;
}

.eu-legal a {
  color: var(--eu-brand);
  font-weight: 600;
}

.eu-legal a:hover {
  text-decoration: underline;
}

.eu-footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.eu-footer-legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.eu-footer-legal a:hover {
  opacity: 0.85;
}

@media (min-width: 768px) {
  .eu-about-logo {
    height: 7rem;
  }
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.eu-product-card {
  background: #fff;
  border: 1px solid var(--eu-line);
  border-radius: 0.45rem;
  overflow: hidden;
  height: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .eu-product-card:hover {
    box-shadow: 0 10px 28px rgba(28, 25, 23, 0.08);
    transform: translateY(-2px);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
}

.eu-gallery {
  display: grid;
  gap: 0.75rem;
}

.eu-thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  order: 2;
}

.eu-thumbs::-webkit-scrollbar {
  display: none;
}

.eu-thumb {
  flex: 0 0 4.25rem;
  width: 4.25rem;
  height: 4.25rem;
  border: 1.5px solid var(--eu-line);
  border-radius: 0.75rem;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.eu-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eu-thumb.is-active {
  border-color: var(--eu-brand);
}

.eu-main-shot {
  order: 1;
  background: #fff;
  border: 1px solid var(--eu-line);
  border-radius: 1rem;
  overflow: hidden;
}

.eu-main-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.eu-pdp-card {
  position: relative;
}

.eu-zoom-trigger {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}

.eu-zoom-lens {
  display: block;
  position: absolute;
  z-index: 2;
  background: rgba(47, 107, 255, 0.16);
  border: 1px solid rgba(47, 107, 255, 0.45);
  pointer-events: none;
}

.eu-zoom-pane {
  display: block;
  position: absolute;
  z-index: 24;
  background: #fff;
  border: 1px solid var(--eu-line);
  border-radius: 0.85rem;
  box-shadow: 0 16px 40px rgba(28, 25, 23, 0.16);
  pointer-events: none;
  overflow: hidden;
}

.eu-zoom-hint {
  margin: 0.55rem 0 0;
  font-size: 0.75rem;
  color: var(--eu-muted);
}

.eu-zoom-hint-mob {
  display: none;
}

.eu-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 4.25rem;
  background: rgba(15, 18, 28, 0.9);
}

.eu-lightbox[hidden],
.eu-zoom-pane[hidden],
.eu-zoom-lens[hidden] {
  display: none !important;
}

.eu-lightbox img {
  display: block;
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 0.65rem;
}

.eu-lightbox-close,
.eu-lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #1c1917;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.eu-lightbox-close {
  top: 1rem;
  right: 1rem;
}

.eu-lightbox-prev {
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}

.eu-lightbox-next {
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}

.eu-lightbox-close:hover,
.eu-lightbox-nav:hover {
  background: #f4f4f5;
}

body.eu-lightbox-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .eu-zoom-pane,
  .eu-zoom-lens {
    display: none !important;
  }
  .eu-zoom-hint-desk {
    display: none;
  }
  .eu-zoom-hint-mob {
    display: inline;
  }
  .eu-lightbox {
    padding: 3.5rem 0.75rem 1rem;
  }
  .eu-lightbox-prev {
    left: 0.35rem;
  }
  .eu-lightbox-next {
    right: 0.35rem;
  }
}

.eu-pdp-video {
  margin-top: 1rem;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #111;
}

.eu-pdp-video video,
.eu-pdp-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 768px) {
  .eu-gallery {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }
  .eu-gallery.eu-gallery--thumbs {
    grid-template-columns: 4.5rem minmax(0, 1fr);
  }
  .eu-thumbs {
    order: 0;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 32rem;
  }
}

.eu-buy {
  margin-top: 1.25rem;
}

.eu-wa {
  position: fixed;
  left: auto;
  right: 1rem;
  bottom: calc(1.15rem + var(--eu-safe-bottom));
  z-index: 35;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38);
}

@media (max-width: 767px) {
  .eu-pdp {
    padding-bottom: calc(12.75rem + var(--eu-safe-bottom));
  }
  .eu-pdp .eu-buy {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    margin: 0;
    padding: 0.75rem 1rem calc(0.75rem + var(--eu-safe-bottom));
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--eu-line);
    box-shadow: 0 -10px 28px rgba(28, 25, 23, 0.08);
  }
  .eu-pdp .eu-buy-note,
  .eu-pdp .eu-qty-row {
    display: none;
  }
  .eu-pdp .eu-wa,
  .eu-cart .eu-wa {
    display: none;
  }
}

.eu-cart-list {
  display: grid;
  gap: 0.75rem;
}

.eu-cart-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.85rem;
  padding: 0.9rem;
}

@media (min-width: 640px) {
  .eu-cart-item {
    grid-template-columns: 6rem 1fr auto;
    align-items: center;
  }
}

.eu-page-pad {
  padding-bottom: calc(2rem + var(--eu-safe-bottom));
}

.eu-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.eu-pager a {
  min-width: 2.5rem;
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  border: 1px solid var(--eu-line);
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}

.eu-pager a.is-active {
  background: var(--eu-brand);
  border-color: var(--eu-brand);
  color: #fff;
}

.eu-pager a.eu-pager-wide {
  min-width: 0;
  padding: 0 0.85rem;
}

.eu-pager-gap {
  min-width: 1.5rem;
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--eu-muted);
  font-weight: 700;
}

.eu-all-cats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

.eu-all-cats .eu-cat-tile {
  min-height: 0;
  padding: 0;
}

.eu-all-cats .eu-cat-tile-shot {
  height: auto;
}

.eu-all-cats .eu-cat-tile-label {
  font-size: 0.72rem;
}

.eu-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

.eu-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

.eu-cat-tile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--eu-line);
  border-radius: 0.45rem;
  text-align: center;
}

.eu-cat-tile-shot {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #fff;
  line-height: 0;
}

.eu-cat-tile-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  padding: 0;
  margin: 0;
}

.eu-cat-tile-label {
  display: block;
  margin-top: 0;
  padding: 0.45rem 0.4rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--eu-ink);
}

.eu-sub-tile {
  min-height: 0;
  padding: 0;
}

.eu-sub-tile .eu-cat-tile-shot {
  height: auto;
}

.eu-sub-tile .eu-cat-tile-label {
  font-size: 0.875rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .eu-all-cats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  .eu-all-cats .eu-cat-tile {
    padding: 0;
  }
  .eu-all-cats .eu-cat-tile-label {
    font-size: 0.875rem;
  }
  .eu-cat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  .eu-sub-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
  .eu-cat-tile {
    min-height: 0;
    padding: 0;
  }
  .eu-cat-tile-shot {
    height: auto;
  }
  .eu-cat-tile-label {
    font-size: 0.875rem;
    padding: 0.8rem 0.65rem 0.95rem;
  }
}

@media (min-width: 1024px) {
  .eu-all-cats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
  }
  .eu-cat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .eu-sub-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .eu-cat-tile {
    min-height: 0;
  }
  .eu-cat-tile-shot {
    height: auto;
  }
}

@media (hover: hover) and (pointer: fine) {
  .eu-cat-tile:hover {
    border-color: #c7d7ff;
    box-shadow: 0 8px 22px rgba(28, 25, 23, 0.06);
  }
  .eu-cat-tile:hover .eu-cat-tile-label {
    color: var(--eu-brand);
  }
}

@media (max-width: 767px) {
  .eu-home-hero h1 {
    font-size: 1.45rem;
  }
  .eu-home-hero .eu-home-lead {
    display: none;
  }
}

.eu-pdp-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.eu-pdp-actions .col-span-2 {
  grid-column: 1 / -1;
}

.eu-footer-main {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.eu-footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
}

.eu-footer-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.eu-footer-logo img {
  display: block;
  height: 3.5rem;
  width: auto;
}

.eu-footer-tagline {
  margin: 0;
  max-width: 18rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--eu-muted);
}

.eu-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 1.5rem;
  align-items: start;
}

.eu-footer-col h4 {
  margin: 0 0 0.7rem;
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--eu-ink);
}

.eu-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.eu-footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  font-size: 0.9375rem;
  color: var(--eu-muted);
}

.eu-footer-links a:hover {
  color: var(--eu-brand);
}

.eu-footer-address,
.eu-footer-meta {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--eu-muted);
}

.eu-footer-address {
  margin-bottom: 0.75rem;
}

.eu-footer-meta + .eu-footer-meta {
  margin-top: 0.2rem;
}

.eu-footer-meta a {
  font-weight: 600;
  color: var(--eu-brand);
}

@media (min-width: 768px) {
  .eu-footer-tagline {
    padding-left: 1.15rem;
    border-left: 1px solid var(--eu-line);
  }
}

@media (min-width: 1024px) {
  .eu-footer-cols {
    grid-template-columns: 1fr 1fr 1fr minmax(16rem, 1.35fr);
  }

  .eu-footer-logo img {
    height: 4rem;
  }

  .eu-footer-links a {
    min-height: 1.9rem;
  }
}

.eu-footer-socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.eu-soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: #eef3ff;
  color: var(--eu-brand);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.eu-soc:hover {
  background: var(--eu-brand);
  color: #fff;
}

.eu-soc svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

@media (max-width: 399px) {
  .eu-header-lists {
    display: none;
  }
}

.eu-product-card {
  position: relative;
}

.eu-card-shot {
  position: relative;
  background: #fff;
}

.eu-card-shot a {
  display: block;
  overflow: hidden;
  background: #fff;
  line-height: 0;
}

.eu-card-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  padding: 0;
  margin: 0;
  vertical-align: top;
}

.eu-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

@media (min-width: 768px) {
  .eu-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .eu-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.05rem;
  }
}

@media (min-width: 1100px) {
  .eu-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
  }
}

.eu-card-tools {
  position: absolute;
  top: 0.85rem;
  left: 0.35rem;
  right: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.eu-card-tools button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.35rem;
  background: #fff;
  border: 1px solid #e5e5e5;
  color: var(--eu-ink);
  box-shadow: 0 1px 4px rgba(28, 25, 23, 0.08);
}

.eu-card-tools button svg {
  width: 0.85rem;
  height: 0.85rem;
}

.eu-card-tools button.is-on {
  color: var(--eu-brand);
  border-color: #c7d7ff;
  background: #eef3ff;
}

@media (min-width: 768px) {
  .eu-product-card,
  .eu-cat-tile {
    border-radius: 0.65rem;
  }
  .eu-card-tools {
    top: 1rem;
    left: 0.5rem;
    right: auto;
    gap: 0.4rem;
  }
  .eu-card-tools button {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.4rem;
  }
  .eu-card-tools button svg {
    width: 1.05rem;
    height: 1.05rem;
  }
  .eu-card-copy {
    padding: 0.75rem 0.85rem 0.85rem;
  }
}

.eu-listing {
  display: grid;
  gap: 1.15rem;
}

.eu-filters-box {
  background: #fff;
  border: 1px solid var(--eu-line);
  border-radius: var(--eu-radius);
  padding: 0.85rem 1rem 1rem;
}

.eu-filters-summary {
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.eu-filters-summary::-webkit-details-marker {
  display: none;
}

.eu-filters-label {
  margin: 0.9rem 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eu-muted);
}

.eu-color-swatches {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.eu-swatch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2rem;
  padding: 0.15rem 0.55rem 0.15rem 0.3rem;
  border: 1px solid var(--eu-line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--eu-ink);
  background: #fff;
}

.eu-swatch.is-on {
  border-color: var(--eu-brand);
  background: #eef3ff;
  color: var(--eu-brand);
}

.eu-swatch-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  flex: 0 0 auto;
}

.eu-price-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.eu-price-row .eu-input {
  width: 100%;
  min-width: 0;
  padding: 0.4rem 0.55rem;
}

.eu-price-dash {
  color: var(--eu-muted);
  font-weight: 700;
}

.eu-filters-apply {
  width: 100%;
  margin-top: 0.55rem;
  min-height: 2.4rem;
}

.eu-filters-hint {
  margin: 0.45rem 0 0;
  font-size: 0.7rem;
  line-height: 1.35;
  color: var(--eu-muted);
}

.eu-filters-clear {
  display: inline-flex;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--eu-brand);
}

.eu-pdp-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.eu-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.eu-compare-col {
  overflow: hidden;
}

.eu-catalog-head {
  display: none;
}

.eu-catalog-section {
  margin-bottom: 1.75rem;
}

.eu-catalog-section h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.85rem;
}

.eu-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.eu-catalog-item {
  background: #fff;
  border: 1px solid var(--eu-line);
  border-radius: 0.85rem;
  overflow: hidden;
}

.eu-catalog-item a {
  display: block;
  padding: 0 0 0.8rem;
}

.eu-catalog-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.eu-catalog-code {
  margin-top: 0.55rem;
  padding: 0 0.7rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eu-brand);
}

.eu-catalog-item h3 {
  font-family: Manrope, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0.15rem 0 0.25rem;
  padding: 0 0.7rem;
  letter-spacing: 0;
}

.eu-catalog-price {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0 0.7rem;
}

@media (min-width: 640px) {
  .eu-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .eu-compare {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .eu-listing {
    grid-template-columns: 15.25rem minmax(0, 1fr);
    align-items: start;
  }
  .eu-filters {
    position: sticky;
    top: 6.5rem;
  }
  .eu-compare {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .eu-catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media print {
  .eu-topbar,
  .eu-header,
  .eu-drawer,
  .eu-drawer-back,
  .eu-wa,
  footer,
  .eu-print-hide {
    display: none !important;
  }
  body {
    background: #fff;
  }
  .eu-wrap {
    max-width: none;
    padding: 0;
  }
  .eu-catalog-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--eu-brand);
  }
  .eu-catalog-head img {
    height: 3.5rem;
  }
  .eu-catalog-head h1 {
    font-size: 1.2rem;
    margin: 0;
  }
  .eu-catalog-head p {
    margin: 0.15rem 0 0;
    font-size: 0.75rem;
    color: var(--eu-muted);
  }
  .eu-catalog-item {
    break-inside: avoid;
  }
  .eu-catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
  }
}
