body {
  background: var(--site-background-color);
}
body.has-offcanvas {
  overflow: hidden;
}
#page-container {
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}
#content-wrapper {
  flex-grow: 1;
}
#important-notice {
  background: var(--important-notice-background-color);
  color: var(--important-notice-text-color);
  text-align: center;
}
#important-notice .container {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
@media (min-width: 768px) {
  #site-menu {
	position: sticky;
    top: 0;
    z-index: 999;
    margin: 1 var(--gutter-size) var(--gutter-size) var(--gutter-size);
  }
}
@media (max-width: 767px) {
  #site-menu {
    position: sticky;
    top: 0;
    z-index: 999;
    font-size: 1.15em;
	box-shadow: 0 12px 6px -6px rgb(0 0 0 / 40%) !important;
    transition: top 200ms linear;
  }
}
@media (max-width: 991px) {
  #site-menu .container {
    padding: 0 !important;
  }
}
#site-menu .navbar {
  padding: 0.5rem var(--gutter-x);
}
@media (min-width: 992px) {
  #site-menu .navbar {
    margin-top: 7.5em;
    padding: 0;
  }
}
@media (min-width: 992px) and (max-width: 1460px) {
  #site-menu .navbar {
    margin-left: 0.5em;
    margin-right: 0.5em;
  }
}
#site-menu .dropdown-menu {
  --gutter-y: 0.75em;
}
body.scrolling-down #site-menu {
	/*
  top: -6em;
  */
}
.navbar-header {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: var(--gutter-x);
  justify-content: space-between;
  background: var(--header-background-color);
  color: var(--header-text-color);
  width: 100%;
}
@media (min-width: 768px) {
.navbar-header {
  gap: var(--gutter-x);
  }
}
@media (min-width: 992px) {
.navbar-header {
  position: absolute;
  top: -5.5rem;
  left: 0;
  right: 0;
  margin-bottom: var(--gutter-y);
  padding-left: 1em;
  padding-right: 1em;
  }
}
.navbar-header .fourteen-forty {
  display: inherit;
  flex-flow: inherit;
  gap: inherit;
  justify-content: inherit;
  align-items: inherit;
  padding-top: 0;
  padding-bottom: 0;
}
.navbar-header .logotype img {
  max-width: 150px;
  max-height: 32px;
}
@media (min-width: 768px) {
.navbar-header .logotype img {
  max-width: 250px;
  max-height: 80px;
  }
}
@media (min-width: 768px) {
.navbar-header .logotype {
  width: auto;
  }
}
.navbar-header .navbar-brand {
  display: none;
  width: calc(var(--sidebar-width) + var(--gutter-x)/2);
  font-size: 17px;
}
.navbar-header .navbar-brand:hover,
.navbar-header .navbar-brand:focus {
  text-decoration: none;
}
.navbar-header .navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
.navbar-header .navbar-brand {
  display: block;
  }
}
.navbar-header .navbar-search {
  flex: 1 1 auto;
  margin: 0 auto;
}
@media (max-width: 991px) {
.navbar-header .navbar-search {
  width: 100%;
  order: 999;
  }
}
@media (min-width: 992px) {
.navbar-header .navbar-search {
  max-width: 600px;
  }
}
.navbar-header .navbar-icon {
  font-size: 1.5em;
  text-align: center;
}
#cart {
  position: relative;
  display: inline-block;
}
#cart > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px transparent solid;
  border-radius: var(--border-radius);
  color: inherit;
  white-space: nowrap;
}
#cart > a:hover {
  border-color: var(--default-border-color);
  text-decoration: none;
}
#cart img {
  max-width: 2em;
  max-height: 2em;
}
@media (min-width: 768px) {
#cart img {
  font-size: 1.5em;
  }
}
#cart .badge {
  background: #c90000;
  border-radius: 2rem;
  padding: 0.25em 0em;
  display: inline-block;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 15px;
  top: 15px;
  width: 2em;
  animation: pulsating 1.5s linear infinite;
  font-size: 10px;
}
#cart .badge:empty {
  display: none;
}
@media (max-width: calc(768px - 1px)) {
  #cart .details {
    display: none;
  }
}
#content {
  padding: 0 0.5em;
}
@media (min-width: 1460px) {
  #content {
    padding: 1rem;
  }
}
#sidebar {
  position: relative;
  display: flex;
  flex-flow: column;
}
#footer {
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
  padding: var(--gutter-y) var(--gutter-x);
}
#footer a {
  color: inherit;
}
#footer .columns {
  display: grid;
  margin-bottom: 0;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: var(--gutter-x);
}
@media (min-width: 768px) {
  #footer .columns {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 992px) {
  #footer .columns {
    grid-template-columns: repeat(4, 1fr);
  }
}
#footer .title {
  font-size: 1.5em;
  margin: 0.75em 0;
  color: var(--footer-title-color);
  text-decoration: underline -50%;
  text-underline-offset: 8px;
}
#footer ul.list-vertical li {
  padding: 0;
}
#copyright {
  background: var(--copyright-background-color);
  color: var(--copyright-text-color);
  border-top: 0.5px solid rgba(255, 255, 255, 0.3);
}
#copyright .container {
  padding: 1em var(--gutter-x);
}
#copyright .notice {
  text-align: center;
}
#copyright .notice a {
  color: inherit;
  text-decoration: none;
}
#scroll-up {
  bottom: 30px;
  display: none;
  height: 48px;
  opacity: 0.3;
  position: fixed;
  right: 30px;
  width: 48px;
}
/* Boxes */
.box {
  margin-bottom: var(--gutter-y);
}
#box-filter .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
#box-filter .filters > * {
  flex: 1 1 auto;
  min-width: fit-content;
}
#box-filter .filters [data-toggle="dropdown"] {
  cursor: pointer;
}
#box-filter .filters .dropdown-menu li {
  margin: 0.5em 1em;
}
#box-filter .filters .dropdown-menu .option {
  white-space: nowrap;
}
#box-filter .tokens:not(:empty) {
  padding-top: var(--gutter-y);
}
#box-filter .tokens .token {
  padding: 0.5em 1em;
  border-radius: 4px;
  cursor: default;
  margin-inline-end: 0.5em;
}
#box-filter .tokens .token[data-group="name"] {
  background: #cbe2b6;
}
#box-filter .tokens .token[data-group="manufacturer"] {
  background: #b6c2e2;
}
#box-filter .tokens .token[data-group^="attribute"] {
  background: #e2c6b6;
}
#box-filter .tokens .token .remove {
  padding-inline-start: 0.5em;
  color: inherit;
  font-weight: 600;
}
#box-cookie-notice {
  background: var(--cookie-notice-background-color);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5em;
  backdrop-filter: saturate(200%) blur(5px);
  color: var(--cookie-notice-text-color);
  z-index: 999;
}
#box-cookie-notice .notice {
  margin-bottom: 1em;
}
#box-cookie-notice .notice a {
  color: inherit;
  text-decoration: underline;
}
#box-cookie-notice button {
  margin: 0 0.5em;
}
@media (min-width: 768px) {
#box-cookie-notice {
  max-width: 680px;
  margin: 0 auto;
  bottom: var(--gutter-y);
  border-radius: var(--border-radius);
  }
}
#box-recently-viewed-products .link img {
  transition: all 100ms linear;
}
#box-recently-viewed-products .link img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
#box-also-purchased-products {
  /*position: sticky;*/
  top: 0;
  }
}
#box-manufacturer-logotypes img {
  max-height: 60px;
}
#box-filter .manufacturers ul {
  max-height: 200px;
  overflow-y: auto;
}
#box-recently-viewed-products .listing {
  grid-template-columns: repeat(auto-fill, minmax(48px, 0.5fr));
}
.listing {
  display: grid;
  grid-gap: calc(var(--gutter-x)/2);
}
@media (min-width: 768px) {
.listing {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.listing.products.columns {
  grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
}
@media (min-width: 768px) {
.listing.products.columns {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
@media (min-width: 992px) {
.listing.products.columns {
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  }
}
.listing.products.rows {
  grid-auto-flow: row;
  grid-template-columns: initial;
}
.listing.categories {
  /*grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));*/
}
@media (min-width: 768px) {
.listing.categories {
  /*grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));*/
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.listing.manufacturers {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
@media (min-width: 768px) {
  .listing.manufacturers {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.listing h1,
.listing h2,
.listing h3 {
  padding-bottom: 0;
  border: none;
}
.listing a {
  color: inherit;
  text-decoration: none;
}
.listing .category,
.listing .manufacturer,
.listing .product {
  position: relative;
  overflow: hidden;
  background: var(--image-whitespace-color);
  border: 1px solid var(--default-border-color);
  border-radius: var(--border-radius);
  transform: scale(1);
  transition: all 100ms linear;
  color: inherit;
  text-decoration: none;
}
@media (min-width: 768px) {
  .listing .category:hover,
  .listing .manufacturer:hover,
  .listing .product:hover {
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.15);
    transform: scale(1.01);
  }
}
.listing .category {
  position: relative;
  background: var(--whitespace-color);
}
.listing .category .caption {
  background: var(--whitespace-color);
  padding: calc(var(--gutter-y)/2) var(--gutter-x);
  color: var(--default-text-color);
  text-align: center;
}
.listing .category .caption * {
  font-weight: normal;
  color: inherit;
  margin: 0;
}
.listing .manufacturer {
  position: relative;
  background: var(--whitespace-color);
}
.listing .manufacturer img {
  width: 100%;
  height: auto;
  padding: 1rem;
}
.listing .manufacturer .caption {
  margin: 0;
  padding: calc(var(--gutter-y)/2) var(--gutter-x);
  background: #f2f2f2;
  color: var(--default-text-color);
  text-align: center;
}
.listing .product {
  position: relative;
  background: var(--whitespace-color);
}
.listing .product .link {
  text-decoration: none;
}
.listing .product .image-wrapper {
  background: var(--image-whitespace-color);
}
.listing .product .image-wrapper .sticker {
  position: absolute;
  top: 20px;
  left: -32px;
  width: 125px;
  padding: 0.25rem 0;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-45deg);
}
.listing .product .image-wrapper .sticker.new {
  background: rgba(251, 184, 41, 0.9);
}
.listing .product .image-wrapper .sticker.sale {
  background: rgba(237, 60, 50, 0.9);
}
.listing .product .name {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  height: 40px;
  font-size: 1em;
  font-weight: 400;
  line-height: 115%;
  border-bottom: 0;
  margin: 0;
}
.listing .product .manufacturer-name {
  color: var(--default-text-color);
  font-size: 0.9em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 200%;
  opacity: 0.75;
}
.listing .product .description {
  max-width: 640px;
  text-align: left;
}
.listing .product .price-wrapper {
  font-size: 1.25em;
}
.listing .product .price-wrapper .price {
  font-weight: bold;
  white-space: nowrap;
}
.listing .product .price-wrapper .regular-price,
.listing .product .price-wrapper .recommended-price {
  color: var(--default-text-color);
  font-size: 0.75em;
  font-weight: normal;
  white-space: nowrap;
}
.listing .product .price-wrapper .campaign-price {
  font-weight: bold;
  color: #c00;
  white-space: nowrap;
}
.listing .product .preview {
  margin: 0 -1px -1px -1px;
  display: none;
  position: absolute;
  top: 1em;
  right: 1em;
  padding: var(--input-padding-y);
  width: 3em;
  box-shadow: none;
}
@media (min-width: 768px) {
  .listing .product:hover .preview {
    display: inline-block;
  }
}
.listing.columns .product .image {
  width: 100%;
  height: auto;
}
.listing.columns .product .info {
  padding: 0.5rem 0;
  text-align: center;
}
.listing.columns .product .description {
  display: none;
}
.listing.columns .product .price-wrapper {
  position: initial;
}
.listing.rows .product .link {
  display: flex;
  gap: var(--gutter-x);
  padding: var(--gutter-y) var(--gutter-x);
}
.listing.rows .product .info {
  flex: 1 1 auto;
}
.listing.rows .product .image-wrapper {
  width: 175px;
}
@media (min-width: 768px) {
  .listing.rows .product .image-wrapper {
    width: 160px;
  }
}
@media (min-width: 768px) {
  .listing.rows .product {
    height: auto;
  }
  .listing.rows .product .description {
    margin-bottom: 1em;
  }
}
#box-product form[name="buy_now_form"] {
  padding: var(--gutter-y) var(--gutter-x);
  margin: 1em 0;
  border: 1px solid var(--default-border-color);
  border-radius: var(--border-radius);
}
#box-product .images {
  margin-bottom: var(--gutter-y);
}
#box-product .main-image {
  position: relative;
  background: var(--whitespace-color);
  overflow: hidden;
}
#box-product .main-image .sticker {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  top: 15px;
  left: -35px;
  padding: 0.25rem 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-45deg);
  width: 140px;
}
#box-product .main-image .sticker.new {
  background: rgba(251, 184, 41, 0.85);
}
#box-product .main-image .sticker.sale {
  background: rgba(237, 60, 50, 0.85);
}
#box-product .price-wrapper {
  font-size: 1.75em;
}
#box-product .price-wrapper .regular-price,
#box-product .price-wrapper .recommended-price {
  font-size: 0.75em;
}
#box-product .price-wrapper .campaign-price {
  color: #cc0000;
}
#box-product .tax {
  color: #999;
}
#box-product .stock-available .value {
  color: #009900;
}
#box-product .stock-partly-available .value {
  color: #ff9900;
}
#box-product .stock-unavailable .value {
  color: #cc0000;
}
#box-product .out-of-stock-notice {
  background: var(--default-background-color);
  border: 1px solid var(--default-border-color);
  padding: var(--gutter-y) var(--gutter-x);
  border-radius: var(--border-radius);
}
#box-product .stock-notice {
  margin-top: 1em;
  padding: 0.5em;
  border-radius: var(--border-radius);
  border: 1px #86cb00 solid;
  color: #86cb00;
}
#box-product .stock-notice:empty {
  display: none;
}
#box-product .stock-notice.warning {
  color: #c00;
  border-color: #c00;
}
#box-product .social-bookmarks {
  font-size: 1.75em;
  margin-top: 1em;
}
#box-product .social-bookmarks a {
  margin: 0 0.25em;
}
#box-product .description p:first-child {
  margin-top: 0;
}
#box-product .description p:last-child {
  margin-bottom: 0;
}

