/*
 * &Cards Marketplace — Master Stylesheet
 * Version: 2.0.0 (Dark + Gold design)
 *
 * Sections:
 *   1. Variables & Base (dark theme + gold)
 *   2. Typography (Poppins + Montserrat)
 *   3. Header & Navigation (glass morphism)
 *   4. Shop & Product Cards
 *   5. Vendor Cards
 *   6. Min Konto
 *   7. Login Page
 *   8. Seller Central / Forms
 *   9. Legal Pages
 *  10. Footer
 *  11. Mobile
 */

/* ============================================
   1. VARIABLES & BASE — Dark + Gold
   ============================================ */

:root {
  /* Dark theme colors */
  --ac-dark: #0d0f1a;
  --ac-dark-surface: #141628;
  --ac-dark-elevated: #1b1e2f;
  --ac-dark-deep: #07080f;

  /* Gold accent (primary brand) */
  --ac-gold: #f9ba32;
  --ac-gold-light: #fcd57a;
  --ac-gold-deep: #d99a1a;
  --ac-gold-glow: rgba(249, 186, 50, 0.18);
  --ac-gold-mist: rgba(249, 186, 50, 0.06);

  /* Legacy accent mapped to gold */
  --ac-primary: #0d0f1a;
  --ac-accent: #f9ba32;
  --ac-accent-hover: #d99a1a;

  /* Text */
  --ac-white: #ffffff;
  --ac-gray-100: #f5f5f7;
  --ac-gray-200: #d9dbe4;
  --ac-gray-300: #b0b3c0;
  --ac-gray-500: #6b6f80;
  --ac-gray-700: #3a3d4d;
  --ac-text: #d9dbe4;
  --ac-text-light: #b0b3c0;
  --ac-text-muted: #6b6f80;

  /* Status colors */
  --ac-green: #74d01f;
  --ac-red: #ff4757;
  --ac-blue: #4c6fff;

  /* Radius */
  --ac-radius-sm: 8px;
  --ac-radius: 16px;
  --ac-radius-lg: 24px;
  --ac-radius-xl: 32px;

  /* Shadows & glass */
  --ac-shadow-glow: 0 0 40px rgba(249, 186, 50, 0.2);
  --ac-shadow-card: 0 12px 40px rgba(0, 0, 0, 0.4);
  --ac-shadow-lift: 0 20px 60px rgba(0, 0, 0, 0.6);
  --ac-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.25);
  --ac-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.5);
  --ac-glass-bg: rgba(20, 22, 40, 0.72);
  --ac-glass-border: rgba(255, 255, 255, 0.08);
  --ac-glass-blur: 24px;

  /* Card */
  --ac-card: var(--ac-dark-surface);
  --ac-bg: var(--ac-dark);
  --ac-border: rgba(255, 255, 255, 0.06);

  /* Legacy Vipps color */
  --ac-vipps: #5A0FC8;
}

/* Base */
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
  background: var(--ac-dark) !important;
  color: var(--ac-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif !important;
  letter-spacing: -0.025em;
  color: var(--ac-white);
}

::selection { background: var(--ac-gold); color: var(--ac-dark); }

/* Links default */
a { color: var(--ac-gold); }
a:hover { color: var(--ac-gold-light); }

/* Page content wrapper dark */
#main, .page-wrapper { background: var(--ac-dark) !important; }

/* ============================================
   2. HEADER & NAVIGATION — Glass morphism (fra designfil)
   ============================================ */

/* Top bar — dark elevated med gold shimmer animation */
.header-top, .top-bar {
  position: relative !important;
  background: var(--ac-dark-elevated) !important;
  color: var(--ac-white) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 10px 0 !important;
  letter-spacing: 0.02em;
  overflow: hidden;
  border-bottom: 1px solid rgba(249, 186, 50, 0.12) !important;
}
.header-top::before, .top-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(249, 186, 50, 0.08) 45%,
    rgba(249, 186, 50, 0.18) 50%,
    rgba(249, 186, 50, 0.08) 55%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: ac-topbar-shimmer 8s ease-in-out infinite;
  pointer-events: none;
}
.header-top *, .top-bar * { position: relative; z-index: 2; }
.header-top a, .top-bar a { color: var(--ac-gray-200) !important; }
.header-top a:hover, .top-bar a:hover { color: var(--ac-gold) !important; }

@keyframes ac-topbar-shimmer {
  0%, 10% { transform: translateX(-100%); }
  40%, 60% { transform: translateX(100%); }
  90%, 100% { transform: translateX(100%); }
}

/* Main header — glass morphism */
.header-wrapper {
  position: sticky !important; top: 0; z-index: 99;
  background: rgba(13, 15, 26, 0.72) !important;
  -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
  backdrop-filter: blur(24px) saturate(160%) !important;
  border-bottom: 1px solid rgba(249, 186, 50, 0.1) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4) !important;
  transition: background 0.3s ease;
}
.header-wrapper::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(249, 186, 50, 0.4) 50%,
    transparent 100%
  );
  opacity: 0.5;
  pointer-events: none;
}

/* Header-main */
.header-main { background: #1b1e2f !important; }

/* Logo */
#logo { text-align: center !important; }
#logo a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  font-size: 0 !important;
  color: transparent !important;
}
#logo img.header-logo {
  max-height: 80px !important;
  width: auto !important;
  display: block !important;
}
#logo img.header-logo-dark { display: none !important; }

/* Header icons (search, cart, account) — white, gold on hover */
.header-main .nav > li > a,
.header-main .account-icon,
.header-main .cart-icon,
.header-main .header-button > a,
.header-main [class*="icon-"]:before {
  color: var(--ac-white) !important;
}
.header-main .nav > li > a:hover,
.header-main .account-icon:hover,
.header-main .cart-icon:hover { color: var(--ac-gold) !important; }
.header-main .cart-icon strong { color: var(--ac-white) !important; font-family: 'Poppins', sans-serif; }

/* Header main right — horizontal layout (desktop only) */
.header-main .hide-for-medium.flex-right {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0;
}
.header-main .hide-for-medium .header-nav-main {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0;
  list-style: none;
}
.header-main .hide-for-medium .header-nav-main > li {
  display: flex !important;
  align-items: center !important;
}
/* Secondary nav (Sælgere, Bliv sælger) — clean links */
.header-main .header-nav-main > li > a:not(.cart-link) {
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--ac-white) !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  padding: 8px 14px !important;
  white-space: nowrap !important;
  transition: color 0.25s ease !important;
}
.header-main .header-nav-main > li > a:not(.cart-link):hover {
  color: var(--ac-gold) !important;
}

/* Header bottom — dark glass nav bar */
.header-bottom {
  background: rgba(7, 8, 15, 0.82) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  backdrop-filter: blur(14px) !important;
  border-top: 1px solid rgba(249, 186, 50, 0.12);
}
/* Force horizontal nav in bottom bar */
.header-bottom .flex-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  height: 44px !important;
}
.header-bottom .header-bottom-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0;
  list-style: none;
  width: 100%;
}
.header-bottom .header-bottom-nav > li {
  display: flex !important;
  align-items: center !important;
}

/* Override Flatsome nav-size-large (theme mod not always picked up) */
.header-bottom .nav.nav-size-large > li > a { padding-top: 10px !important; padding-bottom: 10px !important; }

/* Nav links — Flatsome bruger .nav-top-link inside .nav > li */
.header-bottom .nav > li > .nav-top-link,
.header-main .nav > li > .nav-top-link {
  position: relative !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  color: var(--ac-white) !important;
  padding: 14px 16px !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  transition: color 0.25s ease !important;
  line-height: 1 !important;
}

/* Gold underline animation — matching designfil .nav-link::before */
.header-bottom .nav > li > .nav-top-link::before,
.header-main .nav > li > .nav-top-link::before {
  content: '' !important;
  position: absolute !important;
  left: 16px !important; right: 16px !important; bottom: 4px !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, var(--ac-gold), transparent) !important;
  transform: scaleX(0) !important;
  transform-origin: center !important;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  width: auto !important;
  top: auto !important;
}

/* Hover/active */
.header-bottom .nav > li:hover > .nav-top-link::before,
.header-bottom .nav > li.current-menu-item > .nav-top-link::before,
.header-bottom .nav > li.active > .nav-top-link::before,
.header-main .nav > li:hover > .nav-top-link::before,
.header-main .nav > li.current-menu-item > .nav-top-link::before,
.header-main .nav > li.active > .nav-top-link::before { transform: scaleX(1) !important; }

.header-bottom .nav > li:hover > .nav-top-link,
.header-bottom .nav > li.current-menu-item > .nav-top-link,
.header-bottom .nav > li.active > .nav-top-link,
.header-main .nav > li:hover > .nav-top-link,
.header-main .nav > li.current-menu-item > .nav-top-link { color: var(--ac-gold) !important; }

/* Override Flatsomes nav-line-grow + after bar */
.header-bottom .nav-line-grow > li > a:before,
.header-main .nav-line-grow > li > a:before,
.header-bottom .nav-top-link:after,
.header-main .nav-top-link:after { display: none !important; }

/* Top-bar HTML widget content */
.header-top .html.custom,
.header-top .html_topbar_left,
.header-top .html_topbar_right {
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  color: var(--ac-gray-200) !important;
}
.header-top .html span,
.header-top .html a { font-family: 'Poppins', sans-serif; }
.header-top .html a { color: var(--ac-gray-200) !important; text-decoration: none !important; transition: color 0.2s; }
.header-top .html a:hover { color: var(--ac-gold) !important; }

/* Cart count badge — gold */
.header-main .cart-item .cart-icon strong {
  background: var(--ac-gold) !important;
  color: var(--ac-dark) !important;
  border-radius: 99px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 10px !important;
  min-width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(249, 186, 50, 0.4);
}

/* Search field dark */
.header-main .searchform input,
.header-main .header-search-form input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--ac-white) !important;
  border-radius: 99px !important;
}
.header-main .searchform input::placeholder { color: var(--ac-text-muted) !important; }
.header-main .searchform input:focus {
  border-color: var(--ac-gold) !important;
  box-shadow: 0 0 0 3px rgba(249, 186, 50, 0.15) !important;
}

/* Mobile nav icon */
.mobile-nav .nav-icon a,
.header-main .off-canvas-toggle,
.header-main .menu-icon-bars:after,
.header-main .menu-icon-bars:before,
.header-main .menu-icon-bars { color: var(--ac-white) !important; }

/* Nav dropdown (mega menu) — fra designfil .mega / .flyout */
.nav-dropdown,
.nav-dropdown-default,
.header-nav .nav-dropdown {
  background: rgba(20, 22, 40, 0.96) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  border: 1px solid rgba(249, 186, 50, 0.2) !important;
  border-radius: 16px !important;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(249, 186, 50, 0.08) !important;
  padding: 20px 22px !important;
  min-width: 220px;
  max-width: 280px;
  position: absolute !important;
  top: 100%;
  left: 0;
  z-index: 100;
  overflow: visible !important;
}

/* Sub-dropdown (3rd level) opens to the right */
.nav-dropdown .nav-dropdown,
.nav-dropdown .sub-menu {
  top: 0 !important;
  left: 100% !important;
  margin-left: 4px;
}

/* Gold top-line decoration (matching .flyout::before) */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ac-gold), transparent);
  opacity: 0.6;
  border-radius: 2px;
}

/* Dropdown items — matching .mega-col a pattern */
.nav-dropdown > li,
.nav-dropdown ul > li,
.nav-dropdown li.html {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.nav-dropdown > li > a,
.nav-dropdown ul li a,
.nav-dropdown li.html a {
  display: flex !important;
  align-items: center;
  gap: 8px;
  color: var(--ac-gray-200) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  position: relative;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.4 !important;
  border: none !important;
}

/* Gold indicator bar on hover */
.nav-dropdown > li > a::before,
.nav-dropdown ul li a::before {
  content: '' !important;
  position: absolute !important;
  left: 0; top: 50%;
  width: 0; height: 18px;
  background: var(--ac-gold) !important;
  transform: translateY(-50%);
  border-radius: 2px;
  transition: width 0.25s ease !important;
  display: block !important;
  bottom: auto !important;
  right: auto !important;
}

.nav-dropdown > li > a:hover,
.nav-dropdown > li.active > a,
.nav-dropdown > li.current-menu-item > a,
.nav-dropdown ul li a:hover {
  background: rgba(249, 186, 50, 0.08) !important;
  color: var(--ac-white) !important;
  padding-left: 18px !important;
}

.nav-dropdown > li > a:hover::before,
.nav-dropdown > li.active > a::before,
.nav-dropdown > li.current-menu-item > a::before,
.nav-dropdown ul li a:hover::before {
  width: 3px !important;
  transform: scaleX(1) translateY(-50%) !important;
  left: 0 !important;
  right: auto !important;
  bottom: auto !important;
  background: var(--ac-gold) !important;
}

/* Column headers (if mega menu has columns with headings) */
.nav-dropdown .nav-column h4,
.nav-dropdown .nav-column h3,
.nav-dropdown h4 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--ac-gold) !important;
  margin: 0 0 14px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid rgba(249, 186, 50, 0.15) !important;
}

/* Simple dropdown — no multi-column, just a clean vertical list */
.menu-item-has-children > .nav-dropdown {
  min-width: 220px;
  max-width: 280px;
}

/* No column headers or column dividers needed */
.nav-dropdown > li.nav-dropdown-col {
  padding: 2px 0 !important;
  border-right: none;
}
.nav-dropdown > li.nav-dropdown-col > a {
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 13.5px !important;
  color: var(--ac-gray-200) !important;
  border-bottom: none !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  margin-bottom: 0 !important;
}
.nav-dropdown > li.nav-dropdown-col > a::before { display: block !important; }
.nav-dropdown > li.nav-dropdown-col > a:hover {
  color: var(--ac-white) !important;
  background: rgba(249, 186, 50, 0.08) !important;
  padding-left: 18px !important;
}

.nav-dropdown .nav-column {
  padding: 0 !important;
  margin: 0 !important;
  min-width: auto !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  position: static !important;
  display: block !important;
  animation: none !important;
}
.nav-dropdown .nav-column::before { display: none !important; }

.nav-dropdown .nav-column li a {
  font-size: 12.5px !important;
  font-weight: 400 !important;
  padding: 5px 10px !important;
  color: var(--ac-gray-300) !important;
}
.nav-dropdown .nav-column li a:hover {
  color: var(--ac-white) !important;
  background: rgba(249, 186, 50, 0.08) !important;
}

.nav-dropdown.nav-dropdown-has-arrow:after,
.nav-dropdown.nav-dropdown-has-arrow:before { display: none !important; }

/* Flatsome cart popup dropdown */
.nav-dropdown .widget_shopping_cart,
.nav-dropdown .widget_shopping_cart_content {
  color: var(--ac-white) !important;
}
.nav-dropdown .widget_shopping_cart .empty {
  color: var(--ac-gray-300) !important;
  text-align: center;
  padding: 20px 10px;
}
.nav-dropdown .ux-mini-cart-empty { color: var(--ac-gray-300) !important; }
.nav-dropdown .ux-mini-cart-empty-icon { color: var(--ac-gold) !important; font-size: 2em; }

/* Search dropdown */
.nav-dropdown .header-search-form {
  padding: 0 !important;
}
.nav-dropdown .searchform input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--ac-white) !important;
}

/* Dropdown arrow/caret on parent menu item */
.header-nav li.menu-item-has-children > .nav-top-link:after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.2s ease;
  vertical-align: 2px;
}
.header-nav li.menu-item-has-children:hover > .nav-top-link:after {
  opacity: 1;
  transform: rotate(225deg);
}

/* Animation on open */
.nav-dropdown {
  animation: ac-dropdown-enter 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes ac-dropdown-enter {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Top divider */
.header-wrapper .top-divider { background: rgba(249, 186, 50, 0.1) !important; }

/* ============================================
   3. SHOP & PRODUCT CARDS
   ============================================ */

/* Shop layout — let Flatsome handle grid, just hide clutter */
body.post-type-archive-product .shop-page-title,
body.tax-product_cat .shop-page-title,
body.tax-product_tag .shop-page-title { display: none !important; }
body.post-type-archive-product .woocommerce-breadcrumb,
body.tax-product_cat .woocommerce-breadcrumb,
body.tax-product_tag .woocommerce-breadcrumb { display: none !important; }

/* ── Shop sidebar: fixed left, content untouched ── */

/* Sidebar — fixed left, no content push */
.ac-cat-sidebar {
  position: fixed;
  top: 160px;
  left: 16px;
  width: 220px;
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  z-index: 50;
}
.ac-cat-sidebar-inner {
  background: #141628;
  border: 1px solid rgba(249, 186, 50, 0.2);
  border-radius: 14px;
  padding: 20px 16px;
}
/* Mid-size: sidebar hidden, toggle also hidden */
@media (min-width: 1100px) and (max-width: 1499px) {
  .ac-cat-sidebar { display: none !important; }
}

/* Scrollbar styling */
.ac-cat-sidebar::-webkit-scrollbar { width: 4px; }
.ac-cat-sidebar::-webkit-scrollbar-track { background: transparent; }
.ac-cat-sidebar::-webkit-scrollbar-thumb { background: rgba(249, 186, 50, 0.2); border-radius: 4px; }

.ac-cat-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f9ba32;
  margin: 0 0 16px 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(249, 186, 50, 0.15);
}

/* Category links */
.ac-cat-tree { list-style: none; padding: 0; margin: 0; }
.ac-cat-tree li { margin: 0; }
a.ac-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  color: #d9dbe4 !important;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
}
a.ac-cat-link:hover {
  background: rgba(249, 186, 50, 0.08);
  color: #ffffff !important;
  padding-left: 18px;
}
a.ac-cat-link:hover::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 3px; height: 16px;
  background: #f9ba32; border-radius: 2px;
  transform: translateY(-50%);
}
a.ac-cat-link.active {
  background: linear-gradient(135deg, rgba(249, 186, 50, 0.12), rgba(249, 186, 50, 0.04));
  color: #f9ba32 !important;
  font-weight: 700;
  padding-left: 18px;
}
a.ac-cat-link.active::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 3px; height: 16px;
  background: #f9ba32; border-radius: 2px;
  transform: translateY(-50%);
}
a.ac-cat-top {
  margin-bottom: 4px;
}

/* Count badge */
.ac-cat-count {
  background: rgba(255, 255, 255, 0.08);
  padding: 1px 7px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  color: #767788;
  flex-shrink: 0;
}
a.ac-cat-link.active .ac-cat-count {
  color: #f9ba32;
  background: rgba(249, 186, 50, 0.1);
}

