/*!
 * Valgusallikad theme — 02-iterations.css
 * v1.4.2 mobile/accessibility, v1.4.3 sidebar polish, v1.4.4 EPREL link, v1.4.5 cart CTA + image safety.
 * (Source: original theme.css lines 1242–2001)
 *
 * Maintenance note: parts are concatenated in numeric order at runtime.
 * Editing this file affects only the rules originally in this epoch.
 */

/* ===== v1.4.2 Mobile, accessibility & admin polish =====
 * - Drawer-style mobile menu with backdrop and body scroll lock.
 * - Better intermediate breakpoints for product / category grids.
 * - Visible focus styles, prefers-reduced-motion handling.
 * - Sticky header offset uses a CSS variable (--vlg-header-offset).
 * - Admin: horizontally scrollable tabs on small screens, full-width
 *   submit bar, single-column field grid below the tablet breakpoint,
 *   and friendlier WP color-picker integration.
 */
:root {
  --vlg-header-offset: 96px;
}

/* Replace the unicode hamburger with a clean three-line icon. The button
 * already exists as <button class="vlg-mobile-toggle"> in header.php. */
.vlg-mobile-toggle .vlg-mobile-toggle-icon {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 16px;
}
.vlg-mobile-toggle .vlg-mobile-toggle-icon span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .22s ease, opacity .18s ease, top .22s ease;
}
.vlg-mobile-toggle .vlg-mobile-toggle-icon span:nth-child(1) { top: 0; }
.vlg-mobile-toggle .vlg-mobile-toggle-icon span:nth-child(2) { top: 7px; }
.vlg-mobile-toggle .vlg-mobile-toggle-icon span:nth-child(3) { top: 14px; }
.vlg-mobile-toggle.is-open .vlg-mobile-toggle-icon span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.vlg-mobile-toggle.is-open .vlg-mobile-toggle-icon span:nth-child(2) { opacity: 0; }
.vlg-mobile-toggle.is-open .vlg-mobile-toggle-icon span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* Mobile menu drawer + backdrop */
.vlg-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 18, 36, .55);
  backdrop-filter: blur(2px);
  z-index: 90;
  opacity: 0;
  transition: opacity .22s ease;
}
.vlg-mobile-backdrop:not([hidden]) { opacity: 1; }
.vlg-menu-open { overflow: hidden; }

/* Visible focus everywhere (does not disturb mouse users thanks to :focus-visible) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(242, 138, 0, .55);
  outline-offset: 2px;
  border-radius: 8px;
}
.vlg-search button:focus-visible,
.single_add_to_cart_button:focus-visible,
.vlg-card-cart:focus-visible {
  outline-offset: 3px;
}

/* Sticky shop sidebar uses a variable instead of magic number */
.vlg-shop-sidebar { top: calc(var(--vlg-header-offset) + 16px); }