/* Product buy button base
-------------------------------------------------- */
.products .product-column .buy-now-wrapper {
  margin: 0 -1px;
  display: flex;
  justify-content: center;
}

.products .product-column .buy-now-wrapper .btn {
  width: 100%;
  padding: 0.65rem 0.5rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* Emroq custom responsive header
-------------------------------------------------- */

#site-menu {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #f1f1f1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
}

#site-menu .navbar {
  margin-top: 0;
  padding: 0;
}

#site-menu,
#site-menu .fourteen-forty,
#site-menu .navbar,
.emroq-header-main {
  background: #f1f1f1;
}

#site-menu .fourteen-forty {
  width: calc(100% - 7rem);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.emroq-header-main {
  position: static;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 86px;
  padding: 0.75rem 1.25rem;
  margin-bottom: 5px;
  border-radius: 0 0 4px 4px;
}

.emroq-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.emroq-logo img {
  max-width: 250px;
  max-height: 72px;
  height: auto;
}

.emroq-search {
  flex: 1 1 420px;
  max-width: 700px;
  margin: 0 1rem;
}

.emroq-header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  white-space: nowrap;
}

.emroq-nav-item,
.emroq-nav-link,
#cart {
  color: inherit;
  text-decoration: none;
}

.emroq-nav-link,
#cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.45rem 0.65rem;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
}

