/*
Theme Name: Nordic Summer Vibes
Theme URI: https://nordicsummervibes.com
Author: Vianke Ltd - Jim Tjernstroem
Description: Custom theme for Nordic Summer Vibes — music, merch och minnen från Sundsvall.
Version: 1.0.0
License: GPL v2 or later
Text Domain: nsv
*/

:root {
  --nsv-cream: #FAF6EE;
  --nsv-cream-2: #F3EDDF;
  --nsv-yellow: #E8B547;
  --nsv-yellow-soft: #F1C56B;
  --nsv-navy: #1A2A3A;
  --nsv-navy-soft: #2C3E54;
  --nsv-text: #2A2A2A;
  --nsv-text-muted: #6B6B6B;
  --nsv-border: #E5DFD0;
  --nsv-white: #FFFFFF;

  --nsv-font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --nsv-font-script: 'Caveat', cursive;
  --nsv-font-display: 'Playfair Display', Georgia, serif;

  --nsv-radius: 8px;
  --nsv-radius-lg: 14px;
  --nsv-shadow-sm: 0 2px 8px rgba(26, 42, 58, 0.06);
  --nsv-shadow: 0 8px 24px rgba(26, 42, 58, 0.10);

  --nsv-container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--nsv-font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--nsv-text);
  background: var(--nsv-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--nsv-yellow); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--nsv-font-sans);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 0.5em;
}

.nsv-container {
  max-width: var(--nsv-container);
  margin: 0 auto;
  padding: 0 24px;
}

.nsv-section { padding: 80px 0; }

/* Buttons */
.nsv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--nsv-yellow);
  color: var(--nsv-navy);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform .2s, background .2s, box-shadow .2s;
  white-space: nowrap;
  text-decoration: none;
}
.nsv-btn:hover {
  background: var(--nsv-yellow-soft);
  transform: translateY(-1px);
  box-shadow: var(--nsv-shadow);
  color: var(--nsv-navy);
}
.nsv-btn--outline {
  background: transparent;
  border: 2px solid var(--nsv-navy);
  color: var(--nsv-navy);
}
.nsv-btn--outline:hover { background: var(--nsv-navy); color: var(--nsv-white); }

.nsv-btn--small { padding: 10px 22px; font-size: 13px; }

/* Section heading */
.nsv-section-title {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nsv-navy);
  margin-bottom: 40px;
}

/* HEADER */
.nsv-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  background: rgba(232, 181, 71, 0.30);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nsv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nsv-logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.9;
  font-family: var(--nsv-font-script);
  color: var(--nsv-white);
}
.nsv-logo__line1 { font-size: 38px; color: var(--nsv-white); }
.nsv-logo__line2 { font-size: 30px; color: var(--nsv-yellow); margin-left: 6px; }
.nsv-logo__line3 { font-size: 24px; color: var(--nsv-white); margin-left: 12px; }

.nsv-logo--dark .nsv-logo__line1,
.nsv-logo--dark .nsv-logo__line3 { color: var(--nsv-navy); }
.nsv-logo--dark .nsv-logo__line2 { color: var(--nsv-yellow); }

/* Custom logo (header) */
.nsv-logo--image { display: inline-flex; align-items: center; }
.nsv-logo--image .custom-logo-link { display: inline-block; line-height: 0; }
.nsv-logo--image .custom-logo,
.nsv-header img.custom-logo {
  height: 108px !important;
  width: auto !important;
  max-width: 108px !important;
  display: block;
}

/* Footer logo */
.nsv-footer__logo { display: inline-block; line-height: 0; }
.nsv-footer__logo img {
  height: 110px;
  width: 110px;
  display: block;
}

/* Hard safety so a giant PNG can never blow up the layout */
img.custom-logo { max-height: 120px; max-width: 200px; width: auto; height: auto; }

.nsv-nav {
  display: flex;
  align-items: center;
}
.nsv-nav__list,
.nsv-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nsv-nav__list li,
.nsv-nav ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nsv-nav__list li::before,
.nsv-nav ul li::before { content: none; }
.nsv-nav a {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(255,255,255,0.4);
}
.nsv-nav a:hover {
  color: var(--nsv-yellow);
}
.nsv-nav .current-menu-item > a,
.nsv-nav .current_page_item > a,
.nsv-nav a.is-current {
  color: #000;
}
.nsv-nav .current-menu-item > a::after,
.nsv-nav .current_page_item > a::after,
.nsv-nav a.is-current::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: #000;
}

