body {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #231f20;
  font-size: 16px;
  margin: 0;
  height: 100%;
}

/* Site container */
.site_container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Payment options */
.paymentoptions {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.header_container {
  background: #231f20;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header_flex {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 1200px;
}

.header_flex .header_logo {
  flex: 1;
}

/* Header search */
.header_search {
  min-width: 500px;
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.search_wrapper {
  position: relative;
  flex: 1;
  width: 450px;
}

.header_search_field {
  height: 45px;
  width: 455px;
  padding: 0;
  padding-left: 8px;
  flex: 1;
  outline: 0;
  border: none;
  position: relative;
}

.header_search_button {
  height: 45px;
  width: 45px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: #ffc30e;
}

.header_search_button svg {
  height: 18px;
  fill: #ffffff;
}

#results-container {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 2px solid #ffc30e;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 99999;
  max-height: 500px;
  width: 500px;
  overflow-y: auto;
  padding: 10px;
  display: none;
  box-sizing: border-box;
}

.result {
  display: flex;
  background: #f9f9f9;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  padding: 10px;
  gap: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-left: 5px solid #ffc30e;
}

.result:hover {
  background-color: #fff8e1;
}

.result-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.result-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: Arial, sans-serif;
  color: #231f20;
  flex: 1;
}

.result-headline {
  font-weight: bold;
  font-size: 16px;
  color: #231f20;
}

.result-description {
  font-size: 13px;
  color: #444;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.result-itemnumber {
  font-size: 12px;
  color: #666;
  font-style: italic;
}

.stock-result {
  font-size: 12px;
  color: #ffc30e;
}

.stock-result i {
  color: #ffc30e;
}

.result-price {
  font-weight: bold;
  font-size: 14px;
  color: #231f20;
}

.result-read-more a {
  display: none;
}


/* Header basket */
.header_basket_container {
  flex: 1;
  height: 45px;
  display: flex;
  justify-content: right;
}

.header_basket_container a, .header_basket_container a:hover {
  color: #ffffff;
  text-decoration: none;
}

.header_basket {
  background: #61ab3a;
  height: 100%;
  width: 270px;
  display: grid;
  grid-template-columns: 0.5fr 1fr 0.2fr;
  align-items: center;
  padding-left: 12px;
  font-weight: bold;
}

.cart_button::after {
  content: " (" attr(data-items) ")";
  font-weight: bold;
}

.header_basket svg {
  height: 18px;
  fill: #ffffff;
}

.header_basket svg:last-of-type {
  margin-top: -8px;
}

/* Header navigation */
.header_nav_container {
  display: flex;
  flex-direction: row;
  width: 1200px;
  margin-top: 25px;
  margin-bottom: 15px;
  border-bottom: 3px solid #e9e9e9;
}

.header_nav {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu {
  display: none;
}

.header_nav a {
  color: #ffffff;
  text-decoration: none;
}

.header_nav a:hover {
  background: #ffc30e;
  color: #ffffff;
  text-decoration: none;
}

.header_nav li {
  padding: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border-right: 1px solid #e9e9e9;
}

.header_nav > li:hover {
  background: #ffc30e;
  color: #ffffff;
  text-decoration: none;
}

.header_nav_item {
  position: relative;
}

.has-mega-menu {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: -98px;
  width: 1200px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  z-index: 99999;
  padding: 32px;
  display: none;
  gap: 28px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.mega-menu .mega-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 200px;
}

.mega-menu h4 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: underline;
  margin-bottom: 8px;
  color: #231f20;
}

.mega-menu .mega-column ul {
  padding: 0;
  margin: 0;
}

.mega-menu .mega-column ul li {
  padding: 0;
  padding-top: 8px;
  border: none;
  text-transform: none;
}

.mega-menu a {
  color: #231f20;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.mega-menu a:hover {
  color: #ffc30e;
  background: none;
}

.header_nav li.has-mega-menu:hover .mega-menu {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Main and content */
.site_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  margin: 15px 0;
}

.content_container {
  width: 1200px;
}

.breadcrumb_start {
  display: none;
}

.custom_breadcrumb {
  display: inline-flex;
  align-items: center;
  padding: 0 12px 0 0px;
  margin-left: 16px;
  height: 32px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 16px;
}

.custom_breadcrumb a, .custom_breadcrumb a:hover {
  color: #000000;
  text-decoration: none;
}