.emroq-nav-link:hover,
.emroq-nav-link:focus,
#cart:hover,
#cart:focus {
  border-color: var(--default-border-color);
  text-decoration: none;
}

.emroq-header-actions .navbar-icon {
  font-size: 1.25em;
}

@media (min-width: 992px) {
  #site-menu .offcanvas {
    display: none;
  }
}

/* Emroq dropdowns
-------------------------------------------------- */

#site-menu .emroq-categories.open > .emroq-category-menu,
#site-menu .emroq-category-menu,
#site-menu .emroq-categories .dropdown-menu {
  min-width: 320px;
  max-width: 420px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding: 0.5rem;
  background: #f8f8f8 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

#site-menu .emroq-category-menu li {
  list-style: none;
}

#site-menu .emroq-category-menu a,
#site-menu .emroq-category-menu .dropdown-item {
  display: block;
  padding: 0.65rem 0.8rem;
  color: #333 !important;
  text-decoration: none;
  border-radius: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#site-menu .emroq-category-menu a:hover,
#site-menu .emroq-category-menu .dropdown-item:hover {
  background: rgba(111, 132, 74, 0.14) !important;
  color: #222 !important;
  text-decoration: none;
}

#site-menu .emroq-account-menu,
#site-menu .emroq-account .dropdown-menu {
  min-width: 300px;
  padding: 0.75rem;
  background: #f8f8f8 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  color: #333 !important;
}

#site-menu .emroq-account-menu a,
#site-menu .emroq-account-menu .dropdown-item {
  color: #333 !important;
  text-decoration: none;
}

