@import url('/styles/dark-theme.css');

* {
  margin: 0px;
  /* font-family: 'Open Sans', sans-serif; */
  font-family: "Roboto", Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.5;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f7f3ed;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* View height set to 100 meaning, 100% of the view-port height. */
}

/* @media (max-width: 750px) {
  header,
  main {
    height: 100px;
}
@media (min-width: 750px) {
  header,
  main {
    height: 105px;
}
*/

/* HEADER*/

#handlevogn {
  position: relative;
}

#handlevogn::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%228%22%20stroke-width%3D%224%22%20fill%3D%22orange%22%2F%3E%3C%2Fsvg%3E');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
}

#handlevogn.hide-badge::after {
  display: none;
}

.payment {

}

.handlevogn-price-and-payment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  gap: 30px;
}

.cart-badge {
  position: absolute;
  top: 6px;      /* adjust to match the circle */
  left: 32px;
  width: 20px;   /* match circle size */
  height: 20px;  /* match circle size */
  font-size: 13px;
  font-weight: bold;
  pointer-events: none;
  background: none;
  z-index: 3;
}

.wishlist-badge {
  top: 9px;
  left: 34px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
  text-align: center;
  border-radius: 50%;
  background: #60a5fa;
  color: #fff;
}

h1, h2, h3, h4, h5, h6, span, header, footer, main {
  caret-color: transparent;
}

input {
  caret-color: auto;
}

main {
  min-height: 100vh;
}

header {
  display: flex;
  justify-content: center;
  min-width: 0;
  background-color: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  padding: 0.9rem 0;
}

.header_wrapper {
  display: flex;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  align-items: center;
  gap: 18px;
  padding: 0 16px;
}

.header_brand {
  /* logo picture container */
  display: flex;
}

#logo_href {
  flex: 1;
}

#logo {
  /* picture src */
  width: 275px;
  margin: -4px 0px;
}

.header_search {
  display: flex;
  flex: 1;
  margin-left: 21px;
  justify-content: center;
  min-width: 340px;
}

.header_search form {
  width: 100%;
  max-width: none;
  display: flex;
}

#searchbar {
  border: rgb(109, 103, 103);
  height: 48px;
  flex: 1;
  font-size: 16px;
  padding: 0px 18px;
  border: solid 1px #d8d2c8;
  border-radius: 12px;
  font-size: 17px;
  max-width: 100%;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fffdf9;
}

#searchbar:focus {
  border-color: #c89d52;
  box-shadow: 0 0 0 4px rgba(200, 157, 82, 0.14);
}

.search-submit-btn {
  height: 40px;
  padding: 0 12px;
  margin-left: 8px;
  background: #eef2ff;
  color: #1e3a8a;
  border: 1px solid #c7d2fe;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-submit-btn:hover {
  background: #e0e7ff;
  border-color: #a5b4fc;
  transform: translateY(-1px);
}

.search-submit-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header_right-stack {
  display: flex;
  text-align: center;
  list-style: none;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 0px 5px;
  user-select: none;
}

.header_right-stack li {
  justify-content: center;
  align-items: center;
  margin: 0px 9px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
  border: 1px solid #e5e7eb;
  /*opacity: 0;
  transition: opacity 0.3s ease, display 0.3s ease;*/
}

.dropdown-hover {
  display: block;
}

.dropdown-content a {
  color: #374151;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #f3f4f6;
}



.nav-link {
  display: flex;
  color: black;
  text-decoration: none;
  font-weight: 400;
  box-sizing: border-box;
}

.header_right-stack img {
  width: 32px;
}

.header-nav-icon-and-text-container {
  font-size: 12px;
}



/* HEADER WRAPPER BOT */
.header_bot_container {
  background-color: lightgray;
  height: 100%;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}

nav {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.25);
  margin-top: 0;
  caret-color: transparent;
}

.nav_ul {
  display: flex;
  flex: 1;
  max-width: 1200px;
  list-style: none;
  padding-left: 0;
  padding: 0px;
}

.nav_li {
  padding: 0px;
  white-space: nowrap;
  display: inline-block;
}

.nav_a {
  text-decoration: none;
}

.dropdownmenu_button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav_button, #main_button, .dropdownmenu_button, .sidemenu_button {
  border: none;
  outline: none;
  cursor: pointer;
  height: 40px;
  flex: 1;
  padding: 0 17px;
  font-size: 15px;
}