.nsv-header__social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nsv-header__social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  color: #000;
  transition: background .2s, color .2s;
}
.nsv-header__social a:hover { background: var(--nsv-yellow); color: var(--nsv-navy); }
.nsv-header__social svg { width: 16px; height: 16px; }

.nsv-cart {
  position: relative;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  color: #000;
}
.nsv-cart__count {
  position: absolute;
  top: -4px; right: -4px;
  width: 22px; height: 22px;
  background: var(--nsv-yellow);
  color: var(--nsv-navy);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}

/* HERO */
.nsv-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nsv-white);
  background: var(--nsv-navy);
  overflow: hidden;
}
.nsv-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.nsv-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 2;
}
.nsv-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 120px 24px 60px;
  max-width: 1200px;
}
.nsv-hero__title {
  font-size: clamp(28px, 4.6vw, 60px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
  white-space: nowrap;
}
.nsv-hero__subtitle {
  font-family: var(--nsv-font-script);
  font-size: clamp(32px, 4vw, 50px);
  color: var(--nsv-yellow);
  margin-bottom: 36px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

/* SECTIONS LAYOUT */
.nsv-music-section { background: var(--nsv-cream); }
.nsv-music-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.nsv-songs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.nsv-song {
  background: var(--nsv-white);
  border-radius: var(--nsv-radius-lg);
  overflow: hidden;
  box-shadow: var(--nsv-shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.nsv-song:hover { transform: translateY(-4px); box-shadow: var(--nsv-shadow); }
.nsv-song__thumb {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  background: var(--nsv-navy);
  background-size: cover;
  background-position: center;
}
.nsv-song__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.20);
  color: var(--nsv-white);
  transition: background .2s;
}
.nsv-song__play:hover { background: rgba(0,0,0,0.35); color: var(--nsv-white); }
.nsv-song__play-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--nsv-navy);
  display: flex; align-items: center; justify-content: center;
}
.nsv-song__duration {
  position: absolute;
  right: 12px; bottom: 12px;
  background: rgba(0,0,0,0.7);
  color: var(--nsv-white);
  font-size: 13px;
  padding: 3px 8px;
  border-radius: 4px;
}
.nsv-song__body { padding: 18px 20px 22px; }
.nsv-song__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--nsv-navy);
  margin: 0 0 6px;
}
.nsv-song__excerpt {
  color: var(--nsv-text-muted);
  font-size: 14px;
  margin: 0 0 14px;
  line-height: 1.5;
}
.nsv-song__listen {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--nsv-navy);
  color: var(--nsv-navy);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nsv-song__listen:hover { background: var(--nsv-navy); color: var(--nsv-white); }

.nsv-music-section__more {
  margin-top: 28px;
  text-align: center;
}

/* Support sidebar */
.nsv-support {
  background: var(--nsv-cream-2);
  border-radius: var(--nsv-radius-lg);
  padding: 30px 24px;
  text-align: center;
}
.nsv-support__title {
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nsv-navy);
  margin-bottom: 6px;
}
.nsv-support__text {
  color: var(--nsv-text-muted);
  font-size: 13px;
  margin-bottom: 18px;
}
.nsv-support__buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nsv-support__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nsv-white);
  border: none;
  cursor: pointer;
  text-decoration: none;
  min-height: 38px;
  transition: filter .2s, transform .2s;
}
.nsv-support__btn:hover { filter: brightness(0.93); transform: translateY(-1px); color: var(--nsv-white); }
.nsv-support__btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.nsv-support__btn span { flex: 1; text-align: center; }

