/*-------------------
Bootstrap Notes
-------------------*/
/*
This theme uses Bootstrap v5.1.

It is highly recommended to check out Bootstrap's guiding principles,
strategies, and techniques at:
https://getbootstrap.com/docs/5.1/extend/approach/

To learn more about Bootstrap v5.1:
https://getbootstrap.com/docs/5.1/getting-started/introduction/
*/

* {
  font-family: "Schibsted Grotesk", san-serif;
}

/* body is min-height, not height: at a fixed 100% the body box ends at the
   viewport, and a position:sticky header is confined to its containing block —
   so the header stuck for one screenful and then scrolled away. min-height
   keeps the full-height-page intent for short content while letting the box
   grow, which is what lets the header stay pinned for the whole scroll. */
html { height: 100%; }
body { min-height: 100%; }

.content-container {
  min-height: calc(100vh - 220px);
}

/* default-main.css applies `.content-container { margin: 1rem }` from exactly
   1200px up to the site width. The container is transparent with no shadow, so
   the horizontal half of that is invisible whitespace — but it narrowed the
   page by 32px the instant you crossed 1200, i.e. the content got SMALLER as
   the viewport grew. Drop the horizontal margin; keep the vertical. */
@media (min-width: 1200px) and (max-width: 1600px) {
  .content-container { margin-left: 0 !important; margin-right: 0 !important; }
}
/* ===== Address forms (checkout + address book): compact two-column layout at lg+ =====
   Lives here rather than in either field snippet because three snippets use
   these classes and they are not all on the same page — duplicating ~25 lines in two files
   was how they'd drift apart. Each field keeps its own .mb-3 wrapper (the theme's
   error markup and the Continue-gating script key off those), so the columns come
   from grids around them rather than from new field markup. */

.oe-addr-sect {
  /* 16 above, not 32: the previous row already contributes its own 16px bottom
     margin, so the header sat 48px below the field above it and only 14px above
     the field below — it read as belonging to the wrong group. */
  display: flex; align-items: center; gap: 14px; margin: 16px 0 14px;
  font-family: "Schibsted Grotesk", sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: #8A8480;
}
.oe-addr-sect::after { content: ''; flex: 1 1 auto; height: 1px; background: #E7E2DC; }
.oe-addr-sect:first-child { margin-top: 0; }
/* any direct child is a field wrapper — .mb-3 at checkout, .form-item in the
   address book, so match on position rather than on either class */
.oe-addr-grid > * { margin-bottom: 16px !important; }
/* No asterisk rule here on purpose: `#content .required-label` in
   checkout.liquid already collapses "(required)" to a red *, and adding a
   second one here rendered two asterisks per label. */
.oe-addr .oe-opt { color: #8A8480; font-weight: 400; }
/* A theme rule capitalizes .control-label, which on the address book rendered
   "First Name" / "ZIP Code" / "Apt, Suite (Optional)" — Title Case where the
   checkout forms are sentence case. Keep the label text as written. */
.oe-addr label { text-transform: none !important; }
@media (min-width: 992px) {
  .oe-addr-grid { display: grid; column-gap: 20px; }
  /* personal details split evenly; address rows give the street/city/country
     the room and leave the short values (apt, ZIP, state) narrow */
  .oe-addr-grid--even { grid-template-columns: 1fr 1fr; }
  .oe-addr-grid--wide { grid-template-columns: 1.6fr 1fr; }
  .oe-addr-grid > .oe-span-2 { grid-column: 1 / -1; }
}



#content .required-label { font-size: 0 !important; padding: 0 !important; margin: 0 0 0 3px !important; }
#content .required-label::before { content: "*"; color: #DC2626; font-size: 14px; font-weight: 500; }

/*-------------------
BASE / RESET
-------------------*/
* {
  line-height: 1.25;
}

/*
body,
div,
h3,
h4,
h5,
h6,
span,
a {
  font-family: 'Inconsolata', sans-serif !important;
}

body,
p,
h2 {
  font-family: 'Rubik', sans-serif !important;
  font-weight: 800;
}
*/

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  line-height: 1.2 !important;
}

.container-fluid {
  padding: 0 3.5rem !important;
}

.modal.lightbox .modal-dialog {
  max-width: 90%;
}

.ratio-16x9 {
/*  --bs-aspect-ratio: 100%; */
}

.fa,
.fas {
  font-family: 'Font Awesome 5 Free' !important;
}

.toast .btn-close {
  opacity: 1;
}

a.nav-link:hover,
a.nav-link:focus {
  text-decoration: underline !important;
  text-underline-offset: 4px;
}
/*-------------------
SEARCH
-------------------*/
.no-results-message {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px; 
  width: 100%;
}

.no-results-message h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

/*-------------------
TYPOGRAPHY
-------------------*/
/*
h1 {
  font-family: 'Rubik', sans-serif !important;
  font-weight: 800;
}

h2, h3 {
  font-family: 'Rubik', sans-serif !important;
  font-weight: 800 !important;
}

label.mb-1,
a.forgot-link,
a.resend-link {
  font-weight: 600;
  font-family: 'Rubik', sans-serif !important;
}

.sso-link {
  color: #0B5CFF;
}

.card-title {
  font-family: 'Rubik', sans-serif !important;
  color: #103714 !important;
  font-size: 18px;
}

.card-text {
  font-family: 'Rubik', sans-serif !important;
  color: #555555 !important;
  font-size: 18px;
}
*/

/*-------------------
BUTTONS
-------------------*/

.btn.secondary,
.btn.primary,
.out-of-stock-notification button,
.out-of-stock-notification button:hover {
  border-radius: 35px;
  padding: 5px 40px;
}

.btn.secondary {
  border-radius: 50px;
}

.btn.secondary.btn-item-summary {
  padding: 4px 15px 3px;
}


/*-------------------
QUANTITY INPUT RESET
-------------------*/
/* Chrome, Safari, Edge, Opera */
.product-page-main .product-quantity #quantity input::-webkit-outer-spin-button,
.product-page-main .product-quantity #quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.product-page-main .product-quantity #quantity input[type=number] {
  -moz-appearance: textfield;
  background-color: #FFF;
  border: 1px solid #2c2c2c;
}