.breadcrumb_home {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 4px 0 0 4px;
  margin-right: 4px;
  /* border-right: 8px solid #ffc30e; */
}

.breadcrumb_home svg {
  width: 16px;
  height: 16px;
  fill: #000;
}


.categories_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 100%;
  margin-bottom: 32px;
}

.categories_container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.content_wrapper {
    margin: 0 16px;
  margin-bottom: 45px;
}

/* Footer */
.footer_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000000;
  background: #ffc30e;
  width: 100%;
}

/* Newsletter */
.footer_newsletter {
  color: #ffffff;
  background: #231f20;
  padding: 8px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_newsletter div {
  width: 1200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.newsletter_title {
  font-size: 21px;
  font-weight: bold;
}

.newsletter_signup {
  padding: 0px 43px 0px 12px;
  height: 45px;
  margin: 0;
  outline: none;
  border: none;
}

.newsletter_signup_button {
  border: none;
  margin-left: -58px;
  height: 40px;
  background: none;
}

.newsletter_signup_button svg {
  height: 24px;
  width: 29px;
}

.newsletter_signup_button svg:hover {
  fill: #ffc30e;
}

.footer_flex {
  display: flex;
  flex-direction: row;
  width: 1200px;
  padding: 45px 0;
  font-size: 13px;
}

/* Footer left */
.footer_left {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex: 3;
}

.footer_nav a {
  color: #000000;
  text-decoration: none;
}

.footer_nav a:hover {
  color: #ffffff;
}

.footer_title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  padding: 0;
  margin-bottom: 13px;
  margin-top: 0;
}

.footer_title a {
  color: #ffffff;
}

.footer_nav ul {
  list-style: none;
  padding: 0;
}

.footer_nav ul li {
  font-size: 13px;
  font-weight: bold;
  padding-bottom: 8px;
}

/* Footer right */
.footer_right {
  margin: 0 16px;
  padding-left: 16px;
  border-left: 1px solid #5c5757;
  flex: 1;
}

.footer_right ul {
  list-style: none;
  padding: 0;
}

.footer_right ul li {
  padding-bottom: 16px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.footer_right ul li:nth-of-type(n + 2) {
  display: flex;
  align-items: center;
}

.footer_icon {
  height: 24px;
  width: 24px;
}

.footer_right a {
  color: #ffffff;
  text-decoration: none;
}

.footer_right address {
  font-style: normal;
}

/* Overrides/fixes */

.col-md-12 {
    padding: 0;
    margin: 0;
}

.empty-basket video {
    display: none;
}

/* Product card */
.single-product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fff;
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.05); */
  /* transition: transform 0.2s ease, box-shadow 0.2s ease; */
  height: 100%;
}

/* .single-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
} */

.single-product-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px;
  text-align: center;
  position: relative;
}

.fav-div {
  margin-bottom: 8px;
  text-align: right;
  position: static;
}

.image-container {
  margin-bottom: 12px;
}

.image-container img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border-radius: 4px;
  max-height: 180px;
}

.info-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
}

.info-container h2 {
  font-size: 16px;
  margin: 0 0 12px;
  line-height: 1.3;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.info-container h2 a {
  color: #333;
  text-decoration: none;
}

.info-container h2 a:hover {
  text-decoration: underline;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 16px;
}

.product-price .without_vat {
    font-size: 16px;
}

.buy_buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 0 20px 12px;
}

.buy_buttons a {
  flex: 1 1 50%;
  /* min-width: 130px; */
  text-align: center;
  white-space: nowrap;
}

/* Tilføj til kurven knap styling */
.addToBasket {
  background-color: #5db727;
  color: white;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  padding: 10px;
  border: none;
  transition: background-color 0.2s ease;
  display: inline-block;
}