/* Better product / category grid breakpoints */
@media (max-width: 1199px) {
  ul.products,
  .vlg-products-grid,
  .vlg-shop-products ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 899px) {
  ul.products,
  .vlg-products-grid,
  .vlg-shop-products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vlg-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  ul.products,
  .vlg-products-grid,
  .vlg-shop-products ul.products {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .vlg-category-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* Mobile-only: drawer behaviour for the main nav */
@media (max-width: 1200px) {
  :root { --vlg-header-offset: 76px; }

  .vlg-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(86vw, 360px);
    max-width: 100%;
    background: #fff;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 18px 0 50px rgba(7, 18, 36, .25);
    border: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    /* Override the earlier `display: none` rule */
    display: block !important;
    padding: 18px 0;
    -webkit-tap-highlight-color: transparent;
  }
  .vlg-nav.is-open { transform: translateX(0); }
  .vlg-nav-inner {
    width: 100%;
    padding: 8px 18px 24px;
    gap: 14px;
  }
  .vlg-category-button {
    width: 100%;
    min-width: 0;
    border-radius: 12px;
  }
  .vlg-category-dropdown {
    position: static;
    width: 100%;
    display: block;
    margin-top: 8px;
    padding: 6px;
    box-shadow: none;
    border: 1px solid var(--vlg-line);
  }
  .vlg-primary-menu {
    display: grid;
    gap: 2px;
  }
  .vlg-primary-menu > li > a {
    min-height: 48px;
    padding: 0 6px;
    border-radius: 10px;
  }
  .vlg-primary-menu > li > a:hover,
  .vlg-primary-menu > li > a:focus-visible { background: #fff5e8; }
  .vlg-primary-menu .sub-menu {
    position: static;
    display: block;
    box-shadow: none;
    border: 0;
    padding: 0 0 4px 14px;
    margin: 0 0 6px;
    background: transparent;
  }
}

/* Tablet: don't display backdrop on desktop sizes */
@media (min-width: 1201px) {
  .vlg-mobile-backdrop { display: none !important; }
  body.vlg-menu-open { overflow: visible; }
}

/* Header refinement on phones */
@media (max-width: 767px) {
  :root { --vlg-header-offset: 72px; }

  .vlg-main-header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    min-height: 68px;
  }
  .vlg-header-brand-row { gap: 10px; }
  .vlg-mobile-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .vlg-brand .custom-logo { max-height: 44px; }
  .vlg-logo-fallback { gap: 8px; }
  .vlg-logo-bulb { width: 38px; height: 38px; font-size: 19px; }
  .vlg-logo-text strong { font-size: 17px; }
  .vlg-logo-text small { font-size: 9px; }

  .vlg-header-search {
    grid-column: 1 / -1;
    order: 3;
  }
  .vlg-search { min-height: 46px; padding-left: 14px; }
  .vlg-search input[type="search"] { height: 38px; font-size: 15px; }
  .vlg-search button { padding: 8px 14px; font-size: 14px; min-height: 38px; min-width: auto; }

  .vlg-header-actions {
    gap: 6px;
  }
  .vlg-header-actions a {
    padding: 6px 4px;
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
  }
  .vlg-header-actions a span:not(.vlg-icon):not(.vlg-badge) { display: none; }
  .vlg-cart-link strong { display: none; }
  .vlg-badge { left: 22px; top: -2px; }

  .vlg-topbar-inner { gap: 6px; padding: 6px 0; font-size: 12px; }
  .vlg-topbar-inner > span { font-size: 12px; line-height: 1.3; }

  /* Hero polish */
  .vlg-hero {
    margin: 18px 0 14px;
    padding: 28px 22px;
    min-height: auto;
    border-radius: 16px;
  }
  .vlg-hero h1 { font-size: clamp(26px, 7vw, 36px); margin-bottom: 12px; }
  .vlg-hero p { font-size: 15px; margin-bottom: 18px; }
  .vlg-hero-actions { gap: 10px; }
  .vlg-btn { padding: 12px 18px; font-size: 14px; }
  .vlg-hero-benefits { padding: 12px 14px; }
  .vlg-hero-benefits div { padding: 10px 0; }

  /* Trust grid: 2 col on phone */
  .vlg-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .vlg-trust-item { padding: 16px 14px; gap: 10px; }
  .vlg-trust-item > span { width: 40px; height: 40px; font-size: 22px; }
  .vlg-trust-item strong { font-size: 14px; }
  .vlg-trust-item small { font-size: 12px; }

  /* Footer */
  .vlg-footer { padding-top: 28px; }
  .vlg-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 22px;
  }
  .vlg-footer-bottom { font-size: 12px; }

  /* Single product on phones */
  .vlg-product-summary-card { padding: 18px; }
  .vlg-product-buybox form.cart { gap: 8px; }
  .quantity .qty { height: 44px; width: 64px !important; }
  .single_add_to_cart_button { min-width: 0; flex: 1; padding: 0 16px !important; }
}

