/** Shopify CDN: Minification failed

Line 3868:0 Unexpected "{"
Line 3868:1 Expected identifier but found "%"
Line 3868:20 Expected identifier but found whitespace
Line 3868:62 Unexpected "/"
Line 3869:113 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:cart (INDEX:3) */
.cart-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--color-border);
}

.cart-page__header {
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 52px var(--content-pad) 40px;
  border-bottom: 1px solid var(--color-border);
}

.cart-page__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--color-fg);
  letter-spacing: -0.02em;
  margin: 0;
}

.cart-page__count {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  text-transform: uppercase;
  margin: 0;
}

.cart-page__empty {
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 100px var(--content-pad);
  flex: 1;
  text-align: center;
}

.cart-page__empty-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-muted);
  margin: 0;
}

.cart-page__form {
  flex: 1;
}

.cart-page__body {
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  padding-inline: var(--content-pad);
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: start;
}

/* ── Cart items ── */
.cart-page__items {
  border-right: 1px solid var(--color-border);
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item__media {
  display: block;
  background: var(--color-card);
  aspect-ratio: 3/4;
  overflow: hidden;
}

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

.cart-item__image--placeholder {
  width: 100%;
  height: 100%;
}

.cart-item__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.cart-item__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-fg);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.cart-item__title:hover {
  color: var(--color-fg);
}

.cart-item__variant {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--color-muted);
  margin: 0;
  letter-spacing: 0.04em;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.cart-item__qty-label {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.cart-item__qty-input {
  width: 52px;
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  text-align: center;
  border-radius: var(--radius);
}

.cart-item__remove {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
  width: fit-content;
}

.cart-item__remove:hover {
  color: var(--color-fg);
}

.cart-item__price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-fg);
  margin: 0;
  padding-top: 4px;
  white-space: nowrap;
}

/* ── Summary ── */
.cart-page__summary {
  position: sticky;
  top: 80px;
}

.cart-summary {
  padding: 40px 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-muted);
}

.cart-summary__row--total {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-fg);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.cart-summary__row--discount {
  color: var(--color-accent);
}

.cart-summary__shipping {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}

.cart-summary__checkout {
  width: 100%;
  justify-content: center;
  padding: 16px;
  background: var(--color-btn-bg);
  border-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  font-size: 0.85rem;
  margin-top: 8px;
}

.cart-summary__checkout:hover {
  background: transparent;
  color: var(--color-btn-bg);
}

.cart-summary__update {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0;
  text-align: center;
  transition: color var(--transition);
}

.cart-summary__update:hover {
  color: var(--color-fg);
}

@media (max-width: 900px) {
  .cart-page__body {
    grid-template-columns: 1fr;
  }
  .cart-page__items {
    border-right: none;
  }
  .cart-page__summary {
    position: static;
    border-top: 1px solid var(--color-border);
  }
}

/* ── Gavepakke ── */
.cart-item[data-handle="gavepakke"] { display: none; }

.cart-gift {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  margin-top: 4px;
}

.cart-gift__toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: center;
  cursor: pointer;
}

.cart-gift__checkbox {
  grid-row: span 2;
  width: 16px;
  height: 16px;
  accent-color: var(--color-fg);
  cursor: pointer;
}

.cart-gift__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-fg);
}

.cart-gift__sub {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--color-muted);
}

.cart-gift__message-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.cart-gift__message-wrap.is-open {
  grid-template-rows: 1fr;
}

.cart-gift__message-wrap > textarea {
  overflow: hidden;
}

.cart-gift__message {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  border-radius: var(--radius);
  resize: vertical;
  min-height: 72px;
}

.cart-gift__message::placeholder {
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .cart-page__header {
    padding: 36px 16px 28px;
  }
  .cart-page__body {
    padding-inline: 16px;
  }
  .cart-item {
    grid-template-columns: 80px 1fr;
    padding: 20px 0;
    gap: 16px;
  }
  .cart-item__price {
    grid-column: 2;
    padding-top: 0;
  }
  .cart-item__title {
    font-size: 16px;
  }
  .cart-item__qty-input {
    font-size: 16px;
    min-height: 44px;
  }
  .cart-item__remove {
    font-size: 13px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .cart-summary {
    padding: 28px 0 40px;
  }
  .cart-summary__checkout {
    min-height: 52px;
    font-size: 14px;
  }
  .cart-summary__update {
    min-height: 44px;
    font-size: 13px;
  }
  .cart-gift__label {
    font-size: 15px;
  }
  .cart-gift__message {
    font-size: 16px;
  }
}
/* END_SECTION:cart */

/* START_SECTION:collection (INDEX:4) */
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:5) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:custom-section (INDEX:6) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:footer (INDEX:7) */
.site-footer {
  background: var(--color-fg);
  color: rgba(250, 250, 250, 0.7);
  font-family: var(--font-body);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.site-footer__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-inline: var(--content-pad);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(250, 250, 250, 0.07);
}