.nsv-support__btn--youtube   { background: #C29A3E; }
.nsv-support__btn--like      { background: var(--nsv-navy); }
.nsv-support__btn--spotify   { background: #1DB954; }
.nsv-support__btn--instagram { background: #1A1A1A; }

.nsv-support__footnote {
  margin-top: 20px;
  font-family: var(--nsv-font-script);
  color: var(--nsv-yellow);
  font-size: 22px;
}

/* MERCH */
.nsv-merch-section { background: var(--nsv-cream); }
.nsv-merch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.nsv-merch-item {
  background: var(--nsv-white);
  border-radius: var(--nsv-radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--nsv-shadow-sm);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.nsv-merch-item:hover { transform: translateY(-4px); box-shadow: var(--nsv-shadow); }
.nsv-merch-item__img {
  aspect-ratio: 1 / 1;
  background: var(--nsv-cream-2);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.nsv-merch-item__body { padding: 16px 14px 18px; flex: 1; display: flex; flex-direction: column; }
.nsv-merch-item__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--nsv-navy);
  margin: 0 0 6px;
}
.nsv-merch-item__price {
  font-size: 18px;
  font-weight: 700;
  color: var(--nsv-navy);
  margin-bottom: 14px;
}
.nsv-merch-item__btn {
  margin-top: auto;
  background: transparent;
  border: 1.5px solid var(--nsv-navy);
  color: var(--nsv-navy);
  padding: 9px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.nsv-merch-item__btn:hover { background: var(--nsv-navy); color: var(--nsv-white); }

.nsv-merch-item--coming { opacity: 0.85; }
.nsv-merch-item__img--placeholder {
  background: linear-gradient(135deg, #e8e0d0 0%, #d4c8b0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nsv-merch-item__img--placeholder::after {
  content: '☀️';
  font-size: 48px;
  opacity: 0.4;
}
.nsv-merch-item__btn--disabled {
  background: transparent;
  border: 1.5px solid #c8b890;
  color: #a89870;
  cursor: default;
  pointer-events: none;
}
.nsv-merch-item__btn--disabled:hover {
  background: transparent;
  color: #a89870;
}

.nsv-sundsvall-card {
  background: var(--nsv-navy);
  color: var(--nsv-white);
  border-radius: var(--nsv-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 100%;
}
.nsv-sundsvall-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,42,58,0.4) 30%, rgba(26,42,58,0.85) 100%);
}
.nsv-sundsvall-card > * { position: relative; z-index: 2; }
.nsv-sundsvall-card__title {
  font-family: var(--nsv-font-script);
  font-size: 32px;
  margin: 0 0 4px;
  color: var(--nsv-white);
}
.nsv-sundsvall-card__sub {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--nsv-white);
}

/* ABOUT */
.nsv-about {
  background: var(--nsv-navy);
  color: var(--nsv-white);
  position: relative;
  overflow: hidden;
}
.nsv-about__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: 1;
}
.nsv-about__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(26,42,58,0.96) 30%, rgba(26,42,58,0.55) 100%);
  z-index: 2;
}
.nsv-about__inner {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}
.nsv-about__title {
  font-size: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.nsv-about__text {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 26px;
}

/* FOOTER */
.nsv-footer {
  background: var(--nsv-cream-2);
  padding: 60px 0 24px;
  color: var(--nsv-text);
}
.nsv-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.4fr;
  gap: 36px;
}
.nsv-footer h4 {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nsv-navy);
  margin: 0 0 16px;
}
.nsv-footer__list { list-style: none; padding: 0; margin: 0; }
.nsv-footer__list li { margin-bottom: 8px; font-size: 14px; }
.nsv-footer__list a { color: var(--nsv-text); }
.nsv-footer__list a:hover { color: var(--nsv-yellow); }

.nsv-footer__newsletter { display: flex; gap: 8px; }
.nsv-footer__newsletter input[type=email] {
  flex: 1;
  padding: 12px 16px;
  border-radius: 50px;
  border: 1px solid var(--nsv-border);
  background: var(--nsv-white);
  font-family: inherit;
  font-size: 14px;
}
.nsv-footer__newsletter button {
  padding: 12px 22px;
  background: var(--nsv-yellow);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--nsv-navy);
}
.nsv-footer__newsletter button:hover { background: var(--nsv-yellow-soft); }

.nsv-footer__bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--nsv-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--nsv-text-muted);
}
.nsv-footer__bottom a { color: var(--nsv-text-muted); }
.nsv-footer__bottom a:hover { color: var(--nsv-yellow); }

/* Mobile */
@media (max-width: 1024px) {
  .nsv-music-grid { grid-template-columns: 1fr; }
  .nsv-merch-grid { grid-template-columns: repeat(3, 1fr); }
  .nsv-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .nsv-section { padding: 56px 0; }
  .nsv-nav { display: none; }
  .nsv-songs { grid-template-columns: 1fr; }
  .nsv-merch-grid { grid-template-columns: 1fr 1fr; }
  .nsv-about__inner { grid-template-columns: 1fr; padding: 56px 0; }
  .nsv-footer__grid { grid-template-columns: 1fr; }
  .nsv-hero__content { padding-top: 100px; }
}

