
/*colors*/
/* --dark-grey:#2E2932;
--light-grey:#D9D9D9;
--orange: #FF5300;
--dark-blue:#000B53;
--light-blue:#0059FC;
--dark-green: #052615;
--light-green:#AEFD71; */

/*TRUST BOX*/
.trustbox{
  display:flex;
  justify-content: space-around;
  height:150px;
}




/* Add to cart banner */
.woocommerce-message {
  border-top: none;
  border-radius: 10px;
  background-color: var(--light-grey);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  font-size: 1.125rem;
  font-size: 20px !important;
  margin: 0 10px 10px;
}

.woocommerce-message#text {
  color: var(--text-grey) !important;
  font-family: 'nudica-regular' !important;
}

.woocommerce-message::before {
  top: 1.5em !important;
}

.woocommerce-message .button {
  font-family: 'nudica-regular' !important;
  font-size: clamp(1.125rem, 0.9946rem + 0.6522vw, 1.5rem) !important;
}

@media (max-width: 767px) {
  .woocommerce-message {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .woocommerce-message .button {
    width: 100%;
  }

.woocommerce-message::before {
  top: 1em !important;
}

}

/*Max width for the whole page*/
.main-content-product {
  max-width: 1920px;
  margin: auto;
}

/*Grid for the image and product variations content*/

.product{
  display: grid;
  grid-template-columns: 1.5fr 1fr;
padding: 0px 10px;
}

/*The product image and gallery should fill the column*/
.woocommerce-product-gallery  {
  float: none !important;
  width: 100% !important;
  overflow: hidden;
}

/*image and gallery not main*/
.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2){
  border-radius:20px;
  overflow: hidden;
}

/*The product title and variations should fill the column but have a max-width*/
.summary {
  width: 100% !important;
  justify-self: center;
  padding: 40px 80px;
  overflow: auto;
}

/*title*/
.entry-title {
  font-size: 2.5rem;
  color: #1F1F1F;
  text-transform: none !important;
}

/*subheading*/
.product-page-subheading{
  font-family: 'nudica-regular';
  font-size: 1.25rem;
  color: var(--text-black);
  opacity: 60%;
  letter-spacing: 0.3px;
}

/*price*/
.custom-price {
font-size: 1.5rem !important;
color: #1F1F1F !important;
}

.starting-text {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.55);
}

.price {
display: grid;
margin-bottom: 0px !important;
}

.text-and-price-wrapper .price{
  display:block;
}

/*variation labels*/
label {
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 300 !important;
  font-size: 1.125rem;
  padding-top: 40px;
  word-wrap: break-word;
  width: 100%;
  margin-bottom: 10px;
}


.cfvsw-label-option {
  padding: 24px;
  font-size: 1.25rem;
  border-radius: 10px !important;
  font-family: 'nudica-medium';
}

.cfvsw-swatch-inner {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  text-align: left;
}

.cfvsw-swatches-option .cfvsw-swatch-inner {
  justify-content: flex-start;
}

.cfvsw-swatches-option, .cfvsw-swatches-container{
  height: fit-content;
}

.cfvsw-selected-swatch {
  border: solid 1px var(--light-blue) !important;
}

/* term description */
.attribute-description-and-icon{
  display:flex;
  align-items: center;
  gap:10px;
  margin-bottom:10px;
  color: var(--light-blue);
}

p.attribute-description{
  font-size: 1rem;
  /* color: var(--light-blue); */
  color:var(--text-black);
  margin-bottom: 0;
}

.attribute-description-and-icon i{
  display:none;
}

/*quantity and add to button*/
.cart-quantity-add-to-cart-button-wrapper {
display: grid;
width: 100%;
background-color: var(--light-blue);
border-radius: 9px;
}

.cart-quantity-add-to-cart-button-wrapper .quantity {
    display: none !important;
}


.single_variation_wrap {
  background: var(--light-blue);
  width: 300px;
  border-radius: 10px;
  margin-top: 20px;
}

/* .amount { */
.full-price-wrapper .price{
  width: 100%;
  background-color: white;
  color: var(--dark-grey);
  border: solid 1px var(--light-blue);
  padding: 0px 24px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.5rem;
  padding: 10px 24px;
}

.woocommerce-variation-price .full-price-wrapper.hide-important{
  background: red;
}

.amount{
  font-size: 1.5rem;
  color: var(--dark-grey);
}