/*-------------------
TOP NAV
-------------------*/
.navbar-container ul.nav > li > a {
  margin: 14px 0 14px 40px;
}

/*-------------------
HEADER
-------------------*/
.logo-container img {
  max-height: 50px !important;
}

.header-icons .user-link {
  background-image: url('data:image/svg+xml;utf8,<svg ... > ... </svg>');
  width: 50px;
  height: 50px;
  display: inline-block;
}

.header-icons > button,
.header-icons > .dropdown,
.header-icons > a {
  position: relative;
}

/* One cart/wishlist bubble for every breakpoint. The desktop variant used to be
   smaller and lighter than the mobile one, and sat outside its 40px button
   (top:-4/right:-8) so it clipped. `min-width` lets 2+ digit counts widen. */
.header-container a.cart-link span,
.header-container a.wishlist-link span,
.cart-badge-custom {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  background: #EF6B33;
  color: #FFFFFF;
  border-radius: 50%;
  right: 2px;
  top: 2px;
  min-width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-icons > a svg,
.header-icons button svg {
  height: 18px;
  stroke: none !important;
  fill: #111;
}

.header-icons > a svg:hover,
.header-icons button svg:hover {
  fill: #EF6B33 !important;
}

.header-container li > a,
.header-container li > a:hover,
.header-container li > a:focus {
  padding: 5px 15px !important;
  font-weight: normal;
}

/*-------------------
CONTENT
-------------------*/

/*-------------------
HOMEPAGE - FEATURED SLIDER HOVER
-------------------*/
@media (min-width: 992px) {
  #featuredSlider .thumbnail-description-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(238, 107, 51, 0.7)!important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
  }

  #featuredSlider .product-thumbnail:hover .thumbnail-description-container {
    opacity: 1;
    pointer-events: auto;
  }

  #featuredSlider .card-title {
    font-size: 32px !important;
    color: #FFFFFF !important;
    font-weight: bold !important;
    margin-bottom: 8px !important;
  }

  #featuredSlider .card-text {
    font-size: 20px !important;
    color: #FFFFFF !important;
    margin-bottom: 20px !important;
  }

  .hover-add-to-cart-text {
    display: inline-block;
    padding: 10px 30px;
    background-color: transparent !important;
    color: #FFFDF8 !important;
    border: 1px solid #A4A4A4 !important;
    border-radius: 8px;
    font-size: 14px;
    text-transform: uppercase;
  }
}