/* Expand/collapse */
.ac-cat-row {
  display: flex;
  align-items: center;
}
.ac-cat-row .ac-cat-link { flex: 1; }
.ac-cat-expand {
  background: none; border: none; cursor: pointer;
  color: #767788; padding: 6px;
  border-radius: 6px; transition: all 0.2s;
  display: flex; align-items: center;
  flex-shrink: 0;
}
.ac-cat-expand:hover { color: #f9ba32; background: rgba(249, 186, 50, 0.08); }
.ac-cat-expand svg { transition: transform 0.25s ease; }
.ac-cat-item.open > .ac-cat-row .ac-cat-expand svg { transform: rotate(180deg); }

/* Children — hidden by default */
.ac-cat-children {
  list-style: none; padding: 0 0 0 14px; margin: 0;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.ac-cat-item.open > .ac-cat-children {
  max-height: 500px;
}
.ac-cat-children a.ac-cat-link {
  font-size: 12px;
  padding: 7px 12px;
  color: #9096a8 !important;
}
.ac-cat-children a.ac-cat-link:hover { color: #ffffff !important; }
.ac-cat-children a.ac-cat-link.active { color: #f9ba32 !important; }

/* Mobile toggle button (hidden on desktop) */
.ac-cat-toggle {
  display: none;
  align-items: center; gap: 8px;
  background: #141628;
  border: 1px solid rgba(249, 186, 50, 0.2);
  border-radius: 10px;
  color: #d9dbe4;
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 600;
  padding: 10px 18px;
  cursor: pointer;
  margin: 0 auto 16px;
  transition: all 0.2s;
}
.ac-cat-toggle:hover { border-color: #f9ba32; color: #f9ba32; }

/* Mobile: sidebar becomes slide-down panel */
@media (max-width: 1099px) {
  .ac-cat-sidebar {
    position: static;
    width: 100%;
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
    z-index: auto;
  }
  .ac-cat-sidebar.open {
    max-height: 80vh;
    overflow-y: auto;
    margin-bottom: 16px;
  }
  .ac-cat-sidebar-inner {
    margin: 0 20px 8px;
  }
  .ac-cat-toggle { display: flex; }
}

/* Tag filter bar */
.ac-tag-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 24px 20px 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.ac-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: #141628;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  color: #d9dbe4 !important;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.ac-tag-pill:hover {
  border-color: rgba(249, 186, 50, 0.4);
  color: #ffffff !important;
  background: rgba(249, 186, 50, 0.08);
}
.ac-tag-pill.active {
  background: linear-gradient(135deg, #f9ba32 0%, #d99a1a 100%);
  color: #0d0f1a !important;
  border-color: transparent;
  font-weight: 700;
}
.ac-tag-count {
  background: rgba(255, 255, 255, 0.12);
  padding: 1px 7px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
}
.ac-tag-pill.active .ac-tag-count {
  background: rgba(0, 0, 0, 0.15);
}

/* Equal height product rows */
.products.row { display: flex !important; flex-wrap: wrap !important; }
.products.row > .product-small.col { display: flex !important; }
.products.row > .product-small.col > .col-inner { display: flex !important; width: 100%; }

/* Product card — borderless dark card, no visible box */
.product-small.box {
  background: transparent !important;
  border-radius: 14px !important; overflow: hidden;
  box-shadow: none !important;
  border: 1px solid rgba(249, 186, 50, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex !important; flex-direction: column; height: 100%; width: 100%;
}
.product-small.box:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 186, 50, 0.45) !important;
}
.product-small .col-inner {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Product image */
.product-small .box-image {
  aspect-ratio: 1 / 1; overflow: hidden; position: relative;
  background: #0d0f1a !important; border-radius: 0 !important; margin: 0 !important;
}
.product-small .box-image img {
  width: 100% !important; height: 100% !important; object-fit: cover !important;
  display: block; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-small.box:hover .box-image img { transform: scale(1.05); }

/* Hide clutter on cards */
.product-small .image-tools,
.product-small .image-fade_in_back,
.product-small form.cart,
.product-small .wishlist-button,
.product-small .quick-view-button,
.product-small .category,
.product-small p.category { display: none !important; }

/* Product text area — match page dark bg */
.product-small .box-text,
.product-small .box-text.box-text-products {
  background: #0d0f1a !important;
  padding: 16px 18px 18px !important; text-align: left;
  flex: 1; display: flex; flex-direction: column;
}
.product-small .name.product-title,
.product-small .name.product-title a,
.product-small .product-title,
.product-small .product-title a,
.product-small .box-text .name a {
  color: #ffffff !important;
}
.product-small .product-title a:hover,
.product-small .box-text .name a:hover { color: var(--ac-gold) !important; }
.product-small .price-wrapper { margin-top: auto; }
.product-small .price,
.product-small .price .amount,
.product-small .price .woocommerce-Price-amount,
.product-small .woocommerce-Price-amount,
.product-small .price bdi {
  color: #ffffff !important; font-weight: 800 !important; font-size: 1.05em;
  font-family: 'Poppins', sans-serif;
}
.product-small .price del { color: #767788 !important; font-weight: 500; font-size: 0.82em; margin-right: 6px; }

/* Add-to-cart knap på kort */
.product-small .add_to_cart_button,
.product-small .button {
  background: linear-gradient(135deg, #f9ba32 0%, #d99a1a 100%) !important;
  color: #0d0f1a !important;
  border: none !important;
  border-radius: 8px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.5px !important;
  padding: 10px 20px !important;
  transition: all 0.25s ease !important;
}
.product-small .add_to_cart_button:hover,
.product-small .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 186, 50, 0.3) !important;
}
.product-small .price ins { text-decoration: none; background: transparent; }

/* Auction tag overlay on image */
.ac-auction-tag {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  background: rgba(27, 30, 47, 0.9); backdrop-filter: blur(8px);
  color: #fff; padding: 5px 11px; border-radius: 99px;
  font-size: 0.6em; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.ac-auction-tag .ac-tag-dot {
  width: 5px; height: 5px; background: var(--ac-accent); border-radius: 50%;
  animation: ac-pulse 2s infinite;
}

/* Hide auction plugin markup on cards */
.product-small .wksa-wrap,
.product-small .wksa-label,
.product-small .wksa-time,
.product-small .wksa-flex,
.product-small .wksa-finish-counter,
.product-small .wksa_expire_date,
.product-small .wksa-date-formate,
.product-small .wksa-container { display: none !important; }

/* Sale badge */
.product-small .badge-container.absolute { top: 12px !important; left: 12px !important; z-index: 3; }
.product-small .badge-inner, .product-small .onsale {
  background: var(--ac-accent) !important; color: #fff !important;
  border-radius: 99px !important; padding: 5px 11px !important;
  font-size: 0.6em !important; font-weight: 800 !important;
  text-transform: uppercase !important; letter-spacing: 1.2px !important;
  border: none !important; min-height: auto !important; min-width: auto !important;
}

/* WC buttons global — GOLD primary */
.woocommerce .button, .woocommerce button.button, .woocommerce a.button {
  background: var(--ac-gold); color: var(--ac-dark) !important; border-radius: 99px;
  font-weight: 700; border: none; transition: all 0.25s ease;
  font-family: 'Poppins', sans-serif; letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(249, 186, 50, 0.25);
}
.woocommerce .button:hover, .woocommerce button.button:hover, .woocommerce a.button:hover {
  background: var(--ac-gold-light); transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249, 186, 50, 0.35);
  color: var(--ac-dark) !important;
}

/* WC inputs — dark theme */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1px solid var(--ac-glass-border) !important;
  background: var(--ac-dark-surface) !important;
  color: var(--ac-white) !important;
  border-radius: var(--ac-radius-sm); padding: 12px 16px;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--ac-gold) !important; outline: none;
  box-shadow: 0 0 0 3px rgba(249, 186, 50, 0.15) !important;
}
.woocommerce form .form-row label { color: var(--ac-text-light) !important; }

/* WC messages */
.woocommerce-message { border-top-color: var(--ac-accent); border-radius: var(--ac-radius-sm); }
.woocommerce-info { border-top-color: var(--ac-primary); border-radius: var(--ac-radius-sm); }

/* Star ratings */
.star-rating span::before { color: var(--ac-gold) !important; }

/* ============================================
   3b. CART & CHECKOUT — Premium dark container
   ============================================ */

/* Container wrapper */
.woocommerce-cart #main > .row,
.woocommerce-checkout #main > .row,
.woocommerce-cart .page-wrapper > .row,
.woocommerce-checkout .page-wrapper > .row {
  max-width: 960px !important;
  margin: 0 auto !important;
  padding: 40px 24px !important;
}

/* Cart + Checkout block containers */
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  max-width: 960px !important;
  margin: 0 auto !important;
  padding: 40px 24px !important;
}

/* Glass card wrapper */
.wc-block-cart,
.wc-block-checkout {
  background: var(--ac-dark-surface) !important;
  border: 1px solid var(--ac-border) !important;
  border-radius: var(--ac-radius-lg) !important;
  padding: 32px !important;
  box-shadow: var(--ac-shadow-card) !important;
}

/* Headings */
.wc-block-cart h2,
.wc-block-checkout h2,
.wc-block-cart .wc-block-components-title,
.wc-block-checkout .wc-block-components-title {
  font-family: 'Poppins', sans-serif !important;
  color: var(--ac-white) !important;
  font-weight: 700 !important;
}

/* Text + labels */
.wc-block-cart,
.wc-block-checkout,
.wc-block-cart label,
.wc-block-checkout label,
.wc-block-cart .wc-block-components-text-input span,
.wc-block-checkout .wc-block-components-text-input span {
  color: var(--ac-gray-200) !important;
  font-family: 'Montserrat', sans-serif !important;
}
.wc-block-cart a,
.wc-block-checkout a {
  color: var(--ac-gold) !important;
}

/* Input fields — floating label compatible, solid dark bg */
.wc-block-cart input:not([type="checkbox"]):not([type="radio"]),
.wc-block-cart select,
.wc-block-checkout input:not([type="checkbox"]):not([type="radio"]),
.wc-block-checkout select,
.wc-block-checkout textarea {
  background: #1a1d2e !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
  color: var(--ac-white) !important;
  font-family: 'Montserrat', sans-serif !important;
}
/* Floating labels: add top padding so value text clears the label */
.wc-block-components-text-input input,
.wc-block-components-text-input textarea {
  padding: 24px 14px 8px !important;
}
.wc-block-components-text-input label {
  color: var(--ac-text-muted) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
}
/* When focused or has value, shrink label */
.wc-block-components-text-input.is-active label,
.wc-block-components-text-input label {
  transform-origin: top left;
}
.wc-block-checkout input:focus,
.wc-block-checkout select:focus,
.wc-block-checkout textarea:focus {
  border-color: var(--ac-gold) !important;
  box-shadow: 0 0 0 3px rgba(249, 186, 50, 0.15) !important;
  outline: none !important;
}
/* ALL inputs/selects/comboboxes on cart+checkout — solid dark bg */
.wc-block-checkout input,
.wc-block-checkout select,
.wc-block-checkout textarea,
.wc-block-cart input,
.wc-block-cart select,
.wc-block-checkout .components-combobox-control input,
.wc-block-checkout .components-form-token-field__input-container,
.wc-block-checkout [class*="combobox"] input,
.wc-block-checkout [class*="combobox"] .components-form-token-field__input-container {
  background: #1a1d2e !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
  color: var(--ac-white) !important;
  font-family: 'Montserrat', sans-serif !important;
}
.wc-block-checkout [class*="combobox"] label,
.wc-block-checkout .wc-block-components-combobox label {
  color: var(--ac-text-muted) !important;
}
/* Country/Land combobox — hvid baggrund, mørk tekst */
[id*="country"] input,
[class*="country"] input,
[class*="Country"] input,
.wc-block-components-address-form > div:first-child input {
  color: #1b1e2f !important;
}
.wc-block-checkout input:focus,
.wc-block-checkout select:focus,
.wc-block-checkout textarea:focus,
.wc-block-checkout .components-form-token-field__input-container:focus-within {
  border-color: var(--ac-gold) !important;
  box-shadow: 0 0 0 3px rgba(249, 186, 50, 0.15) !important;
  outline: none !important;
}

/* Buttons — gold CTA */
.wc-block-cart .wc-block-cart__submit-button,
.wc-block-checkout .wc-block-components-checkout-place-order-button,
.wc-block-cart .wc-block-components-button:not(.is-link),
.wc-block-checkout .wc-block-components-button:not(.is-link) {
  background: linear-gradient(135deg, #f9ba32 0%, #d99a1a 100%) !important;
  color: var(--ac-dark) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 28px !important;
  font-size: 15px !important;
  letter-spacing: 0.02em;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(249, 186, 50, 0.25) !important;
}
.wc-block-cart .wc-block-cart__submit-button:hover,
.wc-block-checkout .wc-block-components-checkout-place-order-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(249, 186, 50, 0.35) !important;
}

/* Order summary / totals */
.wc-block-components-totals-wrapper,
.wc-block-components-order-summary {
  border-color: rgba(255, 255, 255, 0.08) !important;
}
.wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: var(--ac-gold) !important;
  font-weight: 700 !important;
}

/* Product rows in cart */
.wc-block-cart-items .wc-block-cart-items__row {
  border-color: rgba(255, 255, 255, 0.06) !important;
}
.wc-block-cart-items .wc-block-components-product-name {
  color: var(--ac-white) !important;
  font-weight: 600 !important;
}
.wc-block-cart-items .wc-block-components-product-price {
  color: var(--ac-gold) !important;
}

/* Quantity input */
.wc-block-components-quantity-selector {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
}
.wc-block-components-quantity-selector input {
  color: var(--ac-white) !important;
}
.wc-block-components-quantity-selector button {
  color: var(--ac-gray-200) !important;
}

/* Coupon form */
.wc-block-components-totals-coupon .wc-block-components-totals-coupon__button {
  background: transparent !important;
  border: 1px solid var(--ac-gold) !important;
  color: var(--ac-gold) !important;
  border-radius: 8px !important;
}

/* Shipping options */
.wc-block-components-radio-control__option {
  background: rgba(255, 255, 255, 0.03) !important;
  border-radius: 8px !important;
  padding: 16px 16px 16px 44px !important;
  margin-bottom: 4px !important;
}
.wc-block-components-radio-control__option .wc-block-components-radio-control__label,
.wc-block-components-radio-control__option .wc-block-components-radio-control__description,
.wc-block-components-radio-control__option .wc-block-components-radio-control__secondary-label {
  color: var(--ac-white) !important;
  font-family: 'Montserrat', sans-serif !important;
}
.wc-block-components-radio-control__input {
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.wc-block-components-radio-control__input:checked {
  border-color: var(--ac-gold) !important;
  background: var(--ac-gold) !important;
}

/* Notices */
.wc-block-components-notice-banner {
  border-radius: 10px !important;
  font-family: 'Montserrat', sans-serif !important;
}

/* Empty cart */
.wc-block-cart__empty-cart__title {
  color: var(--ac-white) !important;
  font-family: 'Poppins', sans-serif !important;
}

/* ============================================
   4. VENDOR CARDS
   ============================================ */

/* Vendor wrapper */
.wkmp-vendor-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Search bar — dark theme */
.wkmp-vendor-search-form {
  display: flex; justify-content: center; gap: 10px;
  margin: 24px auto 36px; max-width: 520px;
  flex-wrap: wrap;
}
.wkmp-vendor-search-bar { flex: 1; min-width: 0; }
.wkmp-vendor-search-bar input {
  width: 100%; box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px;
  padding: 14px 18px; font-size: 0.95em;
  background: #1a1d2e !important;
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif;
}
.wkmp-vendor-search-bar input::placeholder { color: #767788 !important; }
.wkmp-vendor-search-bar input:focus {
  border-color: var(--ac-gold) !important;
  box-shadow: 0 0 0 3px rgba(249, 186, 50, 0.15); outline: none;
}
.wkmp-vendor-search-btn {
  background: linear-gradient(135deg, #f9ba32 0%, #d99a1a 100%) !important;
  color: #0d0f1a !important; border: none;
  border-radius: 10px; padding: 14px 28px;
  font-weight: 700; font-size: 0.85em; text-transform: uppercase;
  letter-spacing: 0.5px; cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.wkmp-vendor-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(249, 186, 50, 0.3);
}

/* Mobile: stack search */
@media (max-width: 549px) {
  .wkmp-vendor-search-form {
    flex-direction: column;
    padding: 0 8px;
  }
  .wkmp-vendor-search-btn {
    width: 100%;
    padding: 14px;
    text-align: center;
  }
  .wkmp-vendor-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* Vendor grid */
.wkmp-vendor-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 24px !important;
}

/* Vendor card — dark with gold border */
.wkmp-vendor-card {
  background: #141628 !important;
  border-radius: 14px !important; overflow: hidden;
  border: 1px solid rgba(249, 186, 50, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.wkmp-vendor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 186, 50, 0.45) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(249, 186, 50, 0.08);
}

/* Card banner */
.wkmp-vendor-card-img {
  height: 110px;
  background: linear-gradient(135deg, #0d0f1a 0%, #1a1d2e 50%, #141628 100%) !important;
  position: relative; overflow: hidden;
}

/* Card content */
.wkmp-vendor-card-content {
  padding: 24px; text-align: center; margin-top: -36px;
  flex: 1; display: flex; flex-direction: column;
  background: transparent !important;
}
.wkmp-vendor-card-content::before {
  content: ''; display: block; width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #f9ba32, #d99a1a);
  border: 3px solid #141628; margin: 0 auto 12px;
  box-shadow: 0 4px 14px rgba(249, 186, 50, 0.2);
}

/* Shop name + products count */
.wkmp-vendor-card .wkmp-shop-name {
  font-size: 1.1em; font-weight: 800;
  color: #ffffff !important; margin: 0 0 4px;
  font-family: 'Poppins', sans-serif;
}
.wkmp-vendor-card .wkmp-shop-name a {
  color: #ffffff !important; text-decoration: none;
}
.wkmp-vendor-card .wkmp-shop-name a:hover { color: var(--ac-gold) !important; }
.wkmp-vendor-card .wkmp-vendor-products {
  font-size: 0.7em; color: #767788 !important; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px; margin: 0 0 16px;
}

/* Visit button — gold */
.wkmp-vendor-visit-btn, .wkmp-vendor-card .button {
  display: inline-block;
  background: linear-gradient(135deg, #f9ba32 0%, #d99a1a 100%) !important;
  color: #0d0f1a !important;
  border: none !important; border-radius: 99px; padding: 10px 26px;
  font-size: 0.75em; font-weight: 800; text-decoration: none;
  text-transform: uppercase; letter-spacing: 1px; margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 14px rgba(249, 186, 50, 0.2);
  transition: all 0.25s ease;
}
.wkmp-vendor-visit-btn:hover, .wkmp-vendor-card .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 186, 50, 0.35);
  color: #0d0f1a !important;
}
.wkmp-seller-registration-link { display: none; }

/* ============================================
   5. MIN KONTO — Dark + Gold sidebar
   ============================================ */

.woocommerce-account .woocommerce {
  display: flex; gap: 28px; flex-wrap: wrap;
  max-width: 1100px; margin: 0 auto; padding: 40px 20px;
}

/* Verify-status & notices: full-width above nav+content */
.woocommerce-account .woocommerce > .ac-verify-status,
.woocommerce-account .woocommerce > .woocommerce-notices-wrapper {
  flex: 0 0 100%;
  width: 100%;
  order: -1;
}
.woocommerce-account .woocommerce-MyAccount-navigation { order: 1; }
.woocommerce-account .woocommerce-MyAccount-content { order: 2; }

/* Sidebar nav — dark card with gold border */
.woocommerce-account .woocommerce-MyAccount-navigation {
  flex: 0 0 260px;
  background: #141628 !important;
  border-radius: 14px;
  padding: 24px 16px;
  border: 1px solid rgba(249, 186, 50, 0.2) !important;
  align-self: flex-start;
  position: sticky; top: 100px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0; }
.woocommerce-MyAccount-navigation ul li { margin-bottom: 2px; }
.woocommerce-MyAccount-navigation ul li a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; color: #d9dbe4 !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 500; font-size: 0.88em; border-radius: 10px;
  transition: all 0.2s ease; text-decoration: none;
  position: relative;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  background: rgba(249, 186, 50, 0.08) !important;
  color: #ffffff !important;
  padding-left: 22px;
}
.woocommerce-MyAccount-navigation ul li a:hover::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 3px; height: 18px; background: #f9ba32;
  border-radius: 2px; transform: translateY(-50%);
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  background: linear-gradient(135deg, rgba(249, 186, 50, 0.15), rgba(249, 186, 50, 0.05)) !important;
  color: #f9ba32 !important;
  font-weight: 700;
  padding-left: 22px;
}
.woocommerce-MyAccount-navigation ul li.is-active a::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 3px; height: 18px; background: #f9ba32;
  border-radius: 2px; transform: translateY(-50%);
}

/* Logout — rød accent */
.woocommerce-MyAccount-navigation-link--customer-logout {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.woocommerce-MyAccount-navigation-link--customer-logout a { color: #dc3545 !important; }
.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  background: rgba(220, 53, 69, 0.1) !important;
  color: #ff6b7a !important;
}

/* Content area */
.woocommerce-account .woocommerce-MyAccount-content {
  flex: 1; min-width: 0;
  background: #141628 !important;
  border-radius: 14px; padding: 36px;
  border: 1px solid rgba(249, 186, 50, 0.2) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  color: #d9dbe4 !important;
}
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
}
.woocommerce-account .woocommerce-MyAccount-content p {
  color: #d9dbe4 !important;
}
.woocommerce-account .woocommerce-MyAccount-content a {
  color: #f9ba32 !important;
}

/* Tables */
.woocommerce-account table.shop_table {
  border: none !important; border-radius: 10px; overflow: hidden;
  background: #0d0f1a !important;
}
.woocommerce-account table.shop_table thead th {
  background: rgba(255, 255, 255, 0.03) !important;
  color: #767788 !important; font-weight: 700;
  font-size: 0.75em; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 14px 18px; border: none !important;
  font-family: 'Poppins', sans-serif;
}
.woocommerce-account table.shop_table tbody td {
  padding: 16px 18px; border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: #d9dbe4 !important;
}
.woocommerce-account table.shop_table tbody tr:hover {
  background: rgba(249, 186, 50, 0.03) !important;
}

/* Mobile — nav becomes horizontal scroll or full-width */
@media (max-width: 768px) {
  .woocommerce-account .woocommerce {
    flex-direction: column; gap: 16px;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    flex: none !important; width: 100% !important;
    position: static !important;
    padding: 16px 12px;
  }
  .woocommerce-MyAccount-navigation ul {
    display: flex; flex-wrap: wrap; gap: 4px;
  }
  .woocommerce-MyAccount-navigation ul li { margin-bottom: 0; }
  .woocommerce-MyAccount-navigation ul li a {
    padding: 8px 14px; font-size: 0.8em;
    white-space: nowrap;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    padding: 24px 16px;
  }
}

/* ============================================
   6. LOGIN PAGE
   ============================================ */

/* Hide register column + old vendor link */
.woocommerce-account .u-column2.col-2,
.wkmp-seller-registration-link { display: none !important; }
.woocommerce-account .u-column1.col-1 {
  width: 100% !important; max-width: 440px; margin: 0 auto; float: none;
}

/* ============================================
   7. SELLER CENTRAL / FORMS
   ============================================ */

/* Hide plugin branding on become-vendor */
.page-id-64 .wkmp-sc-logo,
.page-id-64 .wkmp-sc-title,
.page-id-64 .wkmp-sc-subtitle,
.page-id-64 .wkmp-sc-go-back-button { display: none !important; }

/* Hide plugin marketing sections */
.page-id-64 .wkmp-sc-hero-section,
.page-id-64 .wkmp-sc-sell-with-us,
.page-id-64 .wkmp-sc-how-it-works,
.page-id-64 .wkmp-sc-benefits-section,
.page-id-64 .wkmp-sc-header,
.page-id-64 .wkmp-sc-footer { display: none !important; }

/* Form card */
.page-id-64 .wkmp-sc-seller-wrapper { max-width: 100%; min-height: auto; align-items: flex-start; }
.page-id-64 .wkmp-sc-seller-card {
  background: var(--ac-card); border-radius: var(--ac-radius);
  padding: 36px 32px; box-shadow: var(--ac-shadow-sm);
  border: 1px solid var(--ac-border); text-align: left; max-width: 100%;
}
.page-id-64 .wkmp-sc-seller-card form { align-items: stretch !important; gap: 0 !important; padding-top: 0 !important; }
.page-id-64 .wkmp-sc-form-group { width: 100% !important; margin-bottom: 16px !important; }

/* Input wrapper */
.page-id-64 .wkmp-sc-input-wrap {
  border: 1.5px solid #e2e4ed; border-radius: var(--ac-radius-sm);
  position: relative; background: var(--ac-bg);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.page-id-64 .wkmp-sc-input-wrap:focus-within {
  border-color: var(--ac-accent);
  box-shadow: 0 0 0 3px rgba(108, 138, 255, 0.08); background: #fff;
}
.page-id-64 .wkmp-sc-input-wrap input {
  border: none !important; background: transparent !important;
  width: 100%; padding: 22px 16px 8px; font-size: 0.95em; font-weight: 500;
  color: var(--ac-primary); outline: none; box-shadow: none !important;
}
.page-id-64 .wkmp-sc-input-wrap label {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-size: 0.9em; font-weight: 400; color: var(--ac-text-light);
  pointer-events: none; transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: none; letter-spacing: 0;
}
.page-id-64 .wkmp-sc-input-wrap input:focus + label,
.page-id-64 .wkmp-sc-input-wrap input:not(:placeholder-shown) + label {
  top: 12px; transform: translateY(0); font-size: 0.68em;
  font-weight: 600; color: var(--ac-accent);
}

/* Submit button */
.page-id-64 .wkmp-sc-btn, .page-id-64 button.wkmp-sc-btn {
  display: block; width: 100%; padding: 15px;
  background: var(--ac-primary); color: #fff; border: none;
  border-radius: var(--ac-radius-sm); font-size: 0.92em; font-weight: 700;
  cursor: pointer; box-shadow: 0 2px 8px rgba(27, 30, 47, 0.12);
}
.page-id-64 .wkmp-sc-btn::after { display: none !important; }
.page-id-64 .wkmp-sc-btn:hover { background: var(--ac-accent); transform: translateY(-1px); }

/* OR divider */
.page-id-64 .wkmp-CTA-wrap > span {
  display: flex; align-items: center; gap: 14px;
  color: #c8cad4; font-size: 0.7em; margin: 14px 0;
  text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}
.page-id-64 .wkmp-CTA-wrap > span::before,
.page-id-64 .wkmp-CTA-wrap > span::after { content: ''; flex: 1; height: 1px; background: #ebedf2; }

/* Toggle */
.ac-seller-toggle { margin-bottom: 24px; }
.ac-toggle-label {
  font-size: 0.7em; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--ac-text-light); margin-bottom: 10px;
}
.ac-toggle-buttons { display: flex; background: #f0f1f6; border-radius: var(--ac-radius-sm); padding: 4px; }
.ac-toggle-btn {
  flex: 1; padding: 12px; border: none; border-radius: 9px;
  background: transparent; color: var(--ac-text-light);
  font-size: 0.85em; font-weight: 600; cursor: pointer;
  transition: all 0.25s ease;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.ac-toggle-btn.active {
  background: #fff; color: var(--ac-primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* MobilePay card */
.ac-vipps-card {
  background: var(--ac-card); border-radius: var(--ac-radius);
  border: 1px solid var(--ac-border); padding: 36px 32px; text-align: center;
}
.ac-vipps-title { color: var(--ac-primary); font-size: 1.3em; font-weight: 800; margin: 0 0 8px; }
.ac-vipps-desc { color: var(--ac-text-light); font-size: 0.88em; line-height: 1.6; max-width: 340px; margin: 0 auto 24px; }
.ac-vipps-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ac-vipps); color: #fff; border: none;
  border-radius: var(--ac-radius-sm); padding: 16px 36px; font-size: 1em;
  font-weight: 700; text-decoration: none; width: 100%; box-sizing: border-box;
  box-shadow: 0 4px 16px rgba(90, 15, 200, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ac-vipps-btn:hover { background: #4A0BA8; transform: translateY(-2px); }

/* CVR row */
.ac-cvr-row { display: flex; gap: 8px; }
.ac-cvr-row input { flex: 1; border: 1.5px solid #e2e4ed; border-radius: var(--ac-radius-sm); padding: 14px 16px; font-size: 0.95em; background: var(--ac-bg); }
.ac-cvr-row input:focus { border-color: var(--ac-accent); box-shadow: 0 0 0 3px rgba(108, 138, 255, 0.08); }
.ac-cvr-btn { flex-shrink: 0; padding: 14px 22px; background: var(--ac-accent); color: #fff; border: none; border-radius: var(--ac-radius-sm); font-weight: 700; cursor: pointer; }
.ac-cvr-success { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; padding: 12px 14px; margin-top: 8px; }
.ac-cvr-company { font-weight: 700; color: var(--ac-primary); font-size: 0.88em; }
.ac-cvr-address { color: #666; font-size: 0.8em; margin-top: 2px; }
.ac-cvr-error { color: #e53e3e; font-size: 0.8em; font-weight: 600; }

/* ============================================
   8. LEGAL PAGES
   ============================================ */

.ac-legal-content {
  background: var(--ac-card); border-radius: var(--ac-radius);
  padding: 48px 52px; box-shadow: var(--ac-shadow-sm); border: 1px solid var(--ac-border);
}
.ac-legal-content h2 {
  color: var(--ac-primary); font-size: 1.4em; font-weight: 800;
  margin-top: 32px; padding-top: 20px; border-top: 1px solid #eff1f6;
}
.ac-legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.ac-legal-content h3 { color: var(--ac-primary); font-size: 1.1em; font-weight: 700; margin-top: 24px; }
.ac-legal-content p, .ac-legal-content ul, .ac-legal-content ol {
  color: var(--ac-text); line-height: 1.75; font-size: 0.95em;
}
.ac-legal-content a { color: var(--ac-accent); font-weight: 600; text-decoration: none; }
.ac-legal-content a:hover { text-decoration: underline; }
.ac-legal-content details { background: var(--ac-bg); border: 1px solid #e2e4ed; border-radius: var(--ac-radius-sm); padding: 16px 20px; margin-bottom: 10px; }
.ac-legal-content details summary { cursor: pointer; font-weight: 700; color: var(--ac-primary); }
.ac-legal-content details[open] summary { color: var(--ac-accent); }

/* ============================================
   9. FOOTER
   ============================================ */

.footer-wrapper { background: var(--ac-primary) !important; }
.footer-widgets-container { padding: 60px 0 40px; }
.footer-widgets-container .widget { color: rgba(255, 255, 255, 0.7); }
.footer-widgets-container .widget-title {
  color: #fff; font-size: 0.95em; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 2px solid rgba(108, 138, 255, 0.2);
}
.footer-widgets-container .widget a { color: rgba(255, 255, 255, 0.6); text-decoration: none; }
.footer-widgets-container .widget a:hover { color: var(--ac-accent); }
.footer-widgets-container .widget ul { list-style: none; padding: 0; }
.footer-widgets-container .widget ul li { padding: 6px 0; }
.absolute-footer {
  background: #141625 !important;
  border-top: 1px solid rgba(108, 138, 255, 0.1); padding: 20px 0;
}
.absolute-footer, .absolute-footer a { color: rgba(255, 255, 255, 0.4); font-size: 0.85em; }

/* ============================================
   10. MOBILE
   ============================================ */

@media (max-width: 849px) {
  body.woocommerce.archive .products.row { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
  .product-small .box-text.box-text-products { padding: 12px 14px !important; }
  .product-small .name.product-title { font-size: 0.82em; }
  body.woocommerce.archive form.woocommerce-ordering { float: none; display: block; }
  .wkmp-vendor-grid { grid-template-columns: 1fr !important; }
  .woocommerce-account .woocommerce { flex-direction: column; }
  .woocommerce-account .woocommerce-MyAccount-navigation { flex: none; position: static; width: 100%; }
  .woocommerce-account .woocommerce-MyAccount-content { padding: 24px; }
  .ac-legal-content { padding: 28px 22px; }
  .ac-toggle-buttons { flex-direction: column; gap: 4px; }
  .ac-cvr-row { flex-direction: column; }
}

/* ============================================
   12. HOMEPAGE — Dark + Gold design
   ============================================ */

/* Hero — big dark banner with gold accent */
.ac-hero-section { padding: 0 !important; overflow: hidden; }
.ac-homepage-hero {
  position: relative; min-height: 680px; height: 85vh; max-height: 820px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; isolation: isolate;
}
.ac-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(249, 186, 50, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(249, 186, 50, 0.08) 0%, transparent 55%),
    linear-gradient(135deg, #07080f 0%, #0d0f1a 50%, #141628 100%);
}
.ac-hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
}
.ac-hero-bg::after {
  content: ''; position: absolute;
  top: -200px; right: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249, 186, 50, 0.25) 0%, transparent 60%);
  border-radius: 50%; filter: blur(40px);
}
.ac-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center bottom, transparent 20%, rgba(13, 15, 26, 0.6) 80%);
}
.ac-hero-content {
  position: relative; z-index: 2;
  max-width: 720px; padding: 60px 24px; text-align: center;
  animation: ac-hero-enter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.ac-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249, 186, 50, 0.1);
  border: 1px solid rgba(249, 186, 50, 0.3);
  border-radius: 99px; padding: 8px 18px 8px 14px;
  color: var(--ac-gold-light);
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 0.5px; margin-bottom: 28px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.ac-badge-dot {
  width: 6px; height: 6px; background: var(--ac-gold);
  border-radius: 50%; animation: ac-pulse 2s infinite;
}
.ac-hero-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(2.8em, 7vw, 5em) !important;
  font-weight: 800 !important; line-height: 1 !important;
  letter-spacing: -0.04em;
  color: var(--ac-white);
  margin: 0 0 24px !important;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}
.ac-gold-gradient {
  background: linear-gradient(90deg, var(--ac-gold) 0%, var(--ac-gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ac-hero-subtitle {
  font-family: 'Montserrat', sans-serif !important;
  font-size: clamp(15px, 1.6vw, 18px) !important;
  color: var(--ac-gray-200) !important;
  line-height: 1.65 !important;
  max-width: 580px;
  margin: 0 auto 40px !important;
}
.ac-hero-cta {
  display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.ac-btn-gold, .ac-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ac-btn-gold {
  background: linear-gradient(135deg, var(--ac-gold) 0%, var(--ac-gold-deep) 100%);
  color: var(--ac-dark) !important;
  box-shadow: 0 8px 24px rgba(249, 186, 50, 0.35);
}
.ac-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 186, 50, 0.5);
}
.ac-btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ac-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.ac-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--ac-gold);
  transform: translateY(-2px);
}
.ac-btn-lg { padding: 18px 40px; font-size: 16px; }
.ac-btn-arrow {
  transition: transform 0.3s ease; display: inline-block;
}
.ac-btn-gold:hover .ac-btn-arrow,
.ac-btn-outline:hover .ac-btn-arrow { transform: translateX(4px); }

.ac-hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: var(--ac-gray-300); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; text-align: center;
  animation: ac-float 2.5s ease-in-out infinite;
}
.ac-scroll-indicator {
  width: 1px; height: 30px; margin: 12px auto 0;
  background: linear-gradient(180deg, var(--ac-gold) 0%, transparent 100%);
}

/* Section headings */
.ac-section-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249, 186, 50, 0.1);
  border: 1px solid rgba(249, 186, 50, 0.25);
  border-radius: 99px; padding: 6px 14px 6px 12px;
  color: var(--ac-gold-light);
  font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; margin-bottom: 20px;
  text-transform: uppercase;
}
.ac-kicker-dot {
  width: 5px; height: 5px; background: var(--ac-gold);
  border-radius: 50%; animation: ac-pulse 2s infinite;
}
.ac-section-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(2em, 4vw, 3.2em) !important;
  font-weight: 800 !important; line-height: 1.1 !important;
  letter-spacing: -0.025em;
  color: var(--ac-white) !important;
  margin: 0 0 14px !important;
}
.ac-section-subtitle {
  font-family: 'Montserrat', sans-serif;
  color: var(--ac-gray-300) !important;
  font-size: 1.05em !important;
  max-width: 580px; margin: 0 auto !important;
  line-height: 1.65;
}

/* Category cards */
.ac-category-card {
  display: block; position: relative;
  background: linear-gradient(180deg, var(--ac-dark-surface) 0%, var(--ac-dark-elevated) 100%);
  border: 1px solid var(--ac-glass-border);
  border-radius: var(--ac-radius-lg);
  padding: 40px 32px; min-height: 260px;
  text-decoration: none !important;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ac-category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 186, 50, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(249, 186, 50, 0.15);
}
.ac-card-glow {
  position: absolute; top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at top right, rgba(249, 186, 50, 0.12) 0%, transparent 40%);
  opacity: 0; transition: opacity 0.4s ease;
}
.ac-category-card:hover .ac-card-glow { opacity: 1; }
.ac-card-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; height: 100%;
}
.ac-card-badge {
  position: absolute; top: 0; right: 0;
  background: var(--ac-red); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 99px;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 14px rgba(255, 71, 87, 0.4);
  animation: ac-pulse-red 1.8s ease-in-out infinite;
}
.ac-card-icon {
  font-size: 2.8em; margin-bottom: 18px;
  filter: drop-shadow(0 4px 12px rgba(249, 186, 50, 0.3));
}
.ac-card-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.3em !important; font-weight: 700 !important;
  color: var(--ac-white) !important; margin: 0 0 10px !important;
}
.ac-card-desc {
  color: var(--ac-gray-300) !important;
  font-size: 0.92em !important;
  line-height: 1.6 !important;
  margin: 0 0 18px !important; flex: 1;
}
.ac-card-arrow {
  display: inline-block;
  color: var(--ac-gold);
  font-size: 1.3em; font-weight: 700;
  transition: transform 0.3s ease;
}
.ac-category-card:hover .ac-card-arrow { transform: translateX(6px); }