.sale-label{
  padding:6px 12px;
  width:fit-content;
  min-width: 100px;
  background-color: var(--dark-green);
  color: var(--light-green);
  border-radius:10px;
  margin-bottom:20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sale-label p{
  margin-bottom:0;
}

.woocommerce div.product p.price del, .woocommerce div.product span.price del{
  font-size: 1.5rem;
  color: var(--text-black);
}

.woocommerce span.onsale {
  display:none;
}


.woocommerce div.product p.price ins, .woocommerce div.product span.price ins{
  text-decoration: none;
  font-weight: unset;
}

.text-and-price-wrapper {
  margin-top:20px;
}

.text-and-price-wrapper .amount{
  font-family: 'nudica-medium';
  border:none;
  padding: 0;
}

p.variable-price{
  margin-bottom:0;
  font-family: 'nudica-regular';
  font-size: 1rem;
  color: var(--text-black);
  opacity:60%;
}

.was-price span{
  text-decoration: line-through;
}

.cart-quantity-add-to-cart-button-wrapper button {
  transition: box-shadow 0.3s ease-in-out;
}

.cart-quantity-add-to-cart-button-wrapper button:hover {
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
}


/*gallery images*/
.flex-viewport {
  border-radius: 30px!important;
  /* height: 700px; */
  max-height: 700px !important;
  border-radius: 10px;
  border-style:solid;
  border-color: var(--border-grey);
  border-width:1px;
  position: relative;
}

ol {
  display: flex;
  gap: 10px;
  padding-top: 10px !important;
  /* flex-wrap: wrap; */
}

/* ol li {
  width: 500px;
} */

ol li img {
  border-radius: 10px;
}

.woocommerce-product-gallery__trigger {
  display: none;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  width: calc(50% - 10px );
}


/* Sørger for at overlayet dækker billedet */
.svg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

/* Styling for hver SVG */
.hjørne-svg {
    position: absolute;
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease-in-out;
}

/* Placering af SVG'erne i hjørnerne */
.top-left {
    top: 30px;
    left: 30px;
}

.top-right {
    top: 30px;
    right: 30px;
}

.bottom-left {
    bottom: 30px;
    left: 30px;
}

.bottom-right {
    bottom: 30px;
    right: 30px;
}

/*tabs*/
.tabs-wrapper {
  padding: 120px 80px;
  border: solid 1px #DCDCDC;
  border-radius: 20px;
  margin: 0px 10px;
}

.tabs-inner-wrapper {
  max-width: 1440px;
  margin: auto;
}

.tabs-container {
  display: flex;
  padding-left: 0px !important;
  border-bottom: solid 1px #D0D0D0;
  height: 66px;
  align-items: center;
}

.tabs-container li {
  list-style: none;
}

/* Styling af tab-knapperne */
.tab-button {
  cursor: pointer;
  padding: 10px 20px;
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.55);
  display: inline-block;
  font-weight: 300 !important;
  height: 100%;
  display: flex;
  align-items: center;
}

.tab-button.active {
color: #1F1F1F;
border-bottom: solid 1px #1F1F1F;
}

/* Styling af indholdsområdet */
.tab-content {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 3rem;
 padding-top: 80px;
}

.tab-content h2 {
  font-size: 2.5rem;
  letter-spacing: 0px !important;
  }

.tab-content h3, .tab-content h4 {
    font-size:1.5rem;
}

.tab-content h3 {
  font-family: 'nudica-regular' !important;
}

.tab-content h4 {
  font-family: 'nudica-medium' !important;
  }

.tab-content p {
  color:  var(--text-grey);
}

.tab-content li {
  color: var(--text-grey);
}

@media (max-width: 1500px) {
  .tab-content h2 {
    font-size: 2rem;
  }

  .tab-content h3, .tab-content h4 {
    font-size:1.25rem;
  }
}

@media (max-width: 991px) {
  .tab-content {
    padding-top: 40px;
  }
}

@media (max-width: 575px) {
  .tab-content h2 {
    font-size: 1.5rem;
    letter-spacing: 0px !important;
  }

  .tab-content h3, .tab-content h4 {
    font-size: 1.125rem;
  }
}


/* Aktiv tab skal vises */
.tab-content.active {
    display: block;
}


/*Accordion in tab content*/

.accordion {
  padding-left: 0px !important;
  padding-top: 10px;
}

.accordion li {
  list-style: none;
}

.accordion-content {
  font-size: 1.125rem !important;
}

.accordion-headline-and-svg h4 {
  font-size: 1.5rem !important;
  font-weight: 300 !important;
  color: var(--dark-grey);
  margin-bottom: 0px !important;
}

.accordion-specs-container {
  justify-self: right;
}

