
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&display=swap');



body {
	
	
}


:root {
  --primary: hsl(145, 45%, 32%);
  --primary-foreground: hsl(0, 0%, 100%);
  --foreground: hsl(145, 40%, 20%);
  --muted-foreground: hsl(145, 15%, 45%);
  --secondary: hsl(140, 20%, 92%);
  --border: hsl(140, 15%, 85%);
  --card: hsl(0, 0%, 100%);
  --green-light: hsl(140, 25%, 94%);
  --font-heading: 'Geist', sans-serif;
  --font-body: 'Geist', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }


body {
  background: linear-gradient(
	135deg,
	hsl(140, 25%, 94%) 0%,
	hsl(140, 15%, 96%) 50%,
	hsl(140, 15%, 97%) 100%
  );
}

.container-bg {
  background: linear-gradient(
	135deg,
	hsl(140, 25%, 94%) 0%,
	hsl(140, 15%, 96%) 50%,
	hsl(140, 15%, 97%) 100%
  );
}


.header {
  top: 0;
  z-index: 50;
  font-family: var(--font-body);
}

.hdr-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container {
  margin: 0 auto;
  padding: 5rem 1rem;
}



.wrapper {max-width:1400px;width:100%;margin-left:auto !important;margin-right:auto !important; }	





.retur-card {
	border-radius: 15px !important;
	overflow: hidden;
	border: 1px solid #ccc !important;
	transition: transform 0.6s ease, box-shadow 0.6s ease !important;
}

.retur-card:hover {
	transform: translateY(-6px) !important;
	box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}



.retur-card h3 { color: #1E472F !important; font-size: 1.4rem !important; font-weight: 600 !important; line-height: 1.2 !important; margin-bottom: 10px !important;
	  font-family: 'Geist', sans-serif !important; }

.retur-card .label-text { background: #427957; border-radius: 50px; padding: 7px 10px !important; font-size: 10px !important; margin-bottom: 15px !important; text-transform: uppercase; font-weight: 600 !important; letter-spacing: 1.2 !important; }


.retur-card hr { border: none !important; border-bottom: 1px solid #ccded2 !important;  }

.retur-card .label-icon {  background: #fff; margin-left: auto !important; margin-right: auto !important; width: 65px !important; height: 65px !important; border-radius: 12px; padding: 22px !important; color: hsl(145, 40%, 20%) !important;  box-shadow: 0 5px 15px rgba(0,0,0,0.4) !important; }










/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary);
}

.top-bar .hdr-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}

.ordninger-nav {
  display: none;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 2px;
}

@media (min-width: 768px) {
  .ordninger-nav { display: flex; }
  .mobile-ordning-dropdown { display: none; }
}

.ordning-btn {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.ordning-btn:hover { color: var(--primary-foreground); }

.ordning-btn.active {
  background: var(--primary-foreground);
  color: var(--primary);
  font-weight: 700;
}

/* Mobile ordning dropdown */
.mobile-ordning-dropdown { position: relative; }

.ordning-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-foreground);
  background: rgba(255,255,255,0.1);
  border: none;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.ordning-dropdown-btn:hover { background: rgba(255,255,255,0.2); }

.ordning-icon-sm {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.chevron { transition: transform 0.2s; }

.ordning-dropdown-btn.open .chevron { transform: rotate(180deg); }

.ordning-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  width: 192px;
  background: var(--card);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}

.ordning-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ordning-dropdown-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-align: left;
}

.ordning-dropdown-item:hover { background: var(--secondary); }

.ordning-dropdown-item.active {
  background: rgba(60,120,80,0.1);
  color: var(--primary);
  font-weight: 700;
}

.ordning-dropdown-item img {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

/* Top bar right */
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-toggle {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 2px;
}

.lang-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.lang-btn:hover { color: var(--primary-foreground); }

.lang-btn.active {
  background: var(--primary-foreground);
  color: var(--primary);
  font-weight: 700;
}

.top-links {
  display: none;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.2);
}

@media (min-width: 640px) { .top-links { display: flex; } }

.top-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.top-links a:hover { color: var(--primary-foreground); }

/* ===== MAIN NAV ===== */
.main-nav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(140,155,140,0.4);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.main-nav .hdr-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 56px;
}


/* Base heading styles */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Geist', sans-serif !important;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