#site-menu .emroq-account-menu a:hover,
#site-menu .emroq-account-menu .dropdown-item:hover {
  background: rgba(234, 217, 198, 0.2) !important;
  color: #222 !important;
  text-decoration: none;
}

#site-menu .emroq-account-menu input[type="email"],
#site-menu .emroq-account-menu input[type="password"] {
  background: #fff;
  color: #333;
  border-color: rgba(0, 0, 0, 0.12);
}

#site-menu .emroq-account-menu .btn {
  background: #fff;
  color: #333;
  border-color: rgba(0, 0, 0, 0.15);
}

#site-menu .emroq-account-menu .btn:hover {
  background: rgba(111, 132, 74, 0.14);
}

/* Emroq content and carousel
-------------------------------------------------- */

body {
  background: #e9e9e9;
}

#content-wrapper {
  background: transparent;
}

#content {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.box,
#box-slides,
#box-featured-products,
#box-latest-products,
#box-category,
#box-product {
  border-radius: 10px;
}

#box-slides,
#box-slides img,
#box-slides .item {
  border-radius: 4px;
  overflow: hidden;
}

/* Emroq mobile
-------------------------------------------------- */

@media (max-width: 991px) {
  #site-menu .fourteen-forty {
    width: calc(100% - 2rem);
  }

  .emroq-header-main {
    flex-wrap: wrap;
    min-height: auto;
    gap: 0.75rem;
  }

  .emroq-logo {
    order: 1;
    flex: 1 1 auto;
  }

  .emroq-header-actions {
    order: 2;
    margin-left: auto;
    gap: 0.35rem;
  }

  .emroq-search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
    width: 100%;
    margin: 0;
  }

  .emroq-categories,
  .emroq-customer-service,
  .emroq-account {
    display: none;
  }

  .emroq-mobile-toggler {
    display: inline-flex !important;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #f8f8f8;
    border-radius: 4px;
  }

  .emroq-mobile-toggler .icon-bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px 0;
    background: #222;
  }

  .emroq-logo img {
    max-width: 170px;
    max-height: 48px;
  }
}

@media (max-width: 767px) {
  #box-slides {
    position: relative;
    overflow: hidden;
  }

  #box-slides .carousel-inner,
  #box-slides .item,
  #box-slides img {
    max-width: 100%;
    overflow: hidden;
  }

  #box-slides .carousel-control {
    width: 12%;
    max-width: 44px;
    min-width: 32px;
  }

  #box-slides .carousel-control.left {
    left: 0;
  }

  #box-slides .carousel-control.right {
    right: 0;
  }

  .product-column form[name="buy_now_form"],
  .product form[name="buy_now_form"] {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .product-column button[name="add_cart_product"],
  .product button[name="add_cart_product"] {
    width: calc(100% - 0.5rem);
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }
}

@media (max-width: 575px) {
  #site-menu .fourteen-forty {
    width: calc(100% - 1rem);
  }

  .emroq-header-main {
    gap: 0.5rem;
    border-radius: 0;
  }

  .emroq-logo img {
    max-width: 140px;
  }

  #cart small {
    display: none;
  }

  #cart {
    min-width: 44px;
  }

  #box-slides {
    width: calc(100vw - 1rem);
    max-width: calc(100vw - 1rem);
    margin-left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
  }

  #box-slides .slides,
  #box-slides .carousel,
  #box-slides .carousel-inner {
    width: 100%;
    max-width: 100%;
  }

  #box-slides img,
  #box-slides .item img {
    width: 100%;
    max-width: 100%;
    display: block;
  }
}

/* Emroq mobile hamburger
-------------------------------------------------- */

.emroq-mobile-toggler {
  display: none;
}

@media (max-width: 991px) {
  .emroq-mobile-toggler {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0 !important;
    line-height: 1;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    background: #f8f8f8;
    color: #222;
    cursor: pointer;
    appearance: none;
  }

  .emroq-mobile-toggler .icon-bar {
    display: block !important;
    width: 24px;
    height: 2px;
    margin: 0 !important;
    padding: 0;
    background: #222;
    border-radius: 2px;
  }
}

/* Emroq FAQ page
-------------------------------------------------- */

.emroq-faq-page {
  background: #fff;
  border-radius: 12px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 8%);
}

.faq-intro-banner {
  /* background: #3a3d42; */
  /* color: #fff; */
  padding: 1.4rem 1.6rem;
  border-radius: 10px;
  border: 1px solid #4f535c;
  margin: 0 0 1.75rem;
  font-size: 1.25rem;
  line-height: 1.4;
}

.emroq-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}

.emroq-faq-item {
  background: #fff7ef;
  border: 1px solid #efd4bd;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.emroq-faq-item:hover {
  border-color: #e5b17c;
  box-shadow: 0 0.35rem 0.8rem rgb(0 0 0 / 8%);
}

.emroq-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1rem 1.2rem;
  list-style: none;
  color: #222;
}

.emroq-faq-item summary::-webkit-details-marker {
  display: none;
}

.emroq-faq-item summary::after {
  content: "+";
  float: right;
  color: #d98231;
  font-weight: 800;
}

.emroq-faq-item[open] summary {
  background: #ffe9d6;
  border-bottom: 1px solid #efd4bd;
}

.emroq-faq-item[open] summary::after {
  content: "–";
}

.emroq-faq-answer {
  padding: 1rem 1.2rem 1.2rem;
  color: #444;
  line-height: 1.6;
  background: #fffaf5;
}

@media (max-width: 768px) {
  .emroq-faq-page {
    padding: 1.5rem;
  }

  .emroq-faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro-banner {
    font-size: 1.1rem;
  }
}


/* Japandi test marker
-------------------------------------------------- */

body {
  background: #f5f0e8 !important;
}