.ac-card-featured {
  background: linear-gradient(180deg, rgba(249, 186, 50, 0.08) 0%, var(--ac-dark-elevated) 100%);
  border-color: rgba(249, 186, 50, 0.2);
}

/* Drop / spotlight section */
.ac-drop-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(2em, 4vw, 3.2em) !important;
  font-weight: 800 !important; line-height: 1.1 !important;
  letter-spacing: -0.025em;
  color: var(--ac-white) !important;
  margin: 0 0 20px !important;
}
.ac-drop-text {
  color: var(--ac-gray-300) !important;
  font-size: 1.05em !important;
  line-height: 1.7 !important;
  margin: 0 0 24px !important;
}
.ac-drop-features {
  list-style: none !important; padding: 0 !important;
  margin: 0 0 32px !important;
}
.ac-drop-features li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  color: var(--ac-gray-200);
  font-size: 0.95em;
}
.ac-feature-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(249, 186, 50, 0.15);
  color: var(--ac-gold); font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.ac-drop-visual {
  position: relative; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.ac-visual-card {
  position: absolute; background: var(--ac-dark-surface);
  border: 1px solid var(--ac-glass-border);
  border-radius: var(--ac-radius);
  padding: 20px 24px; min-width: 180px;
  box-shadow: var(--ac-shadow-card);
  animation: ac-float-card 4s ease-in-out infinite;
}
.ac-visual-card:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.ac-visual-card:nth-child(2) { top: 45%; right: 10%; animation-delay: 1s; }
.ac-visual-card:nth-child(3) { bottom: 15%; left: 30%; animation-delay: 2s; }
.ac-visual-icon { font-size: 1.8em; margin-bottom: 8px; }
.ac-visual-label {
  color: var(--ac-white); font-weight: 700;
  font-family: 'Poppins', sans-serif; font-size: 0.95em;
  margin-bottom: 2px;
}
.ac-visual-count { color: var(--ac-gold); font-size: 0.78em; font-weight: 500; }

/* Trust bar */
.ac-section-trust { border-top: 1px solid var(--ac-glass-border); }
.ac-trust-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.8em !important; font-weight: 800 !important;
  color: var(--ac-white) !important; margin: 0 !important;
  text-align: center;
}
.ac-trust-item { text-align: center; padding: 20px; }
.ac-trust-icon { font-size: 2.2em; margin-bottom: 12px; }
.ac-trust-heading {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1em !important; font-weight: 700 !important;
  color: var(--ac-white) !important; margin: 0 0 4px !important;
}
.ac-trust-desc {
  color: var(--ac-gray-300) !important;
  font-size: 0.88em !important;
  margin: 0 !important;
}