.site-footer__col {
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Footer logo */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-logo__dots {
  height: 56px;
  width: auto;
  display: block;
  align-self: flex-start;
  margin-top: -2px;
}

.footer-logo__text {
  height: 46px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-logo__name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 300;
  font-style: normal;
  letter-spacing: -0.01em;
  color: #FAFAFA;
}

.footer-address {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(250, 250, 250, 0.6);
  margin: 0;
}

.footer-hours {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(250, 250, 250, 0.5);
  margin: 0;
}

.footer-email {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(250, 250, 250, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-email:hover {
  color: #FAFAFA;
}

.footer-instagram {
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-col__heading {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.3);
  margin: 0;
}

.footer-col__heading--sister {
  margin-top: 24px;
}

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

.footer-links li {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(250, 250, 250, 0.6);
}

.footer-links a {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(250, 250, 250, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #FAFAFA;
}

.site-footer__bottom {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 28px var(--content-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copyright {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(250, 250, 250, 0.25);
  margin: 0;
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-payments svg {
  height: 22px;
  width: auto;
  opacity: 0.35;
}

@media (max-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-inline: 16px;
  }
  .site-footer__col {
    padding: 36px 0;
    border-bottom: 1px solid rgba(250, 250, 250, 0.07);
  }
  .site-footer__col:last-child {
    border-bottom: none;
  }
  .footer-links a {
    font-size: 16px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .footer-links {
    gap: 4px;
  }
  .footer-email {
    font-size: 16px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .footer-instagram {
    min-height: 44px;
  }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px;
  }
}
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:8) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background: var(--color-bg);
}

.site-header--transparent {
  position: fixed;
  left: 0;
  background: transparent;
  transition: background 0.3s ease;
}

.site-header--transparent.is-scrolled {
  background: var(--color-bg);
}

.header-main__inner {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 0;
  gap: 32px;
  padding-inline: var(--content-pad);
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  justify-self: start;
}

.header-logo__dots {
  height: 56px;
  width: auto;
  display: block;
  align-self: flex-start;
  margin-top: -2px;
}

.header-logo__text {
  height: 46px;
  width: auto;
  display: block;
}

.header-logo__name {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  color: var(--color-fg);
  white-space: nowrap;
  line-height: 1;
}

/* Navigation */
.header-nav {
  justify-self: center;
}

.header-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.header-nav__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-muted);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.header-nav__link:hover { color: var(--color-fg); }

.header-nav__link--accent {
  color: var(--color-accent);
  text-decoration: underline;
}

.header-nav__link--accent:hover {
  color: var(--color-accent);
  text-decoration: underline;
  opacity: 0.7;
}

.header-nav__link--accent-yellow {
  color: #D9A521;
  text-decoration: underline;
}

.header-nav__link--accent-yellow:hover {
  color: #D9A521;
  text-decoration: underline;
  opacity: 0.7;
}

/* Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-self: end;
}

.header-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s ease;
  text-decoration: none;
}

.header-icon:hover { color: var(--color-fg); }

.header-icon__badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--color-fg);
  color: #fff;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-burger { display: none; }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 8px 24px 40px;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__list {
  list-style: none;
}

.mobile-menu__list a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 300;
  text-decoration: none;
  color: var(--color-fg);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
  letter-spacing: -0.01em;
}

.mobile-menu__list a:hover { color: var(--color-fg); }
.mobile-menu__accent { color: var(--color-accent) !important; }
.mobile-menu__accent-yellow { color: #D9A521 !important; }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-burger { display: flex; }
  .header-main__inner { grid-template-columns: 1fr auto; }
}

@media (max-width: 768px) {
  .header-main__inner {
    height: 64px;
    padding-inline: 16px;
    gap: 12px;
  }
  .header-logo__dots {
    height: 40px;
  }
  .header-logo__text {
    height: 32px;
  }
  .header-logo__name {
    font-size: 17px;
  }
  .header-icon {
    padding: 12px 8px;
    min-width: 44px;
    min-height: 44px;
  }
  .header-burger {
    min-width: 44px;
    min-height: 44px;
  }
  .mobile-menu {
    padding: 8px 16px 40px;
  }
  .mobile-menu__list a {
    padding: 16px 0;
    font-size: 22px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .mobile-menu__accent {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .mobile-menu__accent-yellow {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

.site-header--transparent:not(.is-scrolled) .header-nav__link {
  color: rgba(250, 250, 250, 0.7);
}
.site-header--transparent:not(.is-scrolled) .header-nav__link:hover {
  color: #FAFAFA;
}
.site-header--transparent:not(.is-scrolled) .header-nav__link--accent {
  color: rgba(250, 250, 250, 0.9);
}
.site-header--transparent:not(.is-scrolled) .header-nav__link--accent-yellow {
  color: rgba(250, 250, 250, 0.9);
}
.site-header--transparent:not(.is-scrolled) .header-icon {
  color: rgba(250, 250, 250, 0.7);
}
.site-header--transparent:not(.is-scrolled) .header-icon:hover {
  color: #FAFAFA;
}
.site-header--transparent:not(.is-scrolled) .header-logo__text {
  filter: brightness(0) invert(1);
}
.site-header--transparent:not(.is-scrolled) .header-logo__name {
  color: #FAFAFA;
}
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:9) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:main-404 (INDEX:10) */
.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  border-bottom: 1px solid var(--color-border);
}

.not-found__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 480px;
}

.not-found__code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 16vw, 12rem);
  font-weight: 300;
  color: var(--color-border);
  line-height: 1;
  letter-spacing: -0.04em;
}

.not-found__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--color-fg);
  letter-spacing: -0.02em;
  margin: 0;
}

.not-found__text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-muted);
  margin: 0;
  max-width: 38ch;
}
/* END_SECTION:main-404 */