#content-wrapper {
  background: #f5f0e8 !important;
}

/* Japandi base palette
-------------------------------------------------- */

:root {
  --japandi-bg: #f5f0e8;
  --japandi-surface: #fffaf4;
  --japandi-surface-soft: #f1e6d8;
  --japandi-border: #e6d7c5;
  --japandi-text: #2f2a26;
  --japandi-text-soft: #6f655c;
  --japandi-accent: #c78448;
  --japandi-cta: #7f8f52;
  --japandi-cta-hover: #6f7f46;
  --japandi-dark: #312c28;
}

body {
  background: var(--japandi-bg);
  color: var(--japandi-text);
}

#content-wrapper {
  background: var(--japandi-bg);
}

.card,
.box,
#box-information,
.emroq-faq-page {
  background: var(--japandi-surface);
  border-color: var(--japandi-border);
  padding: 1.4rem;
}

#footer {
  background: var(--japandi-dark);
  color: #d7c6b6;
}

#footer .title {
  color: #e5d5c4;
}

#footer a:hover {
  color: var(--japandi-accent);
}

.btn-success,
button[name="add_cart_product"],
.products .product-column .buy-now-wrapper .btn {
  background: var(--japandi-cta);
  border-color: var(--japandi-cta);
  color: #fff;
}

.btn-success:hover,
button[name="add_cart_product"]:hover,
.products .product-column .buy-now-wrapper .btn:hover {
  background: var(--japandi-cta-hover);
  border-color: var(--japandi-cta-hover);
}

#content {
  max-width: 1320px;
}

.card,
.box {
  border-radius: 14px;
}

.listing.products {
  gap: 1rem;
}

/* Japandi footer newsletter cleanup
-------------------------------------------------- */

#footer .newsletters,
#footer .newsletters ul,
#footer .newsletters li,
#footer #box-newsletter-subscribe {
  background: transparent !important;
  color: inherit;
}

#footer #box-newsletter-subscribe .notice,
#footer #box-newsletter-subscribe p,
#footer #box-newsletter-subscribe .text,
#footer #box-newsletter-subscribe .description {
  background: transparent !important;
  color: var(--footer-text-color);
}

#footer #box-newsletter-subscribe .form-group {
  background: transparent !important;
}

#footer #box-newsletter-subscribe input[type="email"],
#footer #box-newsletter-subscribe input[type="text"] {
  background: #fffaf4;
  border-color: #e6d7c5;
  color: #2f2a26;
}

#footer #box-newsletter-subscribe button,
#footer #box-newsletter-subscribe .btn {
  background: #fffaf4;
  border-color: #e6d7c5;
  color: #2f2a26;
}

#footer #box-newsletter-subscribe button:hover,
#footer #box-newsletter-subscribe .btn:hover {
  background: #f1e6d8;
}

/* Japandi footer newsletter spacing
-------------------------------------------------- */

#footer #box-newsletter-subscribe {
  padding: 0.85rem 1rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(215, 198, 182, 0.25);
}

#footer #box-newsletter-subscribe .notice,
#footer #box-newsletter-subscribe p {
  margin: 0 0 0.85rem;
  line-height: 1.45;
}

#footer #box-newsletter-subscribe form {
  margin: 0;
}

#footer #box-newsletter-subscribe .form-group {
  margin: 10px 0 0 0;
}

#footer #box-newsletter-subscribe button,
#footer #box-newsletter-subscribe .btn,
#footer #box-newsletter-subscribe input[type="submit"] {
  background: #7f8f52;
  border-color: #7f8f52;
  color: #fffaf4;
  font-weight: 700;
}

#footer #box-newsletter-subscribe button:hover,
#footer #box-newsletter-subscribe .btn:hover,
#footer #box-newsletter-subscribe input[type="submit"]:hover {
  background: #6f7f46;
  border-color: #6f7f46;
  color: #fffaf4;
}

.products .product form[name="buy_now_form"] {
  display: none;
  position: absolute;
  top: 3em;
  right: 0.75em;
  }
.products .product form[name="buy_now_form"] .btn {
  padding: var(--input-padding-y);
  width: 3em;
}
.products .product:hover form[name="buy_now_form"] {
  display: inline;
}
    
/* Footer social icons hover
-------------------------------------------------- */

#footer .newsletters ul > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 5px;
  border-radius: 50%;
  transition: 
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

#footer .newsletters ul > a img {
  display: block;
  margin: 0 !important;
  transition: transform 0.2s ease, filter 0.2s ease;
}

#footer .newsletters ul > a:hover {
  background: rgba(199, 132, 72, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
}

#footer .newsletters ul > a:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

/* Page hero image
-------------------------------------------------- */

.emroq-page-hero-image {
  margin: 0 0 1.5rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(47, 42, 38, 0.12);
}

.emroq-page-hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .emroq-page-hero-image {
    margin-bottom: 1.1rem;
    border-radius: 10px;
  }

  .emroq-page-hero-image img {
    min-height: 90px;
    object-fit: cover;
  }
}


/* Emroq policy & info pages
-------------------------------------------------- */

.emroq-text-pages {
  max-width: 980px;
  margin: 0 auto 2.5rem;
  padding: 1.5rem;
  background: #fffaf4;
  border: 1px solid #e6d7c5;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(47, 42, 38, 0.08);
}

.emroq-text-pages h2 {
  margin-top: 0;
  color: #2f2a26;
}

.emroq-text-pages h3 {
  margin-top: 2rem;
  color: #2f2a26;
}

.emroq-text-pages p,
.emroq-text-pages li {
  color: #4d453f;
  line-height: 1.65;
}

.emroq-text-pages ul {
  padding-left: 1.25rem;
}

.emroq-text-pages li + li {
  margin-top: 0.35rem;
}

.emroq-text-pages .emroq-page-hero-image {
  margin: 0 0 1.5rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(47, 42, 38, 0.12);
}

