:root {
  --bg: #fff;
  --text: #1a1a1a;
  --muted: #666;
  --border: #e8e8e8;
  --accent: #1a1a1a;
  --promo-bg: #1a1a1a;
  --promo-text: #fff;
  /* Promo bar social icons — brand gold (tune hex to match logo.png) */
  --brand-gold: #c9a962;
  --brand-gold-muted: rgba(201, 169, 98, 0.35);
  --container: 1200px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  /* Pull hero video up under the whole chrome (tune if header height changes) */
  --home-header-overlap: clamp(12.5rem, 32vh, 17.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

body.drawer-open {
  overflow: hidden;
}

/* Full chrome (promo + utility + logo/nav) stays at top while scrolling */
#site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  position: sticky;
  isolation: isolate;
}

/* Home: hero video extends behind promo + utility + sticky header (XXLOVE-style) */
body.page-home #site-header {
  margin-bottom: calc(-1 * var(--home-header-overlap));
}

/* When promo strip is hidden, shorten overlap by ~promo height (match thin strip) */
body.page-home #site-header.site-header--hide-promo {
  margin-bottom: calc(-1 * (var(--home-header-overlap) - 2rem));
  background: var(--bg);
}

/* Hide tiny seam line when promo collapses on scroll (mobile + desktop). */
body.page-home #site-header.site-header--hide-promo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--bg);
  pointer-events: none;
}

body.page-home #main {
  position: relative;
  z-index: 0;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: #000;
  color: #fff;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Header chrome: use viewport width with tight gutters (avoids large empty side bands) */
#site-header .container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(0.35rem, 1.25vw, 0.85rem);
  box-sizing: border-box;
}

/* Promo + language in one strip */
.top-bar {
  position: relative;
  z-index: 60;
  max-height: 4rem;
  /* visible when open so .lang-list can extend below the strip (not clipped by main-header) */
  overflow: visible;
  background: var(--promo-bg);
  color: var(--promo-text);
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    max-height 0.32s ease,
    opacity 0.24s ease,
    border-color 0.24s ease,
    visibility 0.24s ease;
}

#site-header.site-header--hide-promo .top-bar {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  border-bottom-color: transparent;
  pointer-events: none;
}

.top-bar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.4rem 0.65rem;
  padding: 0.22rem 0;
  min-height: 1.85rem;
}

.top-bar__promo {
  grid-column: 2;
  margin: 0;
  text-align: center;
  line-height: 1.3;
  justify-self: center;
  max-width: min(100%, 42rem);
}

.top-bar__lang {
  grid-column: 3;
  justify-self: end;
}

.top-bar__social {
  grid-column: 1;
  justify-self: start;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-bar__social li {
  margin: 0;
  padding: 0;
}

@keyframes promo-social-spin {
  to {
    transform: rotate(360deg);
  }
}

.top-bar__social-a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  color: var(--brand-gold);
  text-decoration: none;
  border-radius: 50%;
  border: 1px solid var(--brand-gold-muted);
  background: rgba(201, 169, 98, 0.08);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.top-bar__social-a:hover {
  color: #dcc07a;
  background: rgba(201, 169, 98, 0.16);
  border-color: rgba(201, 169, 98, 0.55);
}

.top-bar__social-a:hover .top-bar__social-icon {
  animation: promo-social-spin 0.55s ease-in-out;
}

.top-bar__social-icon {
  width: 0.82rem;
  height: 0.82rem;
  display: block;
  transform-origin: center center;
}

@media (prefers-reduced-motion: reduce) {
  .top-bar__social-a:hover .top-bar__social-icon {
    animation: none;
  }
}

body.page-home .top-bar {
  background: rgba(32, 32, 32, 0.72);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  backdrop-filter: blur(12px) saturate(1.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  color: var(--promo-text);
}

.top-bar .header-lang__btn {
  height: 2rem;
  min-height: 2rem;
}

@media (max-width: 640px) {
  .top-bar__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 0.2rem 0;
    gap: 0.35rem;
  }

  .top-bar__social {
    grid-column: 1;
    justify-self: start;
  }

  .top-bar__promo {
    grid-column: 2;
    padding-inline: 0.25rem;
    max-width: 100%;
    font-size: 0.68rem;
  }

  .top-bar__lang {
    grid-column: 3;
    justify-self: end;
  }
}

/* Flag + chevron in top bar (right corner); hover / focus-within opens list */
.header-lang {
  position: relative;
  flex-shrink: 0;
}

.header-lang::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  height: 14px;
  top: 100%;
}