@media (max-width: 360px) {
  .vlg-trust-grid { grid-template-columns: 1fr; }
  .vlg-header-actions a { padding: 4px; }
  .vlg-search button { padding: 8px 10px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .vlg-product-card:hover,
  .vlg-category-card:hover,
  .vlg-campaign-card:hover { transform: none; }
}

/* ----- Admin polish v1.4.2 ----- */

/* Make the tab strip horizontally scrollable when it doesn't fit. */
@media (max-width: 880px) {
  .vlg-admin-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding: 8px;
    gap: 6px;
    /* Allow the strip to bleed slightly past the wrap edges. */
    margin-left: -4px;
    margin-right: -4px;
  }
  .vlg-admin-tabs::-webkit-scrollbar { height: 4px; }
  .vlg-admin-tabs::-webkit-scrollbar-thumb { background: #c8d2e0; border-radius: 999px; }
  .vlg-admin-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 10px 14px;
    font-size: 13px;
  }
  .vlg-admin-tabs { position: static; }
}

/* On phones: single-column field grid; full-width submit bar; bigger touch
 * targets in the hero and on action buttons. */
@media (max-width: 782px) {
  .vlg-admin-wrap { max-width: 100%; }
  .vlg-admin-hero {
    padding: 18px;
    border-radius: 14px;
    text-align: left;
  }
  .vlg-admin-hero h1 { font-size: 24px; }
  .vlg-admin-hero p { font-size: 14px; }
  .vlg-admin-hero-actions {
    width: 100%;
    flex-direction: column;
  }
  .vlg-admin-hero-actions .button {
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 42px;
    line-height: 40px;
  }

  .vlg-admin-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
    padding: 16px;
  }
  .vlg-admin-card summary {
    padding: 14px 16px;
    font-size: 15px;
  }

  .vlg-admin-field input[type="text"],
  .vlg-admin-field input[type="url"],
  .vlg-admin-field input[type="email"],
  .vlg-admin-field input[type="number"],
  .vlg-admin-field select,
  .vlg-admin-field textarea {
    width: 100%;
    font-size: 16px; /* prevents iOS zoom-on-focus */
    min-height: 44px;
  }

  .vlg-admin-submitbar {
    position: sticky;
    bottom: 0;
    margin: 16px -10px 0;
    padding: 10px 12px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
  .vlg-admin-submitbar .button-primary {
    width: 100%;
    height: 46px;
    line-height: 44px;
    text-align: center;
    font-size: 15px;
  }

  /* WP color picker plays well on mobile */
  .vlg-admin-field .wp-picker-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .vlg-admin-field .wp-picker-container .wp-color-result.button {
    margin: 0;
  }
}

/* WP color picker integration: keep the swatch button aligned with WP styles. */
.vlg-admin-wrap .wp-picker-container { display: inline-flex; align-items: center; gap: 6px; }
.vlg-admin-wrap .wp-picker-container .wp-color-result.button {
  height: 36px;
  border-radius: 10px !important;
  border: 1px solid #dce5f1 !important;
}
.vlg-admin-wrap .wp-picker-input-wrap input.wp-color-picker {
  border-radius: 10px;
  min-height: 36px;
  border: 1px solid #dce5f1;
  width: 110px;
}

/* The media field row should wrap nicely on small screens. */
@media (max-width: 600px) {
  .vlg-media-row {
    flex-wrap: wrap;
    gap: 8px;
  }
  .vlg-media-row .vlg-media-url { flex: 1 1 100%; }
  .vlg-media-row .button { flex: 1 1 calc(50% - 4px); }
  .vlg-media-preview { max-width: 100%; }
}

/* Larger, easier-to-grab section sorter on phones */
@media (max-width: 600px) {
  .vlg-section-sorter li {
    grid-template-columns: 28px 1fr;
    padding: 12px;
  }
  .vlg-section-sorter li small {
    grid-column: 2;
    margin-top: 2px;
  }
}

/* ===== v1.4.3 Sidebar polish, denser category grid, auto energy SVG =====
 * - Sidebar widgets (kategooriad / tootesildid) get a clean, scannable look:
 *   the (count) for categories tucks inline and the tag cloud is forced
 *   to a uniform pill size regardless of how WP weights the tags.
 * - Home category grid: tighter min-width so 7 cards fit on one row at
 *   normal desktop widths without dropping a single straggler to row 2.
 * - Always-visible "Lisa korvi" button on cards; price + button pinned
 *   to the bottom so cards line up cleanly even with multi-line titles.
 * - Inline EU energy label SVG (vlg-energy-svg) styling.
 */