/* START_SECTION:main-collection (INDEX:11) */
.collection-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
  }

  .collection-page__header {
    border-bottom: 1px solid var(--color-border);
  }
  .collection-page__header-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 52px var(--content-pad) 40px;
  }
  /* Zalto: logo ude i højre side, lodret på linje med titel + underrubrik */
  .collection-page__header-inner--zalto {
    position: relative;
  }
  .collection-page__logo {
    position: absolute;
    right: var(--content-pad);
    top: 50%;
    transform: translateY(-50%);
    height: 52px;
    width: auto;
    display: block;
  }
  .collection-page__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--color-fg);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.05;
  }
  .collection-page__desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-muted);
    margin: 8px 0 0;
    line-height: 1.5;
  }
  .collection-page__intro {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--color-muted);
    max-width: 500px;
    margin: 16px 0 0;
    line-height: 1.6;
  }
  .collection-page__back {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: var(--color-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color var(--transition);
  }
  .collection-page__back:hover {
    color: var(--color-fg);
  }

  /* ── Wine type pills ── */
  .wine-pills {
    border-bottom: 1px solid var(--color-border);
  }
  .wine-pills__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 20px var(--content-pad);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .wine-pill {
    display: inline-block;
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-muted);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
  }
  .wine-pill:hover {
    border-color: var(--color-fg);
    color: var(--color-fg);
  }
  .wine-pill--active {
    background: var(--color-fg);
    color: var(--color-bg);
    border-color: var(--color-fg);
  }
  .wine-pill--active:hover {
    opacity: 0.9;
    border-color: var(--color-fg);
    color: var(--color-bg);
  }
  .wine-pill--disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
  }

  /* ── Toolbar + filter dropdowns ── */
  .collection-toolbar {
    border-bottom: 1px solid var(--color-border);
  }
  .collection-toolbar__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 12px var(--content-pad);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .collection-toolbar__spacer {
    flex: 1;
    min-width: 24px;
  }
  .filter-dropdown {
    position: relative;
  }
  .filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--color-muted);
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    cursor: pointer;
    white-space: nowrap;
    transition: border-color var(--transition), color var(--transition);
    list-style: none;
    user-select: none;
  }
  .filter-btn::-webkit-details-marker { display: none; }
  .filter-btn:hover {
    border-color: var(--color-muted);
    color: var(--color-fg);
  }
  .filter-btn--active {
    border-color: var(--color-fg);
    color: var(--color-fg);
  }
  .filter-dropdown__panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    min-width: 200px;
    max-height: 320px;
    overflow-y: auto;
    z-index: 50;
    box-shadow: 0 4px 16px rgba(44, 44, 44, 0.08);
  }
  .filter-dropdown__panel--right {
    left: auto;
    right: 0;
  }
  .filter-dropdown__panel--tall {
    max-height: 400px;
  }
  .filter-list {
    list-style: none;
    padding: 4px 0;
    margin: 0;
  }
  .filter-option {
    display: block;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-fg);
    text-decoration: none;
    transition: background-color var(--transition);
  }
  .filter-option:hover {
    background: var(--color-secondary-bg);
    color: var(--color-fg);
  }
  .filter-option--active {
    font-weight: 500;
    background: var(--color-secondary-bg);
  }
  .filter-option--muted {
    color: var(--color-muted);
    font-size: 12px;
  }
  .filter-option__count {
    color: var(--color-muted);
    font-size: 11px;
  }
  .filter-clear {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-muted);
    text-decoration: underline;
    transition: color var(--transition);
  }
  .filter-clear:hover {
    color: var(--color-fg);
  }

  /* ── Product grid + cards ── */
  .shop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 6px;
    row-gap: 30px;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 40px var(--content-pad) 64px;
    width: 100%;
  }
  /* Randomiseret/rangeret visning: hold grid skjult til JS har shufflet/rangeret, så kortene ikke ses hoppe */
  .shop-grid[data-shuffle],
  .shop-grid[data-rank] {
    opacity: 0;
  }
  .shop-grid[data-shuffle].is-shuffled,
  .shop-grid[data-rank].is-shuffled {
    opacity: 1;
    transition: opacity 0.25s ease;
  }
  .shop-grid--kasser {
    grid-template-columns: repeat(3, 1fr);
  }
  .shop-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
  }
  .shop-card__image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 0;
    background: var(--color-card);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .shop-card__image--placeholder {
    aspect-ratio: 4 / 5;
  }
  .shop-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity var(--transition);
  }
  .shop-card:hover .shop-card__image img {
    opacity: 0.88;
  }
  .shop-card__placeholder {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-muted);
    opacity: 0.3;
    user-select: none;
  }
  .shop-card__info {
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .shop-card__vendor {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-muted);
  }
  .shop-card__type {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-muted);
  }
  .shop-card__title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-fg);
    margin: 0;
    line-height: 1.35;
  }
  .shop-card__case-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted);
  }
  .shop-card__case-price {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-fg);
    margin-top: 2px;
  }
  .shop-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 2px;
    flex-wrap: wrap;
  }
  .shop-card__price {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-fg);
  }

  /* ── Vendor search ── */
  .vendor-search {
    border-bottom: 1px solid var(--color-border);
  }
  .vendor-search__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 16px var(--content-pad);
  }
  .vendor-search__input {
    width: 100%;
    max-width: 320px;
    padding: 9px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-fg);
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    outline: none;
    transition: border-color var(--transition);
  }
  .vendor-search__input::placeholder {
    color: var(--color-muted);
  }
  .vendor-search__input:focus {
    border-color: var(--color-muted);
  }

  /* ── Vendor section (producenter) ── */
  .vendor-section {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 40px var(--content-pad) 80px;
    width: 100%;
  }
  .vendor-grid__loading {
    text-align: center;
    padding: 60px 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-muted);
  }
  /* ── Vendor anchor index ── */
  .vendor-index {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 20px var(--content-pad) 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }
  .vendor-index__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-muted);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: border-color var(--transition), color var(--transition);
  }
  .vendor-index__link:hover {
    border-color: var(--color-fg);
    color: var(--color-fg);
  }

  .vendor-letter {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
    padding: 20px 0 8px;
    margin: 0;
  }
  .vendor-letter:first-child {
    padding-top: 0;
  }
  .vendor-letter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 6px;
    row-gap: 6px;
  }
  .vendor-card {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-decoration: none;
    color: inherit;
    padding: 14px 16px 12px;
    background: var(--color-card);
    transition: background-color var(--transition);
  }
  .vendor-card:hover {
    background: #E8E8E6;
  }
  .vendor-card.is-hidden {
    display: none;
  }
  .vendor-card__name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 300;
    font-style: normal;
    color: var(--color-fg);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .vendor-card__meta {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--color-muted);
  }
  .vendor-card__cta {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--color-muted);
    margin-top: 0;
    transition: color var(--transition);
  }
  .vendor-card__cta-arrow {
    color: var(--color-fg);
  }
  .vendor-card:hover .vendor-card__cta {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
  }
  .vendor-no-results {
    text-align: center;
    padding: 48px 0;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-muted);
    display: none;
  }

  /* ── Pagination ── */
  .collection-page__pagination {
    padding: 16px var(--content-pad);
    margin-top: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
  .collection-page__pagination a,
  .collection-page__pagination span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    padding: 8px 4px;
    border: none;
    background: none;
    text-decoration: none;
    color: var(--color-muted);
    transition: color var(--transition);
  }
  .collection-page__pagination a:hover {
    color: var(--color-fg);
    background: none;
  }
  .collection-page__pagination .current {
    color: var(--color-fg);
    background: none;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }
  .collection-page__pagination .disabled,
  .collection-page__pagination span.prev,
  .collection-page__pagination span.next {
    opacity: 0.3;
    pointer-events: none;
  }

  /* ── Empty state ── */
  .collection-page__empty {
    padding: 80px 48px;
    text-align: center;
    color: var(--color-muted);
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .collection-page__empty-reset {
    font-size: 13px;
    color: var(--color-muted);
    transition: color var(--transition);
  }
  .collection-page__empty-reset:hover {
    color: var(--color-fg);
  }

  /* ── Responsive ── */
  @media (max-width: 1024px) {
    .vendor-letter-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  /* Faste kolonner for produkt-grid'et: 4-up fra 750px, 2-up under 750px (ingen 3-up mellemtilstand).
     :not(--kasser) sikrer at vinkasse-grid'et er uroert. */
  @media (max-width: 749px) {
    .shop-grid:not(.shop-grid--kasser) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 768px) {
    .collection-page__header-inner {
      padding: 36px 16px 28px;
    }
    .collection-page__title {
      font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    /* Zalto: logo flyder under underrubrikken, centreret — ikke maset ind i højre side */
    .collection-page__logo {
      position: static;
      transform: none;
      height: 40px;
      margin: 20px auto 0;
    }
    .collection-page__back {
      font-size: 14px;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
    }

    /* Pills: horizontal scroll, no wrap */
    .wine-pills__inner {
      padding: 14px 16px;
      gap: 6px;
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .wine-pills__inner::-webkit-scrollbar {
      display: none;
    }
    .wine-pill {
      padding: 8px 16px;
      font-size: 12px;
      flex-shrink: 0;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
    }

    /* Toolbar */
    .collection-toolbar__inner {
      padding: 10px 16px;
      gap: 8px;
    }
    .filter-btn {
      min-height: 44px;
      padding: 10px 14px;
      font-size: 13px;
    }
    .filter-dropdown__panel {
      position: fixed;
      top: auto;
      bottom: 0;
      left: 0;
      right: 0;
      max-height: 60vh;
      border-radius: 12px 12px 0 0;
      min-width: auto;
      z-index: 200;
    }
    .filter-dropdown__panel--right {
      left: 0;
      right: 0;
    }
    .filter-option {
      padding: 14px 16px;
      font-size: 15px;
      min-height: 44px;
    }
    .filter-clear {
      font-size: 13px;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
    }

    /* Product grid mobil-spacing (kolonneantal snapper ved 749px, se ovenfor) */
    .shop-grid {
      column-gap: 6px;
      row-gap: 24px;
      padding: 24px 16px 48px;
    }
    .shop-card__vendor {
      font-size: 10px;
    }
    .shop-card__title {
      font-size: 13px;
    }
    .shop-card__case-price {
      font-size: 14px;
    }
    /* Vinkasser: 1 column on mobile */
    .shop-grid--kasser {
      grid-template-columns: 1fr;
    }

    /* Producenter */
    .vendor-index {
      padding: 16px 16px 0;
    }
    .vendor-index__link {
      min-width: 44px;
      min-height: 44px;
    }
    .vendor-search__inner {
      padding: 14px 16px;
    }
    .vendor-search__input {
      max-width: 100%;
      font-size: 16px;
      min-height: 44px;
    }
    .vendor-section {
      padding: 28px 16px 48px;
    }
    .vendor-letter-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .vendor-card {
      padding: 14px 16px 12px;
    }
    .vendor-letter {
      padding: 16px 0 6px;
    }

    /* Pagination */
    .collection-page__pagination {
      padding: 16px 16px;
      margin-top: 32px;
      gap: 4px;
    }
    .collection-page__pagination a,
    .collection-page__pagination span {
      min-width: 44px;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
    }
  }
/* END_SECTION:main-collection */

/* START_SECTION:main-index (INDEX:12) */
.homepage {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.hp-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #1A1A1A;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hp-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hp-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hp-hero__slide.is-active {
  opacity: 1;
}

.hp-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  z-index: 1;
}

.hp-hero__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hp-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 300;
  font-style: normal;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #FAFAFA;
  margin: 0;
}

.hp-hero__sub {
  font-family: var(--font-mono);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0;
}

.hp-hero__cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(250, 250, 250, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  margin-top: 24px;
  transition: color var(--transition);
}
.hp-hero__cta:hover {
  color: #FAFAFA;
}

@media (max-width: 768px) {
  .hp-hero {
    height: 100vh;
  }
  .hp-hero__inner {
    padding: 0 16px;
  }
  .hp-hero__heading {
    font-size: clamp(28px, 8vw, 36px);
  }
  .hp-hero__sub {
    font-size: 15px;
    max-width: 300px;
  }
  .hp-hero__cta {
    font-size: 14px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* ══════════════════════════════════
   SHOP BY CATEGORY
   ══════════════════════════════════ */
.hp-cats {
  width: 100%;
  background: var(--color-bg);
}

.hp-cats__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 60px var(--content-pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hp-cat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 28px;
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  background: var(--color-card);
  transition: background-color 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.hp-cat:not(.hp-cat--has-image) {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hp-cat:hover {
  background: #EAEAE8;
  transform: translateY(-2px);
}

.hp-cat--has-image {
  background: transparent;
}
.hp-cat--has-image:hover {
  background: transparent;
}
.hp-cat__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform var(--transition);
}
.hp-cat--has-image:hover .hp-cat__bg {
  transform: scale(1.03);
}
.hp-cat__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  z-index: 1;
  transition: background var(--transition);
}
.hp-cat--has-image:hover .hp-cat__overlay {
  background: rgba(26, 26, 26, 0.5);
}
.hp-cat--has-image .hp-cat__name {
  position: relative;
  z-index: 2;
  color: #FAFAFA;
}
.hp-cat--has-image .hp-cat__sub {
  position: relative;
  z-index: 2;
  color: rgba(250, 250, 250, 0.6);
}
.hp-cat--has-image .hp-cat__arrow {
  z-index: 2;
  color: rgba(250, 250, 250, 0.5);
}

.hp-cat__name {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-fg);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hp-cat__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-muted);
}

.hp-cat__arrow {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--color-muted);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hp-cat:hover .hp-cat__arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(3px);
}

@media (max-width: 768px) {
  .hp-cats__inner {
    grid-template-columns: 1fr;
    padding: 32px 16px;
    gap: 10px;
  }
  .hp-cat {
    padding: 24px 20px;
  }
  .hp-cat__name {
    font-size: 1.2rem;
  }
}

/* ══════════════════════════════════
   VINKASSER (compact)
   ══════════════════════════════════ */
.hp-kasser {
  width: 100%;
  background: var(--color-bg);
}

.hp-kasser__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 60px var(--content-pad);
}