.emroq-text-pages .emroq-page-hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .emroq-text-pages {
    padding: 1rem;
    border-radius: 12px;
  }

  .emroq-text-pages h2 {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .emroq-text-pages h3 {
    font-size: 1.12rem;
    line-height: 1.3;
  }

  .emroq-text-pages .emroq-page-hero-image {
    margin-bottom: 1.1rem;
    border-radius: 10px;
  }

  .emroq-text-pages .emroq-page-hero-image img {
    min-height: 90px;
    object-fit: cover;
  }
}

/* Product page mobile buy button fix
-------------------------------------------------- */

@media (max-width: 767px) {
  #box-product .buy_now .form-group > div,
  #box-product .buy-now .form-group > div {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  #box-product button[name="add_cart_product"] {
    width: 100%;
    max-width: 100%;
    margin-top: 0.25rem;
    white-space: normal;
  }

  #box-product .input-group {
    max-width: 100%;
  }
}

/* Product buy row desktop tidy-up
-------------------------------------------------- */

#box-product form[name="buy_now_form"] .form-group > div {
  align-items: stretch;
}

#box-product form[name="buy_now_form"] button[name="add_cart_product"] {
  min-width: 180px;
}

/* Account order history mobile layout
-------------------------------------------------- */

@media (max-width: 767px) {

  #box-order-history {
    overflow: hidden;
  }

  #box-order-history table.data-table {
    width: 100%;
    min-width: 0;
    white-space: normal;
    border-collapse: separate;
    border-spacing: 0 0.75rem;
  }

  #box-order-history table.data-table thead {
    display: none;
  }

  #box-order-history table.data-table,
  #box-order-history table.data-table tbody,
  #box-order-history table.data-table tr,
  #box-order-history table.data-table td {
    display: block;
  }

  #box-order-history table.data-table tr {
    background: var(--japandi-surface, #fffaf4);
    border: 1px solid var(--japandi-border, #e6d7c5);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 4px 14px rgba(47, 42, 38, 0.06);
  }

  #box-order-history table.data-table td {
    width: 100%;
    padding: 0.35rem 0;
    text-align: left !important;
    border: 0;
    white-space: normal;
  }

  #box-order-history table.data-table td::before {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--japandi-muted, #6f655c);
  }

  #box-order-history table.data-table td:nth-child(1)::before {
    content: "Order";
  }

  #box-order-history table.data-table td:nth-child(2)::before {
    content: "Orderstatus";
  }

  #box-order-history table.data-table td:nth-child(3)::before {
    content: "Belopp";
  }

  #box-order-history table.data-table td:nth-child(4)::before {
    content: "Datum";
  }

  #box-order-history table.data-table td:nth-child(5) {
    padding-top: 0.6rem;
  }

  #box-order-history table.data-table td:nth-child(5)::before {
    content: "";
    display: none;
  }

  #box-order-history table.data-table td:nth-child(5) .btn {
    width: 100%;
  }
}

/* Account order history mobile polish
-------------------------------------------------- */

@media (max-width: 767px) {

  #box-order-history table.data-table tr:nth-child(even) {
    background: #f1e6d8;
  }

  #box-order-history table.data-table tr:nth-child(odd) {
    background: #fffaf4;
  }

  #box-order-history table.data-table td:nth-child(5) .btn {
    background: #7f8f52;
    border-color: #7f8f52;
    color: #fff;
    border-radius: 8px;
  }

  #box-order-history table.data-table td:nth-child(5) .btn:hover {
    background: #6f7f46;
    border-color: #6f7f46;
    color: #fff;
  }

  #box-order-history table.data-table td:nth-child(5) .btn .fa,
  #box-order-history table.data-table td:nth-child(5) .btn i {
    color: #fff;
  }
}

/* Product buy box alignment
-------------------------------------------------- */

#box-product .buy_now {
  text-align: center;
}

#box-product .price-wrapper,
#box-product .tax,
#box-product .offer-expires {
  text-align: left;
}

#box-product .product-buy-control {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#box-product .product-buy-label {
  align-self: center;
  margin-bottom: 0.45rem;
}

#box-product .product-buy-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  width: 100%;
}

#box-product .product-quantity-input {
  width: 132px;
  max-width: 132px;
}

#box-product .product-quantity-input input[name="quantity"] {
  width: 74px !important;
  text-align: center;
}

#box-product .product-add-button .btn {
  min-width: 170px;
}

@media (max-width: 767px) {

  #box-product .buy_now {
    text-align: center;
  }

  #box-product .price-wrapper,
  #box-product .tax,
  #box-product .offer-expires {
    text-align: left;
  }

  #box-product .product-buy-row {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  #box-product .product-quantity-input {
    width: 132px;
    max-width: 132px;
  }

  #box-product .product-add-button {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  #box-product .product-add-button .btn {
    width: 70%;
    max-width: 230px;
  }
}

/* Product page social icons
-------------------------------------------------- */

#box-product .emroq-product-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

#box-product .emroq-product-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  text-decoration: none;
  transition: transform 0.18s ease, filter 0.18s ease, opacity 0.18s ease;
}

#box-product .emroq-product-socials a:hover {
  transform: translateY(-2px);
  filter: brightness(0.82);
}

#box-product .emroq-product-socials .link .fa {
  color: #2f2a26;
}

#box-product .emroq-product-socials .pinterest .fa {
  color: #bd081c;
}

#box-product .emroq-product-socials .facebook .fa {
  color: #3b5998;
}

#box-product .emroq-product-socials img {
  display: block;
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

#box-product .emroq-product-socials .link .fa {
  color: #6f655c;
  font-size: 1.4rem;
  opacity: 0.9;
}

#box-product .emroq-product-socials .link:hover .fa {
  color: #2f2a26;
  opacity: 1;
}