.nav_button, #main_button {
  background: transparent;
  color: #f8f3ea;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdownmenu_button,
.sidemenu_button {
  height: 46px;
  width: 190px;
}

.svg-tag {
  position: absolute;
  left: 170px;
}

/*
.nav_li:focus-within .dropdownmenu_ul, .nav_li:focus-within .vertical-line {
  opacity: 1;
  pointer-events: all;
}*/
/*.dropdownmenu_li1:hover > .sidemenu_ul1,   
.dropdownmenu_li2:hover > .sidemenu_ul2,
.dropdownmenu_li3:hover > .sidemenu_ul3,
.dropdownmenu_li4:hover > .sidemenu_ul4 {
  opacity: 1;
  pointer-events: all;
}
*/

/* hover highlight color */
.nav_button:hover, #main_button:hover, .dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.17);
}

.alle_produkter_img_container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 15px;
}


.cart3 {
    position: relative;
    width: 16px;
    height: 16px;
}

.vector {
    position: absolute;
    visibility: hidden;
    width: 14px;
    height: 14px;
    left: 0.5px;
    top: 1.5px;
    border: 1px solid #000000;
}

.vector-stroke {
    position: absolute;
    left: 0%;
    right: 6.25%;
    top: 6.25%;
    bottom: 0%;
    background: #000000;
}


.alle_produkter_img_container img {
  width: 16px;
  margin-right: 10px;
}

.dropdownmenu-container {
  position: absolute;
  top: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.dropdownmenu_ul {
  position: absolute;
  list-style: none;
  background-color: #f9f9f9;
  /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  flex: 1;
  cursor: pointer;
  z-index: 3;
  padding: 0;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-right: solid 1px black;
}

.dropdownmenu_ul button:hover {
  background-color: rgb(218, 218, 218);
}

.vertical-line {
  opacity: 0;
  background-color: #f9f9f9;
  z-index: 2;
  position: absolute;
  left: 190px;
  height: 322px;
}

.dropdownmenu_li1,
.dropdownmenu_li2,
.dropdownmenu_li3,
.dropdownmenu_li4,
.dropdownmenu_li5,
.dropdownmenu_li6,
.dropdownmenu_li7 {
  display: flex;
  z-index: 3;
}

.sidemenu_li {
  display: flex;
  z-index: 3;
}

.sidemenu_ul,
.sidemenu_ul1,
.sidemenu_ul2,
.sidemenu_ul3,
.sidemenu_ul4 {
  position: absolute;
  left: 191px;
  z-index: 3;
  pointer-events: none;
  padding: 0;
  opacity: 0;
  background-color: #f9f9f9;
}

.dropdownmenu_li1 a,
.dropdownmenu_li2 a,
.dropdownmenu_li3 a,
.dropdownmenu_li4 a,
.dropdownmenu_li5 a,
.dropdownmenu_li6 a,
.dropdownmenu_li7 a,
.sidemenu_li a {
  text-decoration: none;
  color: black;
  margin-left: 2px;
  display: flex;
  flex: 1;
  margin: 0px;
}

/* MAIN*/
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.main_content_container {
  display: flex;
  width: 100%;
  flex: 1;
  justify-content: center;
}

.content-wrapper {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  min-width: 200px;
  margin-top: 5px;
  padding: 1rem;
}

.content-responsive {
  display: flex;
  margin-top: 10px;
  gap: 1.5rem;
}

.content-area {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0px;
  padding: 0;
  min-height: auto;
  gap: 24px;
}

.list-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  caret-color: transparent;
  margin-bottom: 16px;
  padding: 8px 5px;
  border-bottom: 1px solid #e5e7eb;
}

.products-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: baseline;
  justify-content: baseline;
  padding: 0;
  margin: 0;
  min-height: clamp(300px, 50vh, 640px);
}

.list-icon1-container, .list-icon2-container {
  display: flex;
  width: 32px;
  height: 32px;
  border: rgb(0, 140, 255) solid 1px;
  border-radius: 4px;
  margin-left: 5px;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 7px;
  border: solid 1px var(--color-border, #d1d5db);
}

.list-icon1-container, .prick-wrapper1 {
  background-color: rgb(0, 195, 255);
}

.pricks2 {
  background-color: rgb(24, 24, 24);
}

.pricks1, .line {
  background-color: rgb(247, 247, 247);
}

.prick-wrapper1, .prick-wrapper2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.prick-container1 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.prick-container2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricks1, .pricks2 {
  width: 4px;
  height: 4px;
}

.line {
  width: 8px;
  height: 2px;
}

#list-icon2Svg {
  border: solid 1px red;
  display: none;
}