/* Mobile menu trigger */
.nsv-menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--nsv-white);
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
}
@media (max-width: 768px) {
  .nsv-menu-toggle { display: inline-flex; }
}
.nsv-mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--nsv-navy);
  z-index: 100;
  padding: 80px 32px;
}
.nsv-mobile-menu.is-open { display: block; }
.nsv-mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--nsv-white);
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nsv-mobile-menu__close {
  position: absolute; top: 24px; right: 24px;
  background: transparent;
  border: 0; color: var(--nsv-white);
  font-size: 28px;
}

/* === PRODUKTSIDA (single vianke_product) === */
.nsv-product { background: var(--nsv-cream); padding-top: 240px; }
.nsv-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.nsv-btn--full svg { width: 20px; height: 20px; }
.nsv-product__back {
  display: inline-block;
  color: var(--nsv-navy);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 24px;
  opacity: 0.7;
}
.nsv-product__back:hover { opacity: 1; }
.nsv-product__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.nsv-product__media { position: sticky; top: 120px; }
.nsv-product__main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--nsv-white);
  background-size: cover;
  background-position: center;
  border-radius: var(--nsv-radius-lg);
  box-shadow: var(--nsv-shadow-sm);
}
.nsv-product__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.nsv-product__thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  background-color: var(--nsv-white);
  transition: border-color .2s, transform .2s;
}
.nsv-product__thumb:hover { transform: translateY(-2px); }
.nsv-product__thumb.is-active { border-color: var(--nsv-yellow); }

.nsv-product__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--nsv-navy);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.nsv-product__price {
  font-size: 28px;
  font-weight: 700;
  color: var(--nsv-navy);
  margin-bottom: 20px;
}
.nsv-product__excerpt {
  color: var(--nsv-text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.nsv-product__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nsv-navy);
  margin-bottom: 10px;
}
.nsv-product__sizes { margin-bottom: 24px; }
.nsv-product__size-select {
  width: 100%;
  max-width: 200px;
  height: 44px;
  padding: 0 12px;
  border: 1.5px solid #d8cfb8;
  border-radius: 6px;
  background: var(--nsv-white);
  font-size: 15px;
  color: var(--nsv-navy);
  font-weight: 600;
  cursor: pointer;
}
.nsv-product__size-select:focus { outline: 2px solid var(--nsv-yellow); border-color: var(--nsv-yellow); }
.nsv-product__size-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.nsv-product__size { cursor: pointer; }
.nsv-product__size input { position: absolute; opacity: 0; }
.nsv-product__size span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 44px;
  padding: 0 14px;
  background: var(--nsv-white);
  border: 1.5px solid #d8cfb8;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--nsv-navy);
  transition: all .15s;
}
.nsv-product__size input:checked + span {
  background: var(--nsv-navy);
  color: var(--nsv-white);
  border-color: var(--nsv-navy);
}
.nsv-product__size:hover span { border-color: var(--nsv-navy); }

.nsv-product__qty { margin-bottom: 28px; max-width: 140px; }
.nsv-product__qty input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1.5px solid #d8cfb8;
  border-radius: 6px;
  background: var(--nsv-white);
  font-size: 16px;
  color: var(--nsv-navy);
}
.nsv-btn--full { width: 100%; padding: 16px 32px; }
.nsv-product__description {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
  color: var(--nsv-text-muted);
  line-height: 1.7;
}
@media (max-width: 880px) {
  .nsv-product__grid { grid-template-columns: 1fr; gap: 32px; }
  .nsv-product__media { position: static; }
}

