/** Shopify CDN: Minification failed

Line 633:0 Unexpected "}"

**/
.olfong-picker {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  margin-block: 16px;
}

.olfong-picker__box {
  background: #fff;
  border: 1.5px solid #111;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 14px;
}

.olfong-picker__title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

/* Collapsible dropdown (details/summary) — no hover effect. */
.olfong-picker__dd-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  list-style: none;
  margin: 0;
}
.olfong-picker__dd-summary::-webkit-details-marker { display: none; }
.olfong-picker__chevron { width: 18px; height: 18px; flex-shrink: 0; color: #C9A84C; transition: transform 0.2s ease; }
.olfong-picker__dd[open] .olfong-picker__chevron { transform: rotate(180deg); }

.olfong-picker__dd-body {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
  color: #1a1a1a;
}
.olfong-picker__note-label { display: block; font-size: 12px; font-weight: 600; color: #1a1a1a; margin: 12px 0 4px; }
/* Standalone "Séróskir" box (shown when the store is open). */
.olfong-picker__seroskir { margin-bottom: 14px; }
.olfong-picker__seroskir[hidden] { display: none; }
.olfong-picker__seroskir .olfong-picker__note-label { margin-top: 0; font-size: 14px; }
.olfong-picker__back {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 12px;
}
.olfong-picker__back .olfong-picker__checkbox { width: 19px; height: 19px; flex: 0 0 auto; margin: 0; }
/* Consent block sits on its own at the bottom of the cart (below the donation). */
.olfong-picker--consent { margin: 6px 0 0; }
.olfong-picker__note {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 13px;
  color: #1a1a1a;
  background: #fff;
  resize: vertical;
}
.olfong-picker__note:focus { outline: none; border-color: rgba(201, 168, 76, 0.7); }
.olfong-picker__note-info { font-size: 12px; color: rgba(0, 0, 0, 0.55); margin: 10px 0 0; line-height: 1.4; }

.olfong-picker__inputs {
  display: flex;
  gap: 8px;
}

.olfong-picker__input {
  flex: 1;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #1a1a1a;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  min-width: 0;
}

.olfong-picker__input:focus {
  outline: none;
  border-color: #C9A84C;
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.25);
}

.olfong-picker__hint {
  margin: 10px 0 0;
  font-size: 11px;
  color: #6b5a1a;
  min-height: 14px;
}

.olfong-picker__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.55;
  color: #1a1a1a;
  margin: 4px 0 12px;
  letter-spacing: 0.1px;
}

.olfong-picker__checkbox {
  margin-top: 2px;
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  accent-color: #C9A84C;
  cursor: pointer;
}

.olfong-picker__consent a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: #C9A84C;
  font-weight: 600;
  transition: color 0.15s ease;
}

.olfong-picker__consent a:hover {
  color: #C9A84C;
}

.olfong-picker__status {
  font-size: 14px;
  font-weight: 600;
  color: #2a6f3e;
  min-height: 18px;
  margin-bottom: 8px;
}

.olfong-picker__status.is-error {
  color: #b3132a;
}

/* Main checkout stays CLICKABLE while blocked, so the JS gate can scroll to the
   picker and show the "confirm age & terms" message instead of doing nothing. */
body.olfong-pickup-blocked #checkout,
body.olfong-pickup-blocked button[name="checkout"] {
  opacity: 0.55 !important;
  cursor: not-allowed !important;
}
/* Express/dynamic checkout buttons can't be JS-gated, so keep them disabled. */
body.olfong-pickup-blocked .shopify-payment-button,
body.olfong-pickup-blocked .additional-checkout-buttons,
body.olfong-pickup-blocked .dynamic-checkout__content {
  opacity: 0.4 !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
}

/* Prevent horizontal scroll on mobile */
@media screen and (max-width: 749px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
}