/* Animations */
@keyframes ac-hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ac-float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -6px); }
}
@keyframes ac-float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes ac-pulse-red {
  0%, 100% { box-shadow: 0 4px 14px rgba(255, 71, 87, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(255, 71, 87, 0.7); }
}

/* Homepage product grid — override archive rules for front page */
body.home .products.row,
body.page-id-102 .products.row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
}
body.home .products.row > .product-small.col,
body.page-id-102 .products.row > .product-small.col {
  width: 100% !important; padding: 0 !important; margin: 0 !important; flex: none !important;
}

@media (max-width: 849px) {
  .ac-homepage-hero { min-height: 520px; height: 70vh; }
  .ac-drop-visual { height: 280px; }
  .ac-visual-card { min-width: 140px; padding: 14px 18px; }
  body.home .products.row,
  body.page-id-102 .products.row { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ============================================
   ANIMATIONS (shared)
   ============================================ */

@keyframes ac-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(108, 138, 255, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(108, 138, 255, 0); }
}


/* ============================================
   AUCTION ARCHIVE
   ============================================ */

.ac-auction-archive {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 15px 80px;
}

.ac-auction-archive .ac-tag-bar {
  margin: 0 0 24px;
}

.ac-auction-archive .ac-auction-grid {
  margin-top: 8px;
}

.ac-auction-archive .ac-auction-grid > .woocommerce {
  padding: 0;
  margin: 0;
}

.ac-auction-archive .ac-auction-grid .products.row {
  margin: 0 -8px;
}

.ac-auction-archive .ac-auction-grid .product-small.col {
  padding: 8px;
}

.ac-auction-empty,
.ac-auction-empty-filtered {
  text-align: center;
  padding: 60px 20px;
  color: #d9dbe4;
  font-family: 'Poppins', sans-serif;
}

.ac-auction-empty-filtered {
  background: #141628;
  border: 1px solid rgba(249, 186, 50, 0.2);
  border-radius: 14px;
  padding: 40px 20px;
  margin: 16px 0;
}

@media (max-width: 768px) {
  .ac-auction-archive {
    padding: 20px 12px 60px;
  }
  .ac-auction-archive .ac-tag-bar {
    margin-bottom: 16px;
  }
}


/* ============================================
   AUCTION PRODUCT — single page
   ============================================ */

/* Produktbillede: lille guld-border + lille radius */
.single-product .woocommerce-product-gallery__image,
.single-product .woocommerce-product-gallery__image > a {
  border-radius: 8px;
  overflow: hidden;
}
.single-product .woocommerce-product-gallery__image img,
.single-product .product-images img {
  border-radius: 8px;
  border: 1px solid rgba(249, 186, 50, 0.45);
  transition: border-color 0.2s ease;
}
.single-product .woocommerce-product-gallery__image:hover img {
  border-color: rgba(249, 186, 50, 0.9);
}

/* Dark-on-dark fix: tabel-headere med inline style="background-color:#000000" */
.single-product .wksa-table thead tr,
.single-product .wksa-table thead tr td,
.single-product .wksa-table thead tr td.wksa-toptable,
.single-product .wksa-table thead tr td.toptable {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.78em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Tabel body — læselig kontrast på dark theme */
.single-product .wksa-table tbody td {
  color: #d9dbe4 !important;
  background: #141628;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}
.single-product .wksa-table {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(249, 186, 50, 0.15);
}
.single-product .wksa-text-center {
  color: #f9ba32;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1em;
  margin: 16px 0 10px;
}

/* Skjul pluginnets eget counter-element på single product (vi viser ux_countdown i stedet) */
.single-product .wksa-finish-counter,
.single-product .wksa-date-formate,
.single-product .wksa_expire_date {
  display: none !important;
}

/* AndCards countdown wrapper */
.ac-auction-countdown-wrap {
  background: linear-gradient(135deg, #141628, #0d0f1a);
  border: 1px solid rgba(249, 186, 50, 0.3);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 16px 0 22px;
}
.ac-auction-countdown-label {
  color: #f9ba32;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.78em;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
  text-align: center;
}
.ac-auction-countdown-wrap .ux-timer {
  color: #fff !important;
}
.ac-auction-countdown-wrap .ux-timer span {
  color: #fff !important;
}
.ac-auction-countdown-wrap .ux-timer strong {
  color: #f9ba32 !important;
}

.ac-auction-ended {
  background: rgba(220, 53, 69, 0.1);
  color: #ff6b7a;
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 10px;
  padding: 14px 18px;
  text-align: center;
  margin: 16px 0;
  font-family: 'Poppins', sans-serif;
}


/* ============================================
   SINGLE PRODUCT PAGE — dark theme finish
   ============================================ */

/* Page-title bar (under header) — sort med guld-underline */
.single-product .shop-page-title.product-page-title {
  background: #0d0f1a !important;
  padding: 28px 0 22px;
  border-bottom: 1px solid rgba(249, 186, 50, 0.15);
}
.single-product .shop-page-title .breadcrumbs,
.single-product .shop-page-title .breadcrumbs a {
  color: #9096a8 !important;
}
.single-product .shop-page-title .breadcrumbs a:hover,
.single-product .shop-page-title .breadcrumb_last,
.single-product .shop-page-title .breadcrumbs span {
  color: #f9ba32 !important;
}

/* Hovedindhold — luftigere padding */
.single-product .shop-container {
  padding-top: 32px;
  padding-bottom: 60px;
}

/* Produkttitel — hvid + Poppins */
.single-product .product-title.product_title {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700;
  font-size: 1.8em;
  margin-bottom: 8px;
}

.single-product .product-info .is-divider {
  background: rgba(249, 186, 50, 0.3) !important;
}

/* Pris — guld */
.single-product .price-wrapper .price,
.single-product .price-wrapper .price .amount,
.single-product .product-info .woocommerce-Price-amount,
.single-product .product-info .woocommerce-Price-currencySymbol {
  color: #f9ba32 !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700;
  font-size: 1.4em;
}

/* Vendor link */
.single-product .wkmp-product-author-shop {
  color: #9096a8 !important;
  font-size: 0.88em;
  margin: 4px 0 16px;
}
.single-product .wkmp-product-author-shop a {
  color: #f9ba32 !important;
  font-weight: 600;
  text-decoration: none;
}
.single-product .wkmp-product-author-shop a:hover {
  color: #ffffff !important;
}

/* Product meta (kategori-links) */
.single-product .product_meta {
  background: rgba(20, 22, 40, 0.6);
  border: 1px solid rgba(249, 186, 50, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 18px;
}
.single-product .product_meta .posted_in,
.single-product .product_meta .tagged_as,
.single-product .product_meta .sku_wrapper {
  color: #9096a8 !important;
  font-size: 0.82em;
  display: block;
  margin-bottom: 4px;
}
.single-product .product_meta a {
  color: #f9ba32 !important;
  text-decoration: none;
}
.single-product .product_meta a:hover { color: #ffffff !important; }

/* Tab navigation */
.single-product .woocommerce-tabs .tabs {
  border-bottom: 1px solid rgba(249, 186, 50, 0.2);
  margin: 28px 0 0;
}
.single-product .woocommerce-tabs .tabs li a {
  color: #9096a8 !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600;
  font-size: 0.85em;
  letter-spacing: 0.5px;
  padding: 14px 18px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
.single-product .woocommerce-tabs .tabs li a:hover {
  color: #ffffff !important;
}
.single-product .woocommerce-tabs .tabs li.active a {
  color: #f9ba32 !important;
  border-bottom-color: #f9ba32;
}

/* Tab panels */
.single-product .tab-panels {
  background: rgba(20, 22, 40, 0.4);
  border: 1px solid rgba(249, 186, 50, 0.12);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 24px;
}
.single-product .tab-panels .panel {
  color: #d9dbe4 !important;
}

/* "Log ind for at byde" — brand-styled */
.single-product .product-info > p > a.button,
.single-product .product-info p a.button {
  background: #f9ba32 !important;
  color: #1b1e2f !important;
  border-radius: 99px !important;
  padding: 12px 28px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700;
  font-size: 0.9em;
  border: none !important;
  transition: all 0.2s ease;
}
.single-product .product-info > p > a.button:hover {
  background: #ffd062 !important;
  transform: translateY(-1px);
}

/* Variation/quantity row spacing */
.single-product form.cart {
  margin: 18px 0 22px;
}

/* Skjul plugin-spørsmål om favourite-icon hvis ikke aktiveret */
.single-product .wkmp_hide { display: none !important; }

/* Related/upsell sektioner */
.single-product .related.products,
.single-product .upsells.products {
  padding: 40px 0;
  border-top: 1px solid rgba(249, 186, 50, 0.1);
}
.single-product .related.products > h2,
.single-product .upsells.products > h2 {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700;
}


/* ============================================
   SCROLL ANIMATIONS — front page
   ============================================ */

body.home .section.ac-fade-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

body.home .section.ac-fade-up.ac-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Reduceret motion: respekter brugerens preference */
@media (prefers-reduced-motion: reduce) {
  body.home .section.ac-fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ============================================
   AUCTION ARCHIVE — context fixes
   ============================================ */

/* Centrér enkelt-produkt i grid (når der kun er én auktion) */
.ac-auction-archive.ac-auction-count-1 .products.row,
.ac-auction-archive.ac-auction-count-2 .products.row {
  justify-content: center;
}

/* På forsiden (inde i [section]) — ingen ekstra padding/max-width */
body.home .ac-auction-archive {
  max-width: none;
  padding: 0;
  margin: 0;
}
body.home .ac-auction-archive .ac-auction-grid > .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
}

/* Sørg for at produktkort har konsistent indre opdeling, og ingen overflow */
.ac-auction-archive .product-small.col {
  min-width: 0;
}
.ac-auction-archive .product-small.col .col-inner {
  overflow: hidden;
}

/* ============================================
   FRONT PAGE — section alignment polish
   ============================================ */

/* Alle sektioner på forsiden har konsistent inner content-bredde */
body.home .section .row.row-collapse,
body.home .section .row {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Ensartet horisontal padding på små skærme */
@media (max-width: 768px) {
  body.home .section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* CTA-knapper i centeret col rendres altid centreret */
body.home .section .col[align="center"] {
  text-align: center;
}
body.home .section .col[align="center"] > * {
  margin-left: auto;
  margin-right: auto;
}

/* Sektionstitler — konsistent centreret afstand */
body.home .ac-section-kicker,
body.home .ac-section-title,
body.home .ac-section-subtitle,
body.home .ac-trust-title {
  text-align: center;
}


/* ============================================
   FLOATING VERIFICATION CARDS — refresh
   ============================================ */

.ac-drop-visual {
  position: relative;
  height: 480px;
  display: block;
  isolation: isolate;
}

/* Glød-haloer bag kortene */
.ac-drop-visual::before,
.ac-drop-visual::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
}
.ac-drop-visual::before {
  background: #f9ba32;
  top: 5%;
  right: 8%;
}
.ac-drop-visual::after {
  background: #6c8aff;
  bottom: 8%;
  left: 8%;
}

.ac-visual-card {
  position: absolute;
  z-index: 1;
  background: linear-gradient(160deg, rgba(20, 22, 40, 0.95), rgba(13, 15, 26, 0.92));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(249, 186, 50, 0.18);
  border-radius: 18px;
  padding: 22px 26px 20px;
  min-width: 220px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 60px -20px rgba(0, 0, 0, 0.7),
    0 12px 24px -8px rgba(249, 186, 50, 0.15);
  animation: ac-float-card 6s ease-in-out infinite;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.ac-visual-card:hover {
  border-color: rgba(249, 186, 50, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 40px 80px -20px rgba(0, 0, 0, 0.85),
    0 18px 36px -8px rgba(249, 186, 50, 0.32);
}

/* Position + lille rotation pr kort (rotation lever inde i animation) */
.ac-visual-card:nth-child(1) {
  top: 4%;
  left: 6%;
  animation-delay: 0s;
  --rot: -2.5deg;
}
.ac-visual-card.ac-visual-card-2 {
  top: 38%;
  right: 4%;
  animation-delay: 1.8s;
  --rot: 2.5deg;
}
.ac-visual-card.ac-visual-card-3 {
  bottom: 6%;
  left: 18%;
  animation-delay: 3.2s;
  --rot: -1.5deg;
}

/* Ikon: stort farvet chip i stedet for nøgent emoji */
.ac-visual-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(249, 186, 50, 0.2), rgba(249, 186, 50, 0.05));
  border: 1px solid rgba(249, 186, 50, 0.3);
  font-size: 1.45em;
  line-height: 1;
  margin-bottom: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 6px 16px rgba(249, 186, 50, 0.18);
}

.ac-visual-card-2 .ac-visual-icon {
  background: linear-gradient(135deg, rgba(108, 138, 255, 0.22), rgba(108, 138, 255, 0.05));
  border-color: rgba(108, 138, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 6px 16px rgba(108, 138, 255, 0.2);
}

.ac-visual-card-3 .ac-visual-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.22), rgba(16, 185, 129, 0.05));
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 6px 16px rgba(16, 185, 129, 0.22);
}

.ac-visual-label {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1em;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}

.ac-visual-count {
  color: rgba(217, 219, 228, 0.68);
  font-size: 0.78em;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Animation: vertikalt sving + bevar rotation pr kort */
@keyframes ac-float-card {
  0%, 100% {
    transform: translateY(0) rotate(var(--rot, 0deg));
  }
  50% {
    transform: translateY(-14px) rotate(var(--rot, 0deg));
  }
}

/* Mobile: stack pænt ovenpå hinanden uden overlap */
@media (max-width: 768px) {
  .ac-drop-visual {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 0;
  }
  .ac-drop-visual::before,
  .ac-drop-visual::after {
    width: 220px;
    height: 220px;
    filter: blur(70px);
  }
  .ac-visual-card,
  .ac-visual-card.ac-visual-card-2,
  .ac-visual-card.ac-visual-card-3 {
    position: static;
    width: 100%;
    min-width: 0;
    --rot: 0deg;
    animation: none;
    transform: none;
  }
  .ac-visual-card:hover {
    transform: translateY(-4px);
    transition: transform 0.25s ease;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ac-visual-card {
    animation: none;
    transform: rotate(var(--rot, 0deg));
  }
}


/* ============================================
   MELLEMLED — trust-deep cards
   ============================================ */

.ac-trust-deep-card {
  position: relative;
  background: linear-gradient(165deg, rgba(20, 22, 40, 0.92), rgba(13, 15, 26, 0.88));
  border: 1px solid rgba(249, 186, 50, 0.18);
  border-radius: 18px;
  padding: 34px 30px 32px;
  height: 100%;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 40px -12px rgba(0, 0, 0, 0.6);
}

.ac-trust-deep-card:hover {
  border-color: rgba(249, 186, 50, 0.45);
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 56px -14px rgba(0, 0, 0, 0.75),
    0 10px 30px -8px rgba(249, 186, 50, 0.22);
}

.ac-trust-deep-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(249, 186, 50, 0.2), rgba(249, 186, 50, 0.04));
  border: 1px solid rgba(249, 186, 50, 0.3);
  font-size: 1.55em;
  line-height: 1;
  margin-bottom: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 18px rgba(249, 186, 50, 0.15);
}

.ac-trust-deep-title {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700;
  font-size: 1.18em;
  line-height: 1.3;
  margin-bottom: 12px;
}

.ac-trust-deep-desc {
  color: #d9dbe4;
  line-height: 1.65;
  font-size: 0.95em;
  margin: 0;
}

/* ============================================
   VAULT — section + price card
   ============================================ */

.ac-section-vault {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.ac-section-vault::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(160px);
  background: rgba(249, 186, 50, 0.18);
  top: 50%;
  left: 65%;
  transform: translateY(-50%);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.ac-vault-title {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800;
  font-size: 2.6em;
  line-height: 1.1;
  margin: 14px 0 18px;
  letter-spacing: -0.01em;
}

.ac-vault-text {
  color: #d9dbe4;
  font-size: 1.04em;
  line-height: 1.65;
  margin-bottom: 26px;
}

.ac-vault-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.ac-vault-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: #d9dbe4;
  font-size: 0.96em;
  line-height: 1.5;
}

.ac-vault-features .ac-feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(249, 186, 50, 0.22), rgba(249, 186, 50, 0.06));
  border: 1px solid rgba(249, 186, 50, 0.45);
  color: #f9ba32;
  font-weight: 700;
  font-size: 0.72em;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Price card */
.ac-vault-pricecard {
  position: relative;
  isolation: isolate;
  border-radius: 24px;
  padding: 42px 36px;
  background: linear-gradient(160deg, rgba(20, 22, 40, 0.96), rgba(13, 15, 26, 0.94));
  border: 1px solid rgba(249, 186, 50, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 80px -20px rgba(0, 0, 0, 0.72),
    0 14px 36px -12px rgba(249, 186, 50, 0.2);
  overflow: hidden;
}

.ac-vault-pricecard-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle at 30% 18%, rgba(249, 186, 50, 0.22), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.ac-vault-pricecard-inner {
  position: relative;
  z-index: 1;
}

.ac-vault-pricecard-tag {
  display: inline-block;
  background: rgba(249, 186, 50, 0.12);
  color: #f9ba32;
  border: 1px solid rgba(249, 186, 50, 0.32);
  padding: 6px 14px;
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.ac-vault-pricecard-title {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700;
  font-size: 1.55em;
  margin: 0 0 4px;
}

.ac-vault-pricecard-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 16px 0 6px;
}

.ac-vault-pricecard-amount {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 4.5em;
  line-height: 1;
  background: linear-gradient(135deg, #f9ba32, #ffd062 60%, #f9ba32);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ac-vault-pricecard-currency {
  color: #f9ba32;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4em;
}

.ac-vault-pricecard-period {
  color: #9096a8;
  font-size: 0.95em;
  margin-left: 4px;
}

.ac-vault-pricecard-equiv {
  color: rgba(217, 219, 228, 0.62);
  font-size: 0.84em;
  font-style: italic;
  margin: 0 0 22px;
}

.ac-vault-pricecard-list {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid rgba(249, 186, 50, 0.14);
}

.ac-vault-pricecard-list li {
  padding: 8px 0 8px 24px;
  color: #d9dbe4;
  font-size: 0.93em;
  line-height: 1.45;
  position: relative;
}

.ac-vault-pricecard-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: #f9ba32;
  font-weight: 700;
  font-size: 0.95em;
}

@media (max-width: 768px) {
  .ac-vault-title { font-size: 1.95em; }
  .ac-vault-pricecard { padding: 30px 24px; }
  .ac-vault-pricecard-amount { font-size: 3.6em; }
  .ac-trust-deep-card { padding: 28px 24px; }
}


/* ============================================
   MY ACCOUNT — Vault page
   ============================================ */

.ac-vault-items {
  color: #d9dbe4;
}

.ac-vault-items-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(249, 186, 50, 0.15);
}

.ac-vault-items-title {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700;
  font-size: 1.5em;
  margin: 0 !important;
}

.ac-vault-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ac-vault-badge.ac-vault-active {
  background: linear-gradient(135deg, rgba(249, 186, 50, 0.2), rgba(249, 186, 50, 0.05));
  color: #f9ba32;
  border: 1px solid rgba(249, 186, 50, 0.4);
}

.ac-vault-badge.ac-vault-inactive {
  background: rgba(144, 150, 168, 0.12);
  color: #9096a8;
  border: 1px solid rgba(144, 150, 168, 0.25);
}

/* Stats row */
.ac-vault-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0 0 24px;
}

.ac-vault-stat {
  background: rgba(20, 22, 40, 0.7);
  border: 1px solid rgba(249, 186, 50, 0.15);
  border-radius: 12px;
  padding: 14px 22px;
  display: flex;
  flex-direction: column;
  min-width: 160px;
}

.ac-vault-stat-num {
  color: #f9ba32;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.6em;
  line-height: 1.1;
}

.ac-vault-stat-num .woocommerce-Price-amount,
.ac-vault-stat-num .woocommerce-Price-currencySymbol {
  color: #f9ba32 !important;
  font-size: 1em !important;
  font-weight: 800 !important;
}

.ac-vault-stat-label {
  color: rgba(217, 219, 228, 0.6);
  font-size: 0.78em;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 2px;
}

/* Items table */
.ac-vault-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(20, 22, 40, 0.6);
  border: 1px solid rgba(249, 186, 50, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.ac-vault-table thead th {
  background: rgba(13, 15, 26, 0.7) !important;
  color: rgba(217, 219, 228, 0.6) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.74em;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-align: left;
  padding: 14px 16px;
  border: none;
}

.ac-vault-table thead th.ac-vault-th-img { width: 80px; }
.ac-vault-table thead th.ac-vault-th-price { text-align: right; }

.ac-vault-table tbody td {
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
  color: #d9dbe4;
  background: transparent;
}

.ac-vault-table tbody tr:hover td {
  background: rgba(249, 186, 50, 0.04);
}

.ac-vault-td-img img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(249, 186, 50, 0.25);
  display: block;
}

.ac-vault-td-name a {
  color: #ffffff !important;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ac-vault-td-name a:hover {
  color: #f9ba32 !important;
}

.ac-vault-td-vendor {
  color: rgba(217, 219, 228, 0.7);
  font-size: 0.92em;
}

.ac-vault-td-price {
  color: #f9ba32 !important;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}
.ac-vault-td-price .woocommerce-Price-amount,
.ac-vault-td-price .woocommerce-Price-currencySymbol {
  color: #f9ba32 !important;
}

.ac-vault-td-date {
  color: rgba(217, 219, 228, 0.6);
  font-size: 0.88em;
  white-space: nowrap;
}

/* CTA when not subscriber + no items */
.ac-vault-cta-box,
.ac-vault-empty {
  background: linear-gradient(160deg, rgba(20, 22, 40, 0.9), rgba(13, 15, 26, 0.85));
  border: 1px solid rgba(249, 186, 50, 0.2);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
}

.ac-vault-cta-box p,
.ac-vault-empty p {
  color: #d9dbe4;
  font-size: 0.96em;
  line-height: 1.6;
  margin: 0 0 14px;
}

.ac-vault-empty-hint {
  font-size: 0.88em !important;
  color: rgba(217, 219, 228, 0.65) !important;
}

.ac-vault-empty strong { color: #f9ba32; }

.ac-vault-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f9ba32, #ffd062);
  color: #1b1e2f !important;
  padding: 12px 26px;
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.88em;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px -6px rgba(249, 186, 50, 0.4);
}
.ac-vault-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -6px rgba(249, 186, 50, 0.5);
}

/* Responsive: tabel bliver kort på mobile */
@media (max-width: 600px) {
  .ac-vault-table thead { display: none; }
  .ac-vault-table tbody td {
    display: block;
    border-top: none;
    padding: 4px 0;
    text-align: left !important;
  }
  .ac-vault-table tbody tr {
    display: block;
    padding: 16px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .ac-vault-td-img { float: left; margin-right: 14px; padding: 0 !important; }
  .ac-vault-td-name { font-size: 1em; padding-top: 2px !important; }
  .ac-vault-td-vendor::before { content: 'Sælger: '; color: rgba(217,219,228,0.5); }
  .ac-vault-td-price::before { content: 'Pris: '; color: rgba(217,219,228,0.5); font-weight: 400; }
  .ac-vault-td-date::before  { content: 'Dato: ';  color: rgba(217,219,228,0.5); }
}


/* ============================================
   HERO — "Hvorfor &Cards marketplace?" link + scroll anchor
   ============================================ */

.ac-hero-why {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.55) !important;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85em;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: none !important;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ac-hero-why:hover {
  color: #f9ba32 !important;
  border-color: rgba(249, 186, 50, 0.6);
  transform: translateY(2px);
}

.ac-hero-why-arrow {
  display: inline-block;
  transition: transform 0.4s ease;
  font-size: 1.05em;
}

.ac-hero-why:hover .ac-hero-why-arrow {
  animation: ac-bounce-down 1.2s ease-in-out infinite;
}

@keyframes ac-bounce-down {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}

/* Anchor offset så fixed header ikke skjuler sektionen */
.ac-anchor {
  display: block;
  position: relative;
  top: -90px;
  visibility: hidden;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ============================================
   MEGA MENU — Vault highlight
   ============================================ */

.andcards-vault-menu-item > a,
li.andcards-vault-menu-item > a {
  position: relative;
}

.andcards-vault-menu-item > a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f9ba32;
  margin-right: 7px;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(249, 186, 50, 0.6);
}


/* ============================================
   FOOTER — &Cards
   ============================================ */

#footer .ac-footer-section {
  border-top: 1px solid rgba(249, 186, 50, 0.12);
}

.ac-footer-brand .ac-footer-logo {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.7em;
  line-height: 1;
  margin-bottom: 14px;
  text-decoration: none !important;
}

.ac-footer-tagline {
  color: rgba(217, 219, 228, 0.62);
  font-size: 0.9em;
  line-height: 1.65;
  margin: 0 0 18px;
}

.ac-footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ac-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(249, 186, 50, 0.08);
  border: 1px solid rgba(249, 186, 50, 0.18);
  border-radius: 99px;
  color: rgba(217, 219, 228, 0.78);
  font-size: 0.74em;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.ac-footer-heading {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700;
  font-size: 0.78em;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin: 0 0 16px;
}

.ac-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ac-footer-list li {
  margin-bottom: 8px;
}

.ac-footer-list a {
  color: rgba(217, 219, 228, 0.68) !important;
  text-decoration: none !important;
  font-size: 0.92em;
  line-height: 1.5;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.ac-footer-list a:hover {
  color: #f9ba32 !important;
  padding-left: 4px;
}

/* Bottom bar */
.ac-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 50px;
  padding-top: 26px;
  border-top: 1px solid rgba(249, 186, 50, 0.1);
  color: rgba(217, 219, 228, 0.5);
  font-size: 0.82em;
}

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

.ac-footer-mini-links a {
  color: rgba(217, 219, 228, 0.65) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.ac-footer-mini-links a:hover { color: #f9ba32 !important; }

.ac-footer-sep {
  color: rgba(217, 219, 228, 0.25);
}

/* Skjul Flatsome's gamle absolute_footer hvis tom/standard */
.absolute-footer {
  background: #07080f !important;
  color: rgba(217, 219, 228, 0.4) !important;
  font-size: 0.78em;
  padding: 14px 0 !important;
  border-top: 1px solid rgba(249, 186, 50, 0.06);
}
.absolute-footer a {
  color: rgba(217, 219, 228, 0.6) !important;
}
.absolute-footer a:hover {
  color: #f9ba32 !important;
}

@media (max-width: 768px) {
  .ac-footer-bottom {
    justify-content: center;
    text-align: center;
  }
  .ac-footer-mini-links {
    justify-content: center;
  }
}


/* ============================================
   HERO — fix CTA layout (Hvorfor-link på egen linje)
   ============================================ */

.ac-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.ac-hero-why {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 22px auto 0;
  text-align: center;
}


/* ============================================
   MINI CART — fix layout + bredde
   ============================================ */

/* Bredere dropdown så indhold kan ånde */
.header-cart-link + .nav-dropdown,
.cart-item .nav-dropdown,
.nav-dropdown.has-arrow.cart-dropdown,
li.cart-item > .nav-dropdown {
  width: 380px !important;
  max-width: calc(100vw - 24px) !important;
  padding: 18px !important;
}

.nav-dropdown .widget_shopping_cart {
  padding: 0 !important;
  margin: 0 !important;
}

.nav-dropdown .widget_shopping_cart_content {
  display: block;
}

/* Item-rækken: billede venstre, indhold højre, x øverst-højre */
.nav-dropdown ul.cart_list,
.nav-dropdown ul.product_list_widget,
.nav-dropdown ul.woocommerce-mini-cart {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 14px !important;
  max-height: 320px;
  overflow-y: auto;
}

.nav-dropdown ul.cart_list li.mini_cart_item,
.nav-dropdown ul.woocommerce-mini-cart li.woocommerce-mini-cart-item,
.nav-dropdown ul.cart_list li {
  position: relative;
  display: grid !important;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  padding: 12px 8px 12px 0 !important;
  border: none !important;
  border-bottom: 1px solid rgba(249, 186, 50, 0.08) !important;
  margin: 0 !important;
  background: transparent !important;
}
.nav-dropdown ul.cart_list li:last-child,
.nav-dropdown ul.woocommerce-mini-cart li:last-child {
  border-bottom: none !important;
}

.nav-dropdown ul.cart_list li a:not(.remove) {
  display: contents !important;
  text-decoration: none !important;
}

.nav-dropdown ul.cart_list li img,
.nav-dropdown ul.woocommerce-mini-cart li img {
  width: 64px !important;
  height: 64px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  border: 1px solid rgba(249, 186, 50, 0.2) !important;
  margin: 0 !important;
  float: none !important;
  grid-column: 1 !important;
  grid-row: 1 / span 3 !important;
}

/* Title — anchor uden image bliver text node */
.nav-dropdown ul.cart_list li > a:not(.remove) {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.92em !important;
  line-height: 1.35 !important;
  grid-column: 2 !important;
  display: block !important;
  margin-bottom: 4px;
}
.nav-dropdown ul.cart_list li > a:not(.remove):hover {
  color: #f9ba32 !important;
}

/* Sold By: line (wkmp marketplace) */
.nav-dropdown ul.cart_list li .mp_seller_name,
.nav-dropdown ul.cart_list li .wkmp-mini-cart-vendor,
.nav-dropdown ul.cart_list li small {
  display: block;
  grid-column: 2;
  color: rgba(217, 219, 228, 0.55) !important;
  font-size: 0.78em !important;
  line-height: 1.35 !important;
  margin: 0 !important;
}

/* Quantity row + price */
.nav-dropdown ul.cart_list li .quantity {
  grid-column: 2 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  color: rgba(217, 219, 228, 0.7) !important;
  font-size: 0.86em !important;
  margin-top: 4px;
}

.nav-dropdown ul.cart_list li .quantity .amount,
.nav-dropdown ul.cart_list li .price .amount,
.nav-dropdown ul.cart_list li .woocommerce-Price-amount {
  color: #f9ba32 !important;
  font-weight: 700 !important;
  white-space: nowrap;
}

/* Remove (×) — top-right corner */
.nav-dropdown ul.cart_list li a.remove,
.nav-dropdown ul.woocommerce-mini-cart li a.remove,
.nav-dropdown ul.cart_list li a.remove_from_cart_button {
  position: absolute !important;
  top: 8px !important;
  right: 0 !important;
  left: auto !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(217, 219, 228, 0.55) !important;
  font-size: 14px !important;
  line-height: 22px !important;
  text-align: center !important;
  text-decoration: none !important;
  border: none !important;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 2;
}
.nav-dropdown ul.cart_list li a.remove:hover {
  background: rgba(220, 53, 69, 0.18) !important;
  color: #ff6b7a !important;
}

/* Quantity inputs (når wkmp tilføjer +/-) */
.nav-dropdown ul.cart_list li .wkmp-cart-quantity,
.nav-dropdown ul.cart_list li .quantity-input,
.nav-dropdown ul.cart_list li .qty {
  background: rgba(20, 22, 40, 0.6) !important;
  border: 1px solid rgba(249, 186, 50, 0.2) !important;
  border-radius: 8px !important;
  color: #fff !important;
  padding: 4px 6px !important;
  width: 50px !important;
}
.nav-dropdown ul.cart_list li button.minus,
.nav-dropdown ul.cart_list li button.plus,
.nav-dropdown ul.cart_list li .wkmp-qty-btn {
  background: rgba(249, 186, 50, 0.1) !important;
  color: #f9ba32 !important;
  border: 1px solid rgba(249, 186, 50, 0.3) !important;
  border-radius: 6px !important;
  width: 26px !important;
  height: 26px !important;
  line-height: 1 !important;
  cursor: pointer;
}

/* Subtotal-linje */
.nav-dropdown .widget_shopping_cart_content .total,
.nav-dropdown .woocommerce-mini-cart__total {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 14px 0 !important;
  border-top: 1px solid rgba(249, 186, 50, 0.15) !important;
  margin: 0 !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700 !important;
  color: #ffffff !important;
}
.nav-dropdown .total .amount,
.nav-dropdown .woocommerce-mini-cart__total .amount,
.nav-dropdown .total .woocommerce-Price-amount {
  color: #f9ba32 !important;
  font-size: 1.1em !important;
  font-weight: 800 !important;
}

/* Knapper: Se kurv + Kasse */
.nav-dropdown .buttons,
.nav-dropdown .woocommerce-mini-cart__buttons {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  margin: 0 !important;
}

.nav-dropdown .buttons a.button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 11px 14px !important;
  border-radius: 99px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.82em !important;
  letter-spacing: 0.3px !important;
  margin: 0 !important;
  text-decoration: none !important;
  transition: transform 0.15s ease, background 0.15s ease;
}

.nav-dropdown .buttons a.button.wc-forward,
.nav-dropdown .buttons a.checkout {
  background: linear-gradient(135deg, #f9ba32, #ffd062) !important;
  color: #1b1e2f !important;
  border: none !important;
  box-shadow: 0 6px 16px -6px rgba(249, 186, 50, 0.5) !important;
}
.nav-dropdown .buttons a.button.wc-forward:hover,
.nav-dropdown .buttons a.checkout:hover {
  transform: translateY(-1px);
}

.nav-dropdown .buttons a.button:not(.wc-forward):not(.checkout) {
  background: rgba(255, 255, 255, 0.04) !important;
  color: #ffffff !important;
  border: 1px solid rgba(249, 186, 50, 0.25) !important;
}
.nav-dropdown .buttons a.button:not(.wc-forward):not(.checkout):hover {
  background: rgba(249, 186, 50, 0.08) !important;
  border-color: rgba(249, 186, 50, 0.5) !important;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .header-cart-link + .nav-dropdown,
  li.cart-item > .nav-dropdown {
    width: calc(100vw - 24px) !important;
    right: 12px !important;
    left: auto !important;
  }
}


/* ============================================
   CHECKOUT — bredere container + bedre order summary
   ============================================ */

/* Bredere checkout container */
body.woocommerce-checkout .shop-container,
body.page-id-10 .shop-container,
body.woocommerce-checkout #content > .container,
body.woocommerce-checkout main#main > .container {
  max-width: 1440px !important;
  width: 100% !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* Block checkout (Gutenberg) layout — order summary får mere bredde */
.wc-block-checkout {
  max-width: 100% !important;
}

.wp-block-woocommerce-checkout {
  max-width: 100% !important;
}

.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
  max-width: 1440px !important;
  margin: 0 auto !important;
  gap: 48px !important;
}

.wp-block-woocommerce-checkout .wc-block-checkout__main {
  flex: 1 1 0 !important;
  min-width: 0;
  padding-right: 24px !important;
}

.wp-block-woocommerce-checkout .wc-block-checkout__sidebar,
.wp-block-woocommerce-checkout .wc-block-components-sidebar {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: auto !important;
  max-width: none !important;
  padding-left: 24px !important;
  border-left: 1px solid rgba(249, 186, 50, 0.25) !important;
}

/* Order summary — bedre item-layout */
.wc-block-components-order-summary-item {
  display: grid !important;
  grid-template-columns: 80px 1fr auto !important;
  gap: 16px !important;
  padding: 14px 0 !important;
  align-items: start !important;
}

.wc-block-components-order-summary-item__image {
  width: 80px !important;
  height: 80px !important;
  margin: 0 !important;
  grid-column: 1 !important;
}

.wc-block-components-order-summary-item__image img,
.wc-block-components-order-summary-item__image .wc-block-components-product-image {
  width: 80px !important;
  height: 80px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(249, 186, 50, 0.2) !important;
  object-fit: cover !important;
}

.wc-block-components-order-summary-item__description {
  grid-column: 2 !important;
  min-width: 0;
}

.wc-block-components-order-summary-item__total-price,
.wc-block-components-order-summary-item__individual-prices {
  grid-column: 3 !important;
  text-align: right !important;
  white-space: nowrap !important;
  color: #f9ba32 !important;
  font-weight: 700 !important;
}

.wc-block-components-product-name,
.wc-block-components-order-summary-item__name {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.95em !important;
  line-height: 1.35 !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: none !important;
}

.wc-block-components-product-metadata,
.wc-block-components-product-details,
.wc-block-components-order-summary-item__description small {
  color: rgba(217, 219, 228, 0.6) !important;
  font-size: 0.82em !important;
  line-height: 1.4 !important;
  margin-top: 4px !important;
}

/* Sold By: label på checkout */
.wc-block-components-product-metadata .mp_seller_name,
.wc-block-components-order-summary-item .mp_seller_name {
  display: block;
  color: rgba(217, 219, 228, 0.55) !important;
  font-size: 0.78em;
  margin-top: 4px;
}
.wc-block-components-product-metadata .mp_seller_name a,
.wc-block-components-order-summary-item .mp_seller_name a {
  color: #f9ba32 !important;
  text-decoration: none !important;
  white-space: normal !important;
  word-break: normal !important;
}

/* Subtotal/total rows */
.wc-block-components-totals-item {
  padding: 10px 0 !important;
  color: #d9dbe4 !important;
}
.wc-block-components-totals-item__label {
  color: rgba(217, 219, 228, 0.7) !important;
}
.wc-block-components-totals-item__value {
  color: #ffffff !important;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.05em !important;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-formatted-money-amount {
  color: #f9ba32 !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.3em !important;
}

/* Mobile: order summary full width */
@media (max-width: 900px) {
  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
    flex-direction: column !important;
    gap: 24px !important;
  }
  .wp-block-woocommerce-checkout .wc-block-checkout__sidebar,
  .wp-block-woocommerce-checkout .wc-block-components-sidebar {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}


.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
}


/* ============================================
   HERO — "Hvorfor" som pill (matcher .ac-hero-badge)
   ============================================ */

.ac-hero-why {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto !important;
  margin: 26px auto 0 !important;
  padding: 8px 18px 8px 16px !important;
  background: rgba(249, 186, 50, 0.08) !important;
  border: 1px solid rgba(249, 186, 50, 0.25) !important;
  border-radius: 99px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.4px !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(249, 186, 50, 0.25) !important;
  padding-bottom: 8px !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ac-hero-why:hover {
  background: rgba(249, 186, 50, 0.14) !important;
  border-color: rgba(249, 186, 50, 0.5) !important;
  color: #f9ba32 !important;
  transform: translateY(2px);
}

/* Center the pill on its own line under the CTA-row */
.ac-hero-cta + .ac-hero-why,
.ac-hero-content > .ac-hero-why {
  display: flex !important;
  width: max-content !important;
}

/* ============================================
   MINI CART — clean rewrite (uden display:contents)
   ============================================ */

/* Bredere dropdown */
.header-cart-link + .nav-dropdown,
li.cart-item > .nav-dropdown,
.nav-dropdown.has-arrow.cart-dropdown {
  width: 380px !important;
  max-width: calc(100vw - 24px) !important;
  padding: 18px !important;
}

.nav-dropdown .widget_shopping_cart {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.nav-dropdown .widget_shopping_cart_content {
  display: block;
}

/* Items list */
.nav-dropdown ul.woocommerce-mini-cart,
.nav-dropdown ul.cart_list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 14px !important;
  max-height: 360px;
  overflow-y: auto;
}

/* Item — image floats left, content flows right */
.nav-dropdown ul.woocommerce-mini-cart li.mini_cart_item,
.nav-dropdown ul.cart_list li.mini_cart_item {
  position: relative !important;
  display: block !important;
  padding: 14px 30px 14px 0 !important;
  border: none !important;
  border-bottom: 1px solid rgba(249, 186, 50, 0.08) !important;
  margin: 0 !important;
  background: transparent !important;
  overflow: hidden !important;
}
.nav-dropdown ul.woocommerce-mini-cart li.mini_cart_item:last-child,
.nav-dropdown ul.cart_list li.mini_cart_item:last-child {
  border-bottom: none !important;
}

/* Anchor with image+title — image floats left, title flows beside */
.nav-dropdown li.mini_cart_item > a:not(.remove) {
  display: block !important;
  text-decoration: none !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.92em !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 64px;
}
.nav-dropdown li.mini_cart_item > a:not(.remove):hover {
  color: #f9ba32 !important;
}

.nav-dropdown li.mini_cart_item > a:not(.remove) img {
  float: left !important;
  width: 64px !important;
  height: 64px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  border: 1px solid rgba(249, 186, 50, 0.2) !important;
  margin: 0 14px 6px 0 !important;
  padding: 0 !important;
}

/* Sold By dl — under titel, indrykket forbi billedet */
.nav-dropdown li.mini_cart_item dl.variation {
  margin: 4px 0 0 78px !important;
  padding: 0 !important;
  font-size: 0.78em !important;
  line-height: 1.4 !important;
  color: rgba(217, 219, 228, 0.6) !important;
  display: block !important;
}
.nav-dropdown li.mini_cart_item dl.variation dt,
.nav-dropdown li.mini_cart_item dl.variation dd {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  font-weight: 500 !important;
  color: rgba(217, 219, 228, 0.55) !important;
}
.nav-dropdown li.mini_cart_item dl.variation dd { margin-left: 4px !important; }
.nav-dropdown li.mini_cart_item dl.variation dd p {
  display: inline !important;
  margin: 0 !important;
}
.nav-dropdown li.mini_cart_item dl.variation dd p::before { content: ''; }
.nav-dropdown li.mini_cart_item dl.variation a {
  color: #f9ba32 !important;
  text-decoration: none !important;
}
.nav-dropdown li.mini_cart_item dl.variation a:hover { color: #ffd062 !important; }

/* Qty + price row — under sold-by, indrykket forbi billedet */
.nav-dropdown li.mini_cart_item .ux-mini-cart-qty {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin: 8px 0 0 78px !important;
  padding: 0 !important;
}

.nav-dropdown .ux-mini-cart-qty .ux-quantity {
  display: inline-flex !important;
  align-items: center !important;
  flex-shrink: 0;
}

.nav-dropdown .ux-mini-cart-qty .ux-quantity input.qty,
.nav-dropdown .ux-mini-cart-qty .ux-quantity .qty {
  width: 36px !important;
  height: 26px !important;
  text-align: center !important;
  background: rgba(20, 22, 40, 0.6) !important;
  border: 1px solid rgba(249, 186, 50, 0.2) !important;
  border-radius: 0 !important;
  color: #fff !important;
  font-size: 0.85em !important;
  padding: 0 !important;
  margin: 0 !important;
  -moz-appearance: textfield;
}
.nav-dropdown .ux-mini-cart-qty .ux-quantity input.qty::-webkit-outer-spin-button,
.nav-dropdown .ux-mini-cart-qty .ux-quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.nav-dropdown .ux-mini-cart-qty .ux-quantity__button {
  width: 26px !important;
  height: 26px !important;
  background: rgba(249, 186, 50, 0.08) !important;
  color: #f9ba32 !important;
  border: 1px solid rgba(249, 186, 50, 0.25) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  cursor: pointer;
  padding: 0 !important;
  margin: 0 !important;
  min-width: 0 !important;
}
.nav-dropdown .ux-mini-cart-qty .ux-quantity__button--minus { border-radius: 6px 0 0 6px !important; }
.nav-dropdown .ux-mini-cart-qty .ux-quantity__button--plus  { border-radius: 0 6px 6px 0 !important; }
.nav-dropdown .ux-mini-cart-qty .ux-quantity__button:hover {
  background: rgba(249, 186, 50, 0.18) !important;
}

.nav-dropdown .ux-mini-cart-qty .product-subtotal,
.nav-dropdown .ux-mini-cart-qty .price-wrapper {
  color: #f9ba32 !important;
  font-weight: 700 !important;
  font-family: 'Poppins', sans-serif !important;
  white-space: nowrap !important;
  font-size: 0.95em !important;
}
.nav-dropdown .ux-mini-cart-qty .product-subtotal .amount,
.nav-dropdown .ux-mini-cart-qty .price-wrapper .amount,
.nav-dropdown .ux-mini-cart-qty .woocommerce-Price-amount,
.nav-dropdown .ux-mini-cart-qty .woocommerce-Price-currencySymbol {
  color: #f9ba32 !important;
}

/* Skjul Flatsome's data-title="Subtotal" tooltip-rendering */
.nav-dropdown .ux-mini-cart-qty [data-title]::before,
.nav-dropdown .ux-mini-cart-qty [data-title]::after {
  display: none !important;
  content: none !important;
}

/* Remove (×) — top-right */
.nav-dropdown li.mini_cart_item a.remove,
.nav-dropdown li.mini_cart_item a.remove_from_cart_button {
  position: absolute !important;
  top: 12px !important;
  right: 0 !important;
  left: auto !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(217, 219, 228, 0.55) !important;
  font-size: 14px !important;
  line-height: 22px !important;
  text-align: center !important;
  text-decoration: none !important;
  border: none !important;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 2;
  font-weight: 400 !important;
}
.nav-dropdown li.mini_cart_item a.remove:hover {
  background: rgba(220, 53, 69, 0.18) !important;
  color: #ff6b7a !important;
}

/* Footer — subtotal + buttons */
.nav-dropdown .ux-mini-cart-footer,
.nav-dropdown .widget_shopping_cart_content > .total + .buttons,
.nav-dropdown .widget_shopping_cart_content > .total {
  margin: 0 !important;
}

.nav-dropdown .woocommerce-mini-cart__total,
.nav-dropdown .ux-mini-cart-footer .total {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 14px 0 !important;
  margin: 0 !important;
  border-top: 1px solid rgba(249, 186, 50, 0.15) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}
.nav-dropdown .woocommerce-mini-cart__total .amount,
.nav-dropdown .woocommerce-mini-cart__total .woocommerce-Price-amount,
.nav-dropdown .ux-mini-cart-footer .total .amount {
  color: #f9ba32 !important;
  font-size: 1.1em !important;
  font-weight: 800 !important;
}

/* Buttons row */
.nav-dropdown .woocommerce-mini-cart__buttons,
.nav-dropdown .ux-mini-cart-footer .buttons {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-dropdown .woocommerce-mini-cart__buttons a.button,
.nav-dropdown .ux-mini-cart-footer .buttons a.button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 11px 14px !important;
  border-radius: 99px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.82em !important;
  letter-spacing: 0.3px !important;
  margin: 0 !important;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 1px solid rgba(249, 186, 50, 0.25) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: #ffffff !important;
}

.nav-dropdown .woocommerce-mini-cart__buttons a.button.checkout,
.nav-dropdown .ux-mini-cart-footer .buttons a.button.checkout,
.nav-dropdown .woocommerce-mini-cart__buttons a.button.wc-forward + a.button.checkout {
  background: linear-gradient(135deg, #f9ba32, #ffd062) !important;
  color: #1b1e2f !important;
  border: none !important;
  box-shadow: 0 6px 16px -6px rgba(249, 186, 50, 0.5) !important;
}
.nav-dropdown .woocommerce-mini-cart__buttons a.button.checkout:hover,
.nav-dropdown .ux-mini-cart-footer .buttons a.button.checkout:hover {
  transform: translateY(-1px);
}
.nav-dropdown .woocommerce-mini-cart__buttons a.button:not(.checkout):hover {
  background: rgba(249, 186, 50, 0.08) !important;
  border-color: rgba(249, 186, 50, 0.5) !important;
}

@media (max-width: 480px) {
  .header-cart-link + .nav-dropdown,
  li.cart-item > .nav-dropdown {
    width: calc(100vw - 24px) !important;
    right: 12px !important;
    left: auto !important;
  }
}


/* ============================================
   EMPTY CART — clean state
   ============================================ */

.wp-block-woocommerce-empty-cart-block {
  padding: 80px 20px !important;
  text-align: center;
  background: rgba(20, 22, 40, 0.4);
  border: 1px solid rgba(249, 186, 50, 0.12);
  border-radius: 18px;
  max-width: 600px;
  margin: 40px auto !important;
}

.ac-empty-cart-title,
.wp-block-woocommerce-empty-cart-block h2.ac-empty-cart-title {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.8em !important;
  margin: 0 0 10px !important;
}

.ac-empty-cart-lead {
  color: rgba(217, 219, 228, 0.65) !important;
  font-size: 0.96em !important;
  line-height: 1.55 !important;
  margin: 0 auto 26px !important;
  max-width: 420px;
}

.ac-empty-cart-btn .wp-block-button__link {
  display: inline-block !important;
  background: linear-gradient(135deg, #f9ba32, #ffd062) !important;
  color: #1b1e2f !important;
  padding: 12px 28px !important;
  border-radius: 99px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.92em !important;
  letter-spacing: 0.3px !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: 0 8px 20px -6px rgba(249, 186, 50, 0.45) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ac-empty-cart-btn .wp-block-button__link:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -6px rgba(249, 186, 50, 0.55) !important;
}


/* ============================================
   FIX — My Account nav: ingen padding-shift på hover
   (forhindrer at hjertet rykker når man hover'er)
   ============================================ */

.woocommerce-MyAccount-navigation ul li a {
  padding-left: 22px !important;
}

.woocommerce-MyAccount-navigation ul li a:hover {
  padding-left: 22px !important;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
  padding-left: 22px !important;
}

/* ============================================
   EMPTY CART — outline button
   ============================================ */

.ac-empty-cart-btn-outline .wp-block-button__link {
  display: inline-block !important;
  background: transparent !important;
  color: #ffffff !important;
  padding: 11px 26px !important;
  border-radius: 99px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.92em !important;
  letter-spacing: 0.3px !important;
  text-decoration: none !important;
  border: 1px solid rgba(249, 186, 50, 0.4) !important;
  transition: background 0.2s ease, border-color 0.2s ease;
  box-shadow: none !important;
}

.ac-empty-cart-btn-outline .wp-block-button__link:hover {
  background: rgba(249, 186, 50, 0.08) !important;
  border-color: rgba(249, 186, 50, 0.7) !important;
}

.wp-block-woocommerce-empty-cart-block .wp-block-buttons {
  flex-wrap: wrap !important;
  gap: 12px !important;
  justify-content: center !important;
}


/* ============================================
   VAULT — Relist (sælg fra vault)
   ============================================ */

.ac-vault-relist-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  background: linear-gradient(135deg, #f9ba32, #ffd062);
  color: #1b1e2f !important;
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.78em;
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 12px -4px rgba(249, 186, 50, 0.5);
}
.ac-vault-relist-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -4px rgba(249, 186, 50, 0.6);
}
.ac-vault-relist-btn--ghost {
  background: transparent;
  color: rgba(217, 219, 228, 0.78) !important;
  border: 1px solid rgba(249, 186, 50, 0.3);
  box-shadow: none;
}
.ac-vault-relist-btn--ghost:hover {
  background: rgba(249, 186, 50, 0.06);
  border-color: rgba(249, 186, 50, 0.55);
}

.ac-vault-td-action {
  white-space: nowrap;
  text-align: right;
}

.ac-vault-relisted-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 9px;
  background: rgba(108, 138, 255, 0.12);
  color: #8aa2ff;
  border: 1px solid rgba(108, 138, 255, 0.3);
  border-radius: 99px;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.ac-vault-vendor-hint {
  margin-top: 22px;
  padding: 14px 18px;
  background: rgba(20, 22, 40, 0.5);
  border: 1px dashed rgba(249, 186, 50, 0.18);
  border-radius: 10px;
  color: rgba(217, 219, 228, 0.7);
  font-size: 0.86em;
}
.ac-vault-vendor-hint a {
  color: #f9ba32 !important;
  font-weight: 600;
  text-decoration: none !important;
}

/* Form */
.ac-vault-relist {
  color: #d9dbe4;
}
.ac-vault-back {
  display: inline-block;
  color: rgba(217, 219, 228, 0.65) !important;
  font-size: 0.86em;
  text-decoration: none !important;
  margin-bottom: 18px;
}
.ac-vault-back:hover { color: #f9ba32 !important; }

.ac-vault-relist-title {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700;
  font-size: 1.5em;
  margin: 0 0 10px;
}
.ac-vault-relist-lead {
  color: rgba(217, 219, 228, 0.7);
  margin: 0 0 24px;
  font-size: 0.96em;
  line-height: 1.55;
}
.ac-vault-relist-lead strong { color: #f9ba32; }

.ac-vault-relist-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(20, 22, 40, 0.6);
  border: 1px solid rgba(249, 186, 50, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 26px;
}
.ac-vault-relist-img img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(249, 186, 50, 0.25);
  display: block;
}
.ac-vault-relist-summary-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95em;
}
.ac-vault-relist-summary-meta {
  color: rgba(217, 219, 228, 0.55);
  font-size: 0.82em;
  margin-top: 2px;
}

.ac-vault-relist-form {
  background: rgba(20, 22, 40, 0.4);
  border: 1px solid rgba(249, 186, 50, 0.12);
  border-radius: 14px;
  padding: 26px;
}

.ac-vault-relist-field {
  margin-bottom: 18px;
}
.ac-vault-relist-field label {
  display: block;
  color: rgba(217, 219, 228, 0.85);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82em;
  margin-bottom: 6px;
}
.ac-vault-relist-field input[type=text],
.ac-vault-relist-field input[type=number],
.ac-vault-relist-field textarea {
  width: 100%;
  background: rgba(13, 15, 26, 0.7) !important;
  border: 1px solid rgba(249, 186, 50, 0.18) !important;
  border-radius: 8px !important;
  padding: 11px 14px !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.95em !important;
  transition: border-color 0.2s ease;
}
.ac-vault-relist-field input:focus,
.ac-vault-relist-field textarea:focus {
  outline: none !important;
  border-color: rgba(249, 186, 50, 0.5) !important;
}
.ac-vault-relist-field small {
  display: block;
  color: rgba(217, 219, 228, 0.5);
  font-size: 0.8em;
  margin-top: 6px;
}

.ac-vault-relist-radios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ac-vault-relist-radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(13, 15, 26, 0.7);
  border: 1px solid rgba(249, 186, 50, 0.15);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ac-vault-relist-radio:has(input:checked) {
  border-color: #f9ba32;
  background: rgba(249, 186, 50, 0.06);
}
.ac-vault-relist-radio--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ac-vault-relist-radio span {
  display: block;
}
.ac-vault-relist-radio strong {
  display: block;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9em;
}
.ac-vault-relist-radio small {
  display: block;
  color: rgba(217, 219, 228, 0.55);
  font-size: 0.78em;
  margin-top: 2px;
}

.ac-vault-relist-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(249, 186, 50, 0.1);
}

.ac-vault-relist-submit {
  background: linear-gradient(135deg, #f9ba32, #ffd062) !important;
  color: #1b1e2f !important;
  padding: 12px 28px !important;
  border-radius: 99px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.92em !important;
  border: none !important;
  cursor: pointer;
  box-shadow: 0 8px 20px -6px rgba(249, 186, 50, 0.4);
  transition: transform 0.15s ease;
}
.ac-vault-relist-submit:hover { transform: translateY(-1px); }

.ac-vault-relist-cancel {
  color: rgba(217, 219, 228, 0.6) !important;
  font-size: 0.86em;
  text-decoration: none !important;
}
.ac-vault-relist-cancel:hover { color: #ffffff !important; }


/* ============================================
   VAULT — auction-fields i relist-form
   ============================================ */

.ac-vault-relist-fields {
  margin: 0;
  padding: 0;
}

.ac-vault-relist-fields[hidden] {
  display: none !important;
}

.ac-vault-relist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 600px) {
  .ac-vault-relist-grid {
    grid-template-columns: 1fr;
  }
}

.ac-vault-relist-field input[type=datetime-local] {
  width: 100%;
  background: rgba(13, 15, 26, 0.7) !important;
  border: 1px solid rgba(249, 186, 50, 0.18) !important;
  border-radius: 8px !important;
  padding: 11px 14px !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.95em !important;
  color-scheme: dark;
}
.ac-vault-relist-field input[type=datetime-local]:focus {
  outline: none !important;
  border-color: rgba(249, 186, 50, 0.5) !important;
}


/* ============================================
   AUCTION — price label + form polish
   ============================================ */

.single-product .price-wrapper .price.product-page-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  font-size: 1em !important;
}

.ac-auction-price-label {
  color: rgba(217, 219, 228, 0.6);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.78em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ac-auction-price-amount {
  display: inline-flex;
  align-items: baseline;
}

.ac-auction-price-amount,
.ac-auction-price-amount .woocommerce-Price-amount,
.ac-auction-price-amount .amount,
.ac-auction-price-amount .woocommerce-Price-currencySymbol {
  color: #f9ba32 !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.4em !important;
}

/* Sælger-line */
.single-product .product-info > p:has(> a) {
  color: rgba(217, 219, 228, 0.7);
  margin: 6px 0 14px;
  font-size: 0.92em;
}

/* Bid-form / cart container på dark theme */
.single-product form.cart {
  background: rgba(20, 22, 40, 0.5);
  border: 1px solid rgba(249, 186, 50, 0.15);
  border-radius: 12px;
  padding: 18px 18px 4px;
  margin: 16px 0 22px;
}

.single-product form.cart .qty,
.single-product form.cart input[type=number],
.single-product form.cart input[type=text] {
  background: rgba(13, 15, 26, 0.7) !important;
  border: 1px solid rgba(249, 186, 50, 0.2) !important;
  border-radius: 8px !important;
  color: #fff !important;
  padding: 9px 12px !important;
}

.single-product form.cart input[type=number]:focus,
.single-product form.cart input[type=text]:focus {
  outline: none !important;
  border-color: rgba(249, 186, 50, 0.5) !important;
}

/* Skjul tom bid-input + label hvis sælger ser sin egen vare */
.single-product form.cart:has(p.stock.in-stock) + p:empty,
.single-product .product-info p:empty {
  display: none !important;
}

/* Auctioneer-error message ("Du kan ikke byde på din egen vare") */
.single-product .product-info > strong:contains('byde') {
  display: block;
  background: rgba(108, 138, 255, 0.08);
  border: 1px solid rgba(108, 138, 255, 0.3);
  border-radius: 10px;
  padding: 12px 16px;
  color: #8aa2ff;
  font-weight: 500;
  margin: 14px 0;
  font-size: 0.92em;
}

/* in-stock badge — "På lager" */
.single-product .stock.in-stock {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 99px;
  font-size: 0.78em;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin: 0 0 6px;
}


/* ============================================
   VAULT — snapshot (ikke-klikbar) styling
   ============================================ */

.ac-vault-snapshot-name {
  display: block;
  color: #ffffff;
  font-weight: 600;
  cursor: default;
}

.ac-vault-snapshot-hint {
  display: block;
  color: rgba(217, 219, 228, 0.45);
  font-size: 0.74em;
  font-style: italic;
  margin-top: 4px;
  letter-spacing: 0.2px;
}

/* Sørg for at billedet i vault-tabel ikke er klikbart hvis nogen wrapper det */
.ac-vault-td-img a {
  pointer-events: none;
  cursor: default;
}


/* ============================================
   AUCTION COUNTDOWN — polished design
   ============================================ */

/* Wrapper — mørkt kort med guld accent + dybde */
.ac-auction-countdown-wrap {
  background: linear-gradient(160deg, #141628 0%, #0a0c18 100%) !important;
  border: 1px solid rgba(249, 186, 50, 0.22) !important;
  border-radius: 16px !important;
  padding: 20px 22px 22px !important;
  margin: 16px 0 24px !important;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 40px -16px rgba(0, 0, 0, 0.6);
}

.ac-auction-countdown-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 186, 50, 0.7), transparent);
  pointer-events: none;
}

/* Label "Auktionen slutter om" — med live-prik */
.ac-auction-countdown-label {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  color: rgba(249, 186, 50, 0.85) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.72em !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  margin: 0 0 16px !important;
}

.ac-auction-countdown-label::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f9ba32;
  box-shadow: 0 0 10px rgba(249, 186, 50, 0.65);
  animation: ac-countdown-dot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes ac-countdown-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(1.4); }
}

/* Reset Flatsome's inline font-size + nyt grid */
.ac-auction-countdown-wrap .ux-timer {
  font-size: 100% !important;
  display: flex !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  align-items: stretch !important;
  justify-content: center !important;
}

/* Hver enhed: kort med stort tal + lille label */
.ac-auction-countdown-wrap .ux-timer span {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(180deg, rgba(13, 15, 26, 0.85) 0%, rgba(20, 22, 40, 0.6) 100%) !important;
  border: 1px solid rgba(249, 186, 50, 0.16) !important;
  border-radius: 12px !important;
  padding: 14px 6px 12px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800 !important;
  font-size: 2.2em !important;
  line-height: 1 !important;
  color: #ffffff !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 6px 16px -8px rgba(0, 0, 0, 0.5) !important;
  font-variant-numeric: tabular-nums;
}

/* Indre guld glow */
.ac-auction-countdown-wrap .ux-timer span::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 50% 0%, rgba(249, 186, 50, 0.14) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Hold tal + label på toppen af z-laget */
.ac-auction-countdown-wrap .ux-timer span > strong,
.ac-auction-countdown-wrap .ux-timer span {
  position: relative;
  z-index: 1;
}

/* Label under tallet */
.ac-auction-countdown-wrap .ux-timer span strong {
  display: block !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.34em !important;
  text-transform: uppercase !important;
  letter-spacing: 1.6px !important;
  color: rgba(249, 186, 50, 0.65) !important;
  margin-top: 10px !important;
  z-index: 2;
}

/* Sidste cell (sekunder) — subtil guld-pulse */
.ac-auction-countdown-wrap .ux-timer span:last-child {
  border-color: rgba(249, 186, 50, 0.32) !important;
  animation: ac-countdown-pulse 2s ease-in-out infinite;
}
.ac-auction-countdown-wrap .ux-timer span:last-child strong {
  color: rgba(249, 186, 50, 0.85) !important;
}

@keyframes ac-countdown-pulse {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 6px 16px -8px rgba(0, 0, 0, 0.5),
      0 0 0 0 rgba(249, 186, 50, 0);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 6px 16px -8px rgba(0, 0, 0, 0.5),
      0 0 0 4px rgba(249, 186, 50, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ac-auction-countdown-wrap .ux-timer span:last-child,
  .ac-auction-countdown-label::before {
    animation: none !important;
  }
}

/* Mobile — mindre tal, tættere */
@media (max-width: 480px) {
  .ac-auction-countdown-wrap .ux-timer { gap: 6px !important; }
  .ac-auction-countdown-wrap .ux-timer span {
    font-size: 1.7em !important;
    padding: 12px 4px 10px !important;
    border-radius: 10px !important;
  }
  .ac-auction-countdown-wrap .ux-timer span strong {
    font-size: 0.4em !important;
    letter-spacing: 1.2px !important;
  }
}


/* ============================================
   AUCTION PRICE — fix kr.-symbol størrelse
   ============================================ */

/* Pris-amount nulstiller alt indvendigt, så kr. ikke compounder */
.ac-auction-price-amount,
.ac-auction-price-amount .woocommerce-Price-amount,
.ac-auction-price-amount .amount,
.ac-auction-price-amount bdi {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 4px !important;
  color: #f9ba32 !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.6em !important;
  line-height: 1 !important;
}

/* Reset de indre nested elementer så font-size ikke compounder */
.ac-auction-price-amount .woocommerce-Price-amount,
.ac-auction-price-amount .amount,
.ac-auction-price-amount bdi {
  font-size: 1em !important;
}

/* Currency-symbol: lille + samme guld + subtil */
.ac-auction-price-amount .woocommerce-Price-currencySymbol {
  font-size: 0.55em !important;
  font-weight: 700 !important;
  color: rgba(249, 186, 50, 0.75) !important;
  font-family: 'Poppins', sans-serif !important;
  margin-left: 2px !important;
  vertical-align: baseline !important;
  letter-spacing: 0.2px;
}

/* Hele price-row: pænere alignment */
.single-product .price-wrapper .price.product-page-price {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
  font-size: 1em !important;
  line-height: 1.2 !important;
}

.ac-auction-price-label {
  display: inline-block;
  color: rgba(217, 219, 228, 0.55) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.74em !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  align-self: center;
}


/* ============================================
   VENDOR — godkendt sælger hub
   ============================================ */

.ac-vendor-approved-hub {
  max-width: 920px;
  margin: 0 auto;
}

.ac-vendor-approved-header {
  text-align: center;
  margin-bottom: 36px;
}

.ac-vendor-approved-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10b981;
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.78em;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
}

.ac-vendor-approved-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 0.78em;
  font-weight: 800;
}

.ac-vendor-approved-title {
  color: #1b1e2f !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800 !important;
  font-size: 2.2em !important;
  line-height: 1.15 !important;
  margin: 0 0 14px !important;
}

.ac-vendor-approved-shop {
  background: linear-gradient(135deg, #f9ba32, #ffd062);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ac-vendor-approved-lead {
  color: #6b7180;
  font-size: 1em;
  margin: 0 auto 0;
  max-width: 540px;
  line-height: 1.5;
}

.ac-vendor-approved-lead strong {
  color: #1b1e2f;
}

/* Grid med action-cards */
.ac-vendor-approved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

@media (max-width: 720px) {
  .ac-vendor-approved-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ac-vendor-approved-grid { grid-template-columns: 1fr; }
}

.ac-vendor-card {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid rgba(27, 30, 47, 0.08);
  border-radius: 16px;
  padding: 22px 20px 20px;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 1px 2px rgba(27, 30, 47, 0.03);
  overflow: hidden;
}

.ac-vendor-card:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 186, 50, 0.4);
  box-shadow: 0 12px 32px -10px rgba(27, 30, 47, 0.15), 0 4px 12px -4px rgba(249, 186, 50, 0.18);
}

.ac-vendor-card-icon {
  font-size: 1.8em;
  line-height: 1;
  margin-bottom: 12px;
}

.ac-vendor-card-title {
  color: #1b1e2f !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1em !important;
  margin-bottom: 4px !important;
}

.ac-vendor-card-desc {
  color: #6b7180;
  font-size: 0.86em;
  line-height: 1.45;
}

.ac-vendor-card-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #c5c8d4;
  font-size: 1.1em;
  transition: transform 0.2s ease, color 0.2s ease;
}