.hp-section-header {
  margin-bottom: 28px;
}

.hp-section-header__sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 6px;
}

.hp-kasser__heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 300;
  font-style: normal;
  color: var(--color-fg);
  margin: 0;
  letter-spacing: -0.02em;
}

.hp-kasser__desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-muted);
  margin: 8px 0 0;
  line-height: 1.5;
}

.hp-kasser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 36px;
}

/* Shared product card (kasser) */
.hp-prod {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.hp-prod__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 3px;
  background: var(--color-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-prod__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity var(--transition);
}

.hp-prod:hover .hp-prod__image img {
  opacity: 0.88;
}

.hp-prod__placeholder {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-muted);
  opacity: 0.3;
  user-select: none;
}

.hp-prod__info {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hp-prod__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-fg);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hp-prod__price {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-muted);
}

.hp-prod__desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.45;
}

.hp-prod__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .hp-kasser__inner {
    padding: 28px 16px 36px;
  }
  .hp-kasser__grid {
    grid-template-columns: 1fr;
    column-gap: 6px;
    row-gap: 24px;
  }
}

/* ══════════════════════════════════
   UDVALGTE VINE
   ══════════════════════════════════ */
.hp-featured {
  width: 100%;
  background: var(--color-bg);
}

.hp-featured__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 60px var(--content-pad);
}