.user-location-display {
  font-size: 14px;
  padding: 1rem 1.5rem;
  caret-color: transparent;
  background: #fffdf9;
  border-radius: 16px;
  margin-bottom: 1rem;
  border: 1px solid #e6ded1;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.location-label {
  font-weight: 700;
  color: #1f2937;
}

.location-value {
  margin: 0 5px;
  color: #4b5563;
}

.anchor-loc {
  text-decoration: none;
  color: #b7791f;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease;
}

.anchor-loc:hover {
  color: #8d5c10;
  text-decoration: underline;
}

.current-page {
  color: #1f2937;
  font-weight: 600;
  font-size: 14px;
}

.location-text {
  font-size: 16px;
  display: flex;
}

.forsiden-text-span {
  margin: 0 5px;
}

.side-arrow-icon {
  margin: 0 5px;
}

.gpu_container {
  padding-left: 10px;
}

.gpu_container img {
  width: 600px;
}

.main-container {
  height: 100%;
}

.content-header {
  border-bottom: 1px solid #c9c9c9;
  font-size: 14px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 24px;
  margin-top: 12px;
}

.home-hero-copy,
.home-hero-panel,
.category-strip-card,
.editorial-card,
.trust-item,
.deal-product-card,
.daily-deals-header {
  background: #fffdf9;
  border: 1px solid #e9dfd0;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.home-hero-copy {
  padding: 40px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(200, 157, 82, 0.16), transparent 34%),
    linear-gradient(180deg, #fffdf9 0%, #f8f2e8 100%);
}

.hero-eyebrow,
.category-strip-label,
.editorial-kicker,
.hero-panel-label {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b6b3f;
}

.home-hero-copy h1 {
  margin-top: 16px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #18181b;
  max-width: 10ch;
}

.home-hero-copy p {
  margin-top: 20px;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.7;
  color: #52525b;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-1px);
}

.hero-btn-primary {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #f8fafc;
  box-shadow: 0 16px 24px rgba(17, 24, 39, 0.18);
}

.hero-btn-secondary {
  border: 1px solid #d8ccb8;
  background: rgba(255, 255, 255, 0.8);
  color: #18181b;
}

.hero-meta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.hero-meta-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(216, 204, 184, 0.9);
}

.hero-meta-card strong {
  color: #1f2937;
  font-size: 14px;
}

.hero-meta-card span {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.55;
}

.home-hero-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, #1d4ed8 0%, #1e40af 100%);
  border-color: #60a5fa;
}

.hero-panel-card {
  display: block;
  padding: 22px;
  border-radius: 22px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(191, 219, 254, 0.55);
  color: #f8fafc;
}

.hero-panel-featured {
  background: linear-gradient(180deg, rgba(191, 219, 254, 0.22) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.hero-panel-card h2,
.hero-panel-card strong {
  margin-top: 10px;
  display: block;
  font-size: 24px;
  line-height: 1.2;
  color: #f8fafc;
}

.hero-panel-card p {
  margin-top: 12px;
  color: #cbd5e1;
  line-height: 1.65;
}

.hero-panel-card a,
.hero-panel-card[href] {
  color: #f4d08f;
}

.hero-panel-grid {
  display: grid;
  gap: 16px;
}

.daily-deals-section {
  margin: 4px 0 0;
}

.daily-deals-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 22px;
  margin-bottom: 18px;
}

.daily-deals-header h2 {
  font-size: 28px;
  color: #18181b;
}

.daily-deals-header p {
  color: #6b7280;
}

.daily-deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 4px;
}

.deal-product-card {
  cursor: pointer;
  border-radius: 22px;
  padding: 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.deal-product-card:hover {
  transform: translateY(-3px);
  border-color: #cfb589;
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.1);
}

.deal-product-image-wrap {
  position: relative;
  margin-bottom: 16px;
}

.deal-product-image {
  width: 100%;
  height: 210px;
  object-fit: contain;
}

.deal-discount-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #c89d52 0%, #a16207 100%);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
}

.deal-product-title {
  margin: 0 0 12px;
  font-size: 1.05rem;
  color: #1f2937;
  min-height: 3.1em;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.deal-price-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 12px;
}

.deal-original-price {
  text-decoration: line-through;
  color: #a1a1aa;
}