.olfong-pickup__status.is-warning {
  color: #6b5a1a;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

/* ===== Force product grid columns ===== */

/* Desktop large: 5 columns */
@media screen and (min-width: 1200px) {
  .resource-list--grid {
    --resource-list-columns-per-row: 5 !important;
    --resource-list-columns: repeat(5, minmax(0, 1fr)) !important;
    --resource-list-columns-mobile: repeat(2, minmax(0, 1fr)) !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

/* Tablet large: 4 columns */
@media screen and (min-width: 990px) and (max-width: 1199px) {
  .resource-list--grid {
    --resource-list-columns-per-row: 4 !important;
    --resource-list-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

/* Tablet: 3 columns */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .resource-list--grid {
    --resource-list-columns-per-row: 3 !important;
    --resource-list-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* Mobile: 2 columns */
@media screen and (max-width: 749px) {
  .resource-list--grid {
    --resource-list-columns-per-row: 2 !important;
    --resource-list-columns-mobile: repeat(2, minmax(0, 1fr)) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* ===== Fix body width during scroll lock ===== */
/* When the cart drawer or search modal opens, scroll lock makes body position:fixed.
   Our page-width-narrow class limits body to 1200px, which then collapses to the left.
   Override to keep full width during scroll lock so the page stays centered. */

html[scroll-lock] body {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* ===== Nicotine strength pill (centered top of product image) ===== */
.nic-pill {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.nic-pill__mg {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nic-pill__dots {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}

.nic-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.nic-pill__dot.is-on {
  background: #C9A84C;
}

/* Nicotine-free variant — gradient mint with leaf icon */
.nic-pill--free {
  background: linear-gradient(135deg, #6dd5a3, #4ea674);
  color: #14432a;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 13px;
}

.nic-pill--free svg {
  width: 12px;
  height: 12px;
}

.nic-pill__label {
  white-space: nowrap;
}

@media screen and (max-width: 749px) {
  .nic-pill {
    top: 10px;
    font-size: 10px;
    padding: 5px 10px;
    gap: 6px;
  }
  .nic-pill__dot {
    width: 5px;
    height: 5px;
  }
  .nic-pill--free svg {
    width: 12px;
    height: 12px;
  }
}
/* ===== Custom product card meta badges (Ölföng) ===== */

.product-card,
.card-wrapper,
[class*="product-card"],
[class*="card--product"] {
  position: relative;
}

/* Size + ABV stacked badges (top-left over image) */
.olfong-info-badges {
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 8;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}
.olfong-info-badge {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 7px;
  border-radius: 0;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

/* Vivino rating circle (top-right over image) */
.olfong-rating-circle-wrapper {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 8;
  pointer-events: none;
}
.olfong-rating-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #b3132a;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.olfong-rating-value { font-size: 15px; font-weight: 700; }
.olfong-rating-label { font-size: 7px; font-weight: 600; opacity: 0.75; margin-top: 2px; letter-spacing: 0.5px; }

/* Nicotine strength pill (centered top of image) */
.nic-pill {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.nic-pill__mg { font-weight: 500; letter-spacing: 0.02em; }
.nic-pill__dots { display: inline-flex; gap: 3px; align-items: center; }
.nic-pill__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, 0.22); }
.nic-pill__dot.is-on { background: #C9A84C; }

/* Nicotine-free variant — gradient mint with leaf */
.nic-pill--free {
  background: linear-gradient(135deg, #6dd5a3, #4ea674);
  color: #14432a;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 13px;
}
.nic-pill--free svg { width: 14px; height: 14px; flex-shrink: 0; }
.nic-pill__label { white-space: nowrap; }

@media screen and (max-width: 749px) {
  .olfong-info-badges { top: 8px; gap: 4px; }
  .olfong-info-badge { font-size: 9px; padding: 2px 6px; }
  .olfong-rating-circle-wrapper { top: 8px; right: 8px; }
  .olfong-rating-circle { width: 38px; height: 38px; }
  .olfong-rating-value { font-size: 13px; }
  .olfong-rating-label { font-size: 6px; }
  .nic-pill { top: 10px; font-size: 10px; padding: 5px 10px; gap: 6px; }
  .nic-pill__dot { width: 5px; height: 5px; }
  .nic-pill--free svg { width: 13px; height: 13px; }
}
/* ===== Organic / Lífrænt tag — sits inside image gallery, bottom-left ===== */
.olfong-organic-tag {
  position: absolute;
  bottom: 12px;
  left: 0;
  z-index: 8;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #2d6a4f;
  color: #fff;
  padding: 5px 16px 5px 10px;
  clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.olfong-organic-tag svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

@media screen and (max-width: 749px) {
  .olfong-organic-tag {
    bottom: 10px;
    font-size: 9px;
    padding: 4px 14px 4px 8px;
    gap: 3px;
  }
  .olfong-organic-tag svg {
    width: 10px;
    height: 10px;
  }
}
/* ===== Filter tabs ===== */
.filter-tabs-wrapper {
  display: block !important;
  width: 100% !important;
  max-width: 1200px;
  margin: 12px auto 20px;
  padding: 0 24px;
  clear: both;
  flex-basis: 100% !important;
  grid-column: 1 / -1 !important;
  box-sizing: border-box;
}
.filter-tabs-wrapper::before {
  content: '';
  display: block;
  width: 100%;
  flex-basis: 100%;
  grid-column: 1 / -1;
  height: 0;
}
.filter-tabs {
  display: flex;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 400;
  color: #777;
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: inherit;
  transition: color 0.2s ease;
}
.filter-tab:hover { color: #1a1a1a; }
.filter-tab.is-active { color: #1a1a1a; font-weight: 500; }
.filter-tab.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #C9A84C;
}
.filter-tab.is-loading { opacity: 0.5; pointer-events: none; }
.filter-tabs-loading-target { opacity: 0.4; pointer-events: none; transition: opacity 0.2s ease; }

@media screen and (max-width: 749px) {
  .filter-tabs-wrapper { padding: 0 12px; margin: 2px auto 12px; }
  .filter-tabs { gap: 20px; }
  .filter-tab { font-size: 13px; padding: 12px 0; }
}

/* ===== WhatsApp floating button ===== */
.olfong-whatsapp-fab {
  position: fixed;
  bottom: 22px;
  /* Align to the right edge of the 1200px content area on wide screens,
     and 22px from the viewport edge on narrower ones. */
  right: max(22px, calc(50vw - 600px + 22px));
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.olfong-whatsapp-fab:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.olfong-whatsapp-fab:active {
  transform: translateY(0);
}

.olfong-whatsapp-fab svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  display: block;
}

/* Optional tooltip on hover */
.olfong-whatsapp-fab::before {
  content: 'Sendu okkur skilaboð';
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.olfong-whatsapp-fab:hover::before {
  opacity: 1;
}

@media screen and (max-width: 749px) {
  .olfong-whatsapp-fab {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .olfong-whatsapp-fab svg {
    width: 27px;
    height: 27px;
  }
  /* Hide tooltip on mobile */
  .olfong-whatsapp-fab::before {
    display: none;
  }
}

/* ── White background behind every PRODUCT photo ─────────────────────────────
   Product bottles/cans are shot on white; a "contain" fit otherwise letterboxes
   onto the section's scheme colour (grey on non-white schemes). Force white on
   the media wrappers only — never on lifestyle/banner/collection/overlay art. */
.product-media-container,
.product-media,
.product-media__image {
  background-color: #fff;
}
/* Search + recommendation product cards (resource-card), excluding lifestyle
   overlay cards and collection thumbnails. */
.resource-card[data-resource-type='product']:not(.resource-card--overlay) .resource-card__media,
.resource-card[data-resource-type='product']:not(.resource-card--overlay) .resource-card__image {
  background-color: #fff;
}
/* Don't repaint intentional grey placeholders (no image yet). */
.resource-card__image-placeholder,
.product-card-gallery__title-placeholder {
  background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5)) !important;
}
}