.hp-featured__heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 300;
  font-style: normal;
  color: var(--color-fg);
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}

.hp-featured__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 6px;
  row-gap: 30px;
}
/* Randomiseret karrusel: hold grid skjult til JS har blandet (undgår layout-hop) */
#featured-grid[data-shuffle] {
  opacity: 0;
}
#featured-grid[data-shuffle].is-shuffled {
  opacity: 1;
  transition: opacity 0.25s ease;
}

.hp-featured__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.hp-featured__card.is-fading-out {
  animation: featuredFadeOut 0.4s ease forwards;
}

.hp-featured__card.is-fading-in {
  animation: featuredFadeIn 0.4s ease forwards;
}

@keyframes featuredFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes featuredFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hp-featured__card-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0;
  background: var(--color-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-featured__card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity var(--transition);
}

.hp-featured__card:hover .hp-featured__card-image img {
  opacity: 0.88;
}

.hp-featured__placeholder {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--color-muted);
  opacity: 0.3;
  user-select: none;
}

.hp-featured__card-info {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hp-featured__card-vendor {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.hp-featured__card-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-fg);
  margin: 0;
  line-height: 1.35;
}

.hp-featured__card-price {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-fg);
  margin-top: 2px;
}

.hp-featured__card-case-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-top: 2px;
}

.hp-featured__carousel {
  position: relative;
}

.hp-featured__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #1A1208;
  opacity: 0.4;
  padding: 4px;
  z-index: 2;
  transition: opacity 0.2s ease;
  line-height: 0;
}

.hp-featured__arrow:hover {
  opacity: 0.8;
}

.hp-featured__arrow--prev {
  left: -48px;
}

.hp-featured__arrow--next {
  right: -48px;
}

.hp-featured__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.hp-featured__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1CCC4;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition);
}

.hp-featured__dot.is-active {
  background: #1A1208;
}

.hp-featured__footer {
  margin-top: 20px;
  text-align: center;
}

.hp-featured__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.hp-featured__link:hover {
  color: var(--color-fg);
}

@media (max-width: 1024px) {
  .hp-featured__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .hp-featured__inner { padding: 48px 16px; }
  .hp-featured__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 6px;
    row-gap: 24px;
  }
  .hp-featured__link {
    font-size: 14px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .hp-featured__arrow {
    padding: 8px;
  }
  .hp-featured__arrow--prev { left: -8px; }
  .hp-featured__arrow--next { right: -8px; }
  .hp-featured__arrow svg { width: 24px; height: 24px; }
}
/* END_SECTION:main-index */