/* Typical sizing (you can add these to your CSS) */
h1 {
  font-size: 2.5rem;      /* 40px */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem !important;
}

h2 {
  font-size: 2.5rem;        /* 32px */
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 3rem !important;
}

h3 {
  font-size: 2.5rem;      /* 24px */
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2rem !important;
}

h4 {
  font-size: 1.25rem;     /* 20px */
  font-weight: 500;
  line-height: 1.4;
}

h5 {
  font-size: 1.125rem;    /* 18px */
  font-weight: 500;
  line-height: 1.4;
}

h6 {
  font-size: 1rem;        /* 16px */
  font-weight: 500;
  line-height: 1.5;
}



@media (min-width: 768px) { .main-nav .hdr-container { height: 64px; } }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

@media (min-width: 768px) { .logo { gap: 12px; } }

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

@media (min-width: 768px) { .logo-icon { width: 48px; height: 48px; } }

.logo:hover .logo-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.logo-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (min-width: 768px) { .logo-icon img { width: 32px; height: 32px; } }

.logo-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground);
  display: block;
  line-height: 1.2;
}

@media (min-width: 768px) { .logo-title { font-size: 16px; } }

.logo-subtitle {
  font-size: 10px;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (min-width: 768px) { .logo-subtitle { font-size: 12px; } }

.logo-subtitle .highlight {
  color: var(--primary);
  font-weight: 500;
}

.logo-subtitle .dot { color: var(--border); }

/* Kategorier nav */
.kategorier-nav {
  display: none;
  align-items: center;
  gap: 2px;
  background: rgba(140,160,145,0.4);
  border-radius: 9999px;
  padding: 6px;
}

@media (min-width: 1024px) { .kategorier-nav { display: flex; } }

.kategori-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 8px 16px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.kategori-link.active {
	  color: var(--foreground);
	  background: var(--card);
    font-weight: 700;
}

.kategori-link:hover {
  color: var(--foreground);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

@media (min-width: 768px) { .nav-actions { gap: 12px; } }

.btn-logout {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
  background: transparent;
  border: 1px solid rgba(140,155,140,0.6);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

@media (min-width: 768px) { .btn-logout { display: flex; } }

.btn-logout:hover {
  background: rgba(140,160,145,0.5);
  border-color: var(--border);
}

/* Mobile menu button */
.mobile-menu-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(140,160,145,0.6);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

.mobile-menu-btn:hover { background: var(--secondary); }
.mobile-menu-btn:active { transform: scale(0.95); }

.mobile-menu-btn svg {
  position: absolute;
  transition: all 0.3s ease;
}

.mobile-menu-btn .menu-icon { opacity: 1; transform: rotate(0); }
.mobile-menu-btn .close-icon { opacity: 0; transform: rotate(-90deg); }
.mobile-menu-btn.open .menu-icon { opacity: 0; transform: rotate(90deg); }
.mobile-menu-btn.open .close-icon { opacity: 1; transform: rotate(0); }

/* ===== MOBILE MENU ===== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,50,35,0.2);
  backdrop-filter: blur(4px);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1024px) { .mobile-overlay { display: none; } }

.mobile-menu {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--card);
  z-index: 50;
  overflow-y: auto;
  transform: translateY(-16px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1024px) { .mobile-menu { display: none; } }

.mobile-menu .hdr-container { padding: 24px 16px; }

.mobile-kategorier {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.mobile-kategori-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  color: var(--foreground);
  padding: 16px;
  border-radius: 16px;
  background: rgba(140,160,145,0.3);
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-kategori-link:hover { background: rgba(140,160,145,0.6); }
.mobile-kategori-link:active { transform: scale(0.98); }
.mobile-kategori-link svg { color: var(--muted-foreground); }

.mobile-divider {
  height: 1px;
  background: rgba(140,155,140,0.6);
  margin: 24px 0;
}

.mobile-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(140,160,145,0.3);
  text-decoration: none;
  transition: all 0.2s;
}

.mobile-link:hover { background: rgba(140,160,145,0.6); }

.mobile-logout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-foreground);
  background: var(--primary);
  border: none;
  padding: 16px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(60,120,80,0.2);
  transition: all 0.2s;
}

.mobile-logout-btn:hover { filter: brightness(0.95); }