.addToBasket:hover {
  background-color: #ffc30e;
  color: #fff;
  transform: scale(1.02);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Læs mere knap */
.read_more_btn {
  background-color: #231f20;
  color: white;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  padding: 10px;
  border: none;
  transition: background-color 0.2s ease;
  display: inline-block;
}

.read_more_btn:hover {
  background-color: #007bff;
  color: #fff;
  transform: scale(1.02);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.product_container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.product_container > .single-product {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}

/* Single product page */
.DM_ProductTitle h1 {
    font-size: clamp(24px, 5vw, 32px);
}

.product_page_header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.DM_LeftContainer {
  flex: 1 1 48%;
  max-width: 600px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.DM_ProductImage {
  position: relative;
  box-sizing: border-box;
  /* width: 600px; */
  height: 500px;
  border: 1px solid #ddd;
  padding: 0;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.detail_image_container img {
  width: 100% !important;
  height: calc(500px - 0.5rem) !important;
  object-fit: contain;
  display: block;
  margin: 0;
}

.detail_thumbnail_container {
  margin: 1rem 0 0 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  overflow-x: auto;
  max-width: 100%;
}

.detail_thumbnail_container img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}


.DM_ProductShowOff .DM_StockCount {
    font-size: 14px;
    font-weight: 700;
    color: #ffc30e;
}

.DM_ProductShowOff .product_quantity {
  width: 60px;
  height: 45px;
  margin-right: 12px;
  font-size: 16px;
  text-align: center;
  border: 1px solid #ccc;
  outline: none;
  appearance: textfield;
  padding: 0;
  line-height: 45px;
  box-sizing: border-box;
}

.DM_ProductShowOff .product_quantity::-webkit-outer-spin-button,
.DM_ProductShowOff .product_quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.DM_ProductShowOff .p_prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 32px;
  font-size: 28px;
  white-space: nowrap;
  font-weight: bold;
}

.DM_ProductShowOff .p_prices span {
  vertical-align: baseline;
}

.DM_ProductShowOff .p_prices .price_styling {
  line-height: 1;
}

.DM_ProductShowOff .p_prices .with_vat {
  font-size: 16px;
  line-height: 1;
}

.DM_ProductShowOff .add-to-favourites {
  margin-top: 8px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.DM_ProductShowOff .leveringInfo {
    font-size: 13px;
    color: #646464;
    margin: 0;
}

.DM_ProductShowOff .priserTilaeg {
    font-weight: 700;
    font-size: 13px;
    color: #646464;
    margin: 0;
}

.DM_ProductShowOff .DM_LongInfo {
    display: block;
    border-bottom: 1px solid #e9e9e9;
    margin: 32px 0;
}

/* .related-parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.related-parent .related_product {
    text-align: center;
    border: 1px solid #000;
    padding: 8px;
}

.related-parent .related_product a {
    color: #000;
}

.related-parent .related_product a:hover {
    color: #ffc30e;
    text-decoration: none;
}

.related-parent .related_product h4 {
    font-size: 16px;
}

.related-parent .related_product img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
} */

.category-row {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  grid-template-columns: repeat(6, 1fr); /* Standard: 6 pr. række */
}

.category-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 240px;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-card a {
  color: #231f20;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.category-card a:hover {
  color: #ffc30e;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-bottom: 8px;
}

.category-card h4 {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Breakpoints */
@media (max-width: 1199px) {
  .category-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .category-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .category-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .category-row {
    grid-template-columns: 1fr;
  }
}



/* Mobile (max 425px) styling */
@media (max-width: 425px) {
  .paymentoptions {
    width: 95%;
  }

  .header_flex,
  .header_nav_container,
  .content_container,
  .footer_flex {
    width: 100%;
  }

  .header_search {
    width: 100%;
  }

  .header_basket_container {
    width: 100%;
    justify-content: center;
  }

  .header_basket {
    width: 300px;
    height: 45px;
  }

  .header_flex {
    flex-direction: column;
    gap: 16px;
  }

  .header_nav_container {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .categories_container {
    grid-template-columns: 1fr;
    margin: 0 16px;
  }

  .footer_flex {
    width: 90%;
    flex-direction: column;
    gap: 16px;
  }

  .footer_left {
    gap: 20px;
  }

  .footer_right {
    border: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
  }

  .footer_right address {
    margin: 0;
    flex-direction: column;
  }

  .footer_right svg {
    display: none;
  }

  .footer_right div:first-of-type(1) {
    display: flex;
    flex-direction: column;
  }

  .footer_newsletter div {
    width: 90%;
  }

  .newsletter_signup {
    width: 100%;
  }
  
  .product_page_header {
  display: flex;
  flex-direction: column;
  gap: 52px;
  }
  
  .DM_ProductImage {
      max-width: 100%;
      height: 100%;
      overflow: hidden;
  }
  
/*   .related-parent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
} */

/* === RESPONSIV VIDEO === */
.DM_ProductShowOff > div.product-specs-table > div > p > iframe, .DM_ProductShowOff > p > iframe  {
  display: block;
  max-width: 100%;
  width: 100% !important;
  height: auto;
  aspect-ratio: 16 / 9;
  border: none;
  margin: 2rem 0;
  border-radius: 8px;
}
}

/* Tablet (min 426px max 768px) styling */
@media (min-width: 426px) and (max-width: 768px) {
  .paymentoptions {
    width: 95%;
  }

  .header_flex,
  .header_nav_container,
  .content_container,
  .footer_flex {
    width: 100%;
  }

  .header_search {
    width: 100%;
  }

  .header_basket_container {
    width: 90%;
    justify-content: center;
  }

  .header_basket {
    width: 390px;
    height: 45px;
  }

  .header_flex {
    flex-direction: column;
    gap: 16px;
  }

  /* .header_nav_container {
    justify-content: center;
  } */

  .header_nav_container {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .categories_container {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 16px;
  }

  .footer_flex {
    width: 90%;
    flex-direction: row;
    /* align-items: center; */
  }

  .footer_right {
    border: none;
    padding: 0;
    margin: 0;
  }

  .footer_right svg {
    display: none;
  }

  .footer_right div {
    display: flex;
    flex-direction: column;
  }

  .footer_newsletter div {
    width: 90%;
  }

  .newsletter_signup {
    width: 100%;
  }

  .footer_right address {
    margin: 0;
  }
  
  .DM_ProductShowOff {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .product_page_header {
  display: flex;
  flex-direction: column;
  gap: 52px;
  }
  
  /* === RESPONSIV VIDEO === */
.DM_ProductShowOff > div.product-specs-table > div > p > iframe, .DM_ProductShowOff > p > iframe  {
  display: block;
  max-width: 100%;
  width: 100% !important;
  height: auto;
  aspect-ratio: 16 / 9;
  border: none;
  margin: 2rem 0;
  border-radius: 8px;
}
}

/* Tablet and laptop styling */
@media (min-width: 769px) and (max-width: 1024px) {
  .header_flex,
  .header_nav_container,
  .content_container,
  .footer_flex {
    width: 90%;
  }

  .paymentoptions {
    width: 95%;
  }

  .header_flex {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
  }

  .header_logo {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 16px;
  }

  .header_search {
    flex: 2;
    max-width: 100%;
    justify-content: flex-start;
  }

  .header_basket_container {
    flex: 1;
    justify-content: flex-end;
  }

  .header_basket {
    width: 280px;
    height: 45px;
    grid-template-columns: 0.5fr 1fr 0.5fr;
  }

  .header_nav_container {
    display: none;
  }

  .mobile-menu {
    display: block;
  }
  
  .product_page_header {
  display: flex;
  flex-direction: row;
  gap: 32px;
  }

  .header_nav li {
    padding: 12px;
    font-size: 14px;
  }

  .categories_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 0 16px 32px;
  }

  .footer_flex {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
  }

  .footer_left {
    grid-template-columns: 1fr 1fr;
    flex: 2;
  }

  .footer_right {
    flex: 1;
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }

  .footer_newsletter div {
    width: 90%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .newsletter_signup {
    width: 40%;
  }

  .newsletter_signup_button {
    margin-left: -60px;
  }
}

/* Mobile menu styling */
.mobile-menu {
  background: #231f20;
  padding: 20px;
  color: white;
  width: 90%;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu li:last-child {
  border-bottom: none;
}

.mobile-menu a,
.mobile-menu .menu-toggle {
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

/* Submenu styling */
.mobile-menu .submenu {
  display: none;
  margin-top: 5px;
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
}

.mobile-menu .submenu li {
  /* padding: 8px; */
  border-bottom: 1px solid #ccc;
}

.mobile-menu .submenu li:last-child {
  border-bottom: none;
}

.mobile-menu .submenu a {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.mobile-menu .submenu .menu-toggle {
  background-color: #fff;
  color: #000;
  font-size: 18px;
  margin-bottom: 5px;
}

.mobile-menu .submenu .menu-toggle .symbol {
  color: #000;
  font-size: 28px;
}

.mobile-menu .menu-toggle.open + .submenu {
  display: block;
}

.mobile-menu .symbol {
  color: #ffc30e;
  font-size: 36px;
  margin-left: 8px;
}

.basket-notifier-container.hidden {
    display: none;
}

.cloudzoom-tint, .cloudzoom-blank, .cloudzoom-fade-1 {
    opacity: 0 !important;
    display: none;
    background-color: transparent !important;
}

div.fancybox-overlay {
    z-index: 99999 !important;
}

div.fancybox-opened {
    z-index: 999999 !important;
}

div.cloudzoom-zoom-inside {
    pointer-events: none !important;
    cursor: pointer;
}

/*search function til mobil ver.*/

/* Mobil søgefelt */
.search-box-mobile {
  display: flex;
  background-color: #0061aa;
  border-radius: 4px;
  overflow: hidden;
  height: 36px;
  width: 100%;
}

.search-box-mobile input {
  flex: 1;
  padding: 8px 12px;
  border: none;
  outline: none;
  font-size: 14px;
  background-color: #0061aa;
  color: #fff;
}

.search-box-mobile input::placeholder {
  color: #fff;
  opacity: 0.8;
}

.search-box-mobile .search-btn {
  background: #005288;
  border: none;
  padding: 0 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

#mobile-results-container {
  display: none;
  background: #fff;
  border: 1px solid #b4d2e8;
  max-height: 500px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 99999;
  margin-top: 5px;
  padding: 10px;
  position: absolute;
  width: calc(100% - 30px);
  top: 170px;
}

.hidden {
    display: none;
}

#loginbtn, #loginAddUserForm_submit_btn, #contactForm_submit_btn {
    background: #ffc30e;
    color: #000000;
}

@media (max-width: 768px) {
  .header_search {
    flex-direction: row;
    align-items: stretch;
    gap: 0 !important;
    min-width:300px;
  }

  .search_wrapper,
  .header_search_field,
  .header_search_button {
    width: 100%;
  }

  #results-container {
    min-width: 300px;
    left: 0 !important;
    transform: none;
  }
}

  .header_search_field {
    width: 100%;
    flex: 1;
    height: 40px;
    padding: 0 8px;
    box-sizing: border-box;
    border: none;
  }

  .header_search_button {
    width: 45px;
    min-width: 45px;
    height: 40px;
    padding: 0;
    background: #ffc30e;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #results-container {
    width: 100%;
  }
}

@media (max-width: 425px) {
  .header_search {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
  }

  .search_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .header_search_field {
    flex: 1;
    height: 40px;
    padding: 0 8px;
    border: none;
    box-sizing: border-box;
  }

  .header_search_button {
    width: 45px;
    height: 40px;
    flex-shrink: 0;
    border: none;
    padding: 0;
    background: #ffc30e;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #results-container {
    width: calc(100% - 20px);
    left: 10px;
    right: 10px;
  }
}
  
  /* === CLEAN SOFTWARE TILVALG === */
.additional_choices {
  padding: 2rem;
  background-color: #fff;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: #333;
}

.additional_choices h3 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  color: #222;
}

.choice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: #fafafa;
  transition: border 0.3s ease;
}

.choice:hover {
  border-color: #0077cc;
}

.choice input[type="radio"] {
  /* margin-top: 0.3rem; */
  transform: scale(1.2);
  accent-color: #0077cc;
  flex-shrink: 0;
}

.additional_choices>div.choice-container>div.choice>label {
  display: flex;
  flex-direction: row-reverse !important;
  gap: 0.3rem;
  cursor: pointer;
  width: 100%;
}

.choice label > div,
.option_product_readmore_btn,
.option_product_price {
  line-height: 1.5;
}

.option_product_headline {
  font-weight: 600;
  font-size: 1rem;
  color: #222;
  text-decoration: none;
}

.option_product_headline:hover {
  text-decoration: underline;
}

.option_product_price {
  font-size: 0.95rem;
  color: #007c36;
}

.option_product_readmore_btn {
  color: #0056b3;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-block;
  margin-top: 0.5rem;
}

.option_product_readmore_content {
  font-size: 0.9rem;
  color: #444;
  margin-top: 0.75rem;
  line-height: 1.6;
  padding-left: 1rem;
  border-left: 2px solid #eee;
}

/* .choice-description {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
} */

.choice-description {
  display: none;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  padding-left: 1rem;
  border-left: 2px solid #eee;
}
  
  /* === LÆS MERE (LONG INFO / VIDEO / TEKST) === */
#ReadMore h2,
#ReadMore h3 {
  color: #111;
  font-weight: 600;
  line-height: 1.3;
}

#ReadMore p {
  margin-bottom: 1rem;
  color: #444;
}

#ReadMore ul {
  margin: 1rem 0 2rem 1.2rem;
  padding-left: 1rem;
  list-style-type: disc;
}

#ReadMore ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* === SPECIFIKATIONSTABEL === */
#ReadMore .product-specs-table,
.product-specs-table {
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: #f9f9f9;
  border-radius: 6px;
  overflow-x: auto;
  padding: 1rem;
  box-shadow: 0 0 8px rgba(0,0,0,0.03);
}

.product-specs-table table {
  width: 100%;
  border-collapse: collapse;
}

.product-specs-table th,
.product-specs-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-size: 0.95rem;
}

.product-specs-table th {
  background: #f0f0f0;
  font-weight: 600;
  color: #222;
}

#ReadMore .product-specs-table > div > div {
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}