/* START_SECTION:main-page (INDEX:13) */
.page-content {
    min-height: 60vh;
    border-bottom: 1px solid var(--color-border);
  }
  .page-content__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 64px var(--content-pad);
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .page-content__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    color: var(--color-fg);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  .page-content__rte {
    font-family: var(--font-body, sans-serif);
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-fg);
  }
  .page-content__rte h2 {
    font-family: var(--font-heading, 'Fraunces', Georgia, serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-fg);
    margin: 2em 0 0.6em;
    letter-spacing: -0.01em;
  }
  .page-content__rte h3 {
    font-family: var(--font-heading, 'Fraunces', Georgia, serif);
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--color-fg);
    margin: 1.6em 0 0.5em;
  }
  .page-content__rte p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--color-muted);
  }
  .page-content__rte a {
    color: var(--color-accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }
  .page-content__rte--gul a {
    color: var(--color-accent-yellow);
  }
  .page-content__rte ul,
  .page-content__rte ol {
    padding-left: 1.4em;
    margin-bottom: 1.2em;
    color: var(--color-muted);
  }
  .page-content__rte li {
    margin-bottom: 0.4em;
  }
  .page-content__rte strong {
    font-weight: 600;
    color: var(--color-fg);
  }
  .page-content__rte blockquote {
    border-left: 2px solid var(--color-border);
    padding-left: 24px;
    margin: 2em 0;
    font-style: normal;
    color: var(--color-muted);
  }
  .page-content__rte hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 2.5em 0;
  }
  .page-contact-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-muted);
  }
  .page-contact-block__heading {
    font-weight: 600;
    color: var(--color-fg);
    margin-bottom: 4px;
  }
  .page-contact-block a {
    color: var(--color-muted);
    text-decoration: none;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
  }
  .page-contact-block a:hover {
    color: var(--color-fg);
    text-decoration: underline;
  }
  .page-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    border-bottom: 1px solid var(--color-border);
  }
  .page-split__image {
    overflow: hidden;
  }
  .page-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
  .page-split__text {
    background: var(--color-bg);
    display: flex;
    align-items: center;
  }
  .page-split__text--gul {
    background: #F5F2EC;
  }
  .page-split__inner {
    max-width: 480px;
    padding: 64px var(--content-pad);
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  @media (max-width: 768px) {
    .page-content__inner {
      padding: 36px 16px 48px;
      gap: 28px;
    }
    .page-content__title {
      font-size: clamp(1.5rem, 6vw, 2rem);
    }
    .page-content__rte {
      font-size: 16px;
      line-height: 1.75;
    }
    .page-content__rte p {
      line-height: 1.75;
    }
    .page-split {
      grid-template-columns: 1fr;
    }
    .page-split__image {
      max-height: 50vh;
    }
    .page-split__inner {
      padding: 36px 16px 48px;
      gap: 28px;
    }
  }
/* END_SECTION:main-page */

/* START_SECTION:main-product (INDEX:14) */
.pdp {
  display: flex;
  flex-direction: column;
}

.pdp__nav {
  max-width: var(--content-max);
  width: 100%;
  margin: 0 auto;
  padding: 20px var(--content-pad) 0;
}

.pdp__back {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.pdp__back:hover { color: var(--color-fg); }

/* ── Main two-column layout ── */
.pdp__main {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 56px;
  max-width: var(--content-max);
  width: 100%;
  margin: 0 auto;
  padding: 24px var(--content-pad) 0;
  align-items: start;
}

/* ── Media column ── */
.pdp__media {
  position: sticky;
  top: 90px;
}

.pdp__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  background: var(--color-card);
}

.pdp__placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp__placeholder-letter {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: clamp(100px, 14vw, 200px);
  font-weight: 300;
  color: var(--color-fg);
  opacity: 0.06;
  user-select: none;
  line-height: 1;
}

.pdp__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.pdp__thumb {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.pdp__thumb--active,
.pdp__thumb:hover { opacity: 1; }
.pdp__thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* ── Info column ── */
.pdp__info {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  padding-bottom: 64px;
}

/* Type badge */
.pdp__type-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.pdp__type-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}

.pdp__type-name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* Vendor */
.pdp__vendor {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.pdp__vendor:hover { color: var(--color-fg); }

/* Title */
.pdp__title {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 300;
  color: var(--color-fg);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Vintage */
.pdp__vintage {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-muted);
  letter-spacing: 0.03em;
  margin-top: 8px;
}

/* Divider */
.pdp__divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 24px 0;
}

/* Bottle price */
.pdp__bottle-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.pdp__bottle-price-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-fg);
  line-height: 1;
}

.pdp__bottle-price-suffix {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-muted);
}

.pdp__bottle-discount {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}
.pdp__bottle-discount[hidden] { display: none; }

/* Single price (non-wine) */
.pdp__price-single {
  margin-bottom: 20px;
}

.pdp__price-single span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-fg);
}

/* Form */
.pdp__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Variant cards */
.pdp__variants {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pdp-vcard {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.pdp-vcard--active {
  border-color: var(--color-fg);
}

.pdp-vcard:hover:not(.pdp-vcard--active) {
  border-color: var(--color-muted);
}

.pdp-vcard__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-fg);
}

.pdp-vcard__price {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-fg);
}


/* Antal-vælger */
.pdp__qty {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  height: 44px;
  margin-bottom: 12px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
}
.pdp__qty-btn {
  width: 42px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  color: var(--color-fg);
  transition: background var(--transition), color var(--transition);
}
.pdp__qty-btn:hover {
  background: var(--color-card);
}
.pdp__qty-input {
  width: 44px;
  height: 44px;
  padding: 0;
  text-align: center;
  background: transparent;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-fg);
  -moz-appearance: textfield;
  appearance: textfield;
}
.pdp__qty-input::-webkit-outer-spin-button,
.pdp__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pdp__qty-input:focus {
  outline: none;
}
.pdp__qty--disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Add to cart */
.pdp__atc {
  width: 100%;
  padding: 18px;
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--color-btn-bg);
  border-radius: 0;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.pdp__atc:hover {
  background: transparent;
  color: var(--color-btn-bg);
}