/* Cookie notice buttons - creme style
-------------------------------------------------- */

#box-cookie-notice .buttons .btn,
#box-cookie-notice button[name="accept_cookies"],
#box-cookie-notice button[name="decline_cookies"] {
  background: #fffaf4 !important;
  border-color: #e6d7c5 !important;
  color: #2f2a26 !important;
  box-shadow: none;
}

#box-cookie-notice .buttons .btn:hover,
#box-cookie-notice button[name="accept_cookies"]:hover,
#box-cookie-notice button[name="decline_cookies"]:hover {
  background: #f1e6d8 !important;
  border-color: #d8c4ad !important;
  color: #2f2a26 !important;
}

/* Account order history withdrawal button
-------------------------------------------------- */

#box-order-history .emroq-withdrawal-button {
  min-width: 9.5rem;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

/* Ångra köp = gul / avvaktande */
#box-order-history .btn-danger.emroq-withdrawal-button {
  background: #d6a84f !important;
  border-color: #d6a84f !important;
  color: #2f2a26;
}

#box-order-history .btn-danger.emroq-withdrawal-button:hover {
  background: #c7963f;
  border-color: #c7963f;
  color: #2f2a26;
}

/* Påbörja retur = röd / tydligare stopp-läge */
#box-order-history .btn-warning.emroq-withdrawal-button {
  background: #b85c4a;
  border-color: #b85c4a;
  color: #fff;
}

#box-order-history .btn-warning.emroq-withdrawal-button:hover {
  background: #9f4d3f;
  border-color: #9f4d3f;
  color: #fff;
}

@media (max-width: 767px) {

  #box-order-history table.data-table td:nth-child(6)::before {
    content: "Skriv ut";
  }

  #box-order-history table.data-table td:nth-child(7)::before {
    content: "Ånger / retur";
  }

  #box-order-history table.data-table td:nth-child(6),
  #box-order-history table.data-table td:nth-child(7) {
    padding-top: 0.65rem;
  }

  #box-order-history table.data-table td:nth-child(6) .btn,
  #box-order-history table.data-table td:nth-child(7) .btn {
    width: 100%;
  }
}

/* Order withdrawal page
-------------------------------------------------- */

#box-order-withdrawal {
  padding: 1.4rem;
}

#box-order-withdrawal .card-title {
  text-align: center;
}

