@font-face {
    font-family: 'farmer';
    src: url('../farmerrain/farmer.eot?2490129');
    src: url('../farmerrain/farmer.eot?2490129#iefix') format('embedded-opentype'),
         url('../farmerrain/farmer.woff2?2490129') format('woff2'),
         url('../farmerrain/farmer.woff?2490129') format('woff'),
         url('../farmerrain/farmer.ttf?2490129') format('truetype'),
         url('../farmerrain/farmer.svg?2490129#farmer') format('svg');
    font-weight: normal;
    font-style: normal;
  }

.breadcrumbs {
    text-transform: none;
    gap: 0.5em;
}

/* ==================================================
   BAS / RESET
================================================== */

#fr-main-header {
    box-shadow: none;
    border-bottom: 1px #ddd solid;
}
#fr-main-header * {
    box-sizing: border-box;
}
#fr-main-header ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#fr-main-header a {
    text-decoration: none;
    color: #111;
}
#fr-main-header a.site-logo {
    line-height: 1;
    flex: 1 0 0;
    position: relative;
    z-index: 20;
}
#fr-main-header a.site-logo img {
    max-width: 200px;
}
#fr-main-header .main-navigation {
    flex: 0 0 auto;
    width: auto;
}

#fr-main-header .search-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height .35s ease,
    opacity .25s ease,
    transform .25s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  z-index: 1000;
}
#fr-main-header .search-panel.is-open{
  max-height: 160px;
  opacity: 1;
  transform: translateY(0);
}
#fr-main-header .search-panel__inner{
  padding: 20px;
}
#fr-main-header .search-panel input{
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.15);
  font-size: 16px;
}


/* ==================================================
   HEADER LAYOUT
================================================== */

#fr-main-header {
    position: relative;
    width: 100%;
    z-index: 1000;
    background: #fff;
    padding: 0 1rem;
}
#fr-main-header .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==================================================
   MAIN MENU (LEVEL 0)
================================================== */

#fr-main-header .main-menu {
    display: flex;
    align-items: center;
}
#fr-main-header .main-menu > .menu-item {
    position: relative;
}
#fr-main-header .main-menu > .menu-item-has-children {
    position: static;
}
#fr-main-header .main-menu > .menu-item > a {
    padding: 19px 15px;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    z-index: 10;
}
#fr-main-header .main-menu .menu-item a {
    position: relative;
    width: fit-content;
}
#fr-main-header .main-menu .menu-item a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #111;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    order:2;
}
#fr-main-header .main-menu .menu-item ul .menu-item a::after {
    height: 2px;
}
#fr-main-header .main-menu .menu-item a:hover::after,
#fr-main-header .main-menu .menu-item a:focus::after {
    transform: scaleX(1);
}
#fr-main-header [class*=" fontello-"]:before,
#fr-main-header [class^=fontello-]:before {
    font-size: 1.4rem;
}

/* ==================================================
   MEGA CONTAINER (LEVEL 1) – COUNTER MOTION
================================================== */

#fr-main-header
.main-menu > .menu-item-has-children > .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-56px);
    transition:
      transform 0.55s cubic-bezier(.22,.61,.36,1);
}
#fr-main-header
.main-menu > .menu-item-has-children > .sub-menu:has(img) {
    gap:0.5rem;
}
#fr-main-header
.main-menu > .menu-item-has-children > .sub-menu:has(img) a::after {
    display: none !important;
}

/* ==================================================
   MEGA – ÖPPEN (JS-TRIGGER)
================================================== */

#fr-main-header
.main-menu > .menu-item-has-children.is-animating > .sub-menu {
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}


/* ==================================================
   INNER ITEMS – COUNTER MOTION UPP
================================================== */

#fr-main-header
.main-menu > .menu-item-has-children > .sub-menu > .menu-item {
    display: block;
    flex: 1 0 0;
    width: 100%;
    max-width: 25%;
    border-left: 1px solid #111;
    padding-left: 3rem;
    opacity: 0;
    transform: translateY(56px);
    transition:
      opacity 0.35s ease,
      transform 0.55s cubic-bezier(.16,.84,.44,1);
}
#fr-main-header
.main-menu > .menu-item-has-children > .sub-menu > .menu-item:has(img) {
      border: none;
    padding-left:0;
}
#fr-main-header
.main-menu > .menu-item-has-children > .sub-menu > .menu-item:first-child {
    border-left: 0;
}
#fr-main-header
.main-menu > .menu-item-has-children.is-animating
> .sub-menu > .menu-item {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.12s;
}

/* ==================================================
   RUBRIK (ITEM MED BARN)
================================================== */