@media (max-width: 991px) {
  #featuredSlider .thumbnail-description-container {
    position: static;
    background-color: transparent !important;
    opacity: 1;
    display: block !important;
  }

  .hover-add-to-cart-text {
    display: none !important;
  }
}


/*-------------------
HOMEPAGE
-------------------*/
.featured-products {
  position: relative;
  overflow: visible;
}

.featured-products h2 {
  font-size: 20px;
  text-align: left !important;
  margin-bottom: 20px;
  font-family: "Schibsted Grotesk";
  color: #111;
}

.featured-products .product-list,
.product-list.flex-nowrap {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 15px;
  padding-bottom: 15px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.featured-products .product-list::-webkit-scrollbar,
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.featured-products .product-thumbnail {
  flex: 0 0 auto !important;
  scroll-snap-align: start;
  margin: 10px 0 !important;
}

.homepage-boxes-container {
  margin-top: 100px;
}

.homepage-boxes-container h2 {
  margin-bottom: 20px;
  font-family: "Schibsted Grotesk";
  color: #111;
}

.homepage-boxes {
  display: flex;
  gap: 30px;
}

.homepage-box {
  width: calc(50% - 15px);
  height: auto;
  position: relative;
  margin: 0;
  box-sizing: border-box;
  padding: 0;
  display: inline-flex;
  align-items: flex-start;
  border-radius: 20px;
}

.homepage-box-btn-left,
.homepage-box-btn-center {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.homepage-box div {
  position: static !important;
  transform: none !important;
  padding: 15px 0;
  text-align: center;
}

.homepage-box p {
  color: #103714;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.homepage-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.homepage-box a {
  transition: 0.3s;
}

.homepage-bottom-banners {
  margin-top: 3rem;
  margin-bottom: 3rem;
  position: relative;
  width: 100%;
}

.homepage-bottom-banners img {
  width: 100%;
  height: auto;
}

.homepage-bottom-banners p {
  font-size: 30px;
  font-weight: 500;
  color: #0F1B5D;
  margin-bottom: 5px;
}

.homepage-bottom-banners a.btn.secondary {
  padding: 8px 35px 6px;
  color: #FFF;
  margin-top: 8px;
  border: none;
  background-color: #00acd2;
}

.carousel-item,
.carousel-item.active {
  align-items: center;
}

.carousel-caption {
  left: 29.5% !important;
  text-align: left;
  padding: 4rem 5rem 4rem 2rem;
  justify-content: start !important;
  align-items: start !important;
  max-width: 30%;
}

.carousel-caption-header {
  font-size: 32px;
  line-height: 42px;
  font-weight: normal;
  margin-bottom: 1rem;
}

.carousel-caption a {
  font-size: 15px !important;
}


/*-------------------
CATEGORY PAGE
-------------------*/
.category-page-content-section > .container-fluid {
  display: none;
}

div#content .category-title-container h1 {
  text-align: center;
  font-size: 50px;
  letter-spacing: -0.02em !important;
  font-family: "Lora";
  color: #231f20;
}


/*-------------------
CATEGORY PILL NAV
-------------------*/
.category-pill-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
}

.custom-pill-nav {
  display: inline-flex;
  align-items: center;
  background-color: #EF6B33;
  padding: 6px;
  border-radius: 50px;
  color: #FFF;
}

.custom-pill-nav ul {
  display: flex !important;
  flex-direction: row !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 5px;
}

.custom-pill-nav li {
  display: inline-block !important;
  margin: 0 !important;
}

.custom-pill-nav a,
.custom-pill-nav li a {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 10px;
  text-decoration: none !important;
  color: #FFF !important;
  font-size: 14px;
  transition: all 0.2s ease;
}

.custom-pill-nav a.active,
.custom-pill-nav li.active a,
.custom-pill-nav li.current a,
.category-pill-wrapper a.active-pill {
  background-color: #ffffff !important;
  color: #000000 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  border-radius: 50px;
}