.ac-vendor-card:hover .ac-vendor-card-arrow {
  color: #f9ba32;
  transform: translateX(3px);
}

/* Primary card — guld accent */
.ac-vendor-card-primary {
  background: linear-gradient(165deg, #1b1e2f, #2a2e44);
  border-color: rgba(249, 186, 50, 0.4);
  box-shadow: 0 8px 24px -10px rgba(27, 30, 47, 0.4);
}
.ac-vendor-card-primary .ac-vendor-card-title {
  color: #ffffff !important;
}
.ac-vendor-card-primary .ac-vendor-card-desc {
  color: rgba(255, 255, 255, 0.7);
}
.ac-vendor-card-primary .ac-vendor-card-arrow {
  color: #f9ba32;
}
.ac-vendor-card-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -10px rgba(27, 30, 47, 0.5), 0 6px 16px -4px rgba(249, 186, 50, 0.3);
  border-color: rgba(249, 186, 50, 0.7);
}

/* Vault card — særlig touch */
.ac-vendor-card-vault {
  background: linear-gradient(165deg, #fff8e8 0%, #fff 60%);
  border-color: rgba(249, 186, 50, 0.3);
}
.ac-vendor-card-vault:hover {
  border-color: rgba(249, 186, 50, 0.6);
}

.ac-vendor-approved-help {
  text-align: center;
  color: #9096a8;
  font-size: 0.88em;
  margin: 0;
}
.ac-vendor-approved-help a {
  color: #6c8aff !important;
  font-weight: 600;
  text-decoration: none !important;
}
.ac-vendor-approved-help a:hover {
  text-decoration: underline !important;
}


/* ============================================
   FIX — vendor approved hub farver på lys baggrund
   master CSS sætter body color til lys, så vi tvinger
   mørke farver i hub'ens tekst-elementer.
   ============================================ */

.ac-vendor-approved-hub,
.ac-vendor-approved-hub * {
  color: inherit;
}

.ac-vendor-approved-hub {
  color: #1b1e2f !important;
}

.ac-vendor-approved-lead,
.ac-vendor-approved-hub .ac-vendor-approved-lead {
  color: #4f5563 !important;
}
.ac-vendor-approved-lead strong,
.ac-vendor-approved-hub .ac-vendor-approved-lead strong {
  color: #1b1e2f !important;
  font-weight: 700 !important;
}

.ac-vendor-card-title,
.ac-vendor-approved-hub .ac-vendor-card-title {
  color: #1b1e2f !important;
}
.ac-vendor-card-desc,
.ac-vendor-approved-hub .ac-vendor-card-desc {
  color: #5a6072 !important;
}

.ac-vendor-card-arrow,
.ac-vendor-approved-hub .ac-vendor-card-arrow {
  color: #b8bcc9 !important;
}
.ac-vendor-card:hover .ac-vendor-card-arrow,
.ac-vendor-approved-hub .ac-vendor-card:hover .ac-vendor-card-arrow {
  color: #f9ba32 !important;
}

/* Primary card bevarer hvid tekst på dark bg */
.ac-vendor-card-primary,
.ac-vendor-approved-hub .ac-vendor-card-primary,
.ac-vendor-approved-hub .ac-vendor-card-primary * {
  color: #ffffff !important;
}
.ac-vendor-card-primary .ac-vendor-card-title,
.ac-vendor-approved-hub .ac-vendor-card-primary .ac-vendor-card-title {
  color: #ffffff !important;
}
.ac-vendor-card-primary .ac-vendor-card-desc,
.ac-vendor-approved-hub .ac-vendor-card-primary .ac-vendor-card-desc {
  color: rgba(255, 255, 255, 0.72) !important;
}
.ac-vendor-card-primary .ac-vendor-card-arrow,
.ac-vendor-approved-hub .ac-vendor-card-primary .ac-vendor-card-arrow {
  color: #f9ba32 !important;
}

.ac-vendor-approved-help,
.ac-vendor-approved-hub .ac-vendor-approved-help {
  color: #6b7180 !important;
}
.ac-vendor-approved-help a,
.ac-vendor-approved-hub .ac-vendor-approved-help a {
  color: #6c8aff !important;
  font-weight: 600;
  text-decoration: none !important;
}
.ac-vendor-approved-help a:hover,
.ac-vendor-approved-hub .ac-vendor-approved-help a:hover {
  text-decoration: underline !important;
}

/* Heading "Velkommen tilbage" - explicit dark */
.ac-vendor-approved-title,
.ac-vendor-approved-hub .ac-vendor-approved-title {
  color: #1b1e2f !important;
}

/* Sørg for at ikon-emojis renderes med deres egen farve (ikke inherited) */
.ac-vendor-card-icon,
.ac-vendor-approved-hub .ac-vendor-card-icon {
  color: initial !important;
  filter: none;
}

/* Vault-card tekst forbliver mørk på lys baggrund */
.ac-vendor-card-vault .ac-vendor-card-title,
.ac-vendor-approved-hub .ac-vendor-card-vault .ac-vendor-card-title {
  color: #1b1e2f !important;
}
.ac-vendor-card-vault .ac-vendor-card-desc,
.ac-vendor-approved-hub .ac-vendor-card-vault .ac-vendor-card-desc {
  color: #5a6072 !important;
}


/* Help-tekst nederst på vendor-hub: tving farve på selve <p> + tekst-noder */
.ac-vendor-approved-hub .ac-vendor-approved-help,
.ac-vendor-approved-hub .ac-vendor-approved-help p,
.ac-vendor-approved-hub .ac-vendor-approved-help p *:not(a) {
  color: #4f5563 !important;
}

.ac-vendor-approved-hub .ac-vendor-approved-help a,
.ac-vendor-approved-hub .ac-vendor-approved-help p a {
  color: #6c8aff !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}
.ac-vendor-approved-hub .ac-vendor-approved-help a:hover,
.ac-vendor-approved-hub .ac-vendor-approved-help p a:hover {
  text-decoration: underline !important;
}


/* ============================================
   SELLER HUB — banner for godkendte sælgere på /sellercentral/
   ============================================ */

.ac-seller-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: linear-gradient(135deg, #141628 0%, #0d0f1a 100%);
  border: 1px solid rgba(249, 186, 50, 0.3);
  border-radius: 14px;
  margin: 0 0 24px;
  flex-wrap: wrap;
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.4);
}

.ac-seller-banner-icon {
  font-size: 1.6em;
  flex-shrink: 0;
}

.ac-seller-banner-text {
  flex: 1;
  min-width: 220px;
}

.ac-seller-banner-text strong {
  display: block;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700;
  font-size: 1em;
}

.ac-seller-banner-text p {
  color: rgba(217, 219, 228, 0.7) !important;
  font-size: 0.85em;
  margin: 2px 0 0 !important;
  line-height: 1.45;
}

.ac-seller-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ac-seller-banner-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.82em;
  letter-spacing: 0.3px;
  text-decoration: none !important;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  border: 1px solid rgba(249, 186, 50, 0.3);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff !important;
}
.ac-seller-banner-btn:hover {
  background: rgba(249, 186, 50, 0.08);
  border-color: rgba(249, 186, 50, 0.55);
  transform: translateY(-1px);
}