#fr-main-header .sub-menu > .menu-item-has-children > a {
    font-size: 90%;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 12px;
    font-weight: 600;
    display: block;
}
#fr-main-header .sub-menu a img {
    display: block;
    width: 100%;
    transition: 0.3s;
    margin-top: 8px;
}
#fr-main-header .sub-menu a:hover img,
#fr-main-header .sub-menu a:focus img {
    transform: translateY(-3px);
    opacity: 0.85;
}

/* ==================================================
   LISTA (LEVEL 2)
================================================== */

#fr-main-header .sub-menu .sub-menu {
    position: static;
    padding: 0;
}

#fr-main-header .sub-menu .sub-menu .menu-item a {
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 600;
    display: block;
}

/* ==================================================
   KORT (ITEM UTAN BARN)
================================================== */

#fr-main-header
.sub-menu > .menu-item:not(.menu-item-has-children) > a {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}
#fr-main-header
.sub-menu > .menu-item:not(.menu-item-has-children) img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    margin-top: 8px;
}

/* ==================================================
   HEADER ACTIONS
================================================== */

#fr-main-header .site-header__actions {
    display: flex;
    gap: 16px;
    align-items: center;
    line-height: 1;
    flex: 1 0 0;
    justify-content: flex-end;
}
#fr-main-header .site-header__actions .hamburger {
    padding: 0;
}
#fr-main-header .header-burger {
    display: none;
    background: none;
    border: 0;
}
#fr-main-header .header-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111;
    margin: 4px 0;
}
#fr-main-header .site-header__actions ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#fr-main-header .site-header__actions ul li button,
#fr-main-header .site-header__actions ul li a {
    font-size: 1.1rem;
}
#fr-main-header .site-header__actions ul li.action-search button {
    background: none;
    border:0;
    display: flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    transition: 0.3s;
    border-radius: 500px;
}
#fr-main-header .site-header__actions ul li.action-search button:hover,
#fr-main-header .site-header__actions ul li.action-search button:focus {
    background: #ddd;
}
#fr-main-header .site-header__actions ul li.action-search img {
    max-width: 23px;
    margin-left: 0.5rem;
}
#fr-main-header .site-header__actions ul li.action-cart img {
    max-width: 28px;
}
#fr-main-header .site-header__actions ul li.action-cart {
    position: relative;
}

#fr-main-header .site-header__actions ul li.action-cart button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border:0;
    transition: 0.3s;
    border-radius: 500px;
}
#fr-main-header .site-header__actions ul li.action-cart button::before {
    margin: 0;
}
#fr-main-header .site-header__actions ul li.action-cart button:hover,
#fr-main-header .site-header__actions ul li.action-cart button:focus {
    background: #ddd;
}
#fr-main-header .site-header__actions ul li.action-cart span {
    background: #3f5543;
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: -1px;
    right: -1px;
    border-radius: 500px;
    font-size: 70%;
}

/* ==================================================
   MOBILE (BAS)
================================================== */


.top-bar {
    padding: 0 1rem;
    position: relative;
    z-index: 2000;
}
.top-bar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
.top-bar ul li {
    color: #eee;
    letter-spacing: 0.035em;
}
.top-bar ul li a {
    display: block;
    color: #eee;
    font-weight: 500;
    padding: 0;
}
.top-bar ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    order:2;
}
.top-bar ul li a::after {
    height: 2px;
}
.top-bar ul li a:hover::after,
.top-bar ul li a:focus::after {
    transform: scaleX(1);
}
.top-bar li i {
    color: #a9a9a9;
    margin-right: 0.25rem;
}

.top-bar .max-wrapper {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.top-bar-left > ul {
    gap:0.75rem;
}
.top-bar-right > ul > li {
    border-left: 1px solid #a9a9a9;
    padding: 0 1rem;
    margin:0.5rem 0;
}
.top-bar-right > ul > li:first-child {
    border-left: 0;
}
.top-bar-right > ul > li:last-child {
    padding-right: 0;
}
.top-bar-right > ul > li > a {
    padding: 0.25rem 0;
    position: relative;
    line-height: 1;
}
.top-bar-right > ul {
    display: flex;
}
.top-bar-right  li {
    position: relative;
    padding:0.65rem 0;
}
.top-bar-right .dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    gap:0;
    min-width: 250px;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    opacity:0;
    visibility: hidden;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.top-bar-right .has-dropdown:hover .dropdown,
.top-bar-right .has-dropdown:focus .dropdown,
.top-bar-right .has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
}
.top-bar-right .dropdown > li {
    white-space: nowrap;
    width: 100%;
    padding: 0;
}
.top-bar-right .dropdown a {
    display: block;
    padding: 10px 0;
    margin:0 15px;
    width:fit-content;
    color: #111;
    letter-spacing: 0;
    text-transform: none;
    font-size: 1.1rem;
    line-height: 1;
    border-left:0;
    font-weight: 600;
    position: relative;
}
.top-bar-right .dropdown li:first-child a {
    font-size: 1.75rem;
}
.top-bar-right .dropdown a:hover,
.top-bar-right .dropdown a:focus {
    color: #111;
}
.top-bar-right .dropdown li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #111;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    order:2;
}
.top-bar-right .dropdown li a::after {
    height: 2px;
}
.top-bar-right .dropdown li a:hover::after,
.top-bar-right .dropdown li a:focus::after {
    transform: scaleX(1);
}