.deal-current-price {
  color: #a16207;
  font-weight: 700;
  font-size: 1.45rem;
}

.deal-savings-chip {
  background: #f8f1e5;
  color: #8b5e18;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.deal-validity {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #71717a;
  text-align: center;
}

.home-category-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-strip-card,
.editorial-card,
.trust-item {
  border-radius: 22px;
  padding: 28px;
  text-decoration: none;
}

.category-strip-card h3,
.editorial-card h3 {
  margin-top: 14px;
  font-size: 1.6rem;
  line-height: 1.18;
  color: #18181b;
}

.category-strip-card p,
.editorial-card p {
  margin-top: 10px;
  color: #6b7280;
  line-height: 1.7;
}

.home-editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.editorial-card-large {
  background: linear-gradient(180deg, #1d4ed8 0%, #1e3a8a 100%);
  border-color: #60a5fa;
}

.editorial-card-large h3,
.editorial-card-large p,
.editorial-card-large .editorial-kicker {
  color: #f8fafc;
}

.editorial-card-large .editorial-kicker {
  color: #f4d08f;
}

.home-trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 10px;
}

.trust-item strong {
  display: block;
  font-size: 15px;
  color: #18181b;
}

.trust-item span {
  display: block;
  margin-top: 10px;
  color: #71717a;
  line-height: 1.65;
}

.navigation-list {
  font-size: 16px;
  list-style: none;
  padding: 0px;
}

.navigation-list strong,
.navigation-list ul {
padding: 6px 12px;
}

.navigation-item {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 0.25rem;
  transition: all 0.2s ease;
}

.navigation-item:hover {
  background-color: #f3f4f6;
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.collapsible-svg-icon2 {
  background-image: url(/assets/icons/default.svg);
  background-position: -1.5em -0.25em;
  background-size: 3.5em 3.5em;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  display: inline-block;
  font-size: 20px;
}

.rIconCollapsible {
  display: block;
}

.rIconCollapsible-collapsed {
  display: none;
}

.navigation-item a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
}

.responsive-menu-wrapper {

  min-width: 200px;
  caret-color: transparent;
}