.pdp__atc:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pdp__atc:disabled:hover {
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
}

/* Shipping note */
.pdp__shipping {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--color-muted);
  text-align: center;
  margin: 0;
}

/* Details */
.pdp__details {
  border-top: 1px solid var(--color-border);
  margin-top: 32px;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pdp__details-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.pdp__details-list {
  display: flex;
  flex-direction: column;
}

.pdp__detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}
.pdp__detail-row:last-child { border-bottom: none; }

.pdp__detail-row dt {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--color-muted);
}

.pdp__detail-row dd {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-fg);
}

/* ── Below section ── */
.pdp__below {
  max-width: var(--content-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--content-pad) 80px;
}

.pdp__desc {
  border-top: 1px solid var(--color-border);
  padding: 48px 0;
}

/* Øjeblikket-produkter: beskrivelse inline i info-kolonnen under "Læg i kurv" */
.pdp__desc--inline {
  margin-top: 24px;
  padding: 24px 0 0;
}
.pdp__desc--inline .pdp__desc-body {
  max-width: 100%;
}

.pdp__desc-body {
  max-width: 640px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-muted);
}

.pdp__desc-body p {
  max-width: 100%;
  margin: 0 0 1em;
}
.pdp__desc-body p:last-child { margin-bottom: 0; }

.pdp__producer {
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdp__producer-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.pdp__producer-name {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-fg);
  margin: 0;
  line-height: 1.2;
}

.pdp__producer-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.pdp__producer-link:hover { color: var(--color-fg); }

/* ── Lightbox ── */
.pdp__image {
  cursor: zoom-in;
}

.pdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
}

.pdp-lightbox.is-active {
  display: flex;
}

.pdp-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 1;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s ease;
}

.pdp-lightbox__close:hover {
  color: #fff;
}

.pdp-lightbox__wrap {
  overflow: hidden;
  cursor: zoom-out;
  line-height: 0;
}

.pdp-lightbox__img {
  max-height: 85vh;
  max-width: 80vw;
  display: block;
  transform-origin: center center;
  transition: transform 0.15s ease-out;
}

.pdp-lightbox__img.is-zoomed {
  transform: scale(1.8);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .pdp__nav {
    padding: 16px 16px 0;
  }
  .pdp__back {
    font-size: 14px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .pdp__main {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 16px 0;
  }
  .pdp__media {
    position: static;
  }
  .pdp__info {
    padding-top: 24px;
    padding-bottom: 40px;
  }
  .pdp__title {
    font-size: 24px;
  }
  .pdp__variants {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .pdp-vcard {
    padding: 16px;
    min-height: 44px;
  }
  .pdp__atc {
    min-height: 52px;
    font-size: 14px;
    padding: 16px;
  }
  .pdp__below {
    padding: 0 16px 48px;
  }
  .pdp__desc-body {
    font-size: 16px;
  }
  .pdp__producer-link {
    font-size: 14px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .pdp-lightbox__img {
    max-height: 80vh;
    max-width: 92vw;
  }
  .pdp-lightbox__close {
    top: 12px;
    right: 12px;
  }
}
/* END_SECTION:main-product */

/* START_SECTION:page-butik (INDEX:15) */
.butik-page {
  border-bottom: 1px solid var(--color-border);
}
.butik-page__inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 64px var(--content-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.butik-page__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-card);
}
.butik-page__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.butik-page__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 480px;
}
.butik-page__text .rte p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-muted);
  margin: 0;
}
.butik-cta-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-fg);
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.butik-cta-link:hover {
  color: var(--color-muted);
}
@media (max-width: 768px) {
  .butik-page__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 16px 48px;
  }
  .butik-page__image {
    aspect-ratio: 3 / 2;
  }
  .butik-page__text {
    max-width: none;
  }
}
/* END_SECTION:page-butik */

/* START_SECTION:page-contact (INDEX:16) */
.contact-page {
  min-height: 60vh;
  border-bottom: 1px solid var(--color-border);
}

.contact-page__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 64px var(--content-pad);
  display: flex;
  flex-direction: column;
}

.contact-page__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: normal;
  color: var(--color-fg);
  margin: 0 0 48px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.contact-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.contact-info {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-fg);
  margin: 0;
}

.contact-link {
  color: var(--color-fg);
  text-decoration: none;
  transition: text-decoration-color 0.2s ease;
  text-underline-offset: 3px;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 48px;
}

.contact-sister {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .contact-page__inner {
    padding: 36px 16px 48px;
  }
  .contact-page__title {
    margin-bottom: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }
  .contact-sister {
    margin-top: 48px;
  }
  .contact-info {
    font-size: 16px;
  }
  .contact-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}
/* END_SECTION:page-contact */

/* START_SECTION:page-erhverv (INDEX:17) */
.erhverv-page {
  border-bottom: 1px solid var(--color-border);
}
.erhverv-page__inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 64px var(--content-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.erhverv-page__image {
  overflow: hidden;
  border-radius: var(--radius);
}
.erhverv-page__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.erhverv-page__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 480px;
}
.erhverv-page__text .rte p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-muted);
  margin: 0;
}
.erh-engros-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-fg);
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.erh-engros-link:hover {
  color: var(--color-muted);
}
@media (max-width: 768px) {
  .erhverv-page__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 16px 48px;
  }
  .erhverv-page__image img {
    aspect-ratio: 3 / 2;
  }
  .erhverv-page__text {
    max-width: none;
  }
}
/* END_SECTION:page-erhverv */

