/* ================================
   Design tokens
   ================================ */
:root{
  --page-bg: #ffffff;
  --header-bg: #EDE8E0;
  --hero-radius: 18px;
  --topbar-bg: #ffffff;

  --text: #111111;
  --muted: #6b6b6b;
  --border: rgba(17,17,17,.12);
  --surface: #ffffff;
}

*{ box-sizing: border-box; }

body{
  overflow-x: hidden;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

h1,h2,h3{
  font-family: "Playfair Display", serif;
}

/* =========================
   Toasts / Buttons
   ========================= */
.cart-toast{
  background: #451e0d;
  color: #fff;
}

#cartToast {
  background: #451e0d !important;
  color: #fff;
}

.custom-toast{
  background: #451e0d;
  color: #fff;
}

.custom-toast .toast-body{
  background: transparent;
  color: inherit;
}

.custom-toast .btn-close{
  filter: invert(1);
  opacity: .9;
}

.btn-brand,
.btn-primary,
.btn-secondary {
  color: black;
  background-color: #EDE8E0;
  border-color: #451e0d;
}

.btn-outline-danger,
.btn-success {
  color: black;
  background-color: #EDE8E0;
  border-color:#451e0d;
}

.alert-success {
  --bs-alert-color: black;
  --bs-alert-bg: #EDE8E0;
  --bs-alert-border-color: #EDE8E0;
  --bs-alert-link-color: black;
}

.btn-brand:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-outline-danger:hover,
.btn-success:hover {
  color: white;
  background-color: #451e0d;
  border-color: #451e0d;
}

.btn-danger {
  --bs-btn-color: #000000;
  --bs-btn-bg: #EDE8E0;
  --bs-btn-border-color:#451e0d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #451e0d;
  --bs-btn-hover-border-color: #451e0d;
}

/* =========================
   Header / Topbar / Navbar
   ========================= */
header{
  background: var(--header-bg);
}

.topbar{
  background: var(--topbar-bg);
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 13px;
  color: rgba(0,0,0,.70);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 10px 12px;
}

.topbar-search{
  position: relative;
  display:flex;
  align-items:center;
  height: 44px;
  padding: 0 14px;
  background: transparent;
  max-width: 520px;
  width: min(520px, 52vw);
}

.topbar-search__icon{
  position: absolute;
  left: 12px;
  display: flex;
  align-items: center;
  color: rgba(0,0,0,.85);
  opacity: .9;
}

.topbar-search__input{
  border: 0;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 15px;
  color: var(--text);
  padding-left: 34px;
}

.topbar-search__input::placeholder{
  color: rgba(0,0,0,.55);
}

.topbar__right{
  display:flex;
  align-items:center;
  gap: 16px;
  white-space: nowrap;
}

.topbar__right a,
.topbar__right .nav-link,
.topbar__right button.nav-link{
  position: relative;
  text-decoration: none;
  color: rgba(0,0,0,.80) !important;
  padding: 4px 2px;
  font-size: 14px;
  background: none;
  border: 0;
  transition: color .2s ease, opacity .2s ease;
}

.topbar__right a:hover,
.topbar__right .nav-link:hover,
.topbar__right button.nav-link:hover{
  color: #000 !important;
  opacity: .85;
}

.topbar__right a::after,
.topbar__right .nav-link::after,
.topbar__right button.nav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0%;
  background: currentColor;
  transition: width .25s ease;
}

.topbar__right a:hover::after,
.topbar__right .nav-link:hover::after,
.topbar__right button.nav-link:hover::after{
  width: 100%;
}

.topbar__right .is-active{
  color: #000 !important;
  font-weight: 600;
}

.topbar__right .is-active::after{
  width: 100%;
}