.responsivemenu-strong {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  display: block;
  margin: 1rem 0 0.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.responsivemenu-strong:first-child {
  margin-top: 0;
}

.responsive-menu-wrapper-ul {
  list-style: none;
  padding-left: 0px;
  padding: 0;
  margin: 0.5rem;
  cursor: pointer;
  z-index: 1;
  display: block;
  caret-color: transparent;
}

.responsive-menu-wrapper-li {
  display: flex;
  flex: 1;
  margin-bottom: 0.25rem;
}

.responsive-menu-wrapper-li a {
  text-decoration: none;
  display: flex;
  flex: 1;
  color: #374151;
}

.responsive-menu-wrapper-li-button, .responsive-menu-wrapper2-li-button {
  min-height: 32px;
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
  max-width: 180px;
}

.responsive-menu-wrapper-li-button:hover {
  background-color: #f3f4f6;
}

.responsive_checkbox_container {
  margin: 0 5px 0 0;
  padding: 0px;
  box-sizing: content-box;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.responsive-menu-checkbox {
  height: 1px;
  width: 1px;
  margin: 0px -1px;
  opacity: 0;
  display: inline-block;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkbox-label, .checkbox2-label {
  font-size: 16px;
  height: 1.2em;
  width: 1.25em;
  display: inline-block;
  background-image: url(/assets/icons/responsive-icons.png);
  background-position: -24em -14em;
  background-size: 25.35em 25.41em;
  background-repeat: no-repeat;
  cursor: pointer;
  margin: 0px;
  position: relative;
  vertical-align: text-bottom;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: #ffffff;
  margin-top: auto;
  border-top: 1px solid rgba(191, 219, 254, 0.5);
}

.footer_top_container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.footer_top_wrapper {
  display: flex;
  flex: 1;
  max-width: 1200px;
  padding: 15px 0px;
  justify-content: space-evenly;
}

.footer_flexbox {
  width: 220px;
}

.footer_heading {
  margin: auto;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: solid 1px rgba(219, 234, 254, 0.55);
  color: #ffffff;
  padding-bottom: 0.5rem;
}

.footer_info_ul {
  margin: auto;
  list-style: none;
  padding: 0;
  white-space: nowrap;
}

.footer_info_list {
  margin-top: 8px;
}

.footer_info_anchor {
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.footer_info_anchor:hover {
  color: #dbeafe;
  text-decoration: underline;
}

.footer_bot_container {
  background: rgba(0, 0, 0, 0.28);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_bot_wrapper {
  display: flex;
  flex: 1;
  justify-content: center;
  max-width: 1200px;
  padding: 15px 0px;
  justify-content: space-evenly;
}

social {
  display: flex;
  justify-content: center;
  align-items: center;
}

.socials {
  margin: 0px 10px;
  text-align: center;
}
social img {
  width: 50px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

social img:hover {
  transform: scale(1.1);
  opacity: 1;
}

.kontakt_ul {
  list-style: none;
  flex-direction: column;
  white-space: nowrap;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
}

.kontakt-form {
  margin-top: 2px;
  font-weight: 400;
}

.opacity_toggle {
  opacity: 1;
  pointer-events: all;
}

.location-side-arrow-icon {
  font-size: 16px;
  position: relative;
  background-position: -12.75rem -16.5rem;
  width: 1em;
  height: 1em;
  background-image: url(/assets/icons/responsive-icons2.png);
  background-repeat: no-repeat;
  background-size: 25.25em 25.25em;
}

.listViewBackground-Off {
  background-color: rgb(255, 255, 255);
}

.listViewForeground-Off {
  background-color: rgb(24, 24, 24);
}

.listViewBackground-On {
  background-color: rgb(0, 195, 255);
}

.listViewForeground-On {
  background-color: rgb(247, 247, 247);
}

.listView-column {
  flex-direction: column;
  flex-wrap: nowrap;
}

.listView-row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.listView-row > * {
  flex: 0 0 calc(25% - 15px);
  min-width: 200px;
  max-width: 250px;
  height: 400px;
  display: flex;
  flex-direction: column;
}

.maxWidthScreens {
  max-width: 200px;
  max-height: 400px;
}

.priceAndCartButtonsPadding {
  padding: 0px;
}

.kundeservice-container {
  display: none;
}

.theme-toggle-item {
  margin-left: 14px;
}

.theme-toggle-btn {
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #334155;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.theme-toggle-btn:hover {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #93c5fd;
}

@media (max-width: 1024px) {
  .home-hero,
  .home-editorial-grid,
  .home-category-strip,
  .home-trust-band {
    grid-template-columns: 1fr;
  }

  .hero-meta-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  header,
  footer {
    min-width: 0;
  }

  .header_wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header_search {
    order: 3;
    width: 100%;
    margin-left: 0;
    min-width: 0;
  }

  .header_search form {
    max-width: 100%;
  }

  .search-submit-btn {
    height: 38px;
    min-width: 38px;
    padding: 0 10px;
  }

  .search-submit-btn svg {
    width: 15px;
    height: 15px;
  }

  .header_right-stack {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  .nav_ul {
    overflow-x: auto;
  }
}

@media (max-width: 640px) {
  .content-wrapper {
    padding: 0.8rem;
  }

  .home-hero-copy,
  .home-hero-panel,
  .category-strip-card,
  .editorial-card,
  .trust-item,
  .deal-product-card,
  .daily-deals-header {
    padding: 22px;
    border-radius: 20px;
  }

  .home-hero-copy h1 {
    max-width: none;
    font-size: 2.7rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
  }

  .daily-deals-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* -- S�kedropdown -------------------------------------------------------- */
.search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-width: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  list-style: none;
  margin: 0;
  padding: 4px 0;
  z-index: 9999;
  max-height: 480px;
  overflow-y: auto;
}

.search-dropdown--visible {
  display: block;
}

.search-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.15s;
}

.search-dropdown-item:hover,
.search-dropdown-item--active {
  background: #f3f4f6;
}

.search-dropdown-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
  background: #fafafa;
}

.search-dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.search-dropdown-title {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-dropdown-meta {
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-dropdown-all {
  padding: 10px 12px;
  font-size: 13px;
  color: #3b82f6;
  cursor: pointer;
  border-top: 1px solid #e5e7eb;
  font-weight: 500;
}

.search-dropdown-all:hover {
  background: #eff6ff;
}

/* -- S�keresultatsside --------------------------------------------------- */
.search-results-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.search-results-title {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.search-results-count {
  font-size: 14px;
  color: #6b7280;
}

.search-no-results,
.search-empty-msg {
  color: #6b7280;
  font-size: 15px;
  padding: 24px 0;
}

.search-no-results p {
  margin: 4px 0;
}