/* TICKER */
.ticker {
    overflow: hidden;
    position: relative;
    padding: 0.15rem 0;
    background: #3f5543;
}
.ticker-wrap {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    position: relative;
}
#usp-ticker {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    white-space: nowrap;
    transform: translateX(0);
    will-change: transform;
}
#usp-ticker li {
    display: flex;
    align-items: center;
    padding: 7px 40px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 30px;
}
#usp-ticker li a {
    display: block;
    font-size: 70%;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
    position: relative;
}
#usp-ticker li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    order:2;
}
#usp-ticker li a::after {
    height: 2px;
}
#usp-ticker li a:hover::after,
#usp-ticker li a:focus::after {
    transform: scaleX(1);
}

/* MODAL CART */

#modal-cart-products {
    display: none; /* Startar gömd */
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* semi-transparent bakgrund */
    z-index: 5000;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
#modal-cart-products .modal-content {
    background: #fff;
    width: 450px;
    max-width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0; /* Startar utanför skärmen */
    display: grid;
    grid-template-rows: auto 1fr auto;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    transition: right 0.3s ease;
}
#modal-cart-products.active {
    display: block;
}
#modal-cart-products.active .modal-content {
    right: 0;
}
#modal-cart-products .close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    height: 30px;
    width: 30px;
    background: rgba(0,0,0,0.25);
    border-radius: 50%;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}
#modal-cart-products .close:hover,
#modal-cart-products .close:focus {
    color: #fff;
    background: rgba(0,0,0,0.75);
}
#modal-cart-products .woocommerce-mini-cart.cart_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
#modal-cart-products .woocommerce-mini-cart.cart_list > li {
    position: relative;
    width: 100%;
    padding: 1.25rem;
    border-top: 1px solid #ddd;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}
#modal-cart-products .woocommerce-mini-cart.cart_list li a {
    color: #111;
}
#modal-cart-products .woocommerce-mini-cart.cart_list > li
#modal-cart-products .woocommerce-mini-cart.cart_list > li > a {
    flex: 1 0 0;
    width: 100%;
}
#modal-cart-products .woocommerce-mini-cart.cart_list > li .quantity,
#modal-cart-products .woocommerce-mini-cart.cart_list > li .variation {
  flex: 0 0 auto;
  width: auto;
}
#modal-cart-products .woocommerce-mini-cart.cart_list > li:first-child {
    border-top: 0;
}
#modal-cart-products .woocommerce-mini-cart.cart_list > li img {
    margin: 0 auto;
    max-width: 65px;
    width: 100%;
    height: auto;
}
#modal-cart-products .woocommerce-mini-cart.cart_list > li a.remove {
    display: block;
    flex: 0 0 auto;
    width: auto;
    order:6;
    flex: 0 0 auto;
    width: 100%;
    text-decoration: underline;
    font-size: 90%;
    text-align: left;
    margin-top: 1rem;
}
#modal-cart-products .woocommerce-mini-cart.cart_list > li a.remove:hover,
#modal-cart-products .woocommerce-mini-cart.cart_list > li a.remove:focus {
    background: none;
    color: #111 !important;
}
#modal-cart-products .woocommerce-mini-cart__buttons {
    display: none !important;
}
#modal-cart-products .woocommerce-mini-cart.cart_list > li a:nth-child(2) {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    font-weight: bold;
    text-decoration: none;
    line-height: 1.2;
    flex: 1 0 0;
    max-width: 200px;
}
#modal-cart-products .woocommerce-mini-cart.cart_list > li .quantity {
    text-align: right;
    font-size: 1rem;
    display: block;
    min-width: 85px;
    line-height: 1.35;
}
#modal-cart-products .woocommerce-mini-cart.cart_list li .wpd-discount-price {
    text-decoration: line-through;
    opacity: 0.5;
    padding-right: 5px;
    display: block;
}
#modal-cart-products .woocommerce-mini-cart.cart_list li .amount {
    margin-left: 0.25rem;
    display: block;
    font-weight: 500;
}
#modal-cart-products .modal-content .offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding:1rem 1.5rem;
    background: #3f5543;
    color: #fff;
}
#modal-cart-products .modal-content .offcanvas-header .offcanvas-title {
    margin: 0;
    line-height: 1.5;
    color: #fff;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 500;
}
#modal-cart-products .modal-content .offcanvas-body {
    overflow-y: auto;
    flex-grow: 1;
    padding: 0;
}
#modal-cart-products .modal-content .offcanvas-body .variation {
    flex: 0 0 auto;
    width: 100%;
    line-height: 1.45;
    margin: 0;
    border:0;
    margin-left: auto;
    padding: 0;
}
#modal-cart-products .modal-content .offcanvas-body .variation dt,
#modal-cart-products .modal-content .offcanvas-body .variation dt p,
#modal-cart-products .modal-content .offcanvas-body .variation dd,
#modal-cart-products .modal-content .offcanvas-body .variation dd p {
    padding: 0;
    margin: 0;
    font-size: 90%;
}
#modal-cart-products .modal-content .offcanvas-body .variation dt {
    font-weight: 500;
    margin-right: 0.25rem;
}
#modal-cart-products .modal-content .offcanvas-footer {
    position: relative;
    box-shadow: 0 -15px 15px -15px #a9a9a9;
    padding: 1.5rem;
}
#modal-cart-products .modal-content .offcanvas-footer .button {
    display: block;
    width: 100%;
    margin-top: 1rem;
    text-align: center;
    background: #3f5543;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.05em;
}
#modal-cart-products .modal-content .offcanvas-footer .button:first-child {
    background: #fff;
    color: #3f5543;
    border: 1px solid #3f5543;
}
#modal-cart-products .modal-content .offcanvas-footer .button:last-child {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
#modal-cart-products .modal-content .offcanvas-footer .button:first-child:hover,
#modal-cart-products .modal-content .offcanvas-footer .button:first-child:focus {
    background: #d7b484;
    color: #fff;
}
#modal-cart-products .woocommerce-mini-cart__total {
    text-align: right;
    padding: 1.5rem;
    font-size: 120%;
    border-top: 1px solid #ddd;
}
#modal-cart-products .woocommerce-mini-cart__total .amount {
    font-weight: 500;
}
@media (max-width: 600px) {
    #modal-cart-products .modal-content {
        width: 100%;
        height: 100vh;
    }
}

/* =========================
   SIZE TABLE MODAL
========================= */

#modal-size-table {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
}
.size-table-button {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.size-table-button #open-size-modal {
  background: none;
  border:none;
  font-weight: 500;
  padding: 0;
  margin-left: auto;
  text-decoration: underline;
}
.size-table-button #open-size-modal:hover,
.size-table-button #open-size-modal:focus {
    opacity: 0.8;
}
#modal-size-table .modal-content {
  background: #fff;
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  padding: 2rem;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
#modal-size-table .close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1.35rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #000;
  background: #f2f2f2;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
  padding-bottom: 0.2rem;
}
#modal-size-table .close:hover {
  opacity: 0.6;
}
#modal-size-table h2,
#modal-size-table h3 {
  margin-top: 0;
}
#modal-size-table p {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  #modal-size-table .modal-content {
    max-width: calc(100% - 2rem);
    padding: 1.5rem;
  }
}
#modal-size-table .size-table {
  width: 100%;
}
#modal-size-table .size-table__header {
  margin-bottom: 1rem;
}
#modal-size-table .size-table__title {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: 0.2px;
}
#modal-size-table .size-table__subtitle {
  margin: 0.25rem 0 0;
  opacity: 0.75;
}
#modal-size-table .size-table__scroll {
  border: 1px solid rgba(0,0,0,0.08);
  overflow: auto;
  max-height: 55vh;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}
#modal-size-table .size-table__table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
}
#modal-size-table .size-table__table th,
#modal-size-table .size-table__table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  white-space: nowrap;
}
#modal-size-table .size-table__table thead th {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #f7f8fa;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.6px;
  border-bottom: 1px solid rgba(0,0,0,0.10);
}
#modal-size-table .size-table__table .is-sticky-col {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fff;
  font-weight: 700;
}
#modal-size-table .size-table__table thead .is-sticky-col {
  z-index: 4;
  background: #f2f2f2;
}
#modal-size-table .size-table__table tbody tr:nth-child(even) td,
#modal-size-table .size-table__table tbody tr:nth-child(even) th.is-sticky-col {
  background: #fcfcfd;
}
@media (max-width: 768px) {
  #modal-size-table .size-table__table {
    min-width: 720px;
  }
  #modal-size-table .size-table__scroll {
    max-height: 60vh;
  }
}



body.woo-new-archive-category,
body.woo-new-archive-category .site {
    background: #fff;
}
body.woo-new-archive-category .shop-hero {
    display: flex;
    flex-wrap: wrap;
    background: #3f5543;
}
body.woo-new-archive-category .shop-hero h1,
body.woo-new-archive-category .shop-hero h2,
body.woo-new-archive-category .shop-hero h3,
body.woo-new-archive-category .shop-hero h4,
body.woo-new-archive-category .shop-hero h5,
body.woo-new-archive-category .shop-hero p,
body.woo-new-archive-category .shop-hero ul,
body.woo-new-archive-category .shop-hero ul li,
body.woo-new-archive-category .shop-hero p.shop-hero__inner__text {
    color: #fff;
}
body.woo-new-archive-category .rtwpvs-archive-variation-wrapper .rtwpvs-term:not(.rtwpvs-radio-term) {
  width: 17px;
  height: 17px;
}
body.woo-new-archive-category .shop-hero .shop-hero__inner__conten .product-cat {
    background: #111;
    width: fit-content;
    padding: 0.25rem 1rem;
    border-radius: 500px;
}
body.woo-new-archive-category .shop-hero__inner.max-wrapper {
    max-width: 50%;
    width: 50%;
    height: 100% !important;
	align-self:center;
}
body.woo-new-archive-category .background {
    position: relative;
    display: flex;
    flex-direction: column;
}
body.woo-new-archive-category .background {
    max-height: 650px;
	max-width:50%;
}
body.woo-new-archive-category .background img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
body.woo-new-archive-category .shop-hero__inner__content {
    max-width: 700px;
    margin:0 auto;
    width: 100%;
    padding: 2.5rem;
}
body.woo-new-archive-category .breadcrumbs.max-wrapper,
body.woo-new-archive-category .page-content.max-wrapper {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
}
body.woo-new-archive-category .page-content.max-wrapper {
    flex-wrap: wrap;
}
body.woo-new-archive-category .page-content__primary .post-content {
    flex: 1 0 0;
}
body.woo-new-archive-category .sidebar {
    width: 260px;
    flex: 0 0 auto;
}
body.woo-new-archive-category ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
body.woo-new-archive-category.woocommerce ul.products::before,
body.woo-new-archive-category.woocommerce-page ul.products::before {
    display: none;
}
body.woo-new-archive-category.woocommerce ul.products li.product,
body.woo-new-archive-category.woocommerce-page ul.products li.product {
    width: 100%;
    padding: 0;
    margin: 0;
}
body.woo-new-archive-category.woocommerce ul.products li.product .woocommerce-LoopProduct-link.woocommerce-loop-product__link,
body.woo-new-archive-category.woocommerce-page ul.products li.product .woocommerce-LoopProduct-link.woocommerce-loop-product__link {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom:0.5rem;
}
body.woo-new-archive-category.woocommerce-page ul.products li.product .woocommerce-LoopProduct-link.woocommerce-loop-product__link picture {
	width:100%;
}
body.woo-new-archive-category.woocommerce ul.products li.product a > div {
    border-radius: 500px !important;
}
body.woo-new-archive-category.woocommerce ul.products li.product .color-preview,
body.woo-new-archive-category.woocommerce-page ul.products li.product .color-preview {
    width:18px !important;
    height:18px !important;
    border-radius: 500px !important;
}
body.woo-new-archive-category.woocommerce-page ul.products li.product img,
body.woo-new-archive-category.woocommerce-page ul.products li.product img {
    transition: 0.3s;
}
body.woo-new-archive-category.woocommerce-page ul.products li.product:hover img,
body.woo-new-archive-category.woocommerce-page ul.products li.product:hover img {
    transform: translateY(-3px);
    opacity: 0.85;
}
body.woo-new-archive-category.woocommerce-page ul.products a.woocommerce-LoopProduct-link .price .woocommerce-Price-amount.amount,
body.woo-new-archive-category.woocommerce-page ul.products a.woocommerce-LoopProduct-link span.price {
    font-weight: 600 !important;
}
.sidebar {
    border-right:1px solid #000;
}
.sidebar .sidebar-widgets>li {
    box-shadow: none;
    width:90%;
    margin-bottom:0;
}
.sidebar h2.widgettitle {
    border-color: #000;
    font-weight: 500;
    padding-left: 0;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.sidebar ul.product-categories,
.sidebar .product-activities {
    padding: 20px 0 0 0 !important;
}

.sidebar .product-activities {
    border-color: #000;
    font-weight: 500;
    padding-left: 0;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}
.sidebar .product-activities > ul {
    border-top:1px solid #000;
    padding-top:15px;
    margin-top:15px;
	display:grid;
	gap:0.5rem;
}
.woocommerce.widget_product_categories ul.product-categories li > a {
	text-transform:uppercase;
}
.woocommerce.widget_product_categories ul.product-categories li a,
.sidebar .product-activities li a {
    font-weight: 500;
    position: relative;
    letter-spacing: 0.05em;
    width: fit-content;
    text-transform:none;
    letter-spacing: 0;
}

.sidebar ul.product-categories li a::after,
.sidebar .product-activities li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #111;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    order: 2;
}

.sidebar ul.product-categories li:hover,
.sidebar ul.product-categories li:focus,
.sidebar ul.product-categories li a:hover,
.sidebar ul.product-categories li a:focus,
.sidebar .product-activities li:hover,
.sidebar .product-activities li:focus,
.sidebar .product-activities li a:hover,
.sidebar .product-activities li a:focus {
    font-weight: 500 !important;
    text-shadow: none !important;
    outline: 0 !important;
    -webkit-text-stroke-width: 0 !important;
    -webkit-text-stroke-color: transparent !important;
}

.woocommerce.widget_product_categories ul.product-categories li a:hover::after,
.woocommerce.widget_product_categories ul.product-categories li a:focus::after,
.sidebar .product-activities li a:hover::after,
.sidebar .product-activities li a:focus::after {
    transform: scaleX(1);
}

.woocommerce.widget_product_categories ul.product-categories li.cat-parent ul.children li,
.sidebar .product-activities li.cat-parent ul.children li {
    padding: 3px 10px;
}

.woocommerce.widget_product_categories ul.product-categories li.cat-parent ul.children li a,
.sidebar .product-activities li.cat-parent ul.children li a {
    font-weight: 500;
    color: #333;
    letter-spacing: 0;
}

.woocommerce.widget_product_categories ul.product-categories li.cat-parent ul.children.active,
.sidebar .product-activities li.cat-parent ul.children.active {
    margin-top: 0.5rem;
}
/* Parent items som har children */
.sidebar .product-activities ul li:has(> ul.children) {
    position: relative;
}

/* Dölj children default */
.sidebar .product-activities ul li > ul.children {
    display: none;
    margin-top: 6px;
    padding-left: 15px;
}

/* Visa när dropdown öppnas */
.sidebar .product-activities ul li.open > ul.children {
    display: block;
}

/* Pil */
.sidebar .product-activities .dropDownMenuAct {
    position: absolute;
    right: 0;
    top: 10px;
    cursor: pointer;
}

/* Pil ikon */
.sidebar .product-activities .dropDownMenuAct::after {
    content: "";
    font-family: farmer;
    font-size: 0.3em;
    transform: rotate(90deg);
    display: block;
    transition: transform .25s ease;
}

/* Rotera pil när öppen */
.sidebar .product-activities ul li.open > .dropDownMenuAct::after {
    transform: rotate(270deg);
}

/* Stoppa WordPress från att auto-öppna */
.sidebar .product-activities ul li > ul.children {
    display: none !important;
}

/* Bara öppna när JS sätter active/open */
.sidebar .product-activities ul li.open > ul.children,
.sidebar .product-activities ul li > ul.children.active {
    display: block !important;
}

body.single-product .site {
    background: #fff;
}
body.single-product .site-content .max-wrapper {
    width:100%;
    max-width: 1600px;
    padding: 0 2rem;
}
body.single-product h1 {
    line-height: 1.1;
}
body.single-product .rtwpvg-images {
    float: left !important;
}
body.single-product .rtwpvg-images .rtwpvg-wrapper .rtwpvg-container {
    gap:20px;
}
body.single-product div.product p.price {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 1rem;
    font-size: 170% !important;
}
body.single-product div.product  .woocommerce-product-rating {
    margin-bottom: 1rem;
}
body.single-product div.product p.price span {
  font-weight: 500 !important;
}
body.single-product div.product p.price .woocommerce-Price-currencySymbol {
    margin-left: 0;
}
body.single-product .woocommerce-product-details__short-description p {
    font-weight: 400;
    margin-bottom: 1rem;
}
body.single-product div.product form.cart {
     border-top: none;
     border-bottom:none;
     padding:0.5rem 0 1.5rem 0;
     margin-bottom: 1rem;
}
body.single-product div.product form.cart .variations {
    padding: 0 0 1rem 0;
    margin: 0;
    display: block;
}
body.single-product .woocommerce-variation-add-to-cart {
    display: flex;
    width: 100%;
    flex: 1 0 0;
}
body.single-product .quantity {
    flex: 0 0 auto;
    width: auto;
}
body.single-product div.product p.stock {
    margin:0 0 1rem 0;
    padding: 0;
}
body.single-product p.product-sku {
    color: #333;
    font-size: 100%;
    font-weight: 500;
    margin-bottom: 1rem;
}
body.single-product ul.product-usp-list {
    margin-bottom: 1rem;
}
body.single-product .in-stock {
    display: flex;
    align-items: center;
}
body.single-product .stock {
    color: #333 !important;
    font-weight: 500 ;
}
body.single-product .in-stock img {
    max-width: 25px;
    margin-right: 0.75rem;
}
body.single-product .color-variable-wrapper .rtwpvs-term {
    width: 20px !important;
    height: 20px !important;
}
body.single-product .color-variable-wrapper .rtwpvs-term,
body.single-product .color-variable-wrapper .rtwpvs-term-span-color {
    border-radius: 500px !important;
}
body.single-product .rtwpvg-images .rtwpvg-wrapper .rtwpvg-slider-wrapper .rtwpvg-trigger {
    background: none;
    width: 100%;
    border-radius: 0;
    top: 5px;
    left: 0;
    right: 0;
}
body.single-product .size-caption-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    text-align: center;
}
body.single-product .size-caption-img span {
    background: #fff;
    padding: 0.25rem 0.75rem;
    display: inline-block;
    font-size: 90%;
}
body.single-product .rtwpvg-images .rtwpvg-wrapper .rtwpvg-slider-wrapper .rtwpvg-trigger span {
    display: none !important;
}

.sidebar .yith-wcan-filters {
    margin-bottom:20px;
}
.sidebar .yith-wcan-filters .yith-wcan-filter {
    margin-bottom:0;
}
.sidebar .yith-wcan-filters form > * {
    margin-top:15px;
}
.sidebar .yith-wcan-filters form > *:first-child {
    margin-top:0;
}
.sidebar .yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown {
    border-color:#000;
}
.sidebar .yith-wcan-filters .yith-wcan-filter .filter-title {
    border-bottom: 1px solid #000;
    font-weight: 500;
    padding-left: 0;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    justify-content: space-between;
    margin: 0;
    padding: 0 0 15px 0;
    align-items: center;
    display: flex;
    font-size: 1em;
    margin-bottom: 1rem;
}
.sidebar .yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .search-field-container .search-field {
    width: 95%;
    padding: 0;
    height: 42px;
    border: 1px solid #000;
    border-radius: 4px;
    padding-left:0.5rem;
}
.sidebar .yith-wcan-filters form .btn {
    background:#fff;
    border:1px solid #000;
    padding:0.5rem 1rem;
    border-radius:4px;
}
.sidebar .yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper,
.sidebar .yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown.open {
    box-shadow: none;
}
.sidebar .yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper {
    border:1px solid #000;
}

.sidebar ul li a, 
.sidebar ul li:after {
    color: #000;
    text-decoration: none;
}