.emroq-withdrawal-intro {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  text-align: center;
  color: var(--japandi-text-soft, #6f655c);
}

.emroq-withdrawal-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.emroq-withdrawal-summary > div {
  background: var(--japandi-surface-soft, #f1e6d8);
  border: 1px solid var(--japandi-border, #e6d7c5);
  border-radius: 12px;
  padding: 1rem;
}

.emroq-withdrawal-summary strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  color: var(--japandi-text-soft, #6f655c);
}

.emroq-withdrawal-products {
  margin-bottom: 2rem;
}

.emroq-withdrawal-products h2,
.emroq-withdrawal-options h2 {
  margin-top: 0;
}

.emroq-withdrawal-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.emroq-withdrawal-option {
  border: 1px solid var(--japandi-border, #e6d7c5);
  border-radius: 14px;
  padding: 1.25rem;
  background: var(--japandi-surface, #fffaf4);
}

.emroq-withdrawal-option.is-disabled {
  opacity: 0.58;
}

.emroq-withdrawal-option.is-active {
  box-shadow: 0 8px 22px rgba(47, 42, 38, 0.08);
}

.emroq-withdrawal-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 16rem;
  margin-top: 0.75rem;
  border-radius: 7px;
  font-weight: 700;
  text-decoration: none;
}

.emroq-withdrawal-stop {
  background: #d6a84f;
  border-color: #d6a84f;
  color: #2f2a26;
}

.emroq-withdrawal-stop:hover {
  background: #c7963f;
  border-color: #c7963f;
  color: #2f2a26;
}

.emroq-withdrawal-return {
  background: #b85c4a;
  border-color: #b85c4a;
  color: #fff;
}

.emroq-withdrawal-return:hover {
  background: #9f4d3f;
  border-color: #9f4d3f;
  color: #fff;
}

.emroq-withdrawal-action.is-disabled {
  background: #eee2d3;
  border-color: #e6d7c5;
  color: #8a7c70;
  cursor: not-allowed;
}

.emroq-withdrawal-back {
  margin-top: 1.5rem;
  text-align: center;
}

.emroq-withdrawal-back a {
  color: var(--japandi-text-soft, #6f655c);
}

@media (max-width: 767px) {

  #box-order-withdrawal {
    padding: 1rem;
  }

  .emroq-withdrawal-intro {
    text-align: left;
  }

  .emroq-withdrawal-summary,
  .emroq-withdrawal-options {
    grid-template-columns: 1fr;
  }

  .emroq-withdrawal-products table.data-table {
    white-space: normal;
  }

  .emroq-withdrawal-products table.data-table,
  .emroq-withdrawal-products table.data-table thead,
  .emroq-withdrawal-products table.data-table tbody,
  .emroq-withdrawal-products table.data-table tr,
  .emroq-withdrawal-products table.data-table td {
    display: block;
  }

  .emroq-withdrawal-products table.data-table thead {
    display: none;
  }

  .emroq-withdrawal-products table.data-table tr {
    border: 1px solid var(--japandi-border, #e6d7c5);
    border-radius: 12px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    background: var(--japandi-surface, #fffaf4);
  }

  .emroq-withdrawal-products table.data-table td {
    border: 0;
    padding: 0.25rem 0;
    text-align: left !important;
  }

  .emroq-withdrawal-products table.data-table td:nth-child(1)::before {
    content: "SKU";
    display: block;
    font-weight: 700;
    color: var(--japandi-text-soft, #6f655c);
  }

  .emroq-withdrawal-products table.data-table td:nth-child(2)::before {
    content: "Produkt";
    display: block;
    font-weight: 700;
    color: var(--japandi-text-soft, #6f655c);
  }

  .emroq-withdrawal-products table.data-table td:nth-child(3)::before {
    content: "Antal";
    display: block;
    font-weight: 700;
    color: var(--japandi-text-soft, #6f655c);
  }

  .emroq-withdrawal-products table.data-table td:nth-child(4)::before {
    content: "Pris";
    display: block;
    font-weight: 700;
    color: var(--japandi-text-soft, #6f655c);
  }

  .emroq-withdrawal-action {
    width: 100%;
    min-width: 0;
  }
}

/* Order withdrawal page - return button contrast
-------------------------------------------------- */

#box-order-withdrawal .emroq-withdrawal-return {
  background: #b85c4a;
  border-color: #b85c4a;
  color: #fff !important;
}

#box-order-withdrawal .emroq-withdrawal-return:hover,
#box-order-withdrawal .emroq-withdrawal-return:focus {
  background: #9f4d3f;
  border-color: #9f4d3f;
  color: #fff !important;
  text-decoration: none;
}

/* Order withdrawal back button
-------------------------------------------------- */

#box-order-withdrawal .emroq-withdrawal-back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 13rem;
  padding: 0.65rem 1.4rem;
  background: #7f8f52;
  border: 1px solid #7f8f52;
  border-radius: 7px;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
}

#box-order-withdrawal .emroq-withdrawal-back a:hover,
#box-order-withdrawal .emroq-withdrawal-back a:focus {
  background: #6f7f46;
  border-color: #6f7f46;
  color: #fff !important;
  text-decoration: none !important;
}

/* Order withdrawal confirmation page
-------------------------------------------------- */

#box-order-withdrawal-confirm {
  padding: 1.4rem;
}

#box-order-withdrawal-confirm .card-title {
  text-align: center;
}

.emroq-withdrawal-confirm-intro {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  text-align: center;
  color: var(--japandi-text-soft, #6f655c);
}

.emroq-withdrawal-receipt {
  border: 1px solid var(--japandi-border, #e6d7c5);
  border-radius: 14px;
  padding: 1.4rem;
  background: var(--japandi-surface, #fffaf4);
}

.emroq-withdrawal-receipt-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--japandi-border, #e6d7c5);
  padding-bottom: 1rem;
}

.emroq-withdrawal-receipt-header h2 {
  margin-top: 0;
}

.emroq-withdrawal-receipt-status {
  align-self: flex-start;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #f1e6d8;
  color: #2f2a26;
  font-weight: 700;
  white-space: nowrap;
}

.emroq-withdrawal-confirm-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.emroq-withdrawal-confirm-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 0.65rem 1.4rem;
  border-radius: 7px;
  font-weight: 700;
  text-decoration: none !important;
}

.emroq-withdrawal-confirm-actions .btn .fa {
  margin-right: 0.5rem;
}

.emroq-print-button {
  background: #7f8f52;
  border: 1px solid #7f8f52;
  color: #fff !important;
}

.emroq-print-button:hover,
.emroq-print-button:focus {
  background: #6f7f46;
  border-color: #6f7f46;
  color: #fff !important;
}

.emroq-back-button {
  background: #fffaf4;
  border: 1px solid #e6d7c5;
  color: #2f2a26 !important;
}

.emroq-back-button:hover,
.emroq-back-button:focus {
  background: #f1e6d8;
  border-color: #d8c4ad;
  color: #2f2a26 !important;
}

@media (max-width: 767px) {

  #box-order-withdrawal-confirm {
    padding: 1rem;
  }

  .emroq-withdrawal-confirm-intro {
    text-align: left;
  }

  .emroq-withdrawal-receipt {
    padding: 1rem;
  }

  .emroq-withdrawal-receipt-header {
    flex-direction: column;
  }

  .emroq-withdrawal-receipt-status {
    align-self: stretch;
    text-align: center;
  }

  .emroq-withdrawal-confirm-actions {
    flex-direction: column;
  }

  .emroq-withdrawal-confirm-actions .btn {
    width: 100%;
  }
}

/* Order history withdrawal status badges
-------------------------------------------------- */

#box-order-history .emroq-withdrawal-button.emroq-status-returning {
  background: #5f86a6;
  border-color: #5f86a6;
  color: #fff;
  cursor: default;
}

#box-order-history .emroq-withdrawal-button.emroq-status-returned {
  background: #6f8f73;
  border-color: #6f8f73;
  color: #fff;
  cursor: default;
}

#box-order-history .emroq-withdrawal-button.emroq-status-cancelled {
  background: #8a7c70;
  border-color: #8a7c70;
  color: #fff;
  cursor: default;
}

#box-order-history .emroq-withdrawal-button.emroq-status-confirmed {
  background: #4f7896;
  border-color: #4f7896;
  color: #fff;
  cursor: default;
}

#box-order-history span.emroq-withdrawal-button {
  pointer-events: none;
}

#box-order-history .emroq-withdrawal-button.emroq-status-stop-requested {
  background: #d6a84f;
  border-color: #d6a84f;
  color: #2f2a26;
  cursor: default;
}

/* Order history button alignment refinement
-------------------------------------------------- */

#box-order-history .emroq-withdrawal-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 9.5rem;
  min-width: 9.5rem;
  height: 2rem;
  padding: 0 0.7rem !important;
  line-height: 1 !important;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
}

/* Order history table header alignment
-------------------------------------------------- */

#box-order-history table.data-table thead th {
  vertical-align: middle;
  line-height: 1.2;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

#box-order-history table.data-table thead th.text-end,
#box-order-history table.data-table tbody td.text-end {
  text-align: center !important;
}

#box-order-history table.data-table thead th.text-center,
#box-order-history table.data-table tbody td.text-center {
  text-align: center !important;
}



