@charset "UTF-8";
.shadow-down {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.font-weight-normal {
  font-weight: 400;
}

.font-weight-bold {
  font-weight: 700;
}

.font-weight-light {
  font-weight: 300;
}

.font-italic {
  font-style: italic;
}

.font-normal {
  font-style: normal;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.line-height-1 {
  line-height: 1;
}

.line-height-1-5 {
  line-height: 1.5;
}

.line-height-2 {
  line-height: 2;
}

.letter-spacing-tight {
  letter-spacing: -0.5px;
}

.letter-spacing-normal {
  letter-spacing: normal;
}

.letter-spacing-wide {
  letter-spacing: 0.5px;
}

.font-size-sm {
  font-size: 0.875rem;
}

.font-size-md {
  font-size: 1rem;
}

.font-size-lg {
  font-size: 1.25rem;
}

.zindex-negative {
  z-index: -1;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink {
  flex-shrink: 1;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-column-reverse {
  display: flex;
  flex-direction: column-reverse;
}

.flex-row-reverse {
  display: flex;
  flex-direction: row-reverse;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.verena-readmore::after {
  content: " ›";
  /* Unicode for › */
  color: #de211e;
  font-weight: bold;
  margin-left: 0.25em;
}

#back-to-top {
  display: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--wp--preset--color--stottefarge-1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

#back-to-top img {
  width: 50%;
  height: 50%;
}

#back-to-top.show {
  display: flex;
}

.site-header {
  /* Default state: static, fully visible */
  position: static;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.site-header .wp-block-site-logo img {
  transition: all 0.5s ease;
  max-height: 65px;
}
.site-header .row-main-navbar {
  transition: all 0.5s ease;
}

@media screen and (min-width: 992px) and (max-width: 1140px) {
  .site-header li.has-body-text-font-size > .wp-block-navigation-item__content {
    font-size: 1rem !important;
  }
}

/* When we want the navbar fixed, start with opacity 0 */
.site-header.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  opacity: 0;
}

/* When .fade-in is added, transition to full opacity */
.site-header.navbar-fixed.fade-in {
  opacity: 1;
}

.site-header.navbar-fixed .wp-block-site-logo img {
  max-height: 40px;
  width: auto;
}

.site-header.navbar-fixed .row-main-navbar {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

/* Adjust for WordPress admin bar (desktop) */
body.admin-bar .site-header.navbar-fixed {
  top: 32px;
}

/* Adjust for WordPress admin bar (mobile) */
@media screen and (max-width: 782px) {
  body.admin-bar .site-header.navbar-fixed {
    top: 46px;
  }
}
/* General navigation formatting */
.main-nav-desktop .wp-block-navigation li > a {
  font-size: var(--wp--preset--font-size--small);
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  /* Ensure the viewport height is respected */
}

.wp-site-blocks {
  display: flex;
  flex-direction: column;
  /* Stack header, main, and footer vertically */
  min-height: 100vh;
  /* Make the container fill the viewport height */
}

.wp-site-blocks > main {
  flex: 1;
  /* Allow the main content to grow and push the footer down */
}

.wp-block-separator {
  border-color: var(--wp--preset--color--text-body) !important;
  border-top: 1px solid !important;
}

.wp-block-button .wp-block-button__link {
  transition: all 0.3s;
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border: 2px solid var(--wp--preset--color--primary);
  color: var(--wp--preset--color--text-body);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--primary);
  color: white;
}

.wp-block-categories.is-style-badge-list {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
}

.wp-block-categories.is-style-badge-list::-webkit-scrollbar {
  display: none;
  /* Safari + Chrome */
}

.wp-block-categories.is-style-badge-list li {
  flex: 0 0 auto;
  background-color: #f5f5f5;
  border-radius: 999px;
  padding: 0.5em 1em;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.wp-block-categories.is-style-badge-list li a {
  text-decoration: none;
  color: #333;
}

.wp-block-categories.is-style-badge-list li a:hover {
  color: #de211e;
}

.wp-block-categories.is-style-badge-list li:hover {
  background-color: #eee;
}

.gform_wrapper {
  max-width: 600px;
}

.gform_button {
  background-color: transparent !important;
  border: 2px solid var(--wp--preset--color--primary) !important;
  padding: 12px 30px !important;
  border-radius: 10em !important;
  transition: all 0.3s !important;
  font-weight: normal !important;
}
.gform_button:hover {
  background-color: var(--wp--preset--color--primary) !important;
  color: white !important;
}

.contact-grid > div.wp-block-group {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1.635rem !important;
}
@media (max-width: 781px) {
  .contact-grid > div.wp-block-group {
    padding: 1rem !important;
  }
}

.pattern-vare-leverandorer .wp-block-group-is-layout-grid .wp-block-group {
  padding: 10px !important;
  min-height: 120px;
}
@media (max-width: 781px) {
  .pattern-vare-leverandorer .wp-block-group-is-layout-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.brubakken-top-banner {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero-front .wp-block-cover {
  min-height: 60vh;
}
@media (max-width: 575.98px) {
  .hero-front .wp-block-cover {
    min-height: 70vh;
  }
}
.hero-front .hero-section-cta {
  position: relative;
  z-index: 1;
}

.yoast-breadcrumbs {
  font-size: 0.875rem;
  text-transform: uppercase;
}
.yoast-breadcrumbs a {
  color: var(--wp--preset--color--text-body);
  text-decoration: none;
}
.yoast-breadcrumbs a:hover {
  color: var(--wp--preset--color--primary);
}
@media (min-width: 576px) {
  .yoast-breadcrumbs span:not(:first-child) {
    margin-left: 0.5rem;
  }
  .yoast-breadcrumbs span:not(:last-child) {
    margin-right: 0.5rem;
  }
}

/* Style WooCommerce sorting dropdown */
.woocommerce-ordering {
  display: flex;
  justify-content: flex-end;
  /* Posisjoner til høyre */
  margin-bottom: 2rem;
}

.woocommerce-ordering select.orderby {
  appearance: none;
  /* Fjern default stil */
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.5em 2.5em 0.5em 1em;
  /* Litt ekstra plass for icon */
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 140 140" xmlns="http://www.w3.org/2000/svg"><polygon points="70,90 100,50 40,50" fill="%23de211e"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 1em;
}

.woocommerce-ordering select.orderby:focus {
  outline: none;
  border-color: #de211e;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .woocommerce-ordering {
    justify-content: center;
  }
}
/* Style WooCommerce product grid */
.wc-block-product {
  position: relative;
}
.wc-block-product.outofstock::before {
  content: "Solgt";
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #de211e;
  color: #fff;
  padding: 0.3em 0.6em;
  font-size: 0.9rem;
  border-radius: 0.3em;
  font-weight: bold;
  z-index: 10;
}

/*# sourceMappingURL=main.css.map */