.topbar__right ul{
  display:flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topbar__right li{
  display:inline-flex;
  align-items:center;
}

/* -------- NAVBAR: FIXAD LAYOUT -------- */
.navbar .nav-link,
.navbar-brand{
  color: var(--text) !important;
}

/* container-fluid blir en rad: brand vänster, actions+toggler höger */
.navbar > .container-fluid{
  display:flex;
  align-items:center;
}

/* Brand */
.navbar-brand{
  font-family: "Playfair Display", serif;
  font-size: 20px;
  letter-spacing: 3px;
  position: relative;
  font-weight: 400;
  margin-bottom: 1em;
  margin-top: 0.5em;
  margin-left: 1.5em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand::after,
.navbar-brand::before{
  content: "";
  width: 30px;
  height: 1px;
  background: #d8cec4;
}

.navbar .nav-link:hover{ opacity: .7; }

.page-wrap{
  padding-top: 0;
  padding-bottom: 48px;
}

/* Actions: trycks till höger */
.navbar-actions{
  margin-left: auto;     /* <-- nyckeln */
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Se till att cart/toggler är flex och centrerade */
.navbar-cart,
.navbar-toggler{
  display:flex;
  align-items:center;
}

/* Toggler-styling */
.navbar .navbar-toggler{
  border: 1.5px solid #EDE8E0;
}

.navbar .navbar-toggler-icon{
  background-image: none;
  width: 28px;
  height: 20px;
  position: relative;
}

.navbar .navbar-toggler-icon::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #000;
  border-radius: 2px;
  box-shadow:
    0 8px 0 #000,
    0 16px 0 #000;
}

/* =========================
   HERO (Video med text overlay)
   ========================= */
.hero-editorial{
  background: var(--header-bg);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 3em 0;
  position: relative;
  box-shadow:
    0 -10px 20px #EDE8E0,
    0 10px 20px #EDE8E0;
}

.hero-editorial__media{
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}

.hero-editorial__media--video{
  position: relative;
  width: 100%;
  height: calc(100vh - 12em);
  min-height: 560px;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
}

.hero-video-wrap{
  position: absolute;
  inset: 0;
}

.hero-video-wrap .hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 80ms linear;
}

.hero-video-wrap .hero-video.is-active{
  opacity: 1;
}

.hero-editorial__videoOverlay{
  position: absolute;
  inset: 0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.62) 0%,
    rgba(0,0,0,.48) 50%,
    rgba(0,0,0,.40) 100%
  );
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
}

.hero-editorial__inner{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 6vw;
}

.hero-editorial__copy{
  max-width: 520px;
  margin-left: clamp(0px, 6vw, 90px);
  color: #fff;
  pointer-events: auto;
}

.hero-editorial__title{
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-size: clamp(44px, 5.6vw, 92px);
  margin: 0 0 18px 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}

.hero-editorial__lead{
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 22px 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}

.hero-editorial__cta{
  position: relative;
  overflow: hidden;
  padding: 0.5em 1em;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff !important;
  border-radius: 6px;
}

.hero-editorial__cta::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transition: 0.6s;
  border-radius: inherit;
  box-shadow: inset 0 0 18px rgba(255,255,255,0.25);
  pointer-events: none;
}

.hero-editorial__cta:hover{
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.55);
}

.hero-editorial__cta:hover::before{
  left: 120%;
}

.filter-bar{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

/* =========================
   Product cards
   ========================= */
.product-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
  height: 100%;
}

.product-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-radius: 16px;
}

.product-media{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ffffff;
}

.product-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: contain;
  transition: transform .35s ease, opacity .25s ease;
}

.product-media img.base{ opacity: 1; z-index: 1; }
.product-media img.hover{ opacity: 0; z-index: 2; }

.product-card:hover .product-media img.base{
  opacity: 0;
  transform: scale(1.03);
}

.product-card:hover .product-media img.hover{
  opacity: 1;
  transform: scale(1.06);
}

.product-body{ padding: 14px 14px 16px; }

.product-title{
  font-weight: 600;
  margin: 0 0 6px;
}