.header-lang__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  height: 2.5rem;
  padding: 0 0.2rem;
  margin: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.top-bar .header-lang__btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.lang-current__mark {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-chevron {
  display: block;
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.85;
}

.top-bar .lang-chevron {
  color: rgba(255, 255, 255, 0.88);
}

.lang-flag {
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  object-fit: cover;
  border-radius: 2px;
}

.lang-list {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  margin: 0;
  padding: 0.3rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 3.5rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
  z-index: 130;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s;
}

.header-lang:hover .lang-list,
.header-lang:focus-within .lang-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header-lang .lang-list li {
  margin: 0;
}

.header-lang .lang-list li + li {
  border-top: 1px solid var(--border);
}

.lang-list .lang-option--flag {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.4rem 1rem;
}

.lang-list a,
.lang-list .lang-option {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.35rem 1rem;
  color: inherit;
  text-decoration: none;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: center;
  cursor: pointer;
}

.lang-list a:hover,
.lang-list .lang-option:hover {
  background: #f5f5f5;
}

.main-header {
  position: relative;
  z-index: 40;
  color: var(--text);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease,
    backdrop-filter 0.28s ease;
}

/* Inner pages: always solid bar (no hero-under-header) */
body:not(.page-home) .main-header {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

/* Home, top of page: dark translucent bar over video (reference: xxlove-style) */
body.page-home .main-header:not(.main-header--scrolled) {
  background: rgba(28, 28, 28, 0.46);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  color: #f2f2f2;
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  backdrop-filter: blur(14px) saturate(1.15);
}

body.page-home .main-header:not(.main-header--scrolled) .badge {
  background: #fff;
  color: var(--text);
}

body.page-home .main-header:not(.main-header--scrolled) .menu-toggle .hamburger {
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

/* Home, after scroll: solid white like the rest of the site */
body.page-home .main-header--scrolled {
  background: var(--bg);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  color: var(--text);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.page-home .main-header--scrolled .badge {
  background: var(--accent);
  color: #fff;
}

.main-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem 0.5rem;
  padding: 0.45rem 0;
}

.menu-toggle {
  grid-column: 1;
}

.brand-logo {
  grid-column: 2;
  justify-self: center;
}

.header-actions {
  grid-column: 3;
  justify-self: end;
}

.main-header__divider {
  width: 1px;
  align-self: stretch;
  min-height: 1.5rem;
  margin: 0 0.15rem;
  background: rgba(0, 0, 0, 0.15);
}

body.page-home .main-header:not(.main-header--scrolled) .main-header__divider {
  background: rgba(255, 255, 255, 0.35);
}

@media (min-width: 1024px) {
  .main-header__inner {
    /* minmax(0,1fr) lets the nav column shrink so it doesn’t collide with logo / icons */
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 0.5rem 0.65rem;
  }

  .brand-logo {
    grid-column: 1;
    justify-self: start;
  }

  .main-header__nav {
    grid-column: 2;
    justify-self: center;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
  }

  .main-header__divider {
    grid-column: 3;
    justify-self: center;
  }

  .header-actions {
    grid-column: 4;
  }
}

.brand-logo img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(200px, 32vw);
  object-fit: contain;
}

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

.icon-btn,
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}

.i-search::before {
  content: "⌕";
  font-size: 1.25rem;
}
.icon-link__img {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
  pointer-events: none;
}

/* Header row: same optical size as reference (search / account / wishlist / cart) */
.main-header .header-actions .icon-link__img,
.main-header .header-actions .icon-btn .icon-link__img {
  width: 1.35rem;
  height: 1.35rem;
}

/* Search: gleam on the magnifier PNG (drop-shadow), not a halo around the button */
@keyframes search-icon-soft-gleam {
  0%,
  94%,
  100% {
    filter: none;
  }
  95.2% {
    filter: drop-shadow(0 0 2px rgba(255, 248, 235, 0.95))
      drop-shadow(0 0 8px rgba(255, 228, 200, 0.55))
      drop-shadow(0 0 14px rgba(255, 200, 160, 0.25));
  }
  97% {
    filter: drop-shadow(0 0 3px rgba(255, 240, 220, 0.5));
  }
}

@keyframes search-icon-soft-gleam-home {
  0%,
  94%,
  100% {
    filter: brightness(0) invert(1);
    opacity: 0.92;
  }
  95.2% {
    filter: brightness(0) invert(1)
      drop-shadow(0 0 3px rgba(255, 245, 220, 0.9))
      drop-shadow(0 0 10px rgba(255, 230, 190, 0.45));
    opacity: 1;
  }
  97% {
    filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(255, 250, 235, 0.55));
    opacity: 0.96;
  }
}

.main-header .header-actions .icon-btn[data-search-toggle] {
  border-radius: 999px;
}

.main-header .header-actions .icon-btn[data-search-toggle] .icon-link__img {
  width: 1.02rem;
  height: 1.02rem;
  animation: search-icon-soft-gleam 14s ease-in-out infinite;
}

body.page-home .main-header:not(.main-header--scrolled) .icon-btn[data-search-toggle] .icon-link__img {
  animation: search-icon-soft-gleam-home 14s ease-in-out infinite;
}

body.page-home .main-header:not(.main-header--scrolled) .icon-link__img,
body.page-home .main-header:not(.main-header--scrolled) .icon-btn .icon-link__img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* Wishlist heart PNG — subtle double-beat (disable if user prefers reduced motion) */
@keyframes i-heart-beat {
  0%,
  100% {
    transform: scale(1);
  }
  12% {
    transform: scale(1.2);
  }
  24% {
    transform: scale(1);
  }
  36% {
    transform: scale(1.12);
  }
  48% {
    transform: scale(1);
  }
}

.main-header .header-actions a.icon-link[href*="wishlist"] .icon-link__img {
  transform-origin: 50% 55%;
  animation: i-heart-beat 1.35s ease-in-out infinite;
}

.main-header .header-actions a.icon-link[href*="wishlist"]:hover .icon-link__img,
.main-header .header-actions a.icon-link[href*="wishlist"]:focus-visible .icon-link__img {
  animation-duration: 0.85s;
}

@media (prefers-reduced-motion: reduce) {
  .main-header .header-actions a.icon-link[href*="wishlist"] .icon-link__img {
    animation: none;
  }

  .main-header .header-actions .icon-btn[data-search-toggle] .icon-link__img {
    animation: none;
    filter: drop-shadow(0 0 2px rgba(255, 230, 200, 0.4));
  }

  body.page-home .main-header:not(.main-header--scrolled) .icon-btn[data-search-toggle] .icon-link__img {
    filter: brightness(0) invert(1) drop-shadow(0 0 3px rgba(255, 235, 210, 0.45));
    opacity: 0.95;
  }

  .main-header .header-cart.header-cart--has-items > a.icon-link {
    animation: none;
  }

  .main-header .header-cart.header-cart--has-items > a.icon-link .icon-link__img {
    animation: none;
    filter: drop-shadow(0 0 3px rgba(255, 200, 90, 0.45));
  }

  body.page-home .main-header:not(.main-header--scrolled) .header-cart.header-cart--has-items > a.icon-link .icon-link__img {
    filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(255, 220, 140, 0.5));
    opacity: 0.95;
  }
}

.badge {
  position: absolute;
  top: 0.2rem;
  right: 0.1rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.25rem;
  font-size: 0.65rem;
  line-height: 1rem;
  text-align: center;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
}