.ac-seller-banner-btn-primary {
  background: linear-gradient(135deg, #f9ba32, #ffd062) !important;
  color: #1b1e2f !important;
  border-color: transparent !important;
  box-shadow: 0 6px 16px -6px rgba(249, 186, 50, 0.5);
}
.ac-seller-banner-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -6px rgba(249, 186, 50, 0.6);
}




/* ============================================
   WKMP SELLER NAV — fix alignment + container width
   ============================================ */

/* Bredere container på alle vendor-endpoints */
body.wkmp-seller-endpoints .shop-container {
  max-width: 1500px !important;
  width: 100% !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* Vendor My Account: sidebar 280px, content tager resten */
body.wkmp-seller-endpoints .woocommerce-account .woocommerce {
  display: flex !important;
  gap: 28px !important;
  align-items: flex-start !important;
  flex-wrap: wrap !important;
  max-width: none !important;
  padding: 30px 0 !important;
}

body.wkmp-seller-endpoints .woocommerce-MyAccount-navigation {
  flex: 0 0 280px !important;
  max-width: 280px !important;
  background: #141628 !important;
  border-radius: 14px !important;
  border: 1px solid rgba(249, 186, 50, 0.15) !important;
  padding: 12px 0 !important;
  align-self: flex-start;
  position: sticky;
  top: 100px;
}

body.wkmp-seller-endpoints .woocommerce-MyAccount-navigation ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.wkmp-seller-endpoints .woocommerce-MyAccount-navigation ul li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

/* Link reset — left-align icons + text */
body.wkmp-seller-endpoints .woocommerce-MyAccount-navigation ul li a {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  padding: 12px 18px 12px 22px !important;
  color: rgba(217, 219, 228, 0.78) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500 !important;
  font-size: 0.92em !important;
  text-decoration: none !important;
  border-left: 3px solid transparent !important;
  background: transparent !important;
  transition: all 0.2s ease !important;
  position: relative !important;
  white-space: nowrap;
}

/* Pluginnet bruger :before med Webkul Rango-icon-font på text-align: center.
   Tving inline-block så det IKKE ekspanderer og tager pladsen. */
body.wkmp-seller-endpoints .woocommerce-MyAccount-navigation ul li a::before {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 22px !important;
  min-width: 22px !important;
  margin: 0 12px 0 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  color: rgba(249, 186, 50, 0.7) !important;
  position: static !important;
  float: none !important;
}

body.wkmp-seller-endpoints .woocommerce-MyAccount-navigation ul li a:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  color: #ffffff !important;
}
body.wkmp-seller-endpoints .woocommerce-MyAccount-navigation ul li a:hover::before {
  color: #ffffff !important;
}