.product-meta{
  color: var(--muted);
  font-size: .95rem;
  display:flex;
  justify-content: space-between;
  gap: 10px;
}

/* =========================
   Cart icon
   ========================= */
.cart-icon-link{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  margin-left: 6px;
  color: #451e0d;
  text-decoration: none;
}

.cart-icon-link:hover{ opacity: .85; }

.cart-icon-link svg,
.cart-icon-link i{
  width: 28px;
  height: 28px;
  font-size: 28px;
}

.cart-badge{
  position: absolute;
  top: 6px;
  right: 6px;
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 999px;
  background: #451e0d;
  border: 2px solid #fff;
  font-size: 0;
  line-height: 0;
}

.layout-root{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.layout-root main{ flex: 1; }

/* =========================
   USP STRIP
   ========================= */
.usp-strip{
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  margin-top: 4em;
}

.usp-strip__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 16px;
  padding-left: 16px;
  padding-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.usp-item{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.usp-item__icon{
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.usp-item__title{
  font-weight: 600;
  color: #111;
  line-height: 1.2;
  margin-bottom: 2px;
}

.usp-item__desc{
  color: rgba(0,0,0,.62);
  font-size: 14px;
  line-height: 1.35;
}

/* =========================
   Catalog
   ========================= */
.catalog-layout{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
}

.catalog-filters{
  position: sticky;
  top: 110px;
  padding-top: 6px;
  margin-top: 2em;
}

.catalog-content__title{
  font-size: 34px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 1em;
  padding-bottom: 1em;
}

/* Gruppindelning */
.catalog-filters__groups{
  display: grid;
  gap: 18px;
}

.catalog-filters__groupTitle{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin-bottom: 10px;
}

.catalog-filters__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.catalog-filters__list li{ list-style: none; }

.catalog-filters__link{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  color: rgba(0,0,0,.85);
  padding: 6px 14px;
  transition: opacity .15s ease;
  border-radius: 10px;
  width: 100%;
}

.catalog-filters__link:hover{ opacity: .7; background: rgba(0,0,0,.04);}

.catalog-filters__link.is-active{
  font-weight: 600;
  color: #111;
  background: rgba(69, 30, 13, .06);
}

.catalog-filters__count{
  font-size: 12px;
  line-height: 1;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  color: rgba(0,0,0,.72);
  margin-right: 0.5em;
}

.catalog-filters__clear{
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  color: rgba(0,0,0,.7);
  text-decoration: underline;
}

/* Ta bort din aktiva prick helt (du hade det längst ner) */
.catalog-filters__link.is-active::before{
  content: none !important;
  display: none !important;
}

/* =========================
   PDP (Product details page)
   ========================= */
.pdp{
  max-width: 1200px;
  margin: 18px auto 0;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 28px;
  align-items: start;
}

.pdp__gallery{
  display: grid;
  grid-template-rows: auto auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  overflow: hidden;
}

.pdp__stage{
  position: relative;
  background: #fff;
  height: min(78vh, 740px);
  min-height: 520px;
  display: grid;
  place-items: center;
}

.pdp__stage img{
  width: 30em;
  height: auto;
  object-fit: contain;
  padding: 24px;
}

.pdp__thumbs{
  display: flex;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid rgba(0,0,0,.06);
  min-height: 104px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.pdp__thumbs::-webkit-scrollbar{ display:none; }

.pdp__thumb{
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  border-radius: 14px;
  width: 96px;
  height: 72px;
  padding: 6px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: 0 0 auto;
}

.pdp__thumb img{
  width: auto;
  height: 3.5em;
  object-fit: contain;
}

.pdp__thumb.is-active{
  border-color: rgba(69,30,13,.55);
  box-shadow: 0 0 0 3px rgba(69,30,13,.10);
}

.pdp__info{
  position: sticky;
  top: 110px;
}

.pdp__brand{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin-bottom: 8px;
}

.pdp__title{
  font-size: 40px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 12px;
}

.pdp__priceRow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.pdp__price{
  font-size: 22px;
  font-weight: 650;
  color: #451e0d;
}

.pdp__stock{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(0,0,0,.65);
  font-size: 14px;
}

.pdp__stockDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2f8f55;
}

.pdp__stockOut{
  color: rgba(150, 20, 20, .9);
  font-weight: 600;
}

.pdp__desc{
  color: rgba(0,0,0,.72);
  line-height: 1.6;
  margin: 0 0 18px;
}

.pdp__buy{
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
}

.pdp__buyRow{
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  align-items: center;
}

.pdp__qty{
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  overflow: hidden;
  height: 48px;
  background: #fff;
}

.pdp__qtyBtn{
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  color: rgba(0,0,0,.7);
}

.pdp__qtyInput{
  border: 0;
  text-align: center;
  outline: none;
  width: 100%;
}

.pdp__add{
  height: 48px;
  border-radius: 12px;
  color: black;
  background-color: #EDE8E0;
  border-color: #451e0d;
  font-weight: 650;
  cursor: pointer;
  border: 1px solid #451e0d;
}

.pdp__add:hover{
  opacity: .92;
  color: white;
  background-color: #451e0d;
  border-color: #451e0d;
}

.pdp__usp{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(0,0,0,.68);
  font-size: 14px;
}

.pdp__check{
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #343231;
  color: #EDE8E0;
  margin-right: 8px;
  font-weight: 800;
}

.pdp__back{
  display: inline-block;
  margin-top: 14px;
  color: rgba(0,0,0,.7);
  text-decoration: none;
}

.pdp__back:hover{ text-decoration: underline; }

.pdp__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.92);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: rgba(0,0,0,.75);
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

.pdp__nav:hover{ opacity: .92; }
.pdp__nav--prev{ left: 14px; }
.pdp__nav--next{ right: 14px; }

/* =========================
   Footer
   ========================= */
footer{
  width: 100%;
  text-align: center;
  display: flex;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 0, 0, .06);
  padding-top: 1em;
}

.footer .container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.customer-service .cs-title{
  letter-spacing: .08em;
  font-weight: 700;
}

.customer-service .cs-lead{
  max-width: 720px;
  margin: 0 auto;
  opacity: .8;
}

.customer-service .cs-nav{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.customer-service .cs-nav-item{
  width: 100%;
  border: 0;
  background: rgba(69, 30, 13, .06);
  border-radius: 999px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  transition: transform .08s ease, background .12s ease;
}

.customer-service .cs-nav-item:hover{
  transform: translateY(-1px);
}

.customer-service .cs-nav-item.is-active{
  background: #c2bcb9;
}

.customer-service .cs-icon{
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.customer-service .cs-h2{
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 14px;
}

.customer-service .cs-card{
  border-radius: 18px;
}

a{
  color: #451e0d;
  text-decoration: underline;
}

.table-responsive{
  border-radius: 12px;
}

.table td, 
.table th{
  white-space: nowrap;
}

/* ================================
   Responsivitet
   ================================ */

   @media (min-width: 992px){
  .navbar-mobileCategories{ display: none; }
}

/* <= lg */
@media (max-width: 991.98px){
    /* --- Navbar: brand vänster, varukorg + toggler till höger, meny under --- */
 .navbar > .container-fluid{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .navbar-brand{
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0 6px;
    text-align: center;
  }

  .navbar-actions{
    order: 2;
    margin: 0;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-toggler{
    order: 3;
    margin-left: 0; 
    flex: 0 0 auto;
  }

  #mainNavbar.navbar-collapse{
    order: 4;
    flex-basis: 100%;
    width: 100%;
  }
  .navbar-mobileCategories{ display: block; }
  .catalog-filters{ display: none; }
  /* Topbar: sök överst, länkar under */
  .topbar__inner{ flex-wrap: wrap; gap: 10px; }
  .topbar-search{ width: 100%; max-width: none; height: 42px; padding: 0 12px; }
  .topbar__right{ width: 100%; justify-content: flex-end; gap: 12px; }

  /* Logga */
  .navbar-brand{ font-size: 18px; letter-spacing: 2px; margin-left: .5rem; margin-bottom: .6rem; }
  .navbar-brand::after,
  .navbar-brand::before{ width: 22px; }

  /* Hero */
  .hero-editorial{ padding: 2.2em 0; }
  .hero-editorial__media--video{ height: 62vh; min-height: 420px; }
  .hero-editorial__inner{ padding: 0 5vw; }
  .hero-editorial__copy{ max-width: 520px; margin-left: 0; }
  .hero-editorial__title{ font-size: clamp(36px, 6.5vw, 72px); }

  /* USP */
  .usp-strip__inner{ grid-template-columns: 1fr; gap: 16px; }

  /* Katalog */
  .catalog-layout{ grid-template-columns: 1fr; }
  .catalog-filters{ position: static; top: auto; margin-top: 1.25rem; padding-top: 0; }

  /* PDP */
  .pdp{ grid-template-columns: 1fr; gap: 18px; }
  .pdp__info{ position: static; top: auto; }
  .pdp__title{ font-size: 34px; }

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

  .pdp__stage img{
    width: auto !important;
    height: auto !important;
    max-width: calc(100% - 32px);
    max-height: 60vh;
    object-fit: contain;
    display: block;
  }

  /* Mobilkategorier i navbar */
  .navbar-collapse{ background: #fff; }
  .navbar-mobileCategories{ padding: 8px 0 14px; }
  .mobile-cat__title{
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #6d6259;
    padding: 10px 12px 6px;
  }
  .mobile-cat__list{ list-style: none; padding: 0; margin: 0; }
  .mobile-cat__link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    border-radius: 12px;
    color: #2e2a26;
    text-decoration: none;
  }
  .mobile-cat__link:hover{ background: rgba(0,0,0,0.04); }
  .mobile-cat__link.is-active{ background: rgba(0,0,0,0.06); font-weight: 600; }
}

@media (max-width: 768px){
  .table td, 
  .table th{
    font-size: 14px;
  }
}

/* <= sm */
@media (max-width: 575.98px){
  /* Produkter: bryt d-flex */
  #produkter.d-flex{ display: block !important; }

  .catalog-layout{ grid-template-columns: 1fr; }
  .catalog-content{ width: 100%; }

  .catalog-content__title{
    text-align: center;
    width: 100%;
    margin: 1em 0;
    font-size: 28px;
  }

  .topbar__inner{ padding: 10px 10px; }
  .topbar-search__input{ font-size: 14px; }
  .topbar__right{ justify-content: space-between; }

  .hero-editorial{ padding: 1.6em 0; }
  .hero-editorial__media--video{ height: 56vh; min-height: 360px; border-radius: 14px; }
  .hero-editorial__lead{ font-size: 15px; }

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

  /* Kategorier i toggle-menyn istället för sidebar */
  .catalog-filters{ display: none; }

}

/* >= sm: dölj mobilkategorier (du använder sidebar-kategorierna på Home) */
@media (min-width: 576px){

  /* Desktop: actions i högerkant */
  .navbar > .container-fluid{
    display: flex;
    align-items: center;
  }

  .navbar-actions{
    margin-left: auto !important;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

/* Gemensamt */
.navbar-actions{ gap: 10px; }
.navbar-cart .nav-link,
.navbar-cart a{ display: inline-flex; align-items: center; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero-video-wrap .hero-video,
  .product-media img,
  .hero-editorial__cta,
  .hero-editorial__cta::before{ transition: none !important; }
}

/* Fix: add-to-cart icon i produktkort */
.product-meta .product-add__btn{
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border:0;
  background:transparent;
}

.product-meta .product-add__btn img{
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  display: block;
}

.product-add__btn:hover{
  background: rgba(0,0,0,.06);
}