/* === RELATEREDE PRODUKTER === */
#ReadMore .rp-headline h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 3rem 0 1.5rem;
  color: #222;
  text-align: center;
}

/* Checkout popup */
.basket-notifier-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  z-index: 99999;
  padding: 16px;
  pointer-events: none;
}

/* Selve notifikationsboksen */
.basket-notifier-container .basket-notifier {
  background: #ffffff;
  border: 2px solid #61ab3a;
  border-radius: 8px;
  /* padding: 32px; */
  max-width: 800px;
  width: 100%;
  margin: 0 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 24px;
  pointer-events: all;
  box-sizing: border-box;
}

/* Første indholdsrække: checkmark + billede + produkttekst */
.basket-notifier-container .basket-notifier > div > div:first-child {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  word-break: break-word;
}

.basket-notifier-container .fa-check {
  color: #61ab3a;
  font-size: 24px;
  margin-top: 4px;
  flex-shrink: 0;
}

.basket-notifier-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 4px;
  flex-shrink: 0;
}

.basket-product-name {
  color: #000000;
  line-height: 1.4;
  word-wrap: break-word;
  max-width: 100%;
  margin: auto auto auto 10px;
  font-size: 11px;
}

/* Anden sektion: kurv-info */
.basket-notifier-container .basket-notifier > div > div:nth-child(2) > div:first-child {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: bold;
  color: #000000;
  gap: 4px;
}