body.wkmp-seller-endpoints .woocommerce-MyAccount-navigation ul li.is-active a,
body.wkmp-seller-endpoints .woocommerce-MyAccount-navigation ul li.is-active > a {
  background: rgba(249, 186, 50, 0.1) !important;
  color: #f9ba32 !important;
  border-left-color: #f9ba32 !important;
  font-weight: 700 !important;
}
body.wkmp-seller-endpoints .woocommerce-MyAccount-navigation ul li.is-active a::before {
  color: #ffffff !important;
}

/* Notification count fra plugin (e.g. "(4)") - lille badge til højre */
body.wkmp-seller-endpoints .woocommerce-MyAccount-navigation ul li a::after {
  margin-left: auto !important;
  padding: 0 !important;
  background: transparent !important;
  color: rgba(249, 186, 50, 0.85) !important;
  font-size: 0.85em !important;
  font-weight: 600 !important;
  border-radius: 0 !important;
  line-height: 1 !important;
}

/* Content side — fyld resten af bredden */
body.wkmp-seller-endpoints .woocommerce-MyAccount-content {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  max-width: none !important;
  width: auto !important;
  padding: 36px !important;
}

/* Dashboard summary cards — gør dem responsive grid */
body.wkmp-seller-endpoints .wkmp_container > div:first-child,
body.wkmp-seller-endpoints .wkmp-section-body {
  width: 100% !important;
  max-width: 100% !important;
}