/*-------------------
PRODUCT THUMBNAILS
-------------------*/
.product-thumbnail .thumbnail-img-container{
  background-color: #FFDBBD !important;
}

.product-list {
  gap: 10px;
}

.product-thumbnail {
  margin: 0 !important;
  padding: 0 0 0 0;
}

.product-thumbnail .thumbnail-img-container a {
  display: flex;
  width: 100%;
  height: auto;
  min-height: auto;
}

.product-thumbnail .thumbnail-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.custom-aspect {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background-color: #FFDBBD;
}

.product-thumbnail .thumbnail-description-container a h5 {
  font-size: 18px;
}


/*-------------------
PRODUCT PAGE
-------------------*/
.product-page-main {
  margin-top: 60px;
}

.product-page-main .product-title h2 {
  margin-bottom: 0;
}

.product-page-main h2 {
  font-size: 28px;
}

.zoomContainer {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.product-page-main .product-price div {
  font-size: 20px;
  color: #111 !important;
  margin-bottom: 8px;
  font-weight: normal !important;
}

.product-page-main .main-img-container {
  width: 100%;
  max-width: 600px;
  margin-bottom: 20px;
  border-radius: 0px;
  overflow: hidden;
  background-color: #FFDBBD;
  border: 1px solid #FFDBBD;
}

.product-page-main .main-img {
  background-color: #FFDBBD;
}

.product-page-main .main-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Transparent, not the #FFDBBD used elsewhere on the product page: the ratio box
   is 16:9 while the image is object-fit:contain, so any fill shows up as slabs
   of colour either side of the photo. The dark surface is the backdrop instead,
   so the image floats on one continuous overlay. */
.modal.lightbox .modal-body .carousel-item .ratio {
  background-color: transparent !important;
}

/* The overlay itself. Bootstrap's backdrop is #000 at 0.5, which with a
   transparent ratio box left the product page legible right through the
   lightbox — title, price and size pills all showing behind the photo. Scoped
   to the body class the product-page script toggles, so every other modal
   (in-stock, quantity discounts, order details) keeps the lighter dim. */
body.oe-lb-open .modal-backdrop {
  background-color: #1B1917;
  /* 0.96, not 0.9: at 0.9 the product title, price and size pills were still
     legible straight through the photo. The blur below is a bonus where it
     composites — it could not be confirmed in a headless browser — so the dim
     alone has to be enough to mask the page. */
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
/* Only on .show, so Bootstrap's own 150ms opacity transition carries the
   darkening. Overriding the base .modal-backdrop opacity too made it snap on
   instantly, which read as a jump rather than the image and overlay arriving
   together. */
body.oe-lb-open .modal-backdrop.show { opacity: 0.96; }

/* Close button, now that it sits over the dark backdrop rather than cream: same
   dark-glyph-on-white-disc treatment as the carousel arrows. */
.modal.lightbox .btn-close {
  width: 40px;
  height: 40px;
  /* Inset from the viewport corner. The button is a direct child of .modal now
     (see product.liquid), so its top-0/end-0 utilities pin it to the overlay's
     corner and this margin is what holds it off the edge. */
  margin: 20px 24px;
  padding: 0 !important;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.75) !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: background-color 0.15s ease;
}
.modal.lightbox .btn-close:hover { background-color: #fff !important; }

.modal.lightbox button svg {
  fill: #111;
  /* The plugin's close icon ships a viewBox but no width/height, so it stretched
     to fill the whole 40px disc and the X read as an oversized glyph spilling to
     the edges. It also carries an inline `top: -5px` nudge for the old layout. */
  width: 14px !important;
  height: 14px !important;
  position: static !important;
}

.gallery-main {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  width: 100%;
}

.product-page-main .images-container {
  max-height: 100%;
  height: 100%;
}

.product-page-main .images-wrapper {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 10px;
}

.product-page-main .images-wrapper ul.images {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  padding: 0;
  margin: 0;
}

.product-page-main .images-wrapper ul.images li.image {
  border: 1px solid #f5f5f5;
  margin: 0 !important;
  width: 100px !important;
  height: 100px !important;
  min-width: 100px !important;
  min-height: 100px !important;
  border-radius: 0px;
  overflow: hidden;
  background: #fff;
}

.product-page-main .images-wrapper ul.images li.image img,
.product-page-main .images-wrapper ul.images li.image img.small-thumb {
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
}

.product-page-main .images-wrapper > button,
.product-page-main .images-wrapper > button.nav {
  display: none !important;
}

.btn-pill:hover, .btn-pill.active-pill {
  border: 1px solid #EF6B33 !important;
}
.product-page-main .images-wrapper ul.images li.image a {
  pointer-events: auto;
}

.product-page-main .total-info .product-quantity #quantity {
  max-width: 100%;
  width: 100%;
  margin-top: 12px;
  display: flex;
}

.product-page-main .total-info .product-quantity #quantity input {
  max-width: 54px;
  text-align: center;
}