.menu-toggle .hamburger {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.desktop-only {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-only {
    display: block;
  }

  .main-header__nav.desktop-only {
    display: block;
  }

  .menu-toggle {
    display: none;
  }
}

.search-panel {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.search-form {
  display: flex;
  gap: 0.5rem;
}

.search-form input {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  font: inherit;
}

.search-form button {
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: #fff;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.primary-nav.main-header__nav {
  border-top: none;
}

.main-header__nav .nav-root {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 0.2rem 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  overflow: visible;
}

.main-header__nav .nav-root > li {
  flex-shrink: 0;
}

.nav-root > li > a {
  color: inherit;
  text-decoration: none;
  padding: 0.35rem 0;
  display: inline-block;
}

.nav-root > li > a:hover {
  text-decoration: underline;
}

.has-mega {
  position: static;
}

.has-mega::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 0.85rem;
  top: 100%;
  z-index: 29;
}

.has-mega:hover .mega,
.has-mega:focus-within .mega,
.has-mega.is-mega-open .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Flyout megas (ΡΟΥΧΑ, ΑΞΕΣΟΥΑΡ): anchor under the trigger — not a full header-width strip */
.nav-root > .has-mega--flyout {
  position: relative;
  z-index: 1;
}

.nav-root > .has-mega--flyout:hover,
.nav-root > .has-mega--flyout:focus-within {
  z-index: 45;
}

.nav-root > .has-mega--flyout::after {
  left: 0;
  right: 0;
  height: 0.85rem;
}

.nav-root > .has-mega--flyout > .mega {
  left: 0;
  right: auto;
  width: max-content;
  max-width: min(42rem, calc(100vw - 1rem));
  top: 100%;
  margin-top: -10px;
  padding-top: 10px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.nav-root > .has-mega--flyout > .mega.mega--flyout {
  transform: translateY(-6px);
}

.nav-root > .has-mega--flyout:hover > .mega.mega--flyout,
.nav-root > .has-mega--flyout:focus-within > .mega.mega--flyout,
.nav-root > .has-mega--flyout.is-mega-open > .mega.mega--flyout {
  transform: translateY(0);
}

/* Hug the longest label — no wide empty strip beside chevrons */
.nav-root > .has-mega--flyout .mega-flyout:not(.mega-flyout--primary-only) {
  width: max-content;
  min-width: 0;
  min-height: 0;
  max-width: min(calc(100vw - 1rem), 36rem);
  margin: 0;
}

/* Single-column menus (Events / Blog / Eshop / Info): hug text — no wide empty panel */
.nav-root > .has-mega--flyout .mega-flyout.mega-flyout--primary-only {
  display: block;
  width: max-content;
  min-width: 0;
  max-width: min(20rem, calc(100vw - 1.25rem));
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
}

.nav-root > .has-mega--flyout .mega-flyout--primary-only .mega-flyout__primary {
  border-right: none;
  width: 100%;
  min-width: 0;
  max-width: none;
  padding: 0.15rem 0;
  margin: 0;
}

.nav-root > .has-mega--flyout .mega-flyout--primary-only .mega-flyout__primary > .mega-flyout-item {
  border-bottom: 1px solid var(--border);
}

.nav-root > .has-mega--flyout .mega-flyout--primary-only .mega-flyout__primary > .mega-flyout-item:last-child {
  border-bottom: none;
}

.nav-root > .has-mega--flyout .mega-flyout--primary-only .mega-flyout__hit {
  display: block;
  padding: 0.48rem 1rem 0.48rem 0.85rem;
  white-space: nowrap;
}

.nav-root > .has-mega--flyout > .mega:has(.mega-flyout--primary-only) {
  overflow: hidden;
  border-radius: 8px;
}

.header-account.has-mega {
  position: relative;
  z-index: 1;
}

.header-account.has-mega:hover,
.header-account.has-mega:focus-within {
  z-index: 50;
}

/* Cart with items: sparkle on the bag image (drop-shadow), not on the link box */
@keyframes cart-icon-golden-sparkle {
  0%,
  86%,
  100% {
    filter: none;
  }
  88% {
    filter: drop-shadow(0 0 2px rgba(255, 224, 130, 0.95))
      drop-shadow(0 0 8px rgba(255, 200, 70, 0.65))
      drop-shadow(0 0 16px rgba(230, 165, 45, 0.35));
  }
  91% {
    filter: drop-shadow(0 0 4px rgba(255, 245, 180, 0.9))
      drop-shadow(0 0 12px rgba(255, 210, 100, 0.5))
      drop-shadow(0 0 22px rgba(240, 180, 50, 0.22));
  }
  94.5% {
    filter: drop-shadow(0 0 3px rgba(255, 220, 140, 0.5));
  }
}

@keyframes cart-icon-golden-sparkle-home {
  0%,
  86%,
  100% {
    filter: brightness(0) invert(1);
    opacity: 0.92;
  }
  88% {
    filter: brightness(0) invert(1)
      drop-shadow(0 0 3px rgba(255, 230, 150, 0.95))
      drop-shadow(0 0 10px rgba(255, 200, 80, 0.55));
    opacity: 1;
  }
  91% {
    filter: brightness(0) invert(1)
      drop-shadow(0 0 5px rgba(255, 248, 200, 0.85))
      drop-shadow(0 0 14px rgba(255, 215, 120, 0.45));
    opacity: 1;
  }
  94.5% {
    filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(255, 235, 170, 0.55));
    opacity: 0.96;
  }
}

.main-header .header-cart.header-cart--has-items > a.icon-link {
  border-radius: 999px;
}

.main-header .header-cart.header-cart--has-items > a.icon-link .icon-link__img {
  width: 1.52rem;
  height: 1.52rem;
  transition: width 0.35s ease, height 0.35s ease;
  animation: cart-icon-golden-sparkle 6.5s ease-in-out infinite;
}

body.page-home .main-header:not(.main-header--scrolled) .header-cart.header-cart--has-items > a.icon-link .icon-link__img {
  animation: cart-icon-golden-sparkle-home 6.5s ease-in-out infinite;
}

.header-cart.has-mega {
  position: relative;
  z-index: 1;
}

.header-cart.has-mega:hover,
.header-cart.has-mega:focus-within {
  z-index: 50;
}

.header-cart .mega.mega--cart-dropdown {
  left: auto;
  right: 0;
  width: 15.5rem;
  max-width: min(15.5rem, calc(100vw - 0.75rem));
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.header-cart .mega.mega--cart-dropdown .cart-preview__lead {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  line-height: 1.45;
}

.header-cart .mega.mega--cart-dropdown .cart-preview__lead.muted {
  color: var(--muted);
}

.header-cart .mega.mega--cart-dropdown .cart-preview__cta {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.header-cart .mega.mega--cart-dropdown .cart-preview__cta:hover {
  background: #f5f5f5;
}

.header-account .mega.mega--account-dropdown {
  left: auto;
  right: 0;
  width: 14.25rem;
  max-width: min(14.25rem, calc(100vw - 0.75rem));
  padding: 0.65rem 0;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.header-account .mega-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0.6rem;
  gap: 0;
  grid-template-columns: 1fr;
}

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  padding: 1.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 0.18s ease,
    transform 0.22s ease,
    visibility 0.18s;
  z-index: 30;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.25rem 2rem;
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.mega-col strong {
  display: block;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

.mega-col a {
  color: var(--muted);
  text-decoration: none;
  display: block;
  padding: 0.2rem 0;
}

.mega-col a:hover {
  color: var(--text);
  text-decoration: underline;
}

.mega--flyout {
  padding: 0;
}

.mega-flyout {
  position: relative;
  display: flex;
  min-height: 14rem;
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.mega-flyout__primary {
  list-style: none;
  margin: 0;
  padding: 0.65rem 0;
  width: min(14rem, 34vw);
  flex-shrink: 0;
  border-right: 1px solid var(--border);
}

/* Desktop nav: primary list only as wide as its text + chevron */
.nav-root > .has-mega--flyout .mega-flyout:not(.mega-flyout--primary-only) .mega-flyout__primary {
  width: max-content;
  min-width: 0;
  max-width: min(17rem, 78vw);
  border-right: none;
}

.mega-flyout__primary > .mega-flyout-item {
  border-bottom: 1px solid var(--border);
}

.mega-flyout__primary > .mega-flyout-item:last-child {
  border-bottom: none;
}

.mega-flyout-item {
  position: static;
}

.nav-root > .has-mega--flyout .mega-flyout:not(.mega-flyout--primary-only) .mega-flyout-item {
  position: relative;
}

.mega-flyout__hit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 1rem 0.45rem 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
}

.mega-flyout-item:not(.mega-flyout-item--leaf) .mega-flyout__hit::after {
  content: "›";
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

.mega-flyout-item--leaf .mega-flyout__hit {
  font-weight: 600;
  color: var(--text);
}

.mega-flyout-item--leaf .mega-flyout__hit:hover {
  color: var(--text);
}

.mega-flyout-item:hover > .mega-flyout__hit,
.mega-flyout-item:focus-within > .mega-flyout__hit {
  background: #f0f0f0;
}

.mega-flyout__sub {
  display: none;
  position: absolute;
  left: min(14rem, 34vw);
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 1.25rem 1rem;
  background: #fff;
  overflow-y: auto;
}

/* Sub-panel opens beside the row you hover — not a full-height empty slab */
.nav-root > .has-mega--flyout .mega-flyout:not(.mega-flyout--primary-only) .mega-flyout__sub {
  left: 100%;
  top: 0;
  right: auto;
  bottom: auto;
  margin-left: -1px;
  width: max-content;
  min-width: 7.5rem;
  max-width: min(15rem, 72vw);
  max-height: min(22rem, 70vh);
  padding: 0.5rem 0.9rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 0 6px 6px 0;
  box-shadow: 4px 10px 22px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.mega-flyout__sub ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

.mega-flyout__sub a {
  color: var(--muted);
  text-decoration: none;
  display: block;
  padding: 0.28rem 0;
}

.mega-flyout__sub a:hover {
  color: var(--text);
  text-decoration: underline;
}

.mega-flyout-item:hover .mega-flyout__sub,
.mega-flyout-item:focus-within .mega-flyout__sub {
  display: block;
}

.mega--flyout.mega--compact .mega-flyout {
  min-height: 10rem;
}

.mega--flyout.mega--compact .mega-flyout__primary {
  width: min(12rem, 40vw);
}

.mega--flyout.mega--compact .mega-flyout__sub {
  left: min(12rem, 40vw);
}

.nav-root > .has-mega--flyout .mega--compact .mega-flyout:not(.mega-flyout--primary-only) {
  min-height: 0;
}

.nav-root > .has-mega--flyout .mega--compact .mega-flyout__primary {
  width: max-content;
  min-width: 0;
  max-width: min(17rem, 78vw);
  border-right: none;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.mobile-drawer[hidden] {
  display: none !important;
}

.mobile-drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(100%, 22rem);
  background: #fff;
  overflow-y: auto;
  padding: 1rem;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
}

.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__list > li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav__list > li > a,
.mobile-nav__list .accordion-trigger {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.85rem 0;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
}

.mobile-nav__list .accordion-panel {
  padding: 0 0 0.75rem 0.75rem;
}

.mobile-nav__list .accordion-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__list .accordion-panel a {
  display: block;
  padding: 0.4rem 0;
  color: var(--muted);
  text-decoration: none;
}

.mobile-back {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 380px);
  background: #fff;
  z-index: 90;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

.panel[hidden] {
  display: none !important;
}

.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.panel__body {
  padding: 1rem;
  overflow-y: auto;
}

.btn-text {
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--accent);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
}

.muted {
  color: var(--muted);
}

.hero-video-wrap {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: 100%;
  background: #111;
  aspect-ratio: 16 / 9;
  max-height: min(85vh, 900px);
}

@media (max-width: 767px) {
  .hero-video-wrap {
    aspect-ratio: 9 / 16;
    max-height: min(75vh, 720px);
  }
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero-video-wrap {
    aspect-ratio: 21 / 9;
    min-height: 12rem;
    background: linear-gradient(135deg, #2a2a2a, #111);
  }
}

.hero-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}

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

.hero-tile {
  position: relative;
  min-height: 280px;
  background: #ddd;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.hero-tile--a {
  background: linear-gradient(135deg, #5c5c5c, #2a2a2a);
}
.hero-tile--b {
  background: linear-gradient(135deg, #8b7355, #4a3f35);
}
.hero-tile--c {
  background: linear-gradient(135deg, #6b7c8c, #3d4852);
}
.hero-tile--d {
  background: linear-gradient(135deg, #7d6b8b, #453d52);
}

.hero-tile--has-video {
  overflow: hidden;
  isolation: isolate;
  padding: 0;
}

.hero-tile__video-row {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: row;
  gap: 0;
  background: #0f0f0f;
}

.hero-tile__video-cell {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.hero-tile__strip-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-tile__video-cell:nth-child(1) .hero-tile__strip-video {
  object-position: 18% center;
}

.hero-tile__video-cell:nth-child(4) .hero-tile__strip-video {
  object-position: 82% center;
}

.hero-tile__video-cell:nth-child(5) .hero-tile__strip-video {
  object-position: center 28%;
}

.hero-tile__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

.hero-tile__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: 1.5rem;
}

.hero-tile .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.25rem;
}

.hero-tile h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.hero-cta {
  display: inline-block;
  align-self: flex-start;
  padding: 0.5rem 1rem;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.intro-block {
  padding: 3rem 0;
}

.intro-block h2 {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: 0.06em;
  margin: 0 0 1.5rem;
}

.intro-block p {
  max-width: 52rem;
  margin: 0 auto 1rem;
  color: var(--muted);
}

.footer-newsletter {
  background: #f7f7f7;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-newsletter__inner {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .footer-newsletter__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin: 0 0 0.25rem;
}

.newsletter-form__row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  font: inherit;
}

.newsletter-form button[type="submit"] {
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: #fff;
  border: 0;
  cursor: pointer;
  font: inherit;
  white-space: nowrap;
}

.field-label {
  font-weight: 600;
  font-size: 0.96rem;
}

.checkbox-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: 0.75rem;
  font-size: 0.92rem;
}

.form-hint {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0.35rem 0 0;
}

.footer-main {
  padding: 2rem 0 1rem;
  border-top: 1px solid var(--border);
}

.footer-columns {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 1100px) {
  .footer-columns {
    grid-template-columns: 1.4fr repeat(5, 1fr);
  }
}

.footer-col h3,
.footer-col h4 {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.75rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.94rem;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--text);
  text-decoration: underline;
}

.footer-col li {
  margin-bottom: 0.35rem;
}

.social-title {
  margin-top: 1rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-links li {
  margin-bottom: 0;
}

.social-links__a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  text-decoration: none;
  background: #fff;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.social-links__a:hover {
  background: #f5f5f5;
  border-color: var(--text);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px) scale(1.08);
  text-decoration: none;
  color: var(--text);
}

.social-links__a:active {
  transform: translateY(-1px) scale(1.04);
}

.social-links__icon {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  transform-origin: center center;
  transition: transform 0.55s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.social-links__a:hover .social-links__icon {
  transform: scale(1.35) rotate(360deg);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.page-head {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.page-head h1 {
  margin: 0;
  font-size: 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.product-card {
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.product-card__media {
  aspect-ratio: 3 / 4;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-card__title {
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

.product-card__price {
  margin: 0;
  font-size: 0.9rem;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-actions .btn {
  font-size: 0.8rem;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
}

/* Add-to-cart: visible press feedback */
.product-actions .btn[data-add-to-cart],
button.btn[data-add-to-cart] {
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.product-actions .btn[data-add-to-cart]:active,
button.btn[data-add-to-cart]:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.14);
}

.pdp-layout {
  display: grid;
  gap: 2rem;
  padding: 2rem 0;
}

@media (min-width: 900px) {
  .pdp-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.pdp-media-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pdp-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #f4f4f4;
  border-radius: 0.5rem;
  overflow: hidden;
  color: var(--muted);
}

.pdp-gallery__stage {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  outline: none;
}

.pdp-gallery__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.28s ease;
}

.pdp-gallery__img--primary {
  opacity: 1;
  z-index: 1;
}

.pdp-gallery__img--secondary {
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .pdp-gallery--dual .pdp-gallery__stage:hover .pdp-gallery__img--primary {
    opacity: 0;
  }

  .pdp-gallery--dual .pdp-gallery__stage:hover .pdp-gallery__img--secondary {
    opacity: 1;
  }

  .pdp-gallery--dual.pdp-gallery--show-second .pdp-gallery__stage:hover .pdp-gallery__img--primary {
    opacity: 0;
  }

  .pdp-gallery--dual.pdp-gallery--show-second .pdp-gallery__stage:hover .pdp-gallery__img--secondary {
    opacity: 1;
  }
}

.pdp-gallery--dual.pdp-gallery--show-second .pdp-gallery__img--primary {
  opacity: 0;
}

.pdp-gallery--dual.pdp-gallery--show-second .pdp-gallery__img--secondary {
  opacity: 1;
}

.pdp-gallery__hint {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  margin: 0;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  pointer-events: none;
}

@media (hover: none), (pointer: coarse) {
  .pdp-gallery__hint--hover {
    display: none;
  }
}

.pdp-gallery__thumbs {
  display: flex;
  gap: 0.45rem;
  padding: 0.5rem 0.35rem 0.35rem;
  justify-content: center;
  align-items: center;
}

.pdp-gallery__thumb {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 0.35rem;
  cursor: pointer;
  background: #ddd center / cover no-repeat;
  transition: border-color 0.15s ease, opacity 0.15s ease;
}

.pdp-gallery__thumb.is-active {
  border-color: #1a1a1a;
}

.pdp-gallery__thumb:focus-visible {
  outline: 2px solid var(--accent, #c41e5c);
  outline-offset: 2px;
}

.pdp-video-wrap {
  border-radius: 0.5rem;
  overflow: hidden;
  background: #111;
}

.pdp-video-wrap[hidden] {
  display: none !important;
}

.pdp-video__title {
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: #1a1a1a;
}

.pdp-video__el {
  display: block;
  width: 100%;
  max-height: min(50vh, 22rem);
  background: #000;
}

.stack-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 20rem;
}

.stack-form label {
  font-weight: 600;
  font-size: 0.85rem;
}

.stack-form select,
.stack-form input {
  padding: 0.5rem;
  border: 1px solid var(--border);
  font: inherit;
}

.prose {
  max-width: 42rem;
}

.prose:has(.policy-doc--returns),
.prose:has(.policy-doc--exchanges),
.prose:has(.policy-doc--shipping),
.prose:has(.policy-doc--general),
.prose:has(.policy-doc--about),
.prose:has(.policy-doc--terms),
.prose:has(.policy-doc--privacy),
.prose:has(.policy-doc--payments) {
  max-width: 54rem;
  margin-inline: auto;
}

.prose h1 {
  margin-top: 0;
}

body[data-info-page="returns"] .page-head,
body[data-info-page="exchanges"] .page-head,
body[data-info-page="shipping"] .page-head,
body[data-info-page="general"] .page-head,
body[data-info-page="about"] .page-head,
body[data-info-page="terms"] .page-head,
body[data-info-page="privacy"] .page-head,
body[data-info-page="payments"] .page-head {
  text-align: center;
}

body[data-info-page="returns"] .page-head h1,
body[data-info-page="exchanges"] .page-head h1,
body[data-info-page="shipping"] .page-head h1,
body[data-info-page="general"] .page-head h1,
body[data-info-page="about"] .page-head h1,
body[data-info-page="terms"] .page-head h1,
body[data-info-page="privacy"] .page-head h1,
body[data-info-page="payments"] .page-head h1 {
  font-size: clamp(1.65rem, 4.2vw, 2.15rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Info / legal pages (privacy, payments, …) — όχι returns/exchanges (έχουν δικά τους h2) */
.policy-doc:not(.policy-doc--returns):not(.policy-doc--exchanges):not(.policy-doc--shipping):not(.policy-doc--payments) h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.1rem;
}

.policy-doc:not(.policy-doc--returns):not(.policy-doc--exchanges):not(.policy-doc--shipping):not(.policy-doc--payments) h2:first-of-type {
  margin-top: 0;
}

.policy-doc ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  line-height: 1.55;
}

.policy-doc p {
  margin: 0 0 0.85rem;
  line-height: 1.6;
}

.policy-doc h3 {
  margin: 1.1rem 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
}

/* Returns / exchanges: επικεφαλίδες κεντραρισμένες· σώμα κειμένου αριστερά, μικρότερο */
.policy-doc--returns,
.policy-doc--exchanges,
.policy-doc--shipping,
.policy-doc--general,
.policy-doc--terms,
.policy-doc--privacy,
.policy-doc--payments {
  max-width: 48rem;
  margin: 0 auto;
  text-align: left;
}

.policy-doc--returns h2,
.policy-doc--exchanges h2,
.policy-doc--shipping h2,
.policy-doc--general h2,
.policy-doc--terms h2,
.policy-doc--privacy h2,
.policy-doc--payments h2 {
  text-align: center;
  text-wrap: balance;
  font-size: 1.72rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
}

.policy-doc--returns h2:first-of-type,
.policy-doc--exchanges h2:first-of-type,
.policy-doc--shipping h2:first-of-type,
.policy-doc--general h2:first-of-type,
.policy-doc--terms h2:first-of-type,
.policy-doc--privacy h2:first-of-type,
.policy-doc--payments h2:first-of-type {
  margin-top: 0;
}

.policy-doc--returns h2:nth-of-type(2),
.policy-doc--exchanges h2:nth-of-type(2),
.policy-doc--shipping h2:nth-of-type(2),
.policy-doc--general h2:nth-of-type(2),
.policy-doc--terms h2:nth-of-type(2),
.policy-doc--privacy h2:nth-of-type(2),
.policy-doc--payments h2:nth-of-type(2) {
  font-size: 2.05rem;
  margin: 2.6rem 0 1.15rem;
  letter-spacing: -0.02em;
}

.policy-doc--returns h3,
.policy-doc--exchanges h3,
.policy-doc--shipping h3,
.policy-doc--general h3,
.policy-doc--terms h3,
.policy-doc--privacy h3,
.policy-doc--payments h3 {
  text-align: center;
  text-wrap: balance;
  font-size: 1.18rem;
  font-weight: 700;
  margin: 1.65rem 0 0.6rem;
  letter-spacing: 0.02em;
}

.policy-doc--returns h2.returns-doc__address-heading,
.policy-doc--exchanges h2.returns-doc__address-heading,
.policy-doc--shipping h2.returns-doc__address-heading,
.policy-doc--general h2.returns-doc__address-heading,
.policy-doc--terms h2.returns-doc__address-heading,
.policy-doc--privacy h2.returns-doc__address-heading,
.policy-doc--payments h2.returns-doc__address-heading {
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  margin-top: 2.5rem;
}

.policy-doc--returns p,
.policy-doc--exchanges p,
.policy-doc--shipping p,
.policy-doc--general p,
.policy-doc--terms p,
.policy-doc--privacy p,
.policy-doc--payments p {
  text-align: left;
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  line-height: 1.62;
}

.policy-doc--returns ul,
.policy-doc--exchanges ul,
.policy-doc--shipping ul,
.policy-doc--general ul,
.policy-doc--terms ul,
.policy-doc--privacy ul,
.policy-doc--payments ul {
  text-align: left;
  margin: 0 0 1.15rem;
  padding-left: 1.35rem;
  list-style-position: outside;
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.62;
}

.policy-doc--exchanges ol.policy-doc__steps {
  text-align: left;
  margin: 0 0 1.15rem;
  padding-left: 1.5rem;
  list-style-position: outside;
  font-size: 1.05rem;
  line-height: 1.62;
}

.policy-doc--exchanges ol.policy-doc__steps li {
  margin: 0.45rem 0;
  padding-left: 0.25rem;
}

.policy-doc--returns li,
.policy-doc--exchanges li,
.policy-doc--shipping li,
.policy-doc--general li,
.policy-doc--terms li,
.policy-doc--privacy li,
.policy-doc--payments li {
  margin: 0.4rem 0;
  padding-left: 0.35rem;
}

.policy-doc--returns a,
.policy-doc--exchanges a,
.policy-doc--shipping a,
.policy-doc--general a,
.policy-doc--terms a,
.policy-doc--privacy a,
.policy-doc--payments a {
  font-weight: 600;
}

.policy-doc--returns .returns-doc__address {
  font-weight: 600;
  margin: 0 0 0.85rem;
  line-height: 1.55;
}

.policy-doc--returns .returns-doc__brand {
  text-align: center;
  margin: 0 0 1.1rem;
}

.policy-doc--returns .returns-doc__logo {
  display: inline-block;
  max-width: min(280px, 94%);
  width: auto;
  height: auto;
  vertical-align: middle;
}

/* About us */
.policy-doc--about {
  max-width: 62rem;
  margin: 0 auto;
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 440px));
  justify-content: center;
  gap: 1.1rem;
  align-items: start;
}

.about-story-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.about-story-card__image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

.about-story-card__text-slot {
  height: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.about-story-card__text-slot:not(:empty) {
  height: auto;
  overflow: visible;
  margin-top: 0.25rem;
  color: #222;
  font-size: 1rem;
  line-height: 1.55;
}

.about-story-card__title {
  margin: 0 0 0.45rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.about-story-card__text-slot p {
  margin: 0;
}

@media (min-width: 768px) {
  .policy-doc--returns h2,
  .policy-doc--exchanges h2,
  .policy-doc--shipping h2,
  .policy-doc--general h2,
  .policy-doc--terms h2,
  .policy-doc--privacy h2,
  .policy-doc--payments h2 {
    font-size: 1.92rem;
  }

  .policy-doc--returns h2:nth-of-type(2),
  .policy-doc--exchanges h2:nth-of-type(2),
  .policy-doc--shipping h2:nth-of-type(2),
  .policy-doc--general h2:nth-of-type(2),
  .policy-doc--terms h2:nth-of-type(2),
  .policy-doc--privacy h2:nth-of-type(2),
  .policy-doc--payments h2:nth-of-type(2) {
    font-size: 2.45rem;
    margin-top: 3rem;
  }

  .policy-doc--returns p,
  .policy-doc--returns ul,
  .policy-doc--exchanges p,
  .policy-doc--exchanges ul,
  .policy-doc--shipping p,
  .policy-doc--shipping ul,
  .policy-doc--general p,
  .policy-doc--general ul,
  .policy-doc--terms p,
  .policy-doc--terms ul,
  .policy-doc--privacy p,
  .policy-doc--privacy ul,
  .policy-doc--payments p,
  .policy-doc--payments ul,
  .policy-doc--exchanges ol.policy-doc__steps {
    font-size: 1.08rem;
  }

  .policy-doc--returns h3,
  .policy-doc--exchanges h3,
  .policy-doc--shipping h3,
  .policy-doc--general h3,
  .policy-doc--terms h3,
  .policy-doc--privacy h3,
  .policy-doc--payments h3 {
    font-size: 1.22rem;
  }
}

@media (max-width: 840px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .about-story-card {
    max-width: 22rem;
    margin-inline: auto;
  }

  .about-story-card__image {
    height: 24rem;
  }
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  padding: 0.75rem 0;
  background: rgba(26, 26, 26, 0.96);
  color: #f5f5f5;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

.cookie-banner__inner {
  width: min(100% - 1.5rem, var(--container));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.cookie-banner__lead {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
}

.cookie-banner__link {
  font-size: 0.78rem;
  color: #fff;
  text-decoration: underline;
  margin-right: 0.25rem;
}

.cookie-banner__link:hover {
  color: #e8e8e8;
}

.cookie-banner__btn {
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
  cursor: pointer;
  border-radius: 4px;
}

.cookie-banner__btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.cookie-banner__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cookie-banner__btn--primary {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

.cookie-banner__btn--primary:hover {
  background: #f0f0f0;
}

@media (max-width: 520px) {
  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .cookie-banner__btn {
    flex: 1 1 auto;
    min-width: 0;
  }
}

/* Floating chat / WhatsApp (chat-widget.js) */
.chat-widget.chat-widget--merged {
  pointer-events: none;
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  opacity: 0;
}

.chat-widget {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(5.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 10040;
  font-family: inherit;
}

@media (min-width: 900px) {
  .chat-widget {
    bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  }
}

.chat-widget__fab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: min(calc(100vw - 2rem), 17rem);
  padding: 0.55rem 0.95rem 0.55rem 0.75rem;
  border: 1px solid #1a1a1a;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.chat-widget__fab:hover {
  opacity: 0.94;
}

.chat-widget__fab-icon {
  display: flex;
  flex-shrink: 0;
}

.chat-widget__fab-label {
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-widget__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.65rem);
  width: min(18.5rem, calc(100vw - 2rem));
  padding: 1rem 1.05rem 1.1rem;
  border: 1px solid var(--border, #ddd);
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.chat-widget__panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.chat-widget__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
}

.chat-widget__close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin: -0.35rem -0.35rem 0 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #333;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.chat-widget__close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.chat-widget__lead {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted, #555);
}

.chat-widget__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chat-widget__btn {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
}

.chat-widget__btn--wa {
  background: #25d366;
  border-color: #20bd5a;
  color: #fff;
}

.chat-widget__btn--wa:hover {
  filter: brightness(1.05);
}

.chat-widget__btn--live {
  background: #fff;
  border-color: #1a1a1a;
  color: #1a1a1a;
}

.chat-widget__btn--live:hover {
  background: #f5f5f5;
}

.chat-widget__cookie-hint {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted, #666);
}

/* Mellina — digital assistant (mellina-widget.js) */
.mellina-widget {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(5.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 10038;
  font-family: inherit;
  isolation: isolate;
}

/* Above cookie bar (10050) & chat FAB (10040) so header + κλείσιμο δέχονται κλικ */
.mellina-widget--panel-open {
  z-index: 10060;
}

.mellina-widget--nudge-visible {
  z-index: 10060;
}

.mellina-widget__nudge {
  position: absolute;
  /* Δέσιμο από δεξιά + λίγο inset ώστε να μη «κολλάει» στο όριο του browser */
  left: auto;
  right: 0.65rem;
  /* Επικάλυψη με το FAB ώστε το hover να μη «σπάει» στο κενό ανάμεσα */
  bottom: calc(100% - 6px);
  z-index: 0;
  max-width: min(19.5rem, calc(100vw - 2.5rem));
  pointer-events: none;
}

.mellina-widget__nudge[hidden] {
  display: none !important;
}

/* Bubble αριστερά, avatar δεξιά πάνω από το FAB (justify-end στο .mellina-widget) */
.mellina-widget__nudge-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0.45rem;
  pointer-events: auto;
}

@media (max-width: 380px) {
  .mellina-widget__nudge-inner {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .mellina-widget__nudge:not([hidden]) .mellina-widget__nudge-inner {
    animation: mellina-nudge-in 0.38s ease-out;
  }
}

@keyframes mellina-nudge-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mellina-widget__nudge-figure {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  max-width: 5.75rem;
  min-height: 5rem;
  cursor: pointer;
}

/* Αφαιρέθηκε ορατή σκίαση πίσω από το avatar — η ημιδιαφανής σιλουέτα έκανε γκριζάρισμα στις άκρες του PNG */
.mellina-widget__nudge-silhouette {
  display: none;
}

.mellina-widget__nudge-avatar {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 5.5rem;
  height: auto;
  max-height: 6.75rem;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  border: none;
  box-shadow: none;
  filter: none;
  cursor: pointer;
}

.mellina-widget__nudge-bubble {
  position: relative;
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(15rem, calc(100vw - 9rem));
  margin-bottom: 0.85rem;
  padding: 0.7rem 1.75rem 0.75rem 1.05rem;
  background: linear-gradient(165deg, #fffafc 0%, #fff5f8 45%, #fef3f6 100%);
  border: 1px solid rgba(200, 140, 158, 0.45);
  border-radius: 2rem 2.35rem 2.1rem 2.25rem / 2rem 2.1rem 2.3rem 2rem;
  box-shadow:
    -2px 6px 18px rgba(180, 100, 120, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
  cursor: pointer;
}

/* Ουρά δεξιά — ίδια παλέτα με το bubble */
.mellina-widget__nudge-bubble::before {
  content: "";
  position: absolute;
  left: auto;
  right: -11px;
  bottom: 1.15rem;
  width: 20px;
  height: 16px;
  background: linear-gradient(145deg, #fff8fb 0%, #fff2f6 100%);
  border: 1px solid rgba(200, 140, 158, 0.45);
  border-left: 0;
  border-top: 0;
  border-radius: 0 0 100% 0;
  transform: rotate(18deg);
  box-sizing: border-box;
}

.mellina-widget__nudge-text {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: 0.01em;
  color: #5c3d48;
}

.mellina-widget__nudge-dismiss {
  position: absolute;
  top: 0.2rem;
  right: 0.25rem;
  z-index: 2;
  width: 1.65rem;
  height: 1.65rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  font-size: 1.15rem;
  line-height: 1;
  color: #9a7280;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mellina-widget__nudge-dismiss:hover {
  background: rgba(200, 130, 150, 0.14);
  color: #6b4552;
}

@media (prefers-reduced-motion: reduce) {
  .mellina-widget__nudge:not([hidden]) .mellina-widget__nudge-inner {
    animation: none;
  }
}

@media (min-width: 900px) {
  .mellina-widget {
    bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  }
}

.mellina-widget__fab {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  background: #fff;
  color: #1a1a1a;
  font: inherit;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
}

.mellina-widget__fab:hover {
  background: #fafafa;
}

.mellina-widget__fab-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.mellina-widget__avatar-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

.mellina-widget__avatar-wrap--fab {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.mellina-widget--avatar-on .mellina-widget__avatar-wrap--fab {
  opacity: 1;
  pointer-events: auto;
}

.mellina-widget--avatar-on .mellina-widget__fab-letter {
  opacity: 0;
}

.mellina-widget__avatar {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.mellina-widget__avatar--fab {
  width: 3.1rem;
  height: 3.1rem;
}

.mellina-widget__avatar-wrap--panel {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  margin-right: 0.5rem;
}

.mellina-widget:not(.mellina-widget--avatar-on) .mellina-widget__avatar-wrap--panel {
  display: none;
}

.mellina-widget__avatar--panel {
  width: 3rem;
  height: 3rem;
}

.mellina-widget__head-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  flex: 1 1 auto;
  min-width: 0;
}

.mellina-widget__panel {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: calc(100% + 0.65rem);
  width: min(22rem, calc(100vw - 2rem));
  max-height: min(70vh, 32rem);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border, #ddd);
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.mellina-widget__panel[hidden] {
  display: none !important;
  pointer-events: none;
}

.mellina-widget__head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.mellina-widget__name {
  font-size: 1.05rem;
  font-weight: 700;
  flex: 0 1 auto;
}

.mellina-widget__badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  background: #1a1a1a;
  color: #fff;
  flex-shrink: 0;
}

.mellina-widget__close {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  margin-left: auto;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: #333;
  -webkit-tap-highlight-color: transparent;
}

.mellina-widget__close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.mellina-widget__intro {
  margin: 0;
  padding: 0.65rem 0.85rem 0.5rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted, #555);
}

.mellina-widget__thread {
  flex: 1 1 auto;
  min-height: 7rem;
  max-height: min(22rem, 52vh);
  overflow-y: auto;
  padding: 0.35rem 0.75rem 0.5rem;
}

.mellina-widget__msg {
  margin-bottom: 0.5rem;
  display: flex;
}

.mellina-widget__msg--user {
  justify-content: flex-end;
}

.mellina-widget__msg--bot {
  justify-content: flex-start;
}

.mellina-widget__bubble {
  max-width: 92%;
  padding: 0.45rem 0.65rem;
  border-radius: 0.65rem;
  font-size: 0.86rem;
  line-height: 1.45;
}

.mellina-widget__msg--user .mellina-widget__bubble {
  background: #1a1a1a;
  color: #fff;
  border-bottom-right-radius: 0.2rem;
}

.mellina-widget__msg--bot .mellina-widget__bubble {
  background: #f0f0f0;
  color: #1a1a1a;
  border-bottom-left-radius: 0.2rem;
}

.mellina-widget__msg--bot .mellina-widget__bubble p {
  margin: 0 0 0.4rem;
}

.mellina-widget__msg--bot .mellina-widget__bubble p:last-child {
  margin-bottom: 0;
}

.mellina-widget__msg--pending .mellina-widget__bubble {
  opacity: 0.72;
  font-style: italic;
}

.mellina-widget__msg--bot .mellina-widget__bubble a {
  font-weight: 600;
  text-decoration: underline;
}

.mellina-widget__human-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem 0.55rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mellina-widget__human-live {
  display: block;
  width: 100%;
  padding: 0.55rem 0.85rem;
  border: 1px solid #1a1a1a;
  border-radius: 999px;
  background: #fff;
  color: #1a1a1a;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

/* display:block πιο πάνω «τρώει» το native [hidden] — χωρίς αυτό το κουμπί φαίνεται ακόμα κρυμμένο από JS */
.mellina-widget__human-live[hidden],
.mellina-widget__human-wa[hidden] {
  display: none !important;
}

.mellina-widget__human-live:hover {
  background: #f5f5f5;
}

.mellina-widget__human-wa {
  display: block;
  width: 100%;
  padding: 0.55rem 0.85rem;
  border: 1px solid #20bd5a;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.mellina-widget__human-wa:hover {
  filter: brightness(1.05);
}

.mellina-widget__form {
  display: flex;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem 0.65rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mellina-widget__form input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.45rem 0.65rem;
  border: 1px solid #ccc;
  border-radius: 999px;
  font: inherit;
  font-size: 0.88rem;
}

.mellina-widget__send {
  flex-shrink: 0;
  padding: 0.45rem 0.85rem;
  border: none;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.mellina-widget__send:hover {
  opacity: 0.92;
}

/* Contact page (?p=contact) */
.prose:has(.contact-page) {
  max-width: 58rem;
  margin-inline: auto;
}

body[data-info-page="contact"] .page-head {
  text-align: center;
}

body[data-info-page="contact"] .page-head h1 {
  font-size: clamp(1.65rem, 4.2vw, 2.15rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-page__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-page__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
  }
}

.contact-page__section-title {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-page__lead {
  margin: 0 0 1.35rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text-muted, #444);
}

.contact-form__field {
  margin-bottom: 1rem;
}

.contact-form__field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border, #1a1a1a);
  border-radius: 999px;
  font: inherit;
  font-size: 1rem;
  background: #fff;
}

.contact-form__field textarea {
  border-radius: 1.1rem;
  min-height: 9rem;
  resize: vertical;
}

.contact-form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.45;
  cursor: pointer;
}

.contact-form__check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-form__check a {
  font-weight: 600;
  text-decoration: underline;
}

.contact-form__submit {
  display: inline-block;
  padding: 0.65rem 2.25rem;
  border: none;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.contact-form__submit:hover {
  opacity: 0.92;
}

.contact-page__facts {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.contact-page__facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 1.02rem;
  line-height: 1.5;
}

.contact-page__icon {
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: #1a1a1a;
}

.contact-page__subhead {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.contact-page__subhead--eshop {
  margin-top: 1.5rem;
}

.contact-page__hours-intro {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  line-height: 1.5;
}

.contact-page__hours-body {
  margin: 0 0 0.5rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-page__map-wrap {
  margin-top: 2.75rem;
  width: 100%;
  border-radius: 0.35rem;
  overflow: hidden;
  border: 1px solid var(--border, #ddd);
  min-height: 320px;
}

.contact-page__map {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

@media (min-width: 768px) {
  .contact-page__map {
    height: 420px;
  }
}

/* Info / payments page */
.payment-methods h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.payment-methods h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.payment-methods__brands {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
}

.payment-methods__brands li {
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.payment-methods__list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  line-height: 1.6;
}

.payment-mount:empty {
  display: none;
}

.payment-mount:not(:empty) {
  margin-top: 1rem;
}

/* Cart page */
.cart-page__lines {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0 0;
  padding: 0;
}

.cart-page__row {
  display: grid;
  grid-template-columns: 5rem 1fr auto auto;
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-page__thumb {
  width: 5rem;
  aspect-ratio: 4 / 5;
  background: #f5f5f5;
  overflow: hidden;
  border-radius: 4px;
}

.cart-page__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-page__cell--main {
  min-width: 0;
}

.cart-page__title {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
}

.cart-page__price {
  font-size: 0.88rem;
  margin-top: 0.2rem;
}

.cart-page__qty-input {
  width: 3.5rem;
  padding: 0.35rem 0.4rem;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.cart-page__actions {
  justify-self: end;
}

.cart-page__actions-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
}

@media (max-width: 560px) {
  .cart-page__row {
    grid-template-columns: 4rem 1fr;
    grid-template-rows: auto auto;
  }

  .cart-page__thumb {
    width: 4rem;
    grid-row: 1 / span 2;
  }

  .cart-page__qty {
    justify-self: start;
  }

  .cart-page__actions {
    grid-column: 2;
    justify-self: start;
  }
}