/* Skjul logout fra sidebar (vi har det i top-bar) */
body.wkmp-seller-endpoints .woocommerce-MyAccount-navigation-link--customer-logout {
  display: none !important;
}

@media (max-width: 900px) {
  body.wkmp-seller-endpoints .woocommerce-account .woocommerce {
    flex-direction: column !important;
  }
  body.wkmp-seller-endpoints .woocommerce-MyAccount-navigation {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    position: static !important;
  }
}


/* ============================================
   WKMP VENDOR PRODUCTS PAGE — dark theme
   ============================================ */

/* Stat-kort øverst (Publiceret, Low Stock, Out of Stock, Kladde, På tilbud) */
.wkmp-filter-product-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
  gap: 12px !important;
  margin-bottom: 22px !important;
  padding: 0 !important;
}

.wkmp-filter-product-container .card,
.wkmp-filter-product-container > a,
.wkmp-filter-product-container > .card {
  background: #141628 !important;
  border: 1px solid rgba(249, 186, 50, 0.15) !important;
  border-radius: 12px !important;
  padding: 18px 16px !important;
  text-decoration: none !important;
  transition: border-color 0.2s ease, transform 0.2s ease !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.wkmp-filter-product-container .card:hover {
  border-color: rgba(249, 186, 50, 0.45) !important;
  transform: translateY(-2px);
}

.wkmp-filter-product-container .card.wkmp-active-grid {
  background: linear-gradient(135deg, rgba(249, 186, 50, 0.1), rgba(249, 186, 50, 0.04)) !important;
  border-color: #f9ba32 !important;
  color: #f9ba32 !important;
}

.wkmp-filter-grid-value {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.6em !important;
  line-height: 1 !important;
  margin: 0 !important;
}

.wkmp-filter-grid-label {
  color: rgba(217, 219, 228, 0.6) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.78em !important;
  font-weight: 600 !important;
  letter-spacing: 0.4px !important;
  margin: 0 !important;
}

.wkmp-filter-product-container .card.wkmp-active-grid .wkmp-filter-grid-value,
.wkmp-filter-product-container .card.wkmp-active-grid .wkmp-filter-grid-label {
  color: #f9ba32 !important;
}

/* Action wrap (Slet + Opret produkt + søgefelt) */
.wkmp-table-action-wrap {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  align-items: center !important;
  margin-bottom: 16px !important;
}

.wkmp-action-section {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}
.wkmp-action-section.left {
  flex: 1;
}
.wkmp-action-section.right {
  margin-left: auto;
  flex-wrap: wrap;
}

/* Knapper i action-section: Slet + Opret produkt */
.wkmp-action-section .button,
.wkmp-action-section a.button,
.wkmp-action-section .wkmp-bulk-delete,
.wkmp-action-section .add-product {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, #f9ba32, #ffd062) !important;
  color: #1b1e2f !important;
  border: none !important;
  border-radius: 99px !important;
  padding: 9px 18px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.82em !important;
  letter-spacing: 0.3px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  white-space: nowrap;
  box-shadow: 0 4px 12px -4px rgba(249, 186, 50, 0.4);
  transition: transform 0.15s ease;
  line-height: 1;
  text-transform: none !important;
}
.wkmp-action-section .button:hover,
.wkmp-action-section a.button:hover {
  transform: translateY(-1px);
}

/* Dashicons inde i action-buttons */
.wkmp-action-section .button .dashicons,
.wkmp-action-section a.button .dashicons {
  font-size: 16px !important;
  line-height: 1 !important;
  width: 16px !important;
  height: 16px !important;
  color: #1b1e2f !important;
}

/* Slet-knap: rød i stedet for guld for klar varning-affordance */
.wkmp-action-section .wkmp-bulk-delete {
  background: linear-gradient(135deg, #dc3545, #ff6b7a) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px -4px rgba(220, 53, 69, 0.4);
}
.wkmp-action-section .wkmp-bulk-delete .dashicons {
  color: #ffffff !important;
}

/* Søgefelt + Søg-knap */
.wkmp-action-section input[type="text"],
.wkmp-action-section input[type="search"] {
  background: #0d0f1a !important;
  border: 1px solid rgba(249, 186, 50, 0.2) !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  padding: 9px 14px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.88em !important;
  min-width: 240px;
}
.wkmp-action-section input[type="text"]::placeholder,
.wkmp-action-section input[type="search"]::placeholder {
  color: rgba(217, 219, 228, 0.5) !important;
}
.wkmp-action-section input[type="text"]:focus,
.wkmp-action-section input[type="search"]:focus {
  outline: none !important;
  border-color: rgba(249, 186, 50, 0.5) !important;
}
.wkmp-action-section input[type="submit"] {
  background: rgba(255, 255, 255, 0.04) !important;
  color: #ffffff !important;
  border: 1px solid rgba(249, 186, 50, 0.3) !important;
  border-radius: 99px !important;
  padding: 9px 22px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.82em !important;
  cursor: pointer !important;
  text-transform: none !important;
}
.wkmp-action-section input[type="submit"]:hover {
  background: rgba(249, 186, 50, 0.08) !important;
  border-color: rgba(249, 186, 50, 0.6) !important;
}

/* Tabel: produkt-listen */
.wkmp-table-responsive {
  background: #141628 !important;
  border: 1px solid rgba(249, 186, 50, 0.15) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  margin-bottom: 18px !important;
}

.wkmp-table-responsive table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
}

.wkmp-seller-products-lists-caption {
  caption-side: top !important;
  text-align: left !important;
  padding: 14px 18px !important;
  background: rgba(13, 15, 26, 0.6) !important;
  color: rgba(217, 219, 228, 0.7) !important;
  font-size: 0.86em !important;
  border-bottom: 1px solid rgba(249, 186, 50, 0.1) !important;
}
.wkmp-seller-products-lists-caption a {
  color: #f9ba32 !important;
  text-decoration: none !important;
  font-weight: 600;
}
.wkmp-seller-products-lists-caption a:hover {
  text-decoration: underline !important;
}

.wkmp-table-responsive thead th {
  background: rgba(13, 15, 26, 0.7) !important;
  color: rgba(217, 219, 228, 0.6) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.74em !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
  padding: 14px 16px !important;
  border: none !important;
  border-bottom: 1px solid rgba(249, 186, 50, 0.1) !important;
  text-align: left !important;
}

.wkmp-table-responsive tbody td {
  padding: 14px 16px !important;
  border: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
  color: #d9dbe4 !important;
  vertical-align: middle !important;
  background: transparent !important;
}

.wkmp-table-responsive tbody tr:hover td {
  background: rgba(249, 186, 50, 0.04) !important;
}

.wkmp-img-thumbnail,
.wkmp-product-list-image img {
  width: 56px !important;
  height: 56px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  border: 1px solid rgba(249, 186, 50, 0.2) !important;
  display: block !important;
}

.wkmp-seller-product-name {
  color: #f9ba32 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}
.wkmp-seller-product-name:hover {
  color: #ffffff !important;
}

.wkmp-product-list-price {
  color: #ffffff !important;
  font-weight: 700 !important;
  white-space: nowrap;
}

.wkmp-product-list-status,
.wkmp-product-list-stock {
  white-space: nowrap;
  font-size: 0.92em !important;
  color: rgba(217, 219, 228, 0.78) !important;
}

/* Checkbox styling */
.wkmp-table-responsive input[type="checkbox"] {
  accent-color: #f9ba32;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Result-count nederst (Showing X to Y of Z) */
.wkmp-result-count {
  color: rgba(217, 219, 228, 0.6) !important;
  font-size: 0.86em !important;
  padding: 8px 0 !important;
}

/* Popup-modal til Items Per Page settings */
.wkmp-popup-modal,
.wkmp-popup-model {
  background: #141628 !important;
  border: 1px solid rgba(249, 186, 50, 0.25) !important;
  border-radius: 14px !important;
  color: #d9dbe4 !important;
}
.wkmp-popup-modal .wkmp-close-popup,
.wkmp-popup-model .wkmp-close-popup {
  color: rgba(217, 219, 228, 0.6) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-radius: 99px !important;
}

@media (max-width: 768px) {
  .wkmp-action-section.right {
    flex: 1 1 100%;
    margin-left: 0 !important;
  }
  .wkmp-action-section input[type="text"],
  .wkmp-action-section input[type="search"] {
    flex: 1;
    min-width: 0;
  }
}


/* ============================================
   VENDOR ENDPOINTS — wider container + fix card notch
   ============================================ */

/* Override the earlier 1500px max-width */
body.wkmp-seller-endpoints .shop-container {
  max-width: none !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
}

/* Fjern weird tab/notch på filter-kort (Flatsome link-decoration leak) */
.wkmp-filter-product-container > a,
.wkmp-filter-product-container > a:hover,
.wkmp-filter-product-container > a:focus,
.wkmp-filter-product-container > a:visited {
  display: block !important;
  text-decoration: none !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

.wkmp-filter-product-container > a::before,
.wkmp-filter-product-container > a::after,
.wkmp-filter-product-container .card::before,
.wkmp-filter-product-container .card::after {
  display: none !important;
  content: none !important;
}

/* Forny grid: explicit columns så kort har lige bredde uden mystik */
.wkmp-filter-product-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
  gap: 14px !important;
}

.wkmp-filter-product-container > a {
  min-width: 0;
}


/* ============================================
   VENDOR ENDPOINTS — full-width container override
   page-template-page-blank har INGEN .shop-container,
   så vi target'er .content-area + .woocommerce direkte
   ============================================ */

body.wkmp-seller-endpoints .content-area,
body.wkmp-seller-endpoints main#main,
body.wkmp-seller-endpoints main.dark-page-wrapper,
body.wkmp-seller-endpoints .content-area .container,
body.wkmp-seller-endpoints .content-area .row,
body.wkmp-seller-endpoints div.content-area > div,
body.wkmp-seller-endpoints .woocommerce {
  max-width: none !important;
  width: 100% !important;
}

body.wkmp-seller-endpoints .content-area {
  padding-left: 32px !important;
  padding-right: 32px !important;
  box-sizing: border-box !important;
}

/* Hero-banner i toppen kan beholde sin egen layout, kun content-grid skal fylde */
body.wkmp-seller-endpoints .ac-hero-banner {
  /* unchanged */
}

@media (max-width: 768px) {
  body.wkmp-seller-endpoints .content-area {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}


/* ============================================
   WKMP CARDS — kompakt højde + centreret indhold
   ============================================ */

.wkmp-filter-product-container > a {
  display: flex !important;
}

.wkmp-filter-product-container .card,
.wkmp-filter-product-container > a > .card {
  flex: 1 1 auto !important;
  width: 100% !important;
  min-height: 88px !important;
  height: auto !important;
  padding: 16px 18px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 4px !important;
  box-sizing: border-box !important;
}

.wkmp-filter-product-container .wkmp-filter-grid-value {
  font-size: 1.5em !important;
  margin-bottom: 0 !important;
}

.wkmp-filter-product-container .wkmp-filter-grid-label {
  font-size: 0.76em !important;
}

/* Indre wkmp-content sektioner skal have plads til at ånde */
.wkmp-table-action-wrap {
  margin-top: 8px !important;
  margin-bottom: 18px !important;
}

.wkmp-filter-product-container {
  margin-bottom: 24px !important;
}

/* Mobile: mindre padding så indhold ikke klemmes */
@media (max-width: 640px) {
  body.wkmp-seller-endpoints .woocommerce-MyAccount-content {
    padding: 18px !important;
  }
  .wkmp-filter-product-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