.product-page-main .total-info .product-quantity #quantity > div,
.product-page-main .total-info .product-quantity #quantity > div > div {
  display: flex;
  align-items: center;
}

.product-page-main .add-to-cart-area {
  margin: 0 0;
}

.btn.primary.add-to-cart {
  padding: 15px 30px 16px;
  border-radius: 50px;
}

.product-page-main .total-info .product-quantity .add-to-cart-area .btn.add-to-cart {
  max-width: 200px !important;
  display: flex;
  flex-wrap: wrap;
  padding: 5px 25px;
  font-size: 16px;
  text-transform: none;
  border-radius: 50px !important;
}


.product-page-main .total-info .product-quantity .add-to-cart-area .btn.add-to-cart:hover {
  color: #FFF;
  font-family: "Schibsted Grotesk";
}

.product-page-main .total-info .product-quantity-container {
  padding: 0;
  margin-bottom: 12px;
  border: none;
}

a.quantity-btn {
  color: #cecece !important;
  border-radius: 50%;
  margin: 0 0 0 10px;
  font-size: 16px !important;
  width: 18px;
  font-weight: 600;
  padding: 0;
  text-align: center;
  text-decoration: none;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

a.quantity-btn.plus {
  margin-bottom: 3px;
}

a.quantity-btn:hover {
  background-color: #000;
}

a.quantity-btn svg path {
  fill: #000 !important;
}

a.quantity-btn:hover svg path {
  fill: #FFF !important;
}

.product-summary {
  margin-top: 20px;
  display: none;
}

.product-summary-footer .summary-footer .name {
  font-weight: normal;
}

.product-header {
  border: none;
}

.product-header .product-overview {
  margin-bottom: 50px;
}

.product-option-thumb,
.logo-location-thumb {
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  border: none !important;
  color: #000;
}

.select2-container {
  max-width: 100%;
}


/*-------------------
RELATED / RECENTLY VIEWED
-------------------*/
.related-products-thumbnails,
.recently-viewed-products-thumbnails {
  gap: 30px;
  justify-content: start;
}

.recently-viewed-products .product-thumbnail,
.related-products .product-thumbnail {
  padding: 0;
  width: calc((100% - 60px) / 3) !important;
  margin: 0 !important;
}

.recently-viewed-products .product-thumbnail img,
.related-products .product-thumbnail img {
  max-height: 100%;
}

.recently-viewed-products .thumbnail-img-container,
.related-products .thumbnail-img-container {
  border: none;
}


/*-------------------
PRODUCT FORM / REFLECTIVE VIEW
-------------------*/
#edit_website_product > div.line-items-reflective-view > div > h4 {
  display: none;
}

/*-------------------
CART / CHECKOUT
-------------------*/
.cart-page form > div h2 {
  text-align: center;
}

.shopping-cart thead tr th {
  font-size: 18px;
  padding: 13px 0;
}

.btn.remove-cart-item,
.btn.remove-cart-item img {
  padding: 0 !important;
  height: 14px;
  line-height: 14px;
}

.cart-quantity-input {
  text-align: center;
  border-bottom: 2px solid #eb1000 !important;
  width: 76px;
}

.shopping-cart tbody tr td {
  padding: 20px 0 !important;
}