/* START_SECTION:page-lille-bla (INDEX:18) */
.lille-bla-page {
  border-bottom: 1px solid var(--color-border);
}
.lille-bla-page__inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 64px var(--content-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lille-bla-page__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-card);
}
.lille-bla-page__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lille-bla-page__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 480px;
  align-self: stretch;
}
.lille-bla-page__text .rte p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-muted);
  margin: 0;
}
.lille-bla-cta-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-fg);
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.lille-bla-cta-link:hover {
  color: var(--color-muted);
}
.lille-bla-page__logo {
  display: block;
  height: 120px;
  width: auto;
  margin-top: auto;
  align-self: flex-end;
}
.lille-bla-instagram {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.lille-bla-instagram:hover {
  color: var(--color-fg);
}
/* Desktop (>=769px): centrér teksten lodret som på Butik/Erhverv.
   Logoet tages ud af flow (position: absolute) så det bliver PRÆCIS
   hvor det var — nederst til højre, bund-flugtet med hovedbilledet.
   padding-bottom holder den lange tekst fri af logoet. */
@media (min-width: 769px) {
  .lille-bla-page__text {
    position: relative;
    justify-content: center;
    padding-bottom: 152px;
  }
  .lille-bla-page__logo {
    position: absolute;
    right: 0;
    bottom: 0;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .lille-bla-page__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 16px 48px;
  }
  .lille-bla-page__image {
    aspect-ratio: 3 / 2;
  }
  .lille-bla-page__text {
    max-width: none;
  }
  .lille-bla-page__logo {
    margin-top: 0;
    align-self: center;
  }
}
/* END_SECTION:page-lille-bla */

/* START_SECTION:page-lille-gul (INDEX:19) */
.lille-gul-page {
  border-bottom: 1px solid var(--color-border);
}
.lille-gul-page__inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 64px var(--content-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lille-gul-page__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-card);
}
.lille-gul-page__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lille-gul-page__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 480px;
  align-self: stretch;
}
.lille-gul-page__text .rte p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-muted);
  margin: 0;
}
.lille-gul-cta-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-fg);
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.lille-gul-cta-link:hover {
  color: var(--color-muted);
}
.lille-gul-page__logo {
  display: block;
  height: 120px;
  width: auto;
  margin-top: auto;
  align-self: flex-end;
}
.lille-gul-instagram {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.lille-gul-instagram:hover {
  color: var(--color-fg);
}
/* Desktop (>=769px): centrér teksten lodret som på Butik/Erhverv.
   Logoet tages ud af flow (position: absolute) så det bliver PRÆCIS
   hvor det var — nederst til højre, bund-flugtet med hovedbilledet. */
@media (min-width: 769px) {
  .lille-gul-page__text {
    position: relative;
    justify-content: center;
  }
  .lille-gul-page__logo {
    position: absolute;
    right: 0;
    bottom: 0;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .lille-gul-page__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 16px 48px;
  }
  .lille-gul-page__image {
    aspect-ratio: 3 / 2;
  }
  .lille-gul-page__text {
    max-width: none;
  }
  .lille-gul-page__logo {
    margin-top: 0;
    align-self: center;
  }
}
/* END_SECTION:page-lille-gul */

/* START_SECTION:search (INDEX:23) */
.search-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
}

.search-page__field {
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: center;
  padding: 52px var(--content-pad) 40px;
}

.search-page__form {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 600px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 10px;
  transition: border-color var(--transition);
}

.search-page__form:focus-within {
  border-color: var(--color-fg);
}

.search-page__icon {
  color: var(--color-muted);
  flex-shrink: 0;
}

.search-page__input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--color-fg);
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.search-page__input::placeholder {
  color: var(--color-muted);
  opacity: 0.6;
}

/* Rent underline-look: fjern den globale fokus-boks på selve feltet (fokus vises via underline) */
.search-page__input:focus,
.search-page__input:focus-visible {
  outline: none;
}

.search-page__input::-webkit-search-decoration,
.search-page__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.search-page__meta {
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  padding: 32px var(--content-pad) 0;
}

.search-page__meta p {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0;
}

.search-page__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
  row-gap: 48px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 32px var(--content-pad) 64px;
}

.search-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.search-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 3px;
  background: var(--color-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity var(--transition);
}

.search-card:hover .search-card__image img {
  opacity: 0.88;
}

.search-card__placeholder {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--color-muted);
  opacity: 0.3;
  user-select: none;
}

.search-card__info {
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-fg);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.search-card__price {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-fg);
}

.search-card__case-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

.search-page__empty {
  padding: 80px var(--content-pad);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.search-page__empty-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 300;
  color: var(--color-fg);
  margin: 0;
}

.search-page__empty-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-muted);
  margin: 0;
}

/* ── Pagination — identisk med kollektionssiderne (main-collection.liquid).
   CSS gentages her fordi {% stylesheet %} er section-scoped på live. ── */
.collection-page__pagination {
  padding: 16px var(--content-pad);
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.collection-page__pagination a,
.collection-page__pagination span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  padding: 8px 4px;
  border: none;
  background: none;
  text-decoration: none;
  color: var(--color-muted);
  transition: color var(--transition);
}
.collection-page__pagination a:hover {
  color: var(--color-fg);
  background: none;
}
.collection-page__pagination .current {
  color: var(--color-fg);
  background: none;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
{%- comment -%} OBS: default_pagination pakker det AKTIVE prev/next-link i <span class="prev/next"><a>…</a></span>
   og udelader dem helt når de er inaktive. Derfor må span.prev/span.next IKKE deaktiveres — kun .disabled. {%- endcomment -%}
.collection-page__pagination .disabled {
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .search-page__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .collection-page__pagination {
    padding: 16px 16px;
    margin-top: 32px;
    gap: 4px;
  }
  .collection-page__pagination a,
  .collection-page__pagination span {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
  }
}

@media (max-width: 680px) {
  .search-page__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 36px;
    padding: 24px 24px 48px;
  }
}
/* END_SECTION:search */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:24) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:25) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:27) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */