/*
  PLUZ.DK — Global Stylesheet
  Conversion-optimized affiliate design
  Built from scratch — v3 2026
*/

/* ══════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════ */
:root {
  /* Backgrounds */
  --bg:          #F7F7F5;
  --bg-white:    #FFFFFF;
  --bg-muted:    #F0EFEC;
  --bg-green:    #E8F5EE;

  /* Borders */
  --border:      #E2DDD6;
  --border-mid:  #CCC8C0;

  /* Text */
  --text:        #111111;
  --text-2:      #444444;
  --text-3:      #777777;
  --text-4:      #AAAAAA;

  /* Brand colors */
  --green:       #0D7340;
  --green-hover: #0A5E33;
  --green-light: #E8F5EE;
  --red:         #C0392B;
  --red-light:   #FDECEA;

  /* Radius */
  --r-sm:  3px;
  --r-md:  6px;
  --r-lg:  10px;
  --r-pill: 100px;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.08);
  --shadow-hover: 0 8px 28px rgba(0,0,0,.16), 0 2px 8px rgba(0,0,0,.08);

  /* Typography */
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
}

/* ══════════════════════════════════════════
   RESET
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
a img { border: none; }
h1,h2,h3,h4,h5,h6 { margin: 0 0 .6em; font-weight: 600; line-height: 1.25; color: var(--text); }
p, ul { margin: 0 0 1em; }
b, strong { font-weight: 600; }
i, em { font-style: italic; }

/* ══════════════════════════════════════════
   BASE
══════════════════════════════════════════ */
body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  padding-top: 92px; /* ann-bar(36) + navbar(56) */
}

/* ══════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════ */
.ann-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1040;
  height: 36px;
  background: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ann-item {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.ann-item strong { color: #fff; font-weight: 600; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 1030;
  height: 56px;
  min-height: 56px;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: none;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.navbar-default { background-color: rgba(255,255,255,.97); }
.navbar .container { max-width: 1400px; padding: 0 32px; }

/* Logo */
.navbar-brand { padding: 0 0 0 0; height: 56px; display: flex; align-items: center; }
.navbar-brand:hover { background: transparent; }
.logo-mark {
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-text {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
}
.logo-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-bottom: 8px;
  margin-left: 1px;
}
/* Legacy text logo */
.navbar-brand-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .01em;
}
.navbar-brand-text em { font-style: italic; color: var(--green); }

/* Nav links */
.navbar-default .navbar-nav > li > a {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 18px 14px;
  line-height: 20px;
  transition: color .15s;
  border-radius: 0;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus { color: var(--text); background: transparent; }
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover { color: var(--text); background: var(--bg-muted); }
.navbar-toggle { margin-top: 10px; border-color: var(--border); }
.navbar-default .navbar-toggle .icon-bar { background: var(--text); }
.navbar-default .navbar-toggle:hover { background: var(--bg-muted); }

/* Dropdown */
.dropdown-menu {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 6px;
  margin-top: 4px;
  box-shadow: var(--shadow-card);
}
.dropdown-menu > li > a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: background .12s;
}
.dropdown-menu > li > a:hover { background: var(--bg-muted); color: var(--text); }
.dropdown-menu > .divider { margin: 4px 8px; background: var(--border); }

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
@media (min-width: 1200px) { .container { width: 100%; max-width: 1400px; } }
.main { padding-bottom: 60px; }

/* ══════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════ */
.breadcrumb {
  background: transparent;
  padding: 10px 0 0;
  margin: 0;
  font-size: 12px;
  color: var(--text-4);
  border-radius: 0;
}
.breadcrumb > li + li::before { content: "/"; padding: 0 6px; color: var(--border-mid); }
.breadcrumb > .active { color: var(--text-3); }
.breadcrumb a { color: var(--text-4); }
.breadcrumb a:hover { color: var(--text); }

/* ══════════════════════════════════════════
   PRODUCT CARD ATOMS (shared across templates)
══════════════════════════════════════════ */

/* Discount badge */
.pc-badge, .discount-percent {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-sm);
  letter-spacing: .04em;
  vertical-align: middle;
}

/* Savings chip */
.pc-save {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: var(--r-pill);
  vertical-align: middle;
}

/* Stock indicator */
.pc-stock { font-size: 11px; font-weight: 500; }
.pc-stock--in { color: var(--green); }
.pc-stock--in::before { content: '●'; margin-right: 3px; font-size: 8px; }

/* Brand label */
.pc-brand {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-3);
}

/* ══════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════ */
.pagination > li > a,
.pagination > li > span {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg-white);
  border: 1px solid var(--border);
  margin: 0 2px;
  min-width: 40px;
  height: 40px;
  line-height: 38px;
  padding: 0 12px;
  text-align: center;
  border-radius: var(--r-sm) !important;
  transition: all .12s;
}
.pagination > li > a:hover {
  background: var(--bg-muted);
  border-color: var(--border-mid);
  color: var(--text);
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff !important;
  font-weight: 600;
}
.pagination > .disabled > a,
.pagination > .disabled > span { color: var(--text-4); background: var(--bg-white); }

div.pagination { padding: 4px; margin: 8px 0; }
div.pagination a {
  display: inline-block;
  margin: 3px; padding: 0 12px;
  min-width: 40px; height: 40px; line-height: 40px;
  background: var(--bg-white); color: var(--text-2);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  font-size: 13px; font-weight: 500; text-align: center;
  transition: background .12s;
}
div.pagination a:hover { background: var(--green); color: #fff; border-color: var(--green); }
div.pagination span.current {
  display: inline-block;
  margin: 3px; padding: 0 12px;
  min-width: 40px; height: 40px; line-height: 40px;
  background: var(--green); color: #fff;
  border: 1px solid var(--green); border-radius: var(--r-sm);
  font-weight: 700; text-align: center;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-green, .btn-cta {
  display: inline-block;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--green);
  border: none;
  border-radius: var(--r-sm);
  padding: 10px 20px;
  text-align: center;
  cursor: pointer;
  transition: background .15s;
  letter-spacing: .01em;
}
.btn-green:hover, .btn-cta:hover { background: var(--green-hover); color: #fff; text-decoration: none; }
.btn-outline {
  font-family: var(--font); font-size: 13px; font-weight: 600;
  color: var(--text); background: transparent;
  border: 1px solid var(--border-mid); border-radius: var(--r-sm);
  padding: 9px 18px; cursor: pointer; transition: all .15s;
}
.btn-outline:hover { border-color: var(--text); color: var(--text); }

/* Legacy Bootstrap overrides */
.btn-default {
  font-family: var(--font); font-size: 13px; font-weight: 600;
  color: #fff; background: var(--green); border: none;
  border-radius: var(--r-sm); padding: 9px 18px;
  transition: background .15s;
}
.btn-default:hover, .btn-default:focus, .btn-default:active {
  background: var(--green-hover); color: #fff; box-shadow: none;
}
.btn-dark {
  font-family: var(--font); font-size: 13px; font-weight: 600;
  color: #fff; background: var(--text); border: none;
  border-radius: var(--r-sm); padding: 9px 18px;
  transition: opacity .15s;
}
.btn-dark:hover { opacity: .82; color: #fff; }

/* ══════════════════════════════════════════
   LABELS & BADGES (Bootstrap compat)
══════════════════════════════════════════ */
.label-default { background: var(--text); border-radius: var(--r-sm); }
.label { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: var(--r-sm); }

/* cloud / chip links (used in footer clouds) */
.cloud, a.cloud {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  color: var(--text-2);
  font-size: 12px;
  font-weight: 500;
  margin: 2px 2px;
  transition: background .12s, color .12s;
}
.cloud:hover { background: var(--text); color: #fff; border-color: var(--text); }

/* ══════════════════════════════════════════
   PANELS
══════════════════════════════════════════ */
.panel { border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: none; }
.panel-default > .panel-heading {
  background: var(--text); color: #fff; border-color: var(--text);
  border-radius: var(--r-md) var(--r-md) 0 0;
}

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.clear { clear: both; }
.left { float: left; }
.right { float: right; }
.spacer5   { height: 5px;   display: block; }
.spacer10  { height: 10px;  display: block; }
.spacer20  { height: 20px;  display: block; }
.spacer30  { height: 30px;  display: block; }
.spacer40  { height: 40px;  display: block; }
.spacer50  { height: 50px;  display: block; }
.shadow    { background: none; padding: 0; }
.cols100   { column-width: 150px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.55);
  font-size: 13px;
  padding: 48px 0 24px;
}
.footer a { color: rgba(255,255,255,.6); }
.footer a:hover { color: #fff; }
.footerrow h2 {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.footerrow ul { list-style: none; margin: 0; padding: 0; }
.footerrow ul li { line-height: 2; }
.footer-copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 32px;
  padding-top: 20px;
  color: rgba(255,255,255,.3);
  font-size: 11px;
  text-align: center;
}
.footer img { border-radius: var(--r-md); opacity: .7; max-width: 56px; }
.footer-contact-block { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.9; }

/* ══════════════════════════════════════════
   MORE SECTION (index.htm bottom)
══════════════════════════════════════════ */
.pluz-more-section {
  padding: 32px 0 8px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.pluz-more-section h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-4);
  margin-bottom: 14px;
}

/* ══════════════════════════════════════════
   LEGACY / MISC
══════════════════════════════════════════ */
#productlist .product { float: left; text-align: center; width: 180px; margin: 10px 20px 0; position: relative; }
.productbutton { font-weight: 600; font-size: 12px; color: #fff; background: var(--green); border-radius: var(--r-sm); padding: 8px 16px; }
.carousel-control.left, .carousel-control.right { background-image: none; }
.carousel-control { width: 5%; font-size: 28px; color: var(--text); }

/* Focus/active cleanup */
a:focus, button:focus, .btn:focus,
a:active, button:active, .btn:active,
input:focus, select:focus, textarea:focus,
*:focus, *:active {
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

/* ══════════════════════════════════════════
   RESPONSIVE NAV
══════════════════════════════════════════ */
@media (max-width: 767px) {
  body { padding-top: 92px; }
  .navbar .container { padding: 0 16px; }
  .navbar-collapse {
    border-top: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .navbar-default .navbar-nav { float: none; margin: 0; }
  .navbar-default .navbar-nav > li > a {
    padding: 13px 16px;
    border-bottom: 1px solid var(--bg-muted);
    border-radius: 0;
  }
  .dropdown-menu { position: static; float: none; box-shadow: none; border: none; background: var(--bg-muted); border-radius: 0; padding: 0; margin: 0; }
}