/* === MERCH ARKIV === */
.nsv-merch-archive { padding-top: 240px; background: var(--nsv-cream); }
.nsv-merch-archive__intro {
  text-align: center;
  color: var(--nsv-text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.nsv-merch-grid--archive {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 980px) {
  .nsv-merch-grid--archive { grid-template-columns: repeat(2, 1fr); }
}
.nsv-merch-item__link { display: block; }

/* === KONTAKTFORMULÄR === */
.nsv-contact-page { padding-top: 240px; background: var(--nsv-cream); padding-bottom: 80px; }
.nsv-contact-page__intro {
  text-align: center;
  color: var(--nsv-text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
}
.nsv-contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--nsv-white);
  padding: 40px;
  border-radius: var(--nsv-radius-lg);
  box-shadow: var(--nsv-shadow-sm);
}
.nsv-contact-form__field { margin-bottom: 18px; }
.nsv-contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nsv-navy);
  margin-bottom: 6px;
}
.nsv-contact-form input,
.nsv-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d8cfb8;
  border-radius: 6px;
  background: var(--nsv-cream);
  font-size: 15px;
  color: var(--nsv-navy);
  font-family: inherit;
}
.nsv-contact-form textarea { min-height: 140px; resize: vertical; }
.nsv-contact-form input:focus,
.nsv-contact-form textarea:focus { outline: 2px solid var(--nsv-yellow); border-color: var(--nsv-yellow); }
.nsv-contact-form__actions { text-align: center; margin-top: 8px; }
.nsv-contact-form__msg {
  margin: 18px 0 0;
  padding: 12px 16px;
  border-radius: 6px;
  text-align: center;
  display: none;
}
.nsv-contact-form__msg.is-success { background: #e7f5e9; color: #1a5132; display: block; }
.nsv-contact-form__msg.is-error { background: #fde8e8; color: #8b1a1a; display: block; }

/* === OM OSS === */
.nsv-page-content { padding-top: 240px; padding-bottom: 80px; background: var(--nsv-cream); }
.nsv-page-content__inner {
  max-width: 760px;
  margin: 0 auto;
}
.nsv-page-content h1 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--nsv-navy);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.nsv-page-content__body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--nsv-navy);
}
.nsv-page-content__body p { margin-bottom: 18px; }

/* === VARUKORG-SIDA === */
.nsv-cart-page { padding-top: 240px; padding-bottom: 80px; background: var(--nsv-cream); }
.nsv-cart-empty { text-align: center; padding: 40px 0 60px; }
.nsv-cart-empty p { color: var(--nsv-text-muted); margin-bottom: 24px; font-size: 17px; }
.nsv-cart-table {
  max-width: 880px;
  margin: 0 auto 32px;
  background: var(--nsv-white);
  border-radius: var(--nsv-radius-lg);
  overflow: hidden;
  box-shadow: var(--nsv-shadow-sm);
}
.nsv-cart-row {
  display: grid;
  grid-template-columns: 80px 1fr 100px 120px 40px;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nsv-cart-row:last-child { border-bottom: none; }
.nsv-cart-row__img {
  width: 80px; height: 80px;
  background-size: cover;
  background-position: center;
  background-color: var(--nsv-cream);
  border-radius: 8px;
}
.nsv-cart-row__info h3 {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--nsv-navy);
}
.nsv-cart-row__meta { font-size: 13px; color: var(--nsv-text-muted); margin-bottom: 4px; }
.nsv-cart-row__price { font-size: 13px; color: var(--nsv-text-muted); }
.nsv-cart-qty-input {
  width: 70px;
  height: 38px;
  padding: 0 10px;
  border: 1.5px solid #d8cfb8;
  border-radius: 6px;
  background: var(--nsv-white);
  font-size: 15px;
  color: var(--nsv-navy);
  text-align: center;
}
.nsv-cart-row__total { font-weight: 700; color: var(--nsv-navy); text-align: right; }
.nsv-cart-row__remove {
  width: 32px; height: 32px;
  border: none;
  background: transparent;
  font-size: 22px;
  color: #c00;
  cursor: pointer;
  border-radius: 50%;
}
.nsv-cart-row__remove:hover { background: #fde8e8; }

.nsv-cart-summary {
  max-width: 400px;
  margin: 0 auto;
  background: var(--nsv-white);
  padding: 28px;
  border-radius: var(--nsv-radius-lg);
  box-shadow: var(--nsv-shadow-sm);
}
.nsv-cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nsv-cart-summary__row strong { font-size: 22px; color: var(--nsv-navy); }
.nsv-cart-summary__continue {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: var(--nsv-navy);
  text-decoration: none;
  font-size: 14px;
}
.nsv-cart-summary__continue:hover { text-decoration: underline; }

@media (max-width: 760px) {
  .nsv-cart-row {
    grid-template-columns: 70px 1fr 60px;
    grid-template-areas:
      "img info qty"
      "img total remove";
  }
  .nsv-cart-row__img { grid-area: img; }
  .nsv-cart-row__info { grid-area: info; }
  .nsv-cart-row__qty { grid-area: qty; }
  .nsv-cart-row__total { grid-area: total; text-align: left; }
  .nsv-cart-row__remove { grid-area: remove; }
}