/* content hidden by default */
.seo-toggle{
  display: none;
  margin-top: 12px;
}
/* open state */
.seo-toggle.is-open{
  display: block;
}
/* toggle text states */
.toggle-close{
  display: none;
}
.seo-toggle-link{
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
/* when open */
.seo-toggle.is-open + .seo-toggle-link .toggle-open{
  display: none;
}
.seo-toggle.is-open + .seo-toggle-link .toggle-close{
  display: inline;
}
/* focus */
.seo-toggle-link:focus-visible{
  outline: 2px solid #000;
  outline-offset: 3px;
}

body.single-product .sticky-left {
    display: flex;
    flex-wrap: wrap;
}
body.single-product .rtwpvg-images {
    max-width: 100%;
    flex: 1 0 0;
}
body.single-product .rtwpvs-button-term span {
    font-size: 12px;
    font-weight: 500;
}
body.single-product div.product div.summary {
    flex: 0 0 auto;
    width: 500px;
    padding: 0 3rem;
}
/*
body.single-product .slick-track,
body.single-product .slick-list,
body.single-product .slick-slide,
body.single-product .slick-slide img {
    width: 100% !important;
    height: 100% !important;
    max-height: 1015px;
    object-fit: contain;
}
*/
body.single-product .rtwpvg-slider-wrapper {
    width: 100%;
    order:2;
}

body.single-product .rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-wrapper.rtwpvg-thumbnail-position-bottom .rtwpvg-container {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2.5rem;
    align-items: start;
}
body.single-product .rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-wrapper .rtwpvg-thumbnail-wrapper .rtwpvg-thumbnail-slider:not(.slick-initialized).rtwpvg-thumbnail-columns-1,
body.single-product .rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-wrapper .rtwpvg-thumbnail-wrapper .rtwpvg-thumbnail-slider:not(.slick-initialized).rtwpvg-thumbnail-columns-2,
body.single-product .rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-wrapper .rtwpvg-thumbnail-wrapper .rtwpvg-thumbnail-slider:not(.slick-initialized).rtwpvg-thumbnail-columns-3,
body.single-product .rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-wrapper .rtwpvg-thumbnail-wrapper .rtwpvg-thumbnail-slider:not(.slick-initialized).rtwpvg-thumbnail-columns-4,
body.single-product .rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-wrapper .rtwpvg-thumbnail-wrapper .rtwpvg-thumbnail-slider:not(.slick-initialized).rtwpvg-thumbnail-columns-5,
body.single-product .rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-wrapper .rtwpvg-thumbnail-wrapper .rtwpvg-thumbnail-slider:not(.slick-initialized).rtwpvg-thumbnail-columns-6,
body.single-product .rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-wrapper .rtwpvg-thumbnail-wrapper .rtwpvg-thumbnail-slider:not(.slick-initialized).rtwpvg-thumbnail-columns-7,
body.single-product .rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-wrapper .rtwpvg-thumbnail-wrapper .rtwpvg-thumbnail-slider:not(.slick-initialized).rtwpvg-thumbnail-columns-8,
body.single-product .rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-wrapper .rtwpvg-thumbnail-wrapper .rtwpvg-thumbnail-slider:not(.slick-initialized).rtwpvg-thumbnail-columns-9,
body.single-product .rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-wrapper .rtwpvg-thumbnail-wrapper .rtwpvg-thumbnail-slider:not(.slick-initialized).rtwpvg-thumbnail-columns-10 {
    grid-template-columns: repeat(1, 1fr);
}

/* OSÄKER???
body.single-product .slick-track {
    transform:none !important;
}

body.single-product .rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-wrapper .rtwpvg-slider-wrapper .rtwpvg-slider-next-arrow,
body.single-product .rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-wrapper .rtwpvg-slider-wrapper .rtwpvg-slider-prev-arrow {
    background: #000;
    opacity: 1;
}

body.single-product .rtwpvg-images .rtwpvg-thumbnail-wrapper {
    display: block;
    width: 100%;
    order:1;
}
body.single-product .rtwpvs-terms-wrapper .rtwpvs-term:not(.rtwpvs-radio-term).rtwpvs-button-term {
    min-width: 35px;
}
body.single-product .rtwpvs-terms-wrapper .rtwpvs-term:not(.rtwpvs-radio-term).rtwpvs-button-term:hover,
body.single-product .rtwpvs-terms-wrapper .rtwpvs-term:not(.rtwpvs-radio-term).rtwpvs-button-term:focus {
    background: #f2f2f2 !important;
}
 */
@media (max-width: 1350px) {
  body.woo-new-archive-category ul.products {
      grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  #fr-main-header .main-menu {
      display: none;
  }
  #fr-main-header .site-header__main {
      padding: 0;
  }
  #fr-main-header .header-burger {
      display: block;
  }
  #fr-main-header .site-header__actions ul {
      gap:0 1rem;
  }
  #fr-main-header .site-header__actions ul li.action-cart button {
      width: auto;
      height: auto;
      padding: 0;
  }
  #fr-main-header .site-header__actions ul li.action-search button {
      padding: 0;
  }
  #fr-main-header .site-header__actions ul li.action-search .search-toggle span {
      display: none;
  }
  #fr-main-header .site-header__actions ul li.action-search img {
      margin: 0;
  }
  #fr-main-header .site-header__actions ul li .hamburger-box {
      width: 28px;
  }
  #fr-main-header .site-header__actions ul li .hamburger-inner,
  #fr-main-header .site-header__actions ul li .hamburger-inner:after,
  #fr-main-header .site-header__actions ul li .hamburger-inner:before {
      width: 27px;
  }
  #fr-main-header .site-header__actions ul li.action-cart span {
      top: -12px;
      right: -11px
  }
  .top-bar-right > ul > li:first-child {
      padding-left: 0;
  }
  .top-bar-right .dropdown {
      right: auto;
      left: 0;
  }
  body.woo-new-archive-category .shop-hero__inner__content {
      padding: 1.5rem;
  }
  body.woo-new-archive-category .shop-hero p {
      margin-bottom: 1rem;
  }
  body.single-product .site-content .max-wrapper,
  body.woo-new-archive-category .breadcrumbs.max-wrapper, body.woo-new-archive-category .page-content.max-wrapper {
      padding: 0 1rem;
  }
  .filters-row .filter__chev {
      top: 12px;
  }
  body.single-product div.product div.summary {
      width: 100%;
      padding: 0;
  }
}
@media (max-width: 768px) {
  body.woo-new-archive-category .background,
  body.woo-new-archive-category .shop-hero__inner.max-wrapper {
      width: 100%;
      max-width: 100%;
      padding: 0;
  }
  body.woo-new-archive-category .background {
      max-height: 400px;
  }
  body.woo-new-archive-category ul.products {
      gap:0.5rem;
  }
}
@media (max-width: 600px) {
    body.single-product .site-content .max-wrapper,
    .top-bar,
    #fr-main-header {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    #fr-main-header a.site-logo img {
        max-width: 140px;
    }
    #fr-main-header .site-header__actions ul li.action-search img {
        max-width: 20px;
    }
    #fr-main-header .site-header__actions ul li.action-cart img {
        max-width: 24px;
    }
    body.woo-new-archive-category .background {
        max-height: 300px;
    }
    body.woo-new-archive-category .breadcrumbs.max-wrapper, body.woo-new-archive-category .page-content.max-wrapper {
        padding: 0 0.75rem;
    }
}

.blockUI.blockOverlay {
    position: fixed !important;
}
.wpml-ls-legacy-list-horizontal > ul {
	gap: 0.35rem;
}
.wpml-ls-legacy-list-horizontal > ul li a {
	padding:0.25rem 0;
}