/* --- Sidebar widget heading --- */
.vlg-widget-title,
.vlg-widget h3,
.widget_product_categories .widget-title,
.widget_product_tag_cloud .widget-title {
  font-size: 14px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--vlg-primary);
  padding: 0 0 12px;
  margin: 0 0 12px !important;
  border-bottom: 2px solid #f1f5f9;
}

/* --- Categories: clean count chips, no big yellow numbers --- */
.widget_product_categories ul,
.vlg-widget.widget_product_categories ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget_product_categories li {
  border-top: 0 !important;
}
.widget_product_categories li + li {
  border-top: 1px solid #eef2f7 !important;
}
.widget_product_categories li > a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 4px !important;
  color: #1f2b42 !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  text-transform: none;
  border-radius: 8px;
}
.widget_product_categories li > a:hover {
  background: #fff5e8;
  color: var(--vlg-primary) !important;
  padding-left: 10px !important;
}
.widget_product_categories .count {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f1f5f9 !important;
  color: #5d6a7e !important;
  font-size: 11px;
  font-weight: 800;
  border: 0;
}
.widget_product_categories li:hover > .count {
  background: var(--vlg-primary) !important;
  color: #fff !important;
}
.widget_product_categories .children {
  margin: 4px 0 8px 6px !important;
  padding-left: 12px !important;
  border-left: 2px solid #eef2f7 !important;
}
.widget_product_categories .children li > a {
  font-size: 13px;
  font-weight: 600;
  color: #4b5870 !important;
  padding: 8px 4px !important;
}
.widget_product_categories .current-cat > a {
  background: #fff5e8;
  color: var(--vlg-primary) !important;
  padding-left: 10px !important;
}

/* --- Tag cloud: uniform pill chips regardless of WP's weight --- */
.widget_product_tag_cloud .tagcloud,
.wp-block-tag-cloud {
  display: flex !important;
  flex-wrap: wrap;
  gap: 6px;
}
.widget_product_tag_cloud .tagcloud a,
.wp-block-tag-cloud a,
.tag-cloud-link {
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px !important;
  border-radius: 999px !important;
  background: #f4f7fb !important;
  color: #29344c !important;
  text-decoration: none !important;
  border: 1px solid #e5ecf4 !important;
  letter-spacing: .01em;
  text-transform: lowercase;
  transition: all .14s ease;
}
.widget_product_tag_cloud .tagcloud a:hover,
.wp-block-tag-cloud a:hover,
.tag-cloud-link:hover {
  background: var(--vlg-primary) !important;
  color: #fff !important;
  border-color: var(--vlg-primary) !important;
  transform: translateY(-1px);
}

/* --- Search widget inside sidebar --- */
.vlg-widget .woocommerce-product-search input.search-field,
.vlg-widget .search-form input.search-field {
  border-radius: 999px;
  padding: 9px 14px;
  border: 1px solid var(--vlg-line);
  background: #fff;
  width: 100%;
}

/* --- Home category grid: fit 7 cards on one row at desktop --- */
.vlg-category-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}
.vlg-category-card {
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  min-height: 96px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.vlg-category-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
  background: #f8fafc;
  padding: 4px;
}
.vlg-category-card strong {
  font-size: 13px;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.vlg-category-card small {
  font-size: 11px;
  margin: 4px 0 6px;
}
.vlg-category-card span {
  font-size: 11px;
}

@media (min-width: 1280px) {
  /* When admin has 6-7 cats, prefer one row exactly */
  .vlg-category-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}
@media (max-width: 1100px) {
  .vlg-category-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
}
@media (max-width: 600px) {
  .vlg-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vlg-category-card { grid-template-columns: 56px 1fr; padding: 12px; min-height: 80px; }
  .vlg-category-card img { width: 56px; height: 56px; }
}
@media (max-width: 380px) {
  .vlg-category-grid { grid-template-columns: 1fr; }
}

/* --- Make product cards align uniformly with always-visible cart CTA --- */
.vlg-product-card {
  display: flex;
  flex-direction: column;
}
.vlg-product-link { flex: 1; }
.vlg-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vlg-card-price,
.vlg-card-price .price {
  font-size: 18px !important;
  margin-top: auto;
  padding-top: 8px;
}
.vlg-card-actions {
  margin-top: 0;
  padding: 0 14px 14px;
}
.vlg-card-cart,
.vlg-card-actions .button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--vlg-primary), #d96b00) !important;
  color: #fff !important;
  border: 0 !important;
  font-weight: 900 !important;
  font-size: 14px !important;
  letter-spacing: .01em;
  box-shadow: 0 8px 18px rgba(242,138,0,.20);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.vlg-card-cart::before,