.basket-notifier-basket-price {
  font-size: 20px;
  white-space: nowrap;
}

/* Sort knap */
.basket-notifier-container .notifier-close {
  background-color: #231f20;
  color: #ffffff;
}

/* Sort knap hover */
.basket-notifier-container .notifier-close:hover {
  background-color: #231f20;
  color: #ffffff;
}

/* Gul knap */
.basket-notifier-container .notifier-basket, .notifier-basket:hover {
  background-color: #ffc30e;
  color: #000000;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease;
}

/* Gul knap hover */
.basket-notifier-container .notifier-basket:hover {
  background-color: #ffc30e;
  color: #000000;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease;
}


@media (max-width: 1024px) {
  .basket-notifier-container {
    top: 60px;
    padding: 12px;
  }

  .basket-notifier-container .basket-notifier {
    padding: 20px;
    max-width: 90%;
    gap: 20px;
  }

  .basket-product-name {
    font-size: 12px;
  }

  .basket-notifier-image {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .basket-notifier-container .basket-notifier > div > div:first-child {
    flex-direction: column;
    align-items: flex-start;
  }

  .basket-product-name {
    font-size: 13px;
    margin: 10px 0 0 0;
  }

  .basket-notifier-container .basket-notifier > div > div:nth-child(2) > div:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .basket-notifier-basket-price {
    font-size: 18px;
  }

  /* Stable knapper lodret og giv luft i højre side */
  .basket-notifier-container .basket-notifier > div > div:nth-child(2) > div:last-child {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-right: 12px;
  }

  .basket-notifier-container .notifier-close,
  .basket-notifier-container .notifier-basket {
    width: 100%;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .basket-notifier-container {
    top: 40px;
    padding: 8px;
  }

  .basket-notifier-container .basket-notifier {
    padding: 16px;
    gap: 16px;
  }

  .basket-product-name {
    font-size: 12px;
  }

  .basket-notifier-basket-price {
    font-size: 16px;
  }

  .basket-notifier-container .notifier-close,
  .basket-notifier-container .notifier-basket {
    font-size: 14px;
    padding: 10px;
  }
}

#checkoutForm div.row.step3Container > a > img {
    width: 100%;
    margin-bottom: 16px;
}

.productMiniature {
    display: none;
}

.single-product[data-discount] {
  position: relative; /* Ensure relative positioning */
}

.single-product[data-discount]::before {
  content: attr(data-discount) "% RABAT";
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e63946;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 6px;
  border-radius: 4px;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.single-product[data-discount="0"]::before {
  content: none;
}

.basket-notifier-container {
    pointer-events: all;
}

#DMOB_CONTAIN {
  padding: 2rem 1rem;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

#DMOB_TakForOrdreDIV {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 1000px;
  margin: 0 auto;
}

#DMOB_TakForOrdreDIV img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 2rem;
}