.shopping-cart .btn.cart-checkout-btn {
  border-radius: 20px !important;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  padding: 8px 35px !important;
  line-height: 1;
  font-size: 16px !important;
  font-weight: normal !important;
}

.checkout-steps .btn.secondary {
  padding: 0;
}


/*-------------------
LOGIN / REGISTER
-------------------*/
.login-register-page h3 {
  margin-bottom: 20px;
  font-weight: 700 !important;
}

.form-control,
.form-select,
.form-control:focus,
.form-select:focus {
  background-color: #f5f5f5;
  border: none;
  padding: 10px 12px;
  box-shadow: none !important;
}

.select2-container--bootstrap4 .select2-selection {
  background-color: #f5f5f5;
  border: none;
  padding: 2px 0;
  box-shadow: none !important;
  border-radius: 0;
}

.login-btn-and-links,
#new_website_user > div:last-of-type {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.login-btn-and-links > input.btn.secondary,
#new_website_user > div button {
  line-height: 1 !important;
  display: inline;
}

#new_website_user > div button {
  padding: 5px 15px;
  width: 200px;
}

.login-btn-and-links p {
  margin-top: 6px;
}


/*-------------------
FOOTER
-------------------*/
.footer-container {
  border: none;
  position: relative;
  width: 100%;
  left: 0;
  bottom: 0;
}

.footer-container .wrapper {
  padding: 64px 0 20px !important;
}

.footer-container h1,
.footer-container h2,
.footer-container h3,
.footer-container h4,
.footer-container h5,
.footer-container h6 {
  margin-bottom: 25px;
}

.footer-container .links.categories li:last-of-type {
  display: none;
}

.footer-container .links.categories a,
.footer-container .links.pages a {
  padding: 5px 8px !important;
}

.footer-container .links.pages li a {
  margin: 0 !important;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.footer-container p {
  padding: 0 !important;
  margin: 0;
}

.footer-container .footer-copyright h4 {
  text-align: left;
}

.footer-container .copyright-section .links.pages {
  flex-direction: row !important;
  justify-content: left;
}

.custom-footer-links {
  display: flex;
  flex-direction: row !important;
  width: 100%;
}

.copyright-section {
  border: none;
  padding-top: 64px;
  padding-bottom: 20px;
}

ul.custom-footer-links {
  margin: 0;
  justify-content: center;
}

.footer-links > div {
  display: flex;
}

.custom-footer-links li,
.custom-footer-links li a,
.footer-links > div li,
.footer-links > div li a {
  padding: 0 !important;
}

.footer-container .accordion-item {
  border: none;
}

#footer-accordion-nav-heading {
  margin: 0;
}

#footer-accordion-nav-links div.accordion-body {
  padding: 0;
}

#footer-accordion-nav-heading button {
  padding: 10px 0;
}