.vlg-card-actions .button::before {
  content: '🛒';
  font-size: 14px;
  filter: grayscale(.05);
}
.vlg-card-cart.added::before,
.vlg-card-actions .button.added::before { content: '✓'; }
.vlg-card-cart:hover,
.vlg-card-actions .button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 12px 22px rgba(242,138,0,.28);
}
.vlg-card-cart.loading { opacity: .7; pointer-events: none; }
.vlg-card-cart.added,
.vlg-card-actions .button.added {
  background: #16a34a !important;
  box-shadow: 0 8px 18px rgba(22,163,74,.22);
}

/* --- Inline EU energy label SVG (auto-rendered) --- */
.vlg-energy-image-link.is-svg {
  display: inline-block;
  background: transparent;
  border: 0;
  padding: 0;
}
.vlg-energy-svg {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(15,31,53,.08);
}
@media (max-width: 480px) {
  .vlg-energy-svg { width: 150px; }
}

/* Tighten the energy panel a bit so the SVG sits flush with the badge head */
.vlg-energy-panel {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}
.vlg-energy-panel-head {
  flex-wrap: wrap;
}

/* ===== v1.4.4 EPREL public link =====
 * EU-styled link rendered on the single product page next to the energy
 * label whenever the product has an EPREL Registration Number assigned.
 * Per Implementing Regulation (EU) 2024/994 Article 14, online dealers
 * must make this consultation possible. We build the EU flag inline with
 * an SVG of 12 stars on a 003399 background — no external assets.
 */
.vlg-eprel-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  margin-top: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f4f7fb 0%, #e9eef6 100%);
  border: 1px solid #d6dde8;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.vlg-eprel-link:hover,
.vlg-eprel-link:focus-visible {
  background: linear-gradient(135deg, #003399 0%, #0046cc 100%);
  border-color: #003399;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 51, 153, .22);
}
.vlg-eprel-link:hover .vlg-eprel-text strong,
.vlg-eprel-link:hover .vlg-eprel-text small,
.vlg-eprel-link:hover .vlg-eprel-arrow,
.vlg-eprel-link:focus-visible .vlg-eprel-text strong,
.vlg-eprel-link:focus-visible .vlg-eprel-text small,
.vlg-eprel-link:focus-visible .vlg-eprel-arrow { color: #fff; }
.vlg-eprel-flag {
  display: inline-flex;
  width: 36px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(7, 18, 36, .18);
}
.vlg-eprel-flag svg { width: 100%; height: 100%; display: block; }
.vlg-eprel-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.vlg-eprel-text strong {
  color: #003399;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  transition: color .15s ease;
}
.vlg-eprel-text small {
  color: #5d6a7e;
  font-size: 11px;
  margin-top: 2px;
  letter-spacing: .02em;
  font-feature-settings: 'tnum';
  transition: color .15s ease;
}
.vlg-eprel-arrow {
  font-size: 18px;
  font-weight: 700;
  color: #003399;
  flex-shrink: 0;
  transition: color .15s ease, transform .15s ease;
}
.vlg-eprel-link:hover .vlg-eprel-arrow,
.vlg-eprel-link:focus-visible .vlg-eprel-arrow { transform: translateX(3px); }

@media (max-width: 480px) {
  .vlg-eprel-link { padding: 10px 12px; gap: 10px; border-radius: 12px; }
  .vlg-eprel-flag { width: 30px; height: 20px; }
  .vlg-eprel-text strong { font-size: 13px; }
  .vlg-eprel-text small { font-size: 10px; }
}