#DMOB_TakForOrdreDIV h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #222;
}

#DMOB_MailInfo3 {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.hr-checkout {
  border: 0;
  height: 1px;
  background: #ddd;
  margin: 2rem 0;
}

#checkoutActionContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

#checkoutActionContainer a img {
  max-width: 280px;
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

#checkoutActionContainer a:hover img {
  transform: scale(1.03);
}

#DMOB_kortPraktiskOplysning {
  margin-top: 2.5rem;
  text-align: center;
}

#DMOD_HandelsBetingelser a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 600;
}

#DMOD_HandelsBetingelser a:hover {
  text-decoration: underline;
}

/* Responsiv tilpasning */
@media (max-width: 768px) {
  #DMOB_TakForOrdreDIV {
    padding: 1.5rem 1rem;
  }

  #DMOB_TakForOrdreDIV h2 {
    font-size: 1.25rem;
  }

  #checkoutActionContainer {
    flex-direction: column;
    align-items: center;
  }

  #checkoutActionContainer a img {
    max-width: 90%;
  }
}

#ReadMore iframe {
  display: block;
  max-width: 100% !important;
  width: 100% !important;
  height: auto;
  aspect-ratio: 16 / 9;
  border: none;
  margin: 2rem 0;
  border-radius: 8px;
}