.accordion-headline-and-svg {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

/* Gør at de lukkede faner overlapper */
.accordion li {
  margin-top: -10px;
  position: relative;
  z-index: 0;
  width: 100%;
  /* max-width: 542px; */
  border: solid 1px var(--dark-grey);
  border-radius: 10px 10px 0px 0px;
  padding: 24px;
  background: white;
  cursor: pointer;
  position: relative;
  transition: margin 0.3s ease-in-out;
}

.accordion li:last-of-type {
  border-radius: 10px;
}

/* Når en fane åbnes, skubber den de andre ned */
.accordion li.active {
  margin-top: 0;
  z-index: 2;
}

.accordion-btn svg {
  transition: transform 0.3s ease-in-out;
}

.accordion-btn.active svg {
  transform: rotate(-45deg);
}

/*Specs container styling*/
.specs-container {
  max-width: 542px;
  border: solid 1px var(--dark-grey);
  border-radius: 10px;
  padding: 24px;
  margin-top: 40px;
}

.specs-container p {
  font-size: clamp(1rem, 0.9565rem + 0.2174vw, 1.125rem);
    line-height: clamp(1.75rem, 1.5761rem + 0.8696vw, 2.25rem);
    color: var(--text-black);
    opacity: 60%;
}

.specs-container button {
  background: #1F1F1F;
	color: white;
	border: none;
	padding: 10px 32px;
  border-radius: 10px;
	cursor: pointer;
	outline: inherit;
  font-size: 1.5rem !important;
  margin-top: 24px;
}

.download-manuel-link {
padding: 13px 32px !important;
text-align: center !important;
text-decoration: none !important;
font-family: Arial, sans-serif !important;
background: var(--text-black);
color: white;
display: inline-block;
text-decoration: none;
border-radius: 10px;
font-size: clamp(1.125rem, 0.9946rem + 0.6522vw, 1.5rem);
transition: box-shadow 0.3s ease-in-out;
}

.download-manuel-link:hover {
  box-shadow: 0 0 15px rgba(35, 41, 50, 0.5);
  color: white;
}

@media (max-width: 575px) {
  .download-manuel-link {
    width: 100%;
  }
}

#test-reports-content, #reviews-content {
  display: block;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.test-reports-card {
  padding: 30px 20px;
  border: solid 1px #1F1F1F;
  border-radius: 15px;
  height: fit-content;
}

.test-reports-card h5 {
  font-size: 1rem !important;
  margin-bottom: 0px !important
}

.card-flex p {
  margin-bottom: 0px;
  font-size: 0.875rem !important;
}

.test-reports-card img {
align-self: center;
}

.test-reports-card a {
  color: var(--light-blue) !important;
  text-decoration: none !important;
}

.card-flex {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.test-reports-card .card-flex{
  flex-direction: column;
}

.videos-flex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.iframe iframe {
    border-radius: 20px; /* Nogle browsere respekterer dette */
}

/**** STYLING FOR SIMPLE PRODUCT PAGE ****/
.woocommerce-product-gallery__image {
  border-radius: 30px;
  position: relative;
  overflow:hidden;
}

.single_add_to_cart_button {
  font-size: 1.5rem !important;
  font-weight: 300 !important;
}

.single-product .main-content-product .entry-summary .cart {
  display: flex;
  flex-direction: column;
}


.input-text {
  border: 1px solid var(--border-grey) !important;
  border-radius: 10px !important;
  padding: 4px 16px !important;
  display: inline !important;
  margin-top: 40px;
}

.simple-product-price-cart-wrapper {
  max-width: 300px;
  display: grid;
  background: var(--light-blue);
  border-radius: 30px;
  margin-top: 40px;
}

/* Mobilvenlighed */
@media screen and (max-width: 767px) {
.product  {
    grid-template-columns: 1fr; /* Skifter til én kolonne */
  }

  .summary {
    padding: 0px; /* Mindre padding på mobil */
  }

  .entry-title {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .custom-price {
    font-size: 1.25rem !important;
  }

  .tab-content {
    grid-template-columns: 1fr; /* Tabs bliver én kolonne */
    gap: 1.5rem;
  }

  .tabs-wrapper {
    padding: 40px 10px;
  }

  .tab-button {
    padding: 10px 10px;
  }

  .specs-container {
    max-width: 100%; /* Fylder hele skærmen */
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .cfvsw-label-option {
    padding: 24px 10px;
  }

  ol li img {
    border-radius: 5px;
  }


  .svg-overlay {
    display: none;
  }

  .single_variation_wrap {
    width: 100%;
  }
}

/* Tablet tilpasninger */
@media screen and (min-width: 768px) and (max-width: 1199px) {
  /* #product-74  */
  .product{
    grid-template-columns: 1fr; /* Beholder én kolonne, men bedre spacing */
  }

  .summary {
    padding: 30px 40px;
  }

  .entry-title {
    font-size: 2rem;
  }

  .custom-price {
    font-size: 1.375rem !important;
  }

  .tab-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Desktop (1200px og op) */
@media screen and (min-width: 1200px) {
  /* #product-74  */
  .product{
    grid-template-columns: 1.5fr 1fr; /* Tilbage til originalt layout */
  }

  .summary {
    padding: 40px 80px;
  }

  .entry-title {
    font-size: 2.5rem;
  }

  .custom-price {
    font-size: 1.5rem !important;
  }

  .tab-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