.copyright-section .custom-footer-links li a {
  padding: 0 5px !important;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a svg path {
  transition: fill 0.3s ease;
}

/* Hover effect */
.social-icons a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

/* Optional: change icon color on hover */
.social-icons a:hover svg path {
  fill: #EF6B33; /* your brand green */
}

/*-------------------
ARROWS / UTILITIES
-------------------*/
.scroll-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 10;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.left-arrow {
  left: -20px;
}

.right-arrow {
  right: -20px;
}

.scroll-arrow:hover {
  background: #f0f0f0;
}


/*-------------------
MEDIA QUERIES
-------------------*/
@media (min-width: 992px) {
  .featured-products .product-thumbnail {
    width: calc((100% - 40px) / 3) !important;
  }

  .product-thumbnail {
    width: calc((100% - 30px) / 3) !important;
  }

  .scroll-arrow {
    display: none !important;
  }
}

@media screen and (max-width: 1400px) {
  .carousel-caption {
    left: 25% !important;
    max-width: 40%;
    padding: 0 0 0 2rem;
  }
}

@media (max-width: 991.98px) {
  .nav-link[href="/pages/contact"] {
    margin-bottom: 24px;
    display: block;
  }

  .featured-products .product-thumbnail {
    width: 45% !important;
  }

  .navbar,
  .header-navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    min-height: 60px;
  }

  #mobile-slider-button {
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
    margin-right: auto;
  }

  .navbar-brand.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-brand.logo-container img {
    max-width: 140px;
    height: auto;
    display: block;
  }

  .header-icons,
  .nav-icons,
  .navbar-icons,
  .header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    z-index: 3;
  }

  .header-icons a,
  .nav-icons a,
  .navbar-icons a,
  .header-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }

  .product-page-main .row {
    display: flex !important;
    flex-direction: column !important;
  }

  .product-left-section,
  .product-right-section,
  .product-page-main .row > div {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .gallery-main {
    margin-bottom: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }

  .product-page-main .images-wrapper {
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    display: block !important;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 !important;
    white-space: nowrap !important;
  }

  .product-page-main .images-wrapper::-webkit-scrollbar {
    display: none;
  }

  .product-page-main .images-wrapper ul.images {
    display: block !important;
    white-space: nowrap !important;
    width: max-content !important;
    min-width: 100% !important;
    padding: 0 20px !important;
    margin: 0 !important;
    text-align: center;
  }

  .product-page-main .images-wrapper ul.images li.image {
    display: inline-block !important;
    vertical-align: top;
    width: 90px !important;
    height: 90px !important;
    margin: 0 6px !important;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f5f5f5;
  }

  .product-page-main .images-wrapper ul.images li.image.primary {
    border: 2px solid #2c2c2c !important;
  }

  .product-page-main .images-wrapper ul.images li.image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

@media (max-width: 768px) {
  .category-pill-container {
    gap: 4px;
  }

  .category-pill-container a {
    font-size: 13px;
  }

  .carousel-caption {
    background: #00053d;
    position: relative;
    left: 0 !important;
    width: 100%;
    padding: 2rem;
  }

  .thumbnail-description-container {
    padding-top: 8px !important;
  }

  .card-title {
    font-size: 0.9rem !important;
    margin-bottom: 2px;
  }

  .card-text {
    font-size: 0.85rem;
  }

  .homepage-box {
    width: 100% !important;
    margin-bottom: 20px;
  }

  .homepage-box img {
    width: 100%;
    height: auto;
  }

  .category-page .product-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    margin: 0 !important;
  }

  .category-page .product-thumbnail {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
    padding: 10px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  .category-page .product-thumbnail .thumbnail-img-container {
    width: 100% !important;
    height: 174px !important;
    margin: 0 auto !important;
    overflow: hidden;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 20px !important;
  }

  .category-page .product-thumbnail .thumbnail-img-container a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .category-page .product-thumbnail .thumbnail-img-container img,
  .category-page .product-thumbnail .thumbnail-img-container img.img-fluid {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }
}

@media (max-width: 767px) {
  .product-related-products .product-list,
  .product-related-products .row,
  .recently-viewed-products .row {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
  }

  .related-products-thumbnails,
  .recently-viewed-products-thumbnails {
    gap: 0;
  }

  .product-related-products .product-thumbnail,
  .product-related-products .row > div {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding: 0 5px !important;
    margin: 0 0 15px 0 !important;
  }

  .product-related-products .thumbnail-img-container img {
    height: auto !important;
    max-height: 150px !important;
  }
}

@media (max-width: 480px) {
  .container-fluid {
    padding: 0 1.5rem !important;
  }

  ul.custom-footer-links {
    flex-direction: column !important;
  }

  .footer-links-spacing {
    margin: 1rem 0;
  }
}

@media (max-width: 425px) {
  .category-page .thumbnail-description-container {
    text-align: left;
    padding: 8px 5px 0 5px !important;
  }

  .category-page .card-title {
    font-size: 14px !important;
    margin-bottom: 2px !important;
    min-height: 34px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .category-page .card-text {
    font-size: 14px !important;
    font-weight: bold;
  }
}
/* =========================
   CATEGORY PAGE THUMBNAILS
   ========================= */

/* Desktop */
.category-page .product-list .product-thumbnail .thumbnail-img-container {
  overflow: hidden !important;
  border-radius: 0px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.category-page .product-list .product-thumbnail .thumbnail-img-container > a {
  display: flex !important;
  width: 100% !important;
  height: auto !important;
}

.category-page .product-list .product-thumbnail .thumbnail-img-container img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Mobile */
@media (max-width: 768px) {
  .category-page .product-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    margin: 0 !important;
  }

  .category-page .product-list .product-thumbnail {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
    box-sizing: border-box !important;
    padding: 10px !important;
    margin: 0 !important;
  }

  .category-page .product-list .product-thumbnail .thumbnail-img-container {
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .category-page .product-list .product-thumbnail .thumbnail-img-container > a {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
  }

  .category-page .product-list .product-thumbnail .thumbnail-img-container img,
  .category-page .product-list .product-thumbnail .thumbnail-img-container img.img-fluid {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}
.product-thumbnail .thumbnail-img-container {
    min-height: auto;
}
@media (max-width: 767px) {
  .product-page-main .total-info .product-quantity .add-to-cart-area .btn.add-to-cart {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
  }
}

/*-------------------
OE redesign — reusable primary button (.oe-btn)
Shared across pages as the redesign rolls out; keep it here (global CSS) rather
than per-template so every page gets the same 3D treatment.
-------------------*/
.oe-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #C8501F;
  border-radius: 6px;
  background-color: #EF6B33;
  color: #fff !important;
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow:
    0px 3px 6px 0px #0000002E,
    0px 2px 3px 0px #FFFFFF2E inset,
    0px -2px 10px 0px #00000024 inset;
  transition: filter 0.15s ease;
}
.oe-btn:hover,
.oe-btn:focus {
  filter: brightness(0.97);
}

/*-------------------
OE redesign — reusable quantity stepper (.custom-qty-wrapper)
Segmented -/+ control: one rounded box, light-gray minus/plus cells divided
from the white number cell. Global so any page (product, cart, …) using the
qty markup (button.qty-btn.qty-minus / input.amount / button.qty-btn.qty-plus)
gets the same widget.
-------------------*/
.custom-qty-wrapper {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  height: 44px;
  width: auto;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
}
/* every cell fills the wrapper height so the input can't out-grow the -/+ buttons
   (e.g. when there are no size options / the "# in stock" message shows) */
.custom-qty-wrapper > * { height: 100%; }
.custom-qty-wrapper .qty-btn {
  width: 44px;
  padding: 0;
  border: 1px solid #E2DDD7;
  border-radius: 0;
  background: #FCFAF7;
  color: #111;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Hover greys the fill and leaves the border/glyph alone, like the size pills.
   The pills' own hover (#F9F8F7) is invisible here because these buttons already
   rest on #FCFAF7, so this is the grey that gives the same perceptual step. */
.custom-qty-wrapper .qty-btn:hover { background: #F5F2EE; border-color: #E2DDD7; color: #111; }
.custom-qty-wrapper .qty-minus { border-radius: 4px 0 0 4px; }
.custom-qty-wrapper .qty-plus { border-radius: 0 4px 4px 0; }
.custom-qty-wrapper input.amount {
  width: 52px;
  padding: 0;
  margin: 0;
  border-top: 1px solid #E2DDD7 !important;
  border-bottom: 1px solid #E2DDD7 !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0;
  background: #fff;
  text-align: center;
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  outline: none;
  box-shadow: none;
  -moz-appearance: textfield;
}
.custom-qty-wrapper input.amount::-webkit-inner-spin-button,
.custom-qty-wrapper input.amount::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Inert state (product page sets this when the item is out of stock). Same
   greys as the unavailable size pills so the whole card reads as one state. */
.custom-qty-wrapper.is-disabled .qty-btn,
.custom-qty-wrapper.is-disabled .qty-btn:hover {
  background: #F4F2EF;
  border-color: #EFEAE4;
  color: #B9B3AD;
  cursor: not-allowed;
}
/* !important on the fill: the product page's own `.product-page-main
   .product-quantity #quantity input[type=number]` carries an id, so no
   class-only selector here can outrank it. Bootstrap's `.form-control[readonly]`
   grey (#e9ecef) loses to that same rule, which is why this has to be explicit. */
.custom-qty-wrapper.is-disabled input.amount {
  background: #F4F2EF !important;
  color: #B9B3AD;
  cursor: not-allowed;
  border-top-color: #EFEAE4 !important;
  border-bottom-color: #EFEAE4 !important;
}