iframe{
    max-width:100%;
}

section img{
    max-width:100%;
}

/*related products*/
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.related-products > .slick-list > .slick-track > .single-product {
    border:none;
}

.related-products > .slick-list > .slick-track > .single-product > .single-product-container {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 0.5rem;
  width: 90%;
}

.related-products > .slick-list > .slick-track > .single-product > .single-product-container > .image-container {
  padding: 20px;
  text-align: center;
}

.related-products > .slick-list > .slick-track > .single-product > .single-product-container > .image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.related-products > .slick-list > .slick-track > .single-product > .single-product-container > .info-container {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.related-products > .slick-list > .slick-track > .single-product > .single-product-container > .info-container > h2 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0;
  min-height: 40px;
  line-height: 1.4;
}

.related-products > .slick-list > .slick-track > .single-product > .single-product-container > .info-container > h2 > a {
  color: #222;
  text-decoration: none;
}

.related-products > .slick-list > .slick-track > .single-product > .single-product-container > .info-container > h2 > a:hover {
  color: #0061aa;
  text-decoration: underline;
}

.related-products > .slick-list > .slick-track > .single-product > .single-product-container > .info-container > div:last-of-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
}

.related-products > .slick-list > .slick-track > .single-product > .single-product-container > .info-container > div:last-of-type span {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
}

.related-products > .slick-list > .slick-track > .single-product > .single-product-container > .info-container > div:last-of-type a {
  background: #ffc30e;
  color: #fff;
  padding: 8px 14px;
  margin-bottom: 8px;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.related-products > .slick-list > .slick-track > .single-product > .single-product-container > .info-container > div:last-of-type a:hover {
  background: #004f8e;
}

.related-products > .slick-prev,
.related-products > .slick-next {
  top: 50%;
  z-index: 10;
  cursor: pointer;

}

/* Hover-effekt */
.related-products > .slick-prev:hover,
.related-products > .slick-next:hover {
  background: #004f8e;
}

/* Positionering */
.related-products > .slick-prev {
  left: -15px !important;
}

.related-products > .slick-next {
  right: -15px !important;
}

/* Tilføj pile vha. pseudo-element */
.related-products > .slick-prev::before,
.related-products > .slick-next::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  margin: auto;
}

.related-products > .slick-prev::before {
  transform: rotate(225deg);
}

.related-products > .slick-next::before {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
    .related-products > .slick-prev {
  left: -10px !important;
}

.related-products > .slick-next {
  right: -10px !important;
}
}