

/*********** FONTS **********/
@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/Helvetica.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/Helvetica-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Arabic';
  src: url('../fonts/Arabic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/*********** CSS RESET **********/
:root {
  /* Font Variables */
  --primary-font: 'Helvetica', sans-serif;
  --secondary-font: 'Arabic', sans-serif;
  /* Core Theme Colors */
  --theme-color: var(--primary);
  --active-color: var(--secondary);

  /* Color Variables from Figma */
  --white: #ffffff;
  --light-grey: #e6e6e6;
  --primary: #f63538;
  --secondary: #004c84;
  --black: #000000;
  --grey: #606264;
  --very-light: #ddf5ee;
  --orang: #ff8a3d;
  --dark-grey: #3a3d3f;
  --dark-grey-alt: #383640;
  --fill-icon: #222222;
  --green: #2fa542;
  --medium-grey: #b2b2b2;
  --gold: #e5c438;
  --container-width: calc(100% - 20px);
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  margin: 0;
}

ol, ul {
  list-style: none;
}

a img {
  border: none;
}

button::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="file"] > button::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  margin: 0;
  border: 0;
  padding: 0;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  border-radius: 0;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px var(--white);
}

script {
  display: none !important;
}


/*********** GLOBAL STYLES **********/

.slider-grid,
.carousel-grid,
.home-page .page-body .slider-grid {
  margin-bottom: 80px;
}

@media (max-width: 1000px) {
  .slider-grid,
  .carousel-grid,
  .home-page .page-body .slider-grid {
    margin-bottom: 40px;
  }
}

/* Homepage dual hero — same as LTR; row follows inline axis in RTL */
.home-page .custom-slider {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 80px;
}

.home-page .custom-slider .custom-slider-item {
  min-width: 0;
  width: 100%;
}

.home-page .custom-slider .container {
  max-width: 100%;
}

.home-page .custom-slider .slider-grid,
.home-page .custom-slider .slider-grid--tuwayq-hero {
  margin-bottom: 0;
}

.home-page .custom-slider .slider-grid--tuwayq-hero .slider-container {
  border-radius: 14px;
}

@media (min-width: 1001px) {
  .home-page .custom-slider {
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
  }

  .home-page .custom-slider .custom-slider-item--primary {
    flex: 0 0 55%;
    max-width: 55%;
  }

  .home-page .custom-slider .custom-slider-item--secondary {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .home-page .custom-slider .custom-slider-item--secondary {
    display: flex;
    flex-direction: column;
  }

  .home-page .custom-slider .custom-slider-item--secondary .slider-grid--tuwayq-hero {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100%;
  }

  .home-page .custom-slider .custom-slider-item--secondary .slider-grid--tuwayq-hero .slider-container {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100%;
  }

  .home-page .custom-slider .custom-slider-item--secondary .slider-grid--tuwayq-hero .swiper {
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    height: 100%;
  }

  .home-page .custom-slider .custom-slider-item--secondary .slider-grid--tuwayq-hero .swiper-wrapper {
    height: 100%;
  }

  .home-page .custom-slider .custom-slider-item--secondary .slider-grid--tuwayq-hero .swiper-slide {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .home-page .custom-slider .custom-slider-item--secondary .slider-grid--tuwayq-hero .slider-hero {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .home-page .custom-slider .custom-slider-item--secondary .slider-grid--tuwayq-hero .slider-hero-media {
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
  }

  .home-page .custom-slider .custom-slider-item--secondary .slider-grid--tuwayq-hero .slider-hero-media::before {
    display: none;
  }

  .home-page .custom-slider .custom-slider-item--secondary .slider-grid--tuwayq-hero .slider-container .loader::before {
    display: none;
  }
}

@media (max-width: 1000px) {
  .home-page .custom-slider {
    margin-bottom: 40px;
    gap: 10px;
  }
}

.container {
  max-width: var(--container-width);
  margin-inline: auto;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  background-color: var(--white);
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: normal;
  color: var(--grey);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dark-grey);
}

a {
  color: inherit;
  cursor: pointer;
}

a img {
  opacity: 0.99; /*firefox scale bug fix*/
}

table {
  width: 100%;
  border-collapse: collapse;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea, select {
  height: 36px; /*safari padding fix*/
  border: 1px solid var(--light-grey);
  padding: 8px;
  vertical-align: middle;
}

input, textarea, select, button {
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--grey);
}

textarea {
  min-height: 150px;
}

select {
  min-width: 50px;
  height: 32px; /*safari padding fix*/
  padding: 6px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border-color: var(--light-grey);
  color: var(--dark-grey);
  position: relative;
  z-index: 1;
}

input[type="checkbox"],
input[type="radio"],
input[type="checkbox"] + *,
input[type="radio"] + * {
  vertical-align: middle;
}

input[type="button"], input[type="submit"],
button, .button-1, .button-2 {
  cursor: pointer;
}

label, label + * {
  vertical-align: middle;
}

/* Mobile / tablet: smaller base typography (after global font-size rules so cascade wins) */
@media (max-width: 1000px) {
  html {
    font-size: 93.75%;
  }

  body {
    font-size: 12px;
  }

  input, textarea, select, button,
  input[type="button"], input[type="submit"], input[type="reset"] {
    font-size: 12px;
  }

  .category-item .title {
    font-size: 18px;
  }
}

.master-wrapper-content {
  position: relative;
  width: 94%;
  margin: 0 auto;
}

html.html-home-page .master-wrapper-content {
  width: 100%;
  max-width: none;
  margin-top: 20px;
}

html:not(.html-home-page) .master-wrapper-content {
  margin-top: 20px;
}

.master-column-wrapper {
  position: relative;
}

.master-column-wrapper:after {
  content: "";
  display: block;
  clear: both;
}

/* Sticky header: Tuwayq theme plugin adds page class on <html>; footer script toggles .stick */
html.sticky-header-added {
  /* Avoid horizontal jump when vertical scrollbar appears/disappears (viewport width changes) */
  scrollbar-gutter: stable both-edges;
}

/* Sticky header: fixed on scroll (position:sticky breaks with body overflow-x:hidden + nested .header sticky). */
html.sticky-header-added .master-header-sticky {
  z-index: 98;
  background: var(--white);
}

html.sticky-header-added .master-header-sticky.stick {
  position: fixed;
  top: 0;
  inset-inline: 0;
  width: 100%;
  z-index: 98;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

html.sticky-header-added.tuwayq-header-is-stuck .master-wrapper-content {
  padding-top: var(--tuwayq-sticky-header-height, 0);
}

html.sticky-header-added .master-header-sticky .header {
  position: relative !important;
  top: auto !important;
  transform: none !important;
}

@media (max-width: 1199px) {
  .sticky-header-added .mobile-menu-added .master-header-sticky.stick {
    z-index: 9999 !important;
  }
}

.center-1 {
  margin: 0 0 100px;
}

.center-2, .side-2 {
  margin: 0 0 50px;
}

.side-2:after {
  content: "";
  display: block;
  clear: both;
}

.page {
  min-height: 200px;
  text-align: center;
}

.page-title {
  min-height: 50px;
  margin: 0 0 25px;
  border-bottom: 1px solid var(--light-grey);
  padding: 6px 10px;
}

.page-title h1 {
  font-size: 30px;
  font-weight: normal;
}

.page:after,
.page-title:after,
.page-body:after {
  content: "";
  display: block;
  clear: both;
}

.center-1 .page-title,
.center-1 .title {
  text-align: center;
}

.buttons {
  margin: 0 0 30px;
}

.link-rss {
  display: none;
  width: 24px;
  height: 24px;
  background: url('../images/rss.png') center no-repeat;
  font-size: 0 !important;
}

.category-description ul,
.manufacturer-description ul,
.full-description ul,
.topic-block ul,
.topic-page ul,
.post-body ul {
  margin: 12px 0;
  padding: 0 36px 0 0;
  list-style: disc;
}

.category-description ol,
.manufacturer-description ol,
.full-description ol,
.topic-block ol,
.topic-page ol,
.post-body ol {
  margin: 12px 0;
  padding: 0 36px 0 0;
  list-style: decimal;
}

.category-description p,
.manufacturer-description p,
.full-description p,
.topic-block p,
.topic-page p,
.post-body p,
.news-body p {
  margin: 10px 0;
  text-align: justify;
}

/*********** FAQ / TOPIC PAGE (two-column accordion + media) ***********/
.topic-page--faq {
  text-align: start;
}

.topic-page--faq .faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 50%);
  gap: 48px;
  align-items: start;
  text-align: start;
}

.topic-page--faq .faq-layout__main {
  min-width: 0;
}

.topic-page--faq .page-title {
  min-height: 0;
  margin: 0 0 28px;
  padding: 0;
  border: 0;
  text-align: start;
}

  .topic-page--faq .page-title h1 {
    font-family: var(--primary-font);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--black);
  }

.topic-page--faq .page-body {
  margin: 0;
}

.topic-page--faq .faq-layout__media {
  position: sticky;
  top: 20px;
}

  .topic-page--faq .faq-layout__media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
  }

/* Accordion list */
.topic-page--faq .accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: start;
}

.topic-page--faq .accordion-item {
  border: 1px solid transparent;
  border-radius: 10px;
  background: color-mix(in srgb, var(--light-grey) 45%, var(--white));
  overflow: hidden;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

  .topic-page--faq .accordion-item.faq-item-hidden {
    display: none;
  }

  .topic-page--faq .accordion-item.is-open {
    background: var(--white);
    border-color: var(--light-grey);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  }

.topic-page--faq .accordion-item > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 16px 20px;
  border: 0;
  background: transparent;
  text-align: start;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.topic-page--faq .accordion-title {
  flex: 1 1 auto;
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--dark-grey);
}

.topic-page--faq .accordion-item.is-open .accordion-title {
  color: var(--secondary);
}

/* +/- indicator drawn with CSS lines */
.topic-page--faq .accordion-item .icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

  .topic-page--faq .accordion-item .icon::before,
  .topic-page--faq .accordion-item .icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--grey);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }

  /* horizontal bar */
  .topic-page--faq .accordion-item .icon::before {
    width: 16px;
    height: 2px;
    transform: translate(-50%, -50%);
  }

  /* vertical bar (hidden when open => minus) */
  .topic-page--faq .accordion-item .icon::after {
    width: 2px;
    height: 16px;
    transform: translate(-50%, -50%);
  }

  .topic-page--faq .accordion-item.is-open .icon::after {
    transform: translate(-50%, -50%) scaleY(0);
    opacity: 0;
  }

  .topic-page--faq .accordion-item.is-open .icon::before,
  .topic-page--faq .accordion-item.is-open .icon::after {
    background: var(--secondary);
  }

.topic-page--faq .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

  .topic-page--faq .accordion-content p {
    margin: 0;
    padding: 0 20px 18px;
    text-align: start;
    color: var(--grey);
    line-height: 1.65;
  }

/* Show more / less */
.topic-page--faq .faq-show-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 10px 22px;
  border: 0;
  border-radius: 6px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

  .topic-page--faq .faq-show-more:hover,
  .topic-page--faq .faq-show-more:focus {
    background: color-mix(in srgb, var(--primary) 85%, var(--black));
  }

@media (max-width: 1000px) {
  .topic-page--faq .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .topic-page--faq .faq-layout__media {
    display: none;
  }
}

/*********** GLOBAL FORMS ***********/



.fieldset, .section {
  position: relative;
  margin: 0 0 40px;
}

.fieldset .title,
.section .title {
  margin: 0 0 15px;
  padding: 0 10px;
  font-size: 20px;
  color: var(--dark-grey);
}

.fieldset .warnings {
  text-align: center;
  margin-block-end: 30px;
  color: var(--primary);
}

.fieldset .title strong,
.section .title strong {
  font-weight: normal;
}

.form-fields {
  position: relative;
  border-top: 1px solid #e6e6e6;
  background-color: #f9f9f9;
  padding: 30px 15px;
}

.inputs {
  position: relative;
  margin: 0 0 15px;
  text-align: center;
  white-space: nowrap; /*fix for 'required' elements*/
  font-size: 0;
}

.inputs:after {
  content: "";
  display: block;
  clear: both;
}

.inputs label {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  text-align: center;
  font-size: 14px; /*reset zeroing*/
  color: var(--dark-grey);
}

.inputs input[type="text"],
.inputs input[type="email"],
.inputs input[type="tel"],
.inputs input[type="password"],
.inputs select, .inputs textarea {
  width: 400px;
  max-width: 100%;
  background-color: var(--white);
}

.inputs input[type="tel"]{
    text-align: right;
}

  .inputs.custom-attributes {
    white-space: normal;
  }

.inputs .option-list {
  display: inline-block;
  max-width: 95%;
  vertical-align: middle;
}

.inputs .option-list li {
  display: inline-block;
  margin: 5px;
  border: 1px solid var(--light-grey);
  background-color: var(--white);
  padding: 8px 10px;
}

.inputs .option-list label {
  display: inline-block;
  width: auto !important;
  margin: 0 5px 0 0;
}

.inputs.reversed {
  margin: 0 0 20px;
  text-align: center;
}

.required {
  margin: 0 3px 0 -8px; /*siblings offset*/
  vertical-align: top;
  font-size: 20px;
  font-weight: normal;
  color: var(--primary);
}

.message-error,
.field-validation-error,
.username-not-available-status,
.poll-vote-error, .password-error {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--primary);
  margin-top: 5px;
}

.field-validation-valid,
.username-available-status {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--green);
}

.captcha-box {
  text-align: center;
  line-height: 0; /*firefox line-height bug fix*/
}

.captcha-box > div {
  display: inline-block;
  max-width: 100%;
}

.captcha-box input {
  height: auto;
}


/*********** GLOBAL TABLES ***********/



.table-wrapper {
  overflow-x: auto;
}

.data-table .hidden-row {
  height: 1px;
  border: none;
}

.data-table tr.hidden-row th {
  padding: 0;
  border-top: none;
}

.data-table tr.hidden-row th > span {
  height: 1px;
  width: 1px;
  position: absolute;
  overflow: hidden;
  top: -10px;
}

.cart th,
.data-table th,
.forum-table th {
  border-width: 1px 1px 0;
  border-style: solid;
  border-color: var(--light-grey);
  background-color: #f6f6f6;
  padding: 10px;
  white-space: nowrap;
  font-weight: normal;
}

.forum-table th.replies,
.forum-table th.views,
.forum-table th.votes,
.forum-table th.latest-post,
.forum-table th.topics,
.forum-table th.posts,
.forum-table td.replies,
.forum-table td.views,
.forum-table td.votes,
.forum-table td.latest-post,
.forum-table td.topics,
.forum-table td.posts {
  display: none;
}

.forum-table td.image {
  min-width: 0;
}

.cart td,
.data-table td,
.forum-table td {
  min-width: 50px;
  border-width: 1px;
  border-style: solid;
  border-color: transparent var(--light-grey) var(--light-grey);
  background-color: var(--white);
  padding: 20px;
  color: var(--dark-grey);
}

.forum-table td {
  min-width: 90px;
  padding: 10px;
}

.cart a,
.data-table a,
.forum-table a {
  font-weight: normal;
  color: var(--theme-color);
}

.cart a:hover,
.cart a:focus,
.data-table a:hover,
.data-table a:focus,
.forum-table a:hover,
.forum-table a:focus {
  text-decoration: underline;
}

.cart .product,
.data-table .product,
.data-table .message,
.data-table .info,
.data-table .name {
  min-width: 225px;
  text-align: right;
}

.forum-table .forum-details,
.forum-table .topic-details {
  text-align: right;
}

.cart .product a,
.data-table .product a,
.data-table .info a {
  font-weight: bold;
  color: var(--dark-grey);
}

.cart .product a:hover,
.cart .product a:focus,
.data-table .product a:hover,
.data-table .product a:focus,
.data-table .info a:hover,
.data-table .info a:focus {
  color: var(--theme-color);
  text-decoration: none;
}

.cart .product .edit-item {
  margin: 10px 0 0;
}

.cart .product .edit-item a {
  font-weight: normal;
  color: var(--theme-color);
}

.cart .product .edit-item a:hover,
.cart .product .edit-item a:focus {
  text-decoration: underline;
}

.cart .remove-from-cart,
.cart .add-to-cart,
.data-table .select-boxes,
.data-table .order {
  text-align: center;
}

.cart .remove-from-cart input[type="checkbox"] {
  display: none;
}

.cart .remove-from-cart .remove-btn {
  width: 11px;
  height: 11px;
  border: 0;
  background: #ffffffab url(../images/remove.png) center no-repeat;
}

.cart td.unit-price,
.data-table td.unit-price {
  white-space: nowrap;
}

.cart td.quantity input {
  width: 50px;
  text-align: center;
}

.cart .product-quantity div.up {
  background: url('../images/vote-up.png') no-repeat 50% 50%;
  width: 50px;
  height: 25px;
  border: 0;
  cursor: pointer;
}

.cart .product-quantity div.down {
  background: url('../images/vote-down.png') no-repeat 50% 50%;
  width: 50px;
  height: 25px;
  border: 0;
  cursor: pointer;
}

.cart td.subtotal,
.data-table td.total {
  white-space: nowrap;
  color: var(--dark-grey);
}

.cart td.subtotal .discount, .cart td.subtotal .discount-additional-info {
  font-style: italic;
  color: var(--theme-color);
}

.data-table em a {
  font-weight: bold;
  color: var(--dark-grey);
}

.data-table div.download {
  margin: 10px 0 0;
}


/*********** NOTIFICATIONS & POPUPS  ***********/

.bar-notification-container {
  position: fixed;
  top: 20px;
  inset-inline-end: 20px;
  inset-inline-start: auto;
  z-index: 99999;
  width: auto;
  max-width: min(490px, calc(100vw - 40px));
  line-height: 1.25;
  color: var(--white);
  pointer-events: none;
}

.bar-notification {
  position: relative;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
  color: var(--white);
  pointer-events: auto;
}

  .bar-notification[style*="display: block"] {
    display: flex !important;
  }

  .bar-notification::before {
    flex: 0 0 auto;
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    speak: never;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .bar-notification.success {
    background-color: var(--green);
  }

    .bar-notification.success::before {
      content: "\e92d";
      font-size: 26px;
    }

  .bar-notification.error {
    background-color: var(--primary);
  }

    .bar-notification.error::before {
      content: "\e902";
      font-size: 24px;
    }

  .bar-notification.warning {
    background-color: var(--orang);
  }

    .bar-notification.warning::before {
      content: "\e904";
      font-size: 24px;
    }

  .bar-notification .content {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    text-transform: none;
  }

    .bar-notification .content a {
      color: var(--white);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

      .bar-notification .content a:hover,
      .bar-notification .content a:focus {
        color: var(--white);
        opacity: 0.92;
      }

  .bar-notification .close {
    position: static;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0;
    margin-inline-start: auto;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
  }

    .bar-notification .close::before {
      content: "\ea22";
      font-family: 'icomoon' !important;
      font-size: 16px;
      font-style: normal;
      font-weight: normal;
      line-height: 1;
      color: var(--white);
      speak: never;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .bar-notification .close:hover,
    .bar-notification .close:focus {
      background: rgba(255, 255, 255, 0.18);
    }

@media (max-width: 1000px) {
  .bar-notification-container {
    top: 16px;
    inset-inline-end: 16px;
    inset-inline-start: 16px;
    max-width: none;
  }

  .bar-notification {
    padding: 10px 12px;
    border-radius: 8px;
  }

    .bar-notification.success::before,
    .bar-notification.error::before,
    .bar-notification.warning::before {
      font-size: 18px;
    }
}

.popup-notification {
  border-radius: 5px;
  padding: 3px;
  margin: 5px 0;
}

.popup-notification.success {
  border: 2px rgba( 75,176,122,.5) solid;
}

.popup-notification.error {
  border: 2px rgba( 228,68,76,.5) solid;
}

.popup-notification.warning {
  border: 2px rgba( 243,156,18,.5) solid;
}

.noscript {
  border-bottom: 1px solid var(--dark-grey);
  background-color: #ff9;
  padding: 30px 15px;
  text-align: center;
  line-height: 22px;
  color: var(--dark-grey);
}

.ajax-loading-block-window {
  position: fixed;
  top: 50%;
  right: 50%;
  z-index: 999;
  width: 32px;
  height: 32px;
  margin: -16px -16px 0 0;
  background: url('../images/loading.gif') center no-repeat;
}

.please-wait {
  background: url('../images/ajax-loader-small.gif') no-repeat;
  padding-right: 20px;
  font-size: 14px;
}

.ui-dialog {
  max-width: 90%;
  border: 1px solid var(--light-grey);
  box-shadow: 0 0 2px rgba(0,0,0,0.15);
  overflow: hidden;
  background-color: var(--white);
  /*override jQuery UI styles, do not delete doubled properties*/
  border-radius: 0;
  padding: 0;
  font: normal 14px Arial, Helvetica, sans-serif;
}

.ui-dialog:before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.ui-dialog-titlebar {
  border-bottom: 1px solid var(--light-grey);
  overflow: hidden;
  background-color: #eee;
  padding: 10px 15px;
  /*override jQuery UI styles, do not delete doubled properties*/
  border-width: 0 0 1px;
  border-radius: 0;
  background-image: none;
  padding: 10px 15px !important;
  font-weight: normal;
  cursor: auto !important;
}

.ui-dialog-titlebar > span {
  float: right;
  font-size: 18px;
  color: var(--dark-grey);
  /*override jQuery UI styles, do not delete doubled properties*/
  float: right !important;
  margin: 0 !important;
}

.ui-dialog-titlebar button {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  border: none;
  overflow: hidden;
  background: url('../images/close.png') center no-repeat;
  font-size: 0;
  /*override jQuery UI styles, do not delete doubled properties*/
  top: 0 !important;
  right: auto !important;
  left: 0 !important;
  width: 42px !important;
  height: 42px !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0;
  background: url('../images/close.png') center no-repeat !important;
  padding: 0 !important;
}

.ui-dialog-titlebar button span {
  display: none !important;
}

.ui-dialog-content {
  padding: 15px;
  line-height: 20px;
  /*override jQuery UI styles, do not delete doubled properties*/
  background-color: var(--white) !important;
  padding: 15px 15px 20px 15px !important;
  color: var(--grey);
}

.ui-dialog-content .page {
  min-height: 0;
}

.ui-dialog-content .page-title {
  min-height: 0;
  margin: 0 0 15px;
  padding: 0px 10px 10px 10px;
  text-align: center;
}

.ui-dialog-content .page-title h1 {
  font-size: 24px;
  line-height: 30px;
}

.ui-dialog-content .back-in-stock-subscription-page {
  text-align: center;
}

.ui-dialog-content .back-in-stock-subscription-page .tooltip {
  margin-bottom: 10px;
}

.ui-dialog-content .back-in-stock-subscription-page .button-1 {
  border: none;
  background-color: var(--theme-color);
  padding: 10px 15px;
  font-size: 15px;
  color: var(--white);
  text-transform: uppercase;
}

.ui-dialog-content .back-in-stock-subscription-page .button-1:hover,
.ui-dialog-content .back-in-stock-subscription-page .button-1:focus {
  background-color: var(--active-color);
}

.eu-cookie-bar-notification {
  position: fixed;
  top: 50%;
  right: 50%;
  z-index: 1050;
  width: 320px;
  height: auto;
  margin: -90px -160px 0 0;
  border: 1px solid var(--light-grey);
  box-shadow: 0 0 2px rgba(0,0,0,0.15);
  background-color: var(--white);
  padding: 20px;
  text-align: center;
}

.eu-cookie-bar-notification .text {
  margin-bottom: 20px;
  line-height: 20px;
}

.eu-cookie-bar-notification button {
  min-width: 60px;
  margin: 5px 0 10px;
  border: none;
  background-color: var(--theme-color);
  padding: 8px 12px;
  font-size: 14px;
  color: var(--white);
}

.eu-cookie-bar-notification button:hover,
.eu-cookie-bar-notification button:focus {
  background-color: var(--active-color);
}

.eu-cookie-bar-notification a {
  display: block;
  color: var(--theme-color);
}

.eu-cookie-bar-notification a:hover,
.eu-cookie-bar-notification a:focus {
  text-decoration: underline;
}


/*********** HEADER ***********/


.header-menu-wrapper {
  background: rgba(230, 230, 230, 0.5);
}


.admin-header-links {
  background-color: var(--dark-grey);
  text-align: center;
  color: #eee;
}

.admin-header-links * {
  display: inline-block;
  margin: 0 10px;
  line-height: 35px;
  font-size: 12px;
  font-weight: bold;
}

.admin-header-links .impersonate {
  display: inline-block;
}

.admin-header-links .impersonate a {
  background-color: var(--dark-grey);
  padding: 0 15px;
}

.admin-header-links .impersonate a:hover,
.admin-header-links .impersonate a:focus {
  background-color: var(--grey);
}

.header {
  background-color: var(--white);
  padding: 0;
  position: relative;
  z-index: 7;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.05);
  margin: auto;
  text-align: center;
}

.header-upper {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--light-grey);
}

.header-selectors-wrapper {
  border-bottom: 1px solid var(--light-grey);
  padding: 10px 0;
}

.header-selectors-wrapper > div {
  display: block;
  width: 50%;
  margin: 10px auto;
  vertical-align: middle;
}

.header-selectors-wrapper select {
  width: 100%;
}

.language-list {
  max-width: 100%;
  font-size: 0;
}

.language-list li {
  display: inline-block;
  margin: 0 1px;
  vertical-align: middle;
}

.language-list a {
  display: block;
  position: relative;
  width: 24px;
  height: 32px;
  line-height: 0;
}

.language-list img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.header-links-wrapper {
  position: relative;
  padding: 20px 0;
}

.header-links {
}

.header-links ul {
  font-size: 0;
}

.header-links li {
  display: inline-block;
  margin: 0 10px;
}

.header-links span,
.header-links a {
  display: inline-block;
  font-size: 12px; /*reset zeroing*/
  line-height: 36px;
  text-transform: uppercase;
}

.header-links a:hover,
.header-links a:focus {
  color: var(--theme-color);
}

#topcartlink {
  display: block;
  width: 70%;
  max-width: 400px;
  margin: 10px auto 0;
  background-color: #f6f6f6;
  padding: 0 20px;
}


.header-lower {
  position: relative;
  z-index: 0;
  padding: 35px 0;
}

.header-logo {
  margin: 0 0 20px;
  text-align: center;
}

.header-logo a {
  display: inline-block;
  max-width: 100%;
  line-height: 0; /*firefox line-height bug fix*/
}

.header-logo a img {
  max-width: 100%;
  opacity: 1;
}

.search-box form {
  display: inline-block;
}

.search-box form:after {
  content: "";
  display: block;
  clear: both;
}

.search-box input.search-box-text {
  float: right;
  width: 200px;
  height: 36px;
  margin: 0 0 0 -1px;
}

.search-box .search-box-button {
  float: right;
  min-width: 86px;
  height: 36px;
  border: none;
  background-color: var(--theme-color);
  padding: 0 15px;
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
}

.search-box .search-box-button:hover,
.search-box .search-box-button:focus {
  background-color: var(--active-color);
}

.search-box .ui-autocomplete-loading {
  background: var(--white) url('../images/ajax-loader-small.gif') left center no-repeat;
}

.ui-helper-hidden-accessible {
  display: none !important;
}

.ui-autocomplete {
  width: 285px !important;
  border: 1px solid var(--light-grey);
  border-top: none;
  overflow: hidden;
  background-color: var(--white);
  text-align: right;
  /*override jQuery UI styles, do not delete doubled properties*/
  border-radius: 0;
  padding: 0;
  font: normal 14px Arial, Helvetica, sans-serif;
}

.ui-autocomplete li {
  border-top: 1px solid var(--light-grey);
}

.ui-autocomplete li:first-child {
  border-top: none;
}

.ui-autocomplete a {
  display: block;
  padding: 15px;
  font-size: 14px;
  /*override jQuery UI styles, do not delete doubled properties*/
  margin: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: none !important;
  padding: 15px !important;
  line-height: normal !important;
  color: var(--grey) !important;
}

.ui-autocomplete a:hover,
.ui-autocomplete a:focus,
.ui-autocomplete a.ui-state-focus {
  background-color: #f6f6f6 !important;
}

.ui-autocomplete img {
  display: none;
  min-width: 20px;
  margin: 0 0 0 10px;
  vertical-align: middle;
}


/*********** FOOTER ***********/
/*********** FOOTER ***********/

.footer-top-container {
  display: flex;
  flex-direction: row;
  margin: auto;
  width: 95%;
}

  .footer-top-container .footer-app-links {
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 63px;
    border-left: 1px solid var(--light-grey);
    /*    flex-wrap: wrap;*/
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* When .footer-newsletter-container is NOT present inside .footer-top-container */
  .footer-top-container:not(:has(.footer-newsletter-container)) .footer-app-links {
    width: 100%;
    flex-basis: 100%;
    border-left: none;
  }

.footer-app-links-title-wrapper {
  width: 40%;
}

  .footer-app-links-title-wrapper .title {
    font-weight: 500;
    font-size: 16px;
    color: var(--black);
    margin-bottom: 10px;
  }

  .footer-app-links-title-wrapper p {
    font-weight: 500;
    font-size: 14px;
    color: var(--black);
  }

.footer-top-container ._img {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.footer-top-container .footer-newsletter-container {
  display: flex;
  flex-direction: row;
  padding-right: 37px;
  align-items: center;
  gap: 20px;
}

.footer-newsletter-container svg {
  flex-shrink: 0;
}

@media screen and (min-width: 1000px) and (max-width: 1250px) {
  .footer-top-container .footer-app-links {
    width: 50%;
  }
}

.footer {
  background-color: var(--light-grey);
  text-align: center;
}

.footer-upper {
  width: 95%;
  margin: auto;
  border-bottom: 1px solid var(--light-grey);
  overflow: hidden;
  padding: 40px 0;
  font-size: 0;
  display: flex;
  justify-content: space-between;
}

.footer-block {
  width: 95%;
  margin: 1px auto;
  text-align: right;
  font-size: 14px; /*reset zeroing*/
}

  .footer-block .title {
    margin: 0 0 1px;
    background: transparent url('../images/toggle-plus-dark.png') left center no-repeat;
    padding: 10px 15px;
    font-size: 20px;
    color: var(--white);
    cursor: pointer;
  }

    .footer-block .title strong {
      font-weight: 600;
      font-size: 16px;
      color: var(--black);
    }

  .footer-block .list {
    display: none;
    margin: 0 0 20px;
    background-color: var(--white);
    padding: 10px 15px;
  }

    .footer-block .list a {
      display: block;
      padding: 10px 15px;
      line-height: 20px;
      color: var(--black);
      font-size: 14px;
      font-weight: 400;
    }


.footer-address {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  max-width: 203px;
}

.footer-email {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer-block .social .title strong {
  text-transform: capitalize;
}

.footer-upper:after {
  display: none !important;
}

.footer-block .list a:hover,
.footer-block .list a:focus {
  color: var(--theme-color);
}

.follow-us {
  margin: 0px auto 0;
  text-align: right;
}

  .follow-us .title {
    margin: 0 0 10px;
    background: none;
    color: var(--dark-grey);
    cursor: auto;
  }

  .follow-us .social ul {
    border-bottom: 1px solid var(--light-grey);
    font-size: 0;
  }

  .follow-us .social li {
    display: inline-block;
    margin: 0 5px;
  }

    .follow-us .social li:first-child {
      margin-left: 0px;
      margin-right: 5px;
    }

  .follow-us .social a {
    display: block;
    font-size: 0;
  }

.footer-logo {
  margin: 0 0 26px;
  width: 107px;
  height: 100px;
}

.footer-logo img {
  margin: 0 0 26px;
  width: 107px;
  height: 100px;
}

.newsletter-email {
  position: relative;
  display: flex !important;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: -2px 3px 3px 0px #00000014 inset;
  align-items: center;
  background-color: transparent !important;
  width: 280px;
  height: 40px;
}

.newsletter-subscribe-text {
  flex: 1;
  border: none !important;
  border-radius: 8px !important;
  background-color: transparent !important;
  padding-right: 15px;
  padding-left: 10px;
  margin-inline-end: 10px;
}

  .newsletter-subscribe-text:focus {
    outline: none !important;
    box-shadow: none !important;
  }

.newsletter-email:focus-within {
  overflow: visible;
}

.footer-newsletter-icon {
  width: 67px;
  height: 72px;
  background: url('../images/newsletter-box.png') center no-repeat;
}

.newsletter-email input[type="email"] {
  flex: 1;
  border: none;
  padding: 10px 0;
  font-size: 16px;
  color: var(--grey);
  outline: none;
  background-color: transparent;
  height: 40px !important;
  width: 270px;
  padding-inline: 10px;
}

.newsletter .title {
  margin-bottom: 10px;
}

  .newsletter .title strong {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: right;
  }

.newsletter-subscribe-text::placeholder {
  color: #606264;
  font-size: 14px;
  margin-right: 10px;
}

.newsletter-subscribe-button {
  border: none;
  background-color: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  height: 32px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  left: 5px;
  padding-inline: 5px;
}

  .newsletter-subscribe-button:hover,
  .newsletter-subscribe-button:focus {
    background-color: var(--active-color);
  }

.newsletter-email .options {
  clear: both;
  padding: 10px 0 0;
}

.newsletter-validation,
.newsletter-result {
  width: 100%;
  overflow: hidden;
  line-height: 28px;
}
/*.newsletter-validation .please-wait {
	display: none !important; 
}*/

.footer-lower {
  width: 95%;
  margin: auto;
  overflow: hidden;
  padding: 25px 0;
  font-size: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-image: var(--white);
}

.footer-lower-wrapper {
  background-color: var(--white);
}

.footer-lower .footer-info {
  text-align: right;
}

.footer-tax-shipping a {
  font-weight: bold;
  color: var(--theme-color);
}

  .footer-tax-shipping a:hover,
  .footer-tax-shipping a:focus {
    text-decoration: underline;
  }

.footer-disclaimer {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
}

.footer-powered-by {
  font-size: 14px;
  text-align: left;
  color: var(--black);
  font-weight: 500;
}

  .footer-powered-by a {
    font-weight: 500;
    color: var(--secondary);
  }

    .footer-powered-by a:hover,
    .footer-powered-by a:focus {
      text-decoration: underline;
    }

.theme-selector {
  margin: 10px 0 0;
}

  .theme-selector select {
    width: 170px;
  }

.footer-lower-payment-provider {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 36px;
}

.footer-lower-right-zone p, .footer-lower-right-zone .topic-block {
  margin: 0;
}

/*TRUSTED BADGES*/
.feature-strip-container {
  background: #00528f;
}

.feature-strip {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 16px 0px 16px 0px;
  color: #fff;
  flex-wrap: wrap;
  width: 95%;
  margin: auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 220px;
}

.feature-icon {
  width: 52px;
  min-width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

  .feature-icon svg {
    width: 100%;
    height: 100%;
  }


.feature-content h4 {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 4px;
}

.feature-content p {
  margin: 0;
  max-width: 260px;
  font-weight: 300;
  font-weight: normal;
  line-height: 16px;
  letter-spacing: 0%;
}

/* Tablet */
@media (max-width: 991px) {
  .feature-strip {
    gap: 20px;
    padding: 20px 0 20px 0;
  }

  .feature-item {
    min-width: calc(50% - 15px);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .feature-strip {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0 20px 0;
  }

  .feature-item {
    width: 100%;
    min-width: 100%;
    gap: 20px;
  }

  .feature-icon {
    width: 56px;
    min-width: 56px;
    height: 56px;
  }
}


/*********** FOOTER ***********/

.footer-top-container {
  display: flex;
  flex-direction: row;
  margin: auto;
  width: 95%;
}

  .footer-top-container .footer-app-links {
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 63px;
    border-left: 1px solid var(--light-grey);
    /*    flex-wrap: wrap;*/
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

.footer-app-links-title-wrapper {
  width: 40%;
}

  .footer-app-links-title-wrapper .title {
    font-weight: 500;
    font-size: 16px;
    color: var(--black);
    margin-bottom: 10px;
  }

  .footer-app-links-title-wrapper p {
    font-weight: 500;
    font-size: 14px;
    color: var(--black);
  }

.footer-top-container ._img {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.footer-top-container .footer-newsletter-container {
  display: flex;
  flex-direction: row;
  padding-right: 37px;
  align-items: center;
  gap: 20px;
}

.footer-newsletter-container svg {
  flex-shrink: 0;
}

@media screen and (min-width: 1000px) and (max-width: 1250px) {
  .footer-top-container .footer-app-links {
    width: 50%;
  }
}

.footer {
  background-color: var(--light-grey);
  text-align: center;
}

.footer-upper {
  width: 95%;
  margin: auto;
  border-bottom: 1px solid var(--light-grey);
  overflow: hidden;
  padding: 40px 0;
  font-size: 0;
  display: flex;
  justify-content: space-between;
}

.footer-block {
  width: 95%;
  margin: 1px auto;
  text-align: right;
  font-size: 14px; /*reset zeroing*/
}

  .footer-block .title {
    margin: 0 0 1px;
    background: transparent url('../images/toggle-plus-dark.png') left center no-repeat;
    padding: 10px 15px;
    font-size: 20px;
    color: var(--white);
    cursor: pointer;
  }

    .footer-block .title strong {
      font-weight: 600;
      font-size: 16px;
      color: var(--black);
    }

  .footer-block .list {
    display: none;
    margin: 0 0 20px;
    background-color: var(--white);
    padding: 10px 15px;
  }

    .footer-block .list a {
      display: block;
      padding: 10px 15px;
      line-height: 20px;
      color: var(--black);
      font-size: 14px;
      font-weight: 400;
    }


.footer-address {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  max-width: 203px;
}

.footer-email {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer-block .social .title strong {
  text-transform: capitalize;
}

.footer-upper:after {
  display: none !important;
}

.footer-block .list a:hover,
.footer-block .list a:focus {
  color: var(--theme-color);
}

.follow-us {
  margin: 0;
  text-align: right;
}

  .follow-us .title {
    margin: 0 0 10px;
    background: none;
    color: var(--dark-grey);
    cursor: auto;
  }

  .follow-us .social ul {
    border-bottom: 1px solid var(--light-grey);
    font-size: 0;
  }

  .follow-us .social li {
    display: inline-block;
    margin: 0 5px;
  }

  .follow-us .social a {
    display: block;
    font-size: 0;
  }

.newsletter-email {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #ccc; /* Move the border from input to container if desired */
  border-radius: 6px;
  box-shadow: -2px 3px 3px 0px #00000014 inset;
}

  .newsletter-email:focus-within {
    overflow: visible;
  }

.footer-newsletter-icon {
  width: 67px;
  height: 72px;
  background: url('../images/newsletter-box.png') center no-repeat;
}

.newsletter-email input[type="email"] {
  flex: 1;
  border: none;
  padding: 10px 0;
  font-size: 16px;
  color: var(--grey);
  outline: none;
  background-color: transparent;
  height: 40px !important;
  width: 270px;
  padding-inline: 10px;
}

.newsletter .title {
  margin-bottom: 10px;
}

  .newsletter .title strong {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: right;
  }

.newsletter-subscribe-text::placeholder {
  color: #606264;
  font-size: 14px;
  margin-right: 10px;
}

.newsletter-subscribe-button {
  border: none;
  background-color: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  height: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  left: 5px;
  padding-inline: 5px;
}

  .newsletter-subscribe-button:hover,
  .newsletter-subscribe-button:focus {
    background-color: var(--active-color);
  }

.newsletter-email .options {
  clear: both;
  padding: 10px 0 0;
}

.newsletter-validation,
.newsletter-result {
  width: 100%;
  overflow: hidden;
  line-height: 28px;
}
/*.newsletter-validation .please-wait {
	display: none !important; 
}*/

.footer-lower {
  width: 95%;
  margin: auto;
  overflow: hidden;
  padding: 25px 0;
  font-size: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-image: var(--white);
}

.footer-lower-wrapper {
  background-color: var(--white);
}

.footer-lower .footer-info {
  text-align: right;
}

.footer-tax-shipping a {
  font-weight: bold;
  color: var(--theme-color);
}

  .footer-tax-shipping a:hover,
  .footer-tax-shipping a:focus {
    text-decoration: underline;
  }

.footer-disclaimer {
  color: var(--black);
  font-size: 14px;
}

.footer-powered-by {
  font-size: 14px;
  text-align: right;
  color: var(--black);
}

  .footer-powered-by a {
    font-weight: 500;
    color: var(--secondary);
  }

    .footer-powered-by a:hover,
    .footer-powered-by a:focus {
      text-decoration: underline;
    }

.theme-selector {
  margin: 10px 0 0;
}

  .theme-selector select {
    width: 170px;
  }


/*********** SIDE COLUMN ***********/
.sidebar-filter-button {
  display: none;
}

.block {
  max-width: 600px; /*width limit in mobile*/
  min-height: 42px;
  margin: auto;
  margin: 0 0 20px;
  text-align: right;
  border-bottom: 1px solid var(--light-grey);
}

  .block .title {
    position: relative;
    margin: 0 0 10px;
    border-bottom: 1px solid var(--light-grey);
    background: #f6f6f6 url('../images/toggle-gray.png') left 14px no-repeat;
    padding: 12px 0px 12px 30px;
    font-size: 20px;
    color: var(--dark-grey);
    cursor: pointer;
  }

    .block .title strong {
      font-weight: bold;
    }

  .block .listbox {
    /*    display: none;*/
    border-bottom: 1px solid var(--light-grey) !important;
    padding: 10px 0px;
  }

  .block .list li {
    padding: 5px 15px 5px 0;
  }

  .block .list a {
    display: inline-block;
    position: relative;
    padding: 5px 0;
    font-size: 16px;
    color: var(--grey);
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    padding-right: 15px;
  }

    .block .list a:before {
      /*            content: "";
      position: absolute;
      top: 12px;
      left: -15px;
      width: 5px;
      height: 5px;
      background-color: var(--light-grey);*/
    }

.block-category-navigation .listbox .list a:before, .block-manufacturer-navigation .listbox .list a:before, .block-vendor-navigation .listbox .list a:before {
  content: "";
  position: absolute;
  top: 5px;
  right: -15px;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 4px;
  border: 1px solid var(--light-grey);
}

.block-category-navigation .listbox .list .sublist .inactive a:before, .block-manufacturer-navigation .listbox .list .sublist .inactive a:before, .block-vendor-navigation .listbox .list .sublist .inactive a:before {
  content: "";
  position: absolute;
  top: 9px;
  right: -15px;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 4px;
  border: 1px solid var(--light-grey);
}

.block-category-navigation .listbox .list .active a:before, .block-manufacturer-navigation .listbox .list .active a:before, .block-vendor-navigation .listbox .list .active a:before {
  content: "";
  position: absolute;
  background: var(--secondary);
  background-image: url(../images/filter-checkmark.png);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 7.66px;
  border: 1px solid var(--secondary);
}

.block.product-filters .filter-title, .block-category-navigation .title, .block-manufacturer-navigation .title, .block-recently-viewed-products .title, .block-popular-tags .title, .block-vendor-navigation .title {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--secondary);
  padding: 0px 0px 0px 15px;
  margin-bottom: 0;
  border: 0 !important;
  background: url(../images/accordion-minus-tuwayq.png) left 8px top 8px no-repeat;
  background-size: 15px;
  cursor: pointer !important;
}

  .block.product-filters .filter-title.collapsed, .block-category-navigation .title.collapsed, .block-manufacturer-navigation .title.collapsed, .block-recently-viewed-products .title.collapsed, .block-popular-tags .title.collapsed, .block-vendor-navigation .title.collapsed {
    background: url(../images/accordion-plus-tuwayq.png) left 8px top 8px no-repeat;
    background-size: 15px;
    cursor: pointer;
  }
/*.block .list .active > a {
  color: var(--theme-color);
}*/

.block .list a:hover,
.block .list a:focus {
  color: var(--theme-color);
}

.block a.product-picture {
  display: none;
}

  .block a.product-picture img {
    max-width: 100%;
    object-fit: cover;
    width: 100%;
    border-radius: 6px;
  }

  .block a.product-picture:before {
    display: none;
  }

.block .sublist {
  margin: 5px 0 5px;
}

  .block .sublist a {
    font-size: 14px;
  }

.block .view-all {
  margin: 10px 0 0;
}

  .block .view-all a {
    display: inline-block;
    padding: 10px 0px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    text-decoration: underline;
  }

    .block .view-all a:hover,
    .block .view-all a:focus {
      text-decoration: underline;
    }

.block .tags {
  margin: 5px 0 10px;
}

  .block .tags ul {
    font-size: 0;
  }

  .block .tags li,
  .product-tags-all-page li {
    display: inline-block;
    position: relative;
    margin: 0 10px;
    overflow: hidden;
    font-size: 17px !important; /*setting base size*/
  }

    .block .tags li a,
    .product-tags-all-page li a {
      float: right;
      line-height: 30px;
      color: var(--dark-grey);
    }

      .block .tags li a:hover,
      .block .tags li a:focus,
      .product-tags-all-page li a:hover,
      .product-tags-all-page li a:focus {
        color: var(--theme-color);
      }


/********** CATEGORY PAGE **********/

.price-range-filter .ui-slider-horizontal {
  height: 2px;
  margin-inline: 5px;
  margin-bottom: 8px;
}

.price-range-filter .ui-widget-header {
  background: var(--primary);
  height: 2px;
  top: -1px;
}

.price-range-filter .ui-slider-handle.ui-corner-all.ui-state-default {
  background: white;
  border: 2px solid var(--primary);
  border-radius: 50%;
  top: -8px;
}
.poll strong {
  display: block;
  margin: 10px 0;
  background-color: #f6f6f6;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: normal;
  color: var(--dark-grey);
  text-transform: uppercase;
}

.poll-options,
.poll-results {
  margin: 10px 0 15px;
  overflow: hidden;
  font-size: 15px;
  color: var(--dark-grey);
}

.poll-options li,
.poll-results li {
  margin: 10px 0;
}

.poll-options li > input {
  margin: 0 0 0 5px;
  cursor: pointer;
}

.poll-options li > label {
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

.poll .buttons,
.poll-total-votes {
}

.poll .buttons button {
  border: none;
  background-color: var(--medium-grey);
  padding: 10px 20px;
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
}

.poll .buttons button:hover,
.poll .buttons button:focus {
  background-color: #bbb;
}

.poll-total-votes {
  display: block;
  margin: 10px 0 0;
  font-weight: bold;
  font-style: italic;
  color: var(--dark-grey);
}

.home-page-polls {
  text-align: center;
}

.home-page-polls .title {
  border-bottom: 1px solid var(--light-grey);
  color: var(--dark-grey);
  font-size: 30px;
  font-weight: normal;
  margin: 0 0 30px;
  padding: 0 0 15px;
}

.home-page-polls .title strong {
  font-weight: normal;
}

.home-page-polls li {
  display: inline-block;
  margin: 10px;
}


/********** CATEGORY PAGE **********/



.breadcrumb {
  margin: 10px 0 10px;
  background-color: transparent;
  /*  padding: 5px 10px;*/
}

  .breadcrumb ul {
    font-size: 0;
  }

  .breadcrumb li {
    display: inline-block;
  }

    .breadcrumb li * {
      display: inline-block;
      margin: 0 5px;
      font-size: 14px; /*reset zeroing*/
      line-height: 32px;
    }

  .breadcrumb strong {
    font-weight: normal;
  }

  .breadcrumb a {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--grey);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
  }

    .breadcrumb a span {
      text-decoration: underline;
      color: var(--grey);
      font-weight: 400;
      font-size: 14px;
      line-height: 1;
    }

  .breadcrumb .delimiter {
    font-size: 14px;
    line-height: 32px;
    color: var(--light-grey);
    transform: rotate(17deg);
    margin: 0 3px;
    line-height: 1;
  }

  .breadcrumb .current-item {
    color: var(--secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .breadcrumb a:hover,
  .breadcrumb a:focus {
    color: var(--theme-color);
  }

.category-description,
.manufacturer-description,
.vendor-description {
  margin: 0 0 25px;
  line-height: 22px;
}

.contact-vendor {
  margin: 0 0 30px;
}

.contact-vendor .button-2 {
  border: none;
  background-color: var(--theme-color);
  padding: 10px 15px;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
}

.contact-vendor .button-2:hover,
.contact-vendor .button-2:focus {
  background-color: var(--active-color);
}

.product-selectors {
  margin: 0 0 20px;
  border-bottom: 1px solid var(--medium-grey);
  padding: 14px 0;
}

  .product-selectors:first-child {
    border-top: none;
  }

  /*  .product-selectors:after {
    content: "";
    display: block;
    clear: both;
  }*/

  .product-selectors > div {
    display: inline-block;
    margin: 5px;
  }

  .product-selectors .product-sorting,
  .product-selectors .product-page-size {
    position: relative;
    width: auto;
    min-width: 150px;
    padding: 8px 14px 8px 52px;
    border: 1px solid var(--light-grey);
    border-radius: 4px;
    background: var(--white);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--light-grey);
    padding: 5px 10px 5px 13px;
    border-radius: 4px;
    margin: 0;
  }

  .product-selectors .product-sorting {
    min-width: 190px;
  }

    /* Vertical divider + chevron image via ::after */
    .product-selectors .product-sorting::after,
    .product-selectors .product-page-size::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 44px;
      background: url('../images/arrow-down-sort.png') center no-repeat;
      background-size: 11px 6px;
      border-right: 2px solid var(--light-grey);
      pointer-events: none;
      margin-top: 10px;
      margin-bottom: 10px;
    }

  .product-selectors span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--medium-grey);
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
  }

  .product-selectors .product-viewmode {
    display: none;
    font-size: 0;
  }

  /* The native <select> sits over the whole box, invisible — value is read visually via JS or CSS */
  .product-selectors select {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    margin: 0;
    padding: 0;
    border: none;
    z-index: 1;
    -webkit-appearance: none;
    appearance: none;
  }

  /* Selected-value display rendered via a <span data-selected> added by JS, or we show via CSS trick */
  .product-selectors .product-sorting .selected-label,
  .product-selectors .product-page-size .selected-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 4px);
  }

.product-filter .filter-title {
  margin: 0 0 10px;
  background: #f6f6f6 url('../images/toggle-gray.png') left 10px no-repeat;
  padding: 10px;
  font-size: 17px;
  color: var(--dark-grey);
}

  .product-filter .filter-title strong {
    font-weight: bold;
  }

.product-filter .filter-content {
  padding: 20px 3px 10px 10px;
  color: var(--dark-grey);
  margin-bottom: 20px;
}

  .product-filter .filter-content.filter-content-hidden {
    display: none;
  }

.product-filter .group {
  font-size: 15px;
}

  .product-filter .group + .group {
    margin-top: 20px;
  }

  .product-filter .group .name {
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--secondary);
    padding: 0 0 0 15px;
    margin-bottom: 14px;
    background-size: 15px;
  }

  .product-filter .group .item {
    display: flex;
    padding-right: 0px;
    align-items: center;
  }

    .product-filter .group .item + .item {
      padding-top: 8px;
    }

    .product-filter .group .item label {
      cursor: pointer;
      display: flex;
      align-items: center;
      padding-right: 30px;
      flex-grow: 1;
      color: var(--grey);
    }
.product-selectors .product-sorting,
.product-selectors .product-page-size {
  position: relative;
  width: auto;
  min-width: 150px;
  padding: 8px 14px 8px 52px;
  border: 1px solid var(--light-grey);
  border-radius: 4px;
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--light-grey);
  padding: 5px 10px 5px 13px;
  border-radius: 4px;
  margin: 0;
}

.product-selectors .product-sorting {
  min-width: 190px;
}

  /* Vertical divider + chevron image via ::after */
  .product-selectors .product-sorting::after,
  .product-selectors .product-page-size::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 44px;
    background: url('../images/arrow-down-sort.png') center no-repeat;
    background-size: 11px 6px;
    border-right: 2px solid var(--light-grey);
    pointer-events: none;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .product-selectors span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--medium-grey);
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
  }

/*.product-selectors select {
  margin: 0 8px;
}*/

/*.product-selectors .product-viewmode {
  display: none;
  font-size: 0;
}*/

.product-filter + .product-filter {
  margin-top: 20px;
}

.product-filter .filter-title {
  margin: 0 0 10px;
  background-color: #f6f6f6;
  padding: 10px;
  font-size: 17px;
  color: var(--dark-grey);
}

.product-filter .filter-title strong {
  font-weight: normal;
}

.product-filter .filter-content {
  padding: 20px 3px 10px 10px;
  color: var(--dark-grey);
  margin-bottom: 20px;
}

  .product-filter .filter-content.filter-content-hidden {
    display: none;
  }

.product-filter .group {
  font-size: 15px;
}

.product-filter .group + .group {
  margin-top: 20px;
}

  .product-filter .group .name {
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--secondary);
    padding: 0 0 0 15px;
    margin-bottom: 14px;
    background-size: 15px;
  }

  .product-filter .group .item {
    display: flex;
    padding-right: 0px;
    align-items: center;
  }

.product-filter .group .item + .item {
  padding-top: 8px;
}

    .product-filter .group .item label {
      cursor: pointer;
      display: flex;
      align-items: center;
      padding-right: 30px;
      flex-grow: 1;
      color: var(--grey);
    }
/* 1. Hide all native inputs within product-spec-group */
.product-spec-group input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

/* 2. Prepare the labels to host the custom design */
.product-spec-group .item label {
  position: relative;
  padding-right: 30px; /* Space for the 20px box + gap */
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
}

/* 3. The Custom Box (Inactive state) */
.product-spec-group .item input + label::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 4px;
  border: 1px solid var(--light-grey);
  box-sizing: border-box; /* Ensures border doesn't add to width */
  transition: all 0.2s ease;
}

/* 4. The Custom Box (Checked state) */
.product-spec-group .item input:checked + label::before {
  background: var(--secondary);
  background-image: url(../images/filter-checkmark.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 7.66px;
  border-color: var(--secondary);
}

/* Optional: Add a hover state for better interactivity */
.product-spec-group .item label:hover::before {
  border-color: var(--secondary);
}



/*Color Spec Group checkbox design*/
/* 1. Hide the native input specifically for color items */
.product-spec-color .color-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* 2. Adjust the label to align with the square */
.product-spec-color .color-item label.attribute-squares {
  padding-right: 0 !important; /* Removes the box from the previous global style */
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

/* 3. The Color Square itself */
.product-spec-color .color-item label .attribute-square {
  position: relative;
  display: inline-block;
  width: 24px; /* Adjust size as needed */
  height: 24px;
  border-radius: 4px;
  border: 1px solid var(--light-grey, #ccc);
  transition: transform 0.2s, border-color 0.2s;
  margin-right:0 !important;
}

/* 4. The Checkmark on top of the square when checked */
.product-spec-color .color-item input:checked + label .attribute-square::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/filter-checkmark.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 9px;
}

.product-spec-filter {
  padding: 20px 0 20px 0px;
  margin-top: 20px;
  border-top: 1px solid var(--light-grey);
}

.price-range-filter .selected-price-range {
  padding: 5px 0;
}

.price-range-filter .selected-price-range .to {
  float: right;
}

.price-range-filter .selected-price-range.manually {
  display: flex;
}

.price-range-filter .selected-price-range.manually .from {
  margin-right: 8px;
}

.price-range-filter .selected-price-range.manually .from,
.price-range-filter .selected-price-range.manually .to {
  width: 50%;
}

.product-filter .attribute-squares {
  font-size: inherit;
}

.product-filter .attribute-squares .attribute-square {
  width: 20px !important;
  height: 20px !important;
  margin-right: 8px;
}

.product-manufacturer-filter .filter-title.collapsed {
  height: 40px;
}

.item-grid:after {
  content: "";
  display: block;
  clear: both;
}

.item-box {
  position: relative;
  width: 100%;
  float: right;
  margin: 0 0 80px;
  text-align: right;
  width: 49%;
  margin: 0 0.5% 0px;
}

.item-box .picture {
  z-index: 1;
  background-color: var(--white);
  margin: 0 0 20px;
}

.item-box .picture a {
  display: block;
  position: relative;
}

.item-box .picture a:focus {
  opacity: 0.85;
}

.item-box .picture a:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.item-box .picture a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateZ(0) scale(1.0, 1.0);
}

.item-box:hover .picture a img {
  opacity: 0.85;
}

.item-box .details {
  padding: 0 10px;
}

.item-box .product-title {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: normal;
  color: var(--theme-color);
}

.item-box .product-title a {
  display: block;
}

.item-box .product-title a:hover {
  color: var(--active-color);
}

.item-box .sku {
  margin: 0 0 15px;
}

.item-box .product-rating-box {
  display: inline-block;
  margin: 0 0 10px;
}

.item-box .rating {
  background: url('../images/rating1.png') repeat-x;
  width: 95px;
  height: 14px;
  -ms-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.item-box .rating div {
  background: url('../images/rating2.png') repeat-x;
  height: 14px;
  margin-right: auto;
}

.product-grid .item-box .description:not([data-short-description]) {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0 0 15px;
  height: 66px;
  line-height: 22px;
}

.item-box .description[data-short-description] {
  display: none;
}

.item-box .description a {
  display: block;
  overflow: hidden;
}

.item-box .prices {
  margin: 0 0 10px;
  overflow: hidden;
}

.item-box .old-price {
  margin: 0 0 0 5px;
  font-size: 16px;
  color: var(--medium-grey);
  text-decoration: line-through;
}

.item-box .actual-price {
  margin: 0 0 0 5px;
  font-size: 16px;
  color: var(--grey);
}

.item-box .tax-shipping-info a {
  color: var(--theme-color);
}

.item-box .tax-shipping-info a:hover,
.item-box .tax-shipping-info a:focus {
  text-decoration: underline;
}

.item-box .buttons {
  margin: 0;
  font-size: 0;
}

.item-box button {
  display: inline-block;
  height: 40px;
  border: none;
  vertical-align: middle;
}

.item-box .product-box-add-to-cart-button {
  width: 60%;
  background-color: var(--theme-color);
  text-align: center;
  font-size: 15px;
  color: var(--white);
  text-transform: uppercase;
}

.item-box .product-box-add-to-cart-button:hover,
.item-box .product-box-add-to-cart-button:focus {
  background-color: var(--active-color);
}

.item-box .add-to-compare-list-button,
.item-box .add-to-wishlist-button {
  width: 20%;
  border-right: 1px solid var(--white) !important;
  background-color: #eaeaea;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
}

.item-box .add-to-compare-list-button {
  background-image: url('../images/compare-button.png');
}

.item-box .add-to-wishlist-button {
  background-image: url('../images/wishlist-button.png');
}

.item-box .add-to-compare-list-button:hover,
.item-box .add-to-compare-list-button:focus,
.item-box .add-to-wishlist-button:hover,
.item-box .add-to-wishlist-button:focus {
  background-color: var(--light-grey);
}

.home-page-category-grid,
.sub-category-grid,
.manufacturer-grid,
.vendor-grid {
  margin: 0 0 20px;
}

.home-page-category-grid .title,
.sub-category-grid .title {
  text-align: center;
  font-size: 22px;
  font-weight: normal;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home-page-category-grid .title a,
.sub-category-grid .title a {
  display: block;
  padding: 0 0 15px;
}

.home-page-category-grid .picture,
.sub-category-grid .picture {
  margin: 0;
}

.home-page-category-grid .picture a:before,
.sub-category-grid .picture a:before {
  padding-top: 65%;
}

/*SUB CATEGORY SLIDER*/
.category-page-title {
  margin: 25px 0 25px;
  text-align: center;
  border: none;
  padding: 0;
  min-height: unset;
}

  .category-page-title h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
    text-align: center;
  }

.sub-category-grid {
  margin-bottom: 0;
}

  .sub-category-grid .sub-category-swiper {
    width: 100%;
    padding: 0px 0 40px;
  }

  .sub-category-grid .swiper-slide {
    height: auto;
  }

  .sub-category-grid .sub-category-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--light-grey);
    border-radius: 6px;
    padding: 15px 12.5px;
    background-color: #E6E6E633;
    width: 100%;
    box-sizing: border-box;
  }

  .sub-category-grid .item-box {
    margin-bottom: 0;
  }

  .sub-category-grid .sub-category-item .title {
    font-size: 14px;
    color: var(--black);
    font-weight: 500;
    text-align: right;
  }

    .sub-category-grid .sub-category-item .title a {
      padding: 0;
    }

.sub-category-mobile-title {
  display: none;
}

.sub-category-grid .picture a:before {
  padding-top: 0;
}

.sub-category-grid .item-box .picture {
  flex-shrink: 0;
  width: 36%;
}

  .sub-category-grid .item-box .picture a {
    display: flex;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

    .sub-category-grid .item-box .picture a img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      position: relative;
      max-width: unset;
    }

.sub-category-grid .swiper-button-disabled {
  display: none;
}

.sub-category-grid .swiper-button-next, .sub-category-grid .swiper-button-prev {
  top: 30%;
  box-shadow: 0px 2px 3px 0px #0000001A;
}

.sub-category-grid .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 5px;
  border: 1px solid var(--light-grey);
  background-color: var(--white);
  opacity: 1;
}

.sub-category-grid .swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
  border-radius: 5px;
  box-shadow: 0 0 0 6px rgba(255, 45, 45, 0.18);
  background-color: var(--primary);
  border: none;
  padding: 0;
}

.sub-category-grid .swiper-slide {
  width: 13%;
  height: auto;
}

@media (min-width: 1000px) {
  .sub-category-grid .swiper-wrapper {
    margin-inline: -6px;
  }
}

@media (max-width: 1400px) {
  .sub-category-grid .swiper-slide {
    width: 16%;
  }
}

@media (max-width: 1200px) {
  .sub-category-grid .swiper-slide {
    width: 19%;
  }
}

@media (max-width: 1024px) {
  .sub-category-grid .swiper-slide {
    width: 24%;
  }
}

@media (max-width: 900px) {
  .sub-category-grid .swiper-slide {
    width: 30%;
  }
}

@media (max-width: 769px) {
  .sub-category-grid .swiper-slide {
    width: 30%;
  }

  .sub-category-grid .sub-category-item {
    padding: 15px;
  }

  .sub-category-grid .swiper-button-next, .sub-category-grid .swiper-button-prev {
    display: none;
  }

  .sub-category-grid .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .sub-category-grid .sub-category-item {
    flex-direction: column;
    align-items: center;
  }

  .sub-category-desktop-title {
    display: none;
  }

  .sub-category-grid .item-box .picture {
    flex-shrink: 0;
    width: 60%;
  }

  .sub-category-grid .item-box .sub-category-mobile-title {
    display: block;
    font-size: 14px;
    color: var(--black);
    font-weight: 500;
    text-align: center;
    line-height: 16px;
    margin-top: 9px;
    padding-inline: 5px;
  }

    .sub-category-grid .item-box .sub-category-mobile-title a {
      padding: 0;
    }
}

@media (max-width: 480px) {
  .sub-category-grid .item-box .picture {
    flex-shrink: 0;
    width: 84%;
  }
}
/* Drop legacy .picture::before on category tiles (old plugin CSS used padding-top + !important) — Tuwayq uses .picture a::before */
.category-grid .category-item .picture::before {
  content: none !important;
  display: none !important;
  padding-top: 0 !important;
}

/* Global category card — picture on top (flex order), rounded frame, gray mat, ::before aspect */
.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.category-item .picture {
  order: -1;
  width: 100%;
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: unset;
}

.category-item .picture a {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}

.category-item .picture a::before {
  content: "";
  display: block;
  padding-top: 90%;
}

.category-item .picture a img {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.category-item .title {
  width: 100%;
  margin: 12px 0 0;
  padding: 0;
  text-align: center;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.3;
  color: var(--dark-grey);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.category-item .title a {
  color: var(--black);
  text-decoration: none;
  font-family: var(--primary-font);
  width: 100%;
  display: block;
  text-align: center;
}

.category-item .title a:hover,
.category-item .title a:focus {
  color: var(--theme-color);
}

.products-container {
  position: relative;
}

.products-container .ajax-products-busy {
  display: none;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #ffffffab url(../images/loading.gif) center no-repeat;
}

.product-grid,
.product-list {
  margin: 0 0 10px;
}

.product-grid .title {
  margin: 0 0 30px;
  border-bottom: 1px solid var(--light-grey);
  padding: 0 0 15px;
  font-size: 30px;
  font-weight: normal;
  color: var(--dark-grey);
}

.product-grid .title strong {
  font-weight: normal;
}

.manufacturer-grid .title {
  margin: 0 0 15px;
  text-align: center;
  font-size: 16px;
}

.manufacturer-grid .title a:hover,
.manufacturer-grid .title a:focus {
  color: var(--theme-color);
}

.manufacturer-grid .picture {
  border: 1px solid var(--light-grey);
}

.vendor-grid .title {
  margin: 0 0 15px;
  text-align: center;
  font-size: 16px;
}

.vendor-grid .title a:hover,
.vendor-grid .title a:focus {
  color: var(--theme-color);
}

.vendor-grid .picture {
  border: 1px solid var(--light-grey);
}

.pager {
  margin: 0 0 20px;
}

.pager ul {
  text-align: right;
  font-size: 0;
}

.pager li {
  display: inline-block;
  margin: 0 5px;
  vertical-align: top;
}

.pager li a,
.pager li span {
  display: block;
  min-width: 35px;
  height: 35px;
  border: 1px solid var(--light-grey);
  background-color: #eee;
  padding: 8px;
  text-align: center;
  font-size: 14px; /*reset zeroing*/
  cursor: pointer;
}

.pager li span {
  border-color: transparent;
  background-color: var(--theme-color);
  color: var(--white);
}

.pager li.previous-page *,
.pager li.next-page *,
.pager li.first-page *,
.pager li.last-page * {
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
  color: var(--white);
}

.pager li.previous-page * {
  background-image: url('../images/next.png');
}

.pager li.next-page * {
  background-image: url('../images/prev.png');
}

.pager li.first-page * {
  background-image: url('../images/last.png');
}

.pager li.last-page * {
  background-image: url('../images/first.png');
}

.pager li a:hover,
.pager li a:focus {
  border-color: transparent;
  background-color: var(--light-grey);
}

/* Catalog / search product list pagination */
.pager.pager--products {
  margin: 28px 0 36px;
  text-align: center;
}

  .pager.pager--products ul {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    text-align: center;
  }

  .pager.pager--products li {
    display: inline-flex;
    align-items: center;
    margin: 0;
    vertical-align: middle;
  }

    .pager.pager--products li a,
    .pager.pager--products li span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: auto;
      height: auto;
      border: none;
      background: none;
      padding: 4px 2px;
      font-family: var(--primary-font);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.2;
      text-decoration: none;
      cursor: pointer;
    }

    .pager.pager--products li.current-page span {
      color: var(--primary);
      font-weight: 600;
      background: none;
    }

    .pager.pager--products li.individual-page a {
      color: var(--black);
    }

    .pager.pager--products li.first-page a,
    .pager.pager--products li.last-page a {
      color: var(--grey);
      font-size: 16px;
      background: none;
      background-image: none;
    }

    .pager.pager--products li.previous-page a,
    .pager.pager--products li.next-page a {
      color: var(--grey);
      font-size: 0;
      min-width: 20px;
      padding-inline: 4px;
      background: none;
      background-image: none;
    }

      .pager.pager--products li.previous-page a::before,
      .pager.pager--products li.next-page a::before {
        font-family: "icomoon";
        font-size: 14px;
        font-style: normal;
        font-weight: normal;
        line-height: 1;
        color: var(--grey);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }

      .pager.pager--products li.previous-page a::before {
        content: "\e932";
      }

      .pager.pager--products li.next-page a::before {
        content: "\e931";
      }

    .pager.pager--products li.individual-page a:hover,
    .pager.pager--products li.individual-page a:focus,
    .pager.pager--products li.first-page a:hover,
    .pager.pager--products li.first-page a:focus,
    .pager.pager--products li.last-page a:hover,
    .pager.pager--products li.last-page a:focus,
    .pager.pager--products li.previous-page a:hover::before,
    .pager.pager--products li.previous-page a:focus::before,
    .pager.pager--products li.next-page a:hover::before,
    .pager.pager--products li.next-page a:focus::before {
      color: var(--primary);
      background: none;
    }


/********** PRODUCT PAGE **********/



.product-details-page {
  padding: 0;
}

.product-essential {
  padding: 0 0 10px;
}

.product-essential:after {
  content: "";
  display: block;
  clear: both;
}

.product-details-page .prev-next-container {
  margin: 0 0 20px;
}

.product-details-page .previous-product a, .product-details-page .next-product a {
  color: var(--grey);
  padding: 12px 10px;
  position: relative;
  font-weight: 600;
}

.product-details-page .previous-product a::before {
  content: "\e932";
  font-family: "icomoon";
  left: 13px;
}

.product-details-page .next-product a::after {
  content: "\e931";
  font-family: "icomoon";
  right: 13px;
}

.product-details-page .previous-product a::before,
.product-details-page .next-product a::after {
  background: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  padding: 0;
  width: auto;
  height: auto;
  font-weight: 500;
}

.product-details-page .previous-product a {
  padding-inline-end: 40px;
}


.product-details-page .next-product a {
  padding-inline-start: 40px;
}

.video-gallery-mobile {
  display: none;
}

.gallery .picture-wrapper {
  margin: 0 0 10px;
}

.gallery .picture {
  position: relative;
  max-width: 100%;
  margin: 0 auto 10px;
  overflow: hidden;
}

.gallery .picture:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.gallery .picture img,
.picture-gallery .picture-thumbs img,
.variant-picture img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.picture-gallery .picture-thumbs {
  overflow: hidden;
  font-size: 0;
}

.picture-gallery .picture-thumbs .thumb-item {
  display: inline-block;
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 5px 10px;
  overflow: hidden;
  cursor: pointer;
}

.picture-container {
  position: relative;
  margin-bottom: 20px;
  z-index:9;
}

.picture-container .image-overlay-buttons {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10000;
}

.video-gallery {
  width: 100%;
}

.video-gallery .video-thumbs .thumb-item {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 10px;
  display: block;
}

.overview {
  position: relative;
}

.overview .discontinued-product {
  background: #f3f3f3;
  margin: 0 0 20px;
}

.overview .discontinued-product h4 {
  display: inline-block;
  font-size: 14px;
  padding: 17px 40px 17px 17px;
  background: url('../images/discontinued-product-icon.png') no-repeat 13px center;
  color: var(--primary);
}

.overview .product-name {
  margin: 0 0 15px;
}

.overview .product-name h1 {
  font-size: 24px;
  line-height: 33px;
  font-weight: 600;
  color: var(--black);
}

.overview .short-description {
  margin: 0 0 15px;
  line-height: 22px;
  color: var(--grey);
}

.product-no-reviews,
.product-reviews-overview {
  margin: 0 0 25px;
  color: var(--dark-grey);
}

.product-no-reviews a {
  text-decoration: underline;
}

.product-review-box .rating {
  width: 95px;
  height: 14px;
  background: url('../images/rating1.png') repeat-x;
}

.review-item-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px !important;
}

.vendor-product-reviews .product-review-box {
  width: auto;
}

.vendor-product-reviews-title {
  margin-bottom: 20px;
  font-size: 16px;
}

.vendor-page .block {
  max-width: 100%;
  text-align: left;
}

.review-item-info .review-product-name a,
.vendor-page .block a {
  display: inline-block;
  color: var(--theme-color);
  cursor: pointer;
}

.product-review-box .rating div {
  height: 14px;
  background: url('../images/rating2.png') repeat-x;
  font-size: 0px;
  line-height: 0px;
}

.product-review-links {
  display: inline-block;
}

.product-review-links.add-review::before {
  content: "|";
  padding: 0 5px;
}

.add-review.product-no-reviews::before {
  display: none;
}

.product-review-links a {
  text-decoration: underline;
}

.product-review-links a:hover,
.product-review-links a:focus {
  color: var(--theme-color);
}

.product-essential .top-items-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.product-essential .sku {
  padding-left: 8px;
  border-left: 1px solid var(--light-grey);
  color: var(--black);
}
  .product-essential .sku .value {
    color: var(--black);
  }
.product-essential a.product-review-tab {
  color: var(--secondary);
  padding-left: 8px;
  border-left: 1px solid var(--light-grey);
}

.product-essential .stock.in-stock {
  color: var(--green);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.product-essential .stock.in-stock span {
  color: var(--green);
}

.product-essential .stock.in-stock::before {
  content: "\e92e";
  font-family: 'icomoon' !important;
}

.product-essential .stock.out-of-stock {
  color: #F63538;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.product-essential .stock.out-of-stock span {
  color: #F63538;
}

.product-essential .stock.out-of-stock::before {
  content: "\ea23";
  font-family: 'icomoon' !important;
}

.product-essential .product-review-box {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.overview .value,
.variant-overview .value {
  color: var(--dark-grey);
}

.overview .value a,
.variant-overview .value a {
  color: var(--grey);
}

.overview .value a:hover,
.overview .value a:focus,
.variant-overview .value a:hover,
.variant-overview .value a:focus {
  text-decoration: underline;
}

.product-vendor span {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.image-overlay-buttons .add-to-wishlist {
  margin-bottom: 8px;
}

.image-overlay-buttons .add-to-compare-list-button,
.image-overlay-buttons .add-to-wishlist-button {
  width: 38px;
  height: 38px;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #ff3549;
  cursor: pointer;
  font-size: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.image-overlay-buttons .add-to-wishlist-button:before {
  content: "\e980";
  font-size: 16px;
  font-family: 'icomoon' !important;
}

.image-overlay-buttons .add-to-compare-list-button:before {
  content: "\e9c6";
  font-size: 16px;
  font-family: 'icomoon' !important;
}

.overview-buttons {
  margin: 0 0 25px;
  font-size: 0;
}

.overview-buttons div {
  width: 80%;
  margin: 0 auto 3px;
}

.overview .button-2,
.variant-overview .button-2 {
  display: block;
  width: 100%;
  border: none;
  background-color: #eaeaea;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 12px 40px 12px 15px;
  text-align: right;
  font-size: 14px; /*reset zeroing*/
  color: var(--grey);
}

.overview .button-2:hover,
.overview .button-2:focus,
.variant-overview .button-2:hover,
.variant-overview .button-2:focus {
  background-color: var(--light-grey);
}

.overview .add-to-compare-list-button {
  background-image: url('../images/compare-button.png');
}

.overview .email-a-friend-button {
  background-image: url('../images/email-button.png');
}

.overview .subscribe-button,
.variant-overview .subscribe-button {
  background-image: url('../images/email-button.png');
}

.overview .download-sample-button,
.variant-overview .download-sample-button {
  background-image: url('../images/download-button.png');
}

.overview .add-to-wishlist-button,
.variant-overview .add-to-wishlist-button {
  background-image: url('../images/wishlist-button.png');
}

.overview .manufacturers {
  margin: 0 0 20px;
}

.overview .availability .back-in-stock-subscription,
.variant-overview .availability .back-in-stock-subscription {
  display: inline-block;
}

.overview .additional-details,
.variant-overview .additional-details {
  margin: 0 0 20px;
}

.overview .additional-details div,
.variant-overview .additional-details div {
  margin: 0 0 15px;
}

.overview .delivery,
.variant-overview .delivery {
  overflow: hidden;
}

.overview .free-shipping,
.variant-overview .free-shipping {
  display: inline-block;
  margin: 10px 0;
  background: url('../images/shipping.png') right center no-repeat;
  padding: 2px 28px 2px 0;
  font-weight: bold;
  color: var(--dark-grey);
}

.overview .free-shipping.invisible,
.variant-overview .free-shipping.invisible {
  display: none;
}

.overview .delivery-date,
.variant-overview .delivery-date {
  margin: 0 0 15px;
}

.overview .delivery-date span, .variant-overview .delivery-date span {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
}

.overview .min-qty-notification,
.variant-overview .min-qty-notification {
  margin: 10px 0;
  font-style: italic;
  color: var(--dark-grey);
}

.overview .download-sample,
.variant-overview .download-sample {
  display: inline-block;
  margin: 0 0 25px;
}

.overview .prices,
.variant-overview .prices {
  margin: 0 0 15px;
  overflow: hidden;
}

.overview .prices > div,
.variant-overview .prices > div {
  margin: 0 0 5px;
}

.overview .prices > div > span,
.variant-overview .prices > div > span {
  vertical-align: middle;
}

.variant-overview .old-product-price,
.overview .non-discounted-price,
.variant-overview .non-discounted-price {
  font-size: 14px;
  color: var(--medium-grey);
  text-decoration: line-through;
}

.overview .product-price,
.variant-overview .product-price {
  font-size: 20px;
  font-weight: bold;
  color: var(--dark-grey);
}

.overview .tax-shipping-info a,
.variant-overview .tax-shipping-info a {
  color: var(--theme-color);
}

.overview .tax-shipping-info a:hover,
.overview .tax-shipping-info a:focus,
.variant-overview .tax-shipping-info a:hover,
.variant-overview .tax-shipping-info a:focus {
  text-decoration: underline;
}

.customer-entered-price {
  margin: 0 0 20px;
  overflow: hidden;
}

.customer-entered-price .price-input label {
  display: block;
  margin: 0 0 5px;
  font-weight: bold;
  color: var(--dark-grey);
}

.customer-entered-price .price-input input {
  width: 170px;
  text-align: center;
}

.customer-entered-price .price-range {
  margin: 5px 0 0;
  color: var(--grey);
}

.tier-prices {
  margin: 0 0 20px;
}

.tier-prices .title {
  display: none;
}

.tier-prices table td {
  border: 1px solid var(--light-grey);
  padding: 10px;
  color: var(--dark-grey);
}

.tier-prices .field-header {
  min-width: 80px;
}

.tier-prices .item-price {
  background-color: #f9f9f9;
  font-size: 16px;
  color: var(--primary);
}

.product-essential .product-price {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.product-essential .product-price .main-price {
  display: flex;
  flex-direction: column;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--secondary);
}

.product-essential .product-price .tax-suffix {
  font-size: 12px;
  font-weight: 400;
  color: var(--grey);
  margin-top: 6px;
  line-height: 1.2;
  text-transform: none;
}

.product-essential .product-price .old-product-price {
  margin-top: 4px;
}

.product-essential .product-price .old-product-price span {
  font-size: 20px;
  font-weight: 400;
  color: var(--medium-grey);
  text-decoration: line-through;
  white-space: nowrap;
}

.product-essential .product-price .price-diff {
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
  margin-top: 4px;
}

.overview .add-to-cart {
  margin: 15px 0 15px;
}

.overview .add-to-cart-panel,
.variant-overview .add-to-cart-panel {
  display: inline-block;
  position: relative;
}

.overview .add-to-cart-panel > *,
.variant-overview .add-to-cart-panel > * {
  float: right;
}

.overview .qty-label,
.variant-overview .qty-label {
  display: none !important;
}

.overview .qty-input,
.variant-overview .qty-input {
  width: 45px;
  height: 43px;
  padding: 0 12px;
  text-align: center;
  font-size: 15px;
  color: var(--dark-grey);
}

.overview .qty-dropdown,
.variant-overview .qty-dropdown {
  height: 43px;
  padding: 0 12px;
  font-size: 15px;
  color: var(--dark-grey);
}

.overview .add-to-cart-button,
.variant-overview .add-to-cart-button {
  height: 43px;
  border: none;
  background-color: var(--theme-color);
  padding: 0 24px;
  font-size: 15px;
  color: var(--white);
  text-transform: uppercase;
}

.product-essential .add-to-cart-panel {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
/* Quantity Box */
.product-essential .qty-wrapper {
  width: 125px;
  height: 48px;
  border: 1px solid var(--medium-grey);
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.product-essential .qty-wrapper .qty-button {
  width: 35px;
  height: 100%;
  border: 0;
  background: transparent;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.product-essential .qty-wrapper .minus {
  color: var(--black);
}

.product-essential .qty-wrapper .qty-input {
  flex: 1;
  border: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  outline: none;
  padding: 0;
  min-width: 0;
}
/* Buttons */
.product-essential .add-to-cart-panel .button-1 {
  height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.2s ease;
  flex: 1;
}
/* Add To Cart */
.product-essential .add-to-cart-button {
  background: var(--primary);
}

.product-essential .add-to-cart-panel .button-1.buynow-btn {
  background: var(--active-color);
  margin: 0;
}
/* Icon */
.product-essential .add-to-cart-panel .button-1 i {
  font-size: 16px;
  line-height: 1;
}
/* Hover */
.product-essential .add-to-cart-button:hover {
  background: #f12828;
}

.product-essential .buynow-btn:hover {
  background: #00457c;
}

.overview .add-to-cart-button:hover,
.overview .add-to-cart-button:focus,
.variant-overview .add-to-cart-button:hover,
.variant-overview .add-to-cart-button:focus {
  background-color: var(--active-color);
}

.product-essential .product-share-button {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-block: 15px;
  padding-top: 5px;
}

.product-essential .product-share-button .share-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}
/* Share Buttons Wrapper */
.product-essential .product-share-button .sharethis-inline-share-buttons {
  display: flex !important;
  align-items: center;
  gap: 12px;
}
/* Button */
.product-essential .product-share-button .st-btn {
  width: 30px;
  height: 30px !important;
  min-width: 30px;
  padding: 0 !important;
  border: 1px solid var(--light-grey) !important;
  border-radius: 50% !important;
  background: #fff !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.2s ease;
  cursor: pointer;
}

.product-essential .product-share-button .st-btn img {
  display: none !important;
}

.product-essential .product-share-button .st-btn::before {
  content: "\e919";
  font-family: "icomoon";
  font-size: 16px;
  color: var(--active-color);
  line-height: 1;
  font-weight: 500;
}

.product-essential .product-share-button .st-btn:hover {
  border-color: #005293;
  background: #f7faff !important;
}

.product-essential .product-share-button .st-btn > span {
  display: none !important;
}
/* Facebook */
.product-essential .product-share-button .st-btn[data-network="facebook"]::before {
  content: "\e95d";
}
/* Twitter / X */
.product-essential .product-share-button .st-btn[data-network="twitter"]::before {
  content: "\ea14";
}
/* WhatsApp */
.product-essential .product-share-button .st-btn[data-network="whatsapp"]::before {
  content: "\ea13";
}
/* Messenger */
.product-essential .product-share-button .st-btn[data-network="messenger"]::before {
  content: "\e99d";
}
/* Main Box */
.product-essential #product-details-tab {
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  background: #fff !important;
  padding: 20px !important;
}
/* Remove jQuery UI defaults */
.product-essential #product-details-tab.ui-widget,
.product-essential #product-details-tab .ui-widget-content,
.product-essential #product-details-tab .ui-widget-header {
  color: inherit !important;
}
/* Tabs Nav */
.product-essential #product-details-tab .ui-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  border: 0 !important;
  margin-bottom: 20px !important;
}
/* Tab Item */
.product-essential #product-details-tab .ui-tabs-tab {
  margin: 0 !important;
  min-width: auto;
}
/* Dash Separator */
.product-essential #product-details-tab .ui-tabs-tab:not(:last-child)::after {
  content: "-";
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: #666;
}
/* Tab Link */
.product-essential #product-details-tab .ui-tabs-anchor {
  padding: 0 !important;
  font-size: 16px;
  font-weight: 600;
  color: var(--grey) !important;
  /* text-decoration: none !important; */
  background: transparent !important;
  /* outline: none !important; */
  border: none;
}
/* Active Tab */
.product-essential #product-details-tab .ui-tabs-active .ui-tabs-anchor,
.product-essential #product-details-tab .ui-state-active .ui-tabs-anchor {
  color: var(--theme-color) !important;
}
/* Panels */
.product-essential #product-details-tab .ui-tabs-panel {
  padding-left: 5px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.product-essential #product-details-tab .ui-helper-clearfix:before,
.product-essential #product-details-tab .ui-helper-clearfix:after {
  content: none;
}

div#product-review, div#product-specification, div#full-description {
  max-height: 270px;
  overflow-y: auto;
  overflow-x: hidden;
}

.product-specs-box .title {
  margin-bottom: 15px;
  color: var(--active-color);
}

.full-description {
  clear: both;
  line-height: 24px;
}

.product-collateral {
  margin: 0 0 30px;
}

.product-collateral .title {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--dark-grey);
}

.product-collateral .title strong {
  font-weight: normal;
}

.product-variant-line {
  margin: 0 0 30px;
  border-bottom: 1px solid var(--light-grey);
  padding: 0 0 20px;
}

.product-variant-line:after {
  content: "";
  display: block;
  clear: both;
}

.variant-picture {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 15px;
  overflow: hidden;
}

.variant-overview {
  width: 100%;
}

.variant-overview .variant-name {
  margin: 0 0 10px;
  padding: 10px 0;
  font-size: 16px;
  font-weight: bold;
  color: var(--theme-color);
}

.variant-overview .variant-description {
  margin: 0 0 15px;
  line-height: 22px;
}

.variant-overview .add-to-wishlist {
  margin: 0 0 25px;
}

.variant-overview .add-to-wishlist-button {
  display: inline-block;
  width: auto;
}

.variant-overview .add-to-cart {
  margin: 0 0 10px;
}

.product-specs-box {
  margin: 0 0 40px;
}

.product-specs-box td {
  border: 1px solid var(--light-grey);
  padding: 10px;
}

.product-specs-box td.spec-group-name {
  border: 0;
  padding-top: 20px;
  font-size: 16px;
  color: var(--dark-grey);
}

.product-tags-list {
  font-size: 0;
}

.product-tags-list li {
  display: inline-block;
  font-size: 14px; /*reset zeroing*/
}

.product-tags-list li.separator {
  margin: 0 3px 0 5px;
}

.product-tags-list a {
  display: inline-block;
  line-height: 24px;
}

.product-tags-list a:hover,
.product-tags-list a:focus {
  color: var(--dark-grey);
}

.attributes {
  margin: 10px 0;
}

.attributes dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  overflow: hidden;
  padding: 0 2px; /* fix for Chrome in Mac, the checkboxes get cut off */
}

.attributes dt,
.attribute-label {
  display: block;
  margin: 0 0 5px;
  white-space: nowrap;
  font-weight: bold;
  color: var(--dark-grey);
}

.attributes dd,
.attribute-data {
  margin: 0 0 10px;
}

.attributes li {
  margin: 8px 0 12px;
}

.attributes select {
  width: auto;
  min-width: 100px;
  max-width: 100%;
}

.attributes .option-list label {
  margin: 0 5px;
}

.attributes .datepicker {
  width: 280px;
  text-align: center;
  color: var(--dark-grey);
}

.attributes .qty-box input {
  width: 48px;
  height: 32px;
  text-align: center;
}

.attributes .option-list:not(.attribute-squares) .disabled {
  opacity: .5;
}

.attributes .attribute-squares .disabled .attribute-square {
  cursor: default;
  opacity: .25;
}

.attributes .attribute-squares .disabled .attribute-square-container {
  background: linear-gradient(to top right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) calc(50% - 1.5px), #e91e63 50%, rgba(0,0,0,0) calc(50% + 1.5px), rgba(0,0,0,0) 100%), linear-gradient(to top left, rgba(0,0,0,0) 0%, rgba(0,0,0,0) calc(50% - 1.5px), #e91e63 50%, rgba(0,0,0,0) calc(50% + 1.5px), rgba(0,0,0,0) 100%);
}

.attributes .attribute-squares .tooltip-container .not-available-text {
  font-size: 12px;
}

.attributes .attribute-squares.color-squares .tooltip-container .not-available-text {
  margin: 5px;
}

.attributes .attribute-squares.color-squares .tooltip-container {
  width: 120px;
  display: none;
}

.attributes .attribute-squares.color-squares li:hover .tooltip-container {
  margin-right: -42px;
}

.attributes .attribute-squares.color-squares .disabled .tooltip-container {
  display: block;
}

.attributes .attribute-squares.image-squares .tooltip-container .not-available-text {
  margin-bottom: 5px;
  display: none;
}

.attributes .attribute-squares.image-squares .disabled .tooltip-container .not-available-text {
  display: block;
}

.attributes select option.disabled,
.attributes select option:disabled {
  color: #cecece;
}

.attributes dt {
  display: inline-flex;
  align-items: flex-start;
  margin: 10px 0 0 18px;
  vertical-align: middle;
}

.attributes dt .text-prompt {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.attributes dt .required {
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 700;
  margin-right: 4px;
}

.attributes dd {
  display: flex;
  vertical-align: middle;
  margin: 0 0 15px;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.attributes dd .option-list {
  display: contents;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.attributes dd .option-list li {
  position: relative;
  margin: 0;
  padding: 0;
}

.attributes dd input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.attributes dd input[type="radio"] + label {
  min-width: 40px;
  height: 40px;
  padding-inline: 4px;
  border: 1px solid var(--medium-grey);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  color: var(--medium-grey);
  background: #fff;
  cursor: pointer;
  line-height: 1;
  box-sizing: border-box;
  margin: 0;
}

.attributes dd input[type="radio"]:checked + label {
  border-color: #ff1f2d;
  color: #ff1f2d;
}

.attributes dd .product-attribute-picture-btn {
  height: 40px;
  padding: 0 10px !important;
  border-radius: 3px;
  background: var(--light-grey);
  color: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px !important;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  margin-block: 0;
}

.attributes dd i.ns-Vector-2 {
  font-size: 20px;
  rotate: -38deg;
  margin-left: 8px;
  font-weight: 600;
}

.ui-datepicker {
  width: 280px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  background-color: var(--white);
  text-align: center;
  /*override jQuery UI styles, do not delete doubled properties*/
  border: none;
  border-radius: 0;
  padding: 0;
  font: normal 14px Arial, Helvetica, sans-serif;
  color: var(--grey);
}

.ui-datepicker-header {
  position: relative;
  height: 32px;
  background-color: var(--theme-color);
  color: var(--white);
  /*override jQuery UI styles, do not delete doubled properties*/
  border: none;
  border-radius: 0;
  background-image: none;
  padding: 0 !important;
  font-weight: normal;
}

.ui-datepicker-header a {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 0;
  /*override jQuery UI styles, do not delete doubled properties*/
  top: 0 !important;
  width: 32px !important;
  height: 32px !important;
  border: none !important;
}

.ui-datepicker-header a.ui-datepicker-prev {
  right: 0;
  background: url('../images/calendar-prev.png') center no-repeat;
}

.ui-datepicker-header a.ui-datepicker-next {
  left: 0;
  background: url('../images/calendar-next.png') center no-repeat;
}

.ui-datepicker-header a span {
  /*override jQuery UI styles, do not delete doubled properties*/
  display: none !important;
}

.ui-datepicker-title {
  position: relative;
  z-index: 0;
  line-height: 32px;
  font-weight: bold;
  text-transform: uppercase;
  /*override jQuery UI styles, do not delete doubled properties*/
  line-height: 32px !important;
}

.ui-datepicker-calendar {
  /*override jQuery UI styles, do not delete doubled properties*/
  margin: 0 !important;
  font-size: 14px !important;
}

.ui-datepicker-calendar th {
  background-color: #eee;
}

.ui-datepicker-calendar th,
.ui-datepicker-calendar td {
  width: 14.285%;
  border: 1px solid var(--light-grey);
  /*override jQuery UI styles, do not delete doubled properties*/
  padding: 0;
}

.ui-datepicker-calendar th span,
.ui-datepicker-calendar td a {
  display: block;
  min-height: 32px;
  line-height: 32px;
  color: var(--dark-grey);
}

.ui-datepicker-calendar td a {
  /*override jQuery UI styles, do not delete doubled properties*/
  border: none !important;
  background: none !important;
  padding: 0;
  text-align: center;
  color: var(--dark-grey) !important;
}

.ui-datepicker-calendar .ui-state-active {
  outline: 2px solid var(--theme-color);
  font-weight: bold;
  color: var(--theme-color);
  /*override jQuery UI styles, do not delete doubled properties*/
  color: #4ab2f1 !important;
}

.attribute-squares {
  font-size: 0;
  display: inline-block;
}

.attribute-squares li {
  display: inline-block;
  margin: 0 5px 5px;
  text-align: center;
}

.attribute-squares .attribute-square-container {
  display: block;
  position: relative;
  z-index: 0;
  padding: 1px;
}

.attribute-squares label {
  display: block;
  margin: 0 !important;
  overflow: hidden;
}

.attribute-squares .attribute-square {
  display: inline-block !important;
  width: 40px !important;
  height: 30px !important;
  border-radius: 4px;
  cursor: pointer;
}

.attribute-squares .selected-value .attribute-square-container::before {
  content: '\e92d';
  font-family: icomoon !important;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  font-size: 20px;
  color: var(--white);
}

.attribute-squares li input {
  display: none;
}

.attribute-squares-padding {
  padding: 0 0 0 5px;
}

.tooltip-container {
  position: absolute;
  width: 200px;
  color: var(--black);
  background: var(--white);
  border: 1px solid #eeeeee;
  text-align: center;
  visibility: hidden;
  border-radius: 5px;
}

.tooltip-container:before {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 50%;
  margin-right: -7px;
  width: 0;
  height: 0;
  border-bottom: 7px solid #eeeeee;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}

.tooltip-container:after {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 50%;
  margin-right: -6px;
  width: 0;
  height: 0;
  border-bottom: 6px solid var(--white);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

.attribute-squares li:hover .tooltip-container,
.attribute-squares li:focus .tooltip-container {
  visibility: visible;
  margin-right: -83px;
  margin-top: 5px;
  z-index: 999;
}

.tooltip-container .tooltip-header {
  background-color: #F6F6F6;
  height: 25px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding-right: 10px;
  padding-top: 5px;
  text-align: right;
  width: 198px;
  font-size: 15px;
  border-bottom: 1px #EEEEEE solid;
}

.tooltip-container .tooltip-body {
  margin: 5px;
}

.tooltip-container .tooltip-body img {
  border: 0px var(--white);
  width: 190px;
}

.giftcard {
  margin: 0 0 20px;
  overflow: hidden;
}

.giftcard div {
  margin: 0 0 10px;
}

.giftcard label {
  display: block;
  margin: 0 auto 5px;
  font-weight: bold;
  color: var(--dark-grey);
}

.giftcard input,
.giftcard textarea {
  width: 350px;
  max-width: 100%;
}

.giftcard textarea {
  height: 150px;
}
/********** PRODUCT REVIEWS **********/



.product-reviews h1 a {
  color: var(--theme-color);
}

.product-reviews h1 a:before,
.product-reviews h1 a:after {
  content: "''";
}

.product-reviews .title {
  margin: 0 0 25px;
  color: var(--dark-grey);
}

.product-reviews .write-review .title {
  margin: 0 0 10px;
  font-size: 0;
  color: var(--dark-grey);
}

.product-reviews .title strong {
  color: var(--active-color);
}

.write-review {
  margin: 0px;
}

.write-review .inputs {
  font-size: initial;
  margin-bottom: 20px;
}

.write-review .review-text {
  width: 100%;
  padding: 12px 14px 12px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--black);
  background: #fff;
  border: 1.5px solid var(--light-grey);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  min-height: 80px;
  box-shadow: 1px -1px 0px 0px #0000000D inset;
}

.write-review .fieldset {
  margin: 0 0 10px;
}

.write-review .buttons {
  margin-bottom: 0;
}


.tooltip {
  position: initial;
  display: inline-block;
  border-bottom: 1px dotted black;
  color: var(--dark-grey);
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: auto;
  background: #f0f0f0 no-repeat 0% 5%;
  border: #c0c0c0 1px dotted;
  text-align: right;
  padding: 10px 5px 5px 10px;
  position: absolute;
  z-index: 1;
  right: 10%;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
}

.tooltip:hover .tooltiptext,
.tooltip:focus .tooltiptext {
  visibility: visible;
  opacity: 1;
  cursor: help;
}

.product-reviews .form-fields {
  border: none;
  background: transparent;
  padding: 0;
}

.product-reviews .inputs label {
  display: block;
  text-align: right;
  margin-bottom: 5px;
}

.product-reviews .write-review .review-rating label {
  text-align: center;
  width: 100%;
}

.product-reviews .write-review .review-rating {
  display: flex;
  justify-content: space-between;
}

.product-reviews .write-review .review-rating div.name-description {
  width: auto;
  margin-bottom: 10px;
  min-width: initial;
}

.product-reviews .write-review .rating-wrapper {
  display: block;
  text-align: center;
}

.write-review .review-rating label {
  display: block;
  margin: 0 0 5px;
  font-size: 14px;
  color: var(--dark-grey);
}

.write-review .review-rating div.first {
  color: var(--primary);
}

.write-review .review-rating div.rating-options {
  padding-top: 2px;
}

.write-review .review-rating div.rating-options input {
  vertical-align: baseline;
}

.write-review .review-rating div.last {
  color: var(--green);
}

.write-review .captcha-box {
  margin: 15px 0 0;
}

.write-review .button-1 {
  border: none;
  background-color: var(--theme-color);
  padding: 10px 25px;
  text-align: center;
  font-size: 15px;
  color: var(--white);
  text-transform: uppercase;
  border-radius: 6px;
}

.write-review .button-1:hover,
.write-review .button-1:focus {
  background-color: var(--active-color);
}

.product-reviews .result,
.product-reviews .message-error {
  margin: 0 0 20px;
}

.product-review-list {
  overflow: hidden;
}

.product-review-item {
  margin: 0 0 20px;
}

.product-review-item .review-item-head {
  border-top: 1px solid var(--light-grey);
  overflow: hidden;
  background-color: #f6f6f6;
  padding: 10px;
}

.product-review-item .review-title {
  line-height: 20px;
  font-size: 15px;
  color: var(--dark-grey);
}

.product-review-item .product-review-box {
  margin: 3px 0 0;
}

.product-review-item .review-content {
  padding: 20px 10px;
}

.product-review-item .review-text {
  margin: 0 0 15px;
  line-height: 22px;
  color: var(--dark-grey);
}

.product-review-item .avatar {
  margin: 0 0 10px;
}

.product-review-item .reply {
  margin: 15px 0;
  border-top: 1px solid var(--light-grey);
}

.product-review-item .reply-header {
  margin: 15px 0;
  font-weight: bold;
}

.product-review-item .reply-text {
  line-height: 22px;
}

.product-review-item .review-info {
  margin: 0 0 5px;
}

.product-review-item .review-info label {
  font-weight: normal;
}

.product-review-item .review-info a,
.product-review-helpfulness .vote {
  display: inline-block;
  padding: 0 5px;
  color: var(--theme-color);
  cursor: pointer;
}

.product-review-helpfulness .question {
  margin: 0 0 0 5px;
  font-style: italic;
}

.product-review-helpfulness .result {
  margin: 0 10px 0 0;
}

.product-review-item .review-type-rating-ext {
  overflow: hidden;
  margin: 0 0 20px;
}

.product-essential .badge-wrapper.badge-left {
  z-index: 10000;
  right: 145px;
}

.tamara-box {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px 6px;
  padding: 6px 10px;
  background: rgba(230, 230, 230, 0.6);
  border-radius: 6px;
  font-size: 12px;
  line-height: 16px;
  color: var(--black);
}

.tamara-box a {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
}

.tamara-box img {
  width: auto;
  height: 18px;
  vertical-align: middle;
  flex-shrink: 0;
  margin-right: 7px;
  border-radius: 10px;
}
/********** WISHLIST & COMPARE LIST **********/

.wishlist-page .wishlist-content .message-error {
  margin: 0 0 20px;
}

.wishlist-page .cart-item-add-to-cart {
  margin-bottom: 8px;
}

.wishlist-page .cart-item-add-to-cart label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey);
  cursor: pointer;
}

.wishlist-page .wishlist-sidebar-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.wishlist-page .wishlist-sidebar-actions .button-1,
.wishlist-page .wishlist-sidebar-actions .button-2 {
  width: 100%;
  min-height: 48px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
}

  .wishlist-page .wishlist-sidebar-actions .update-wishlist-button,
  .wishlist-page .wishlist-sidebar-actions .email-a-friend-wishlist-button {
    border: 1px solid var(--light-grey);
    background: var(--secondary);
    color: var(--white);
  }

.wishlist-page .wishlist-sidebar-actions .wishlist-add-to-cart-button {
  border: 0;
  background: var(--primary);
  color: var(--white);
}

.wishlist-page .wishlist-sidebar-actions .wishlist-add-to-cart-button:hover,
.wishlist-page .wishlist-sidebar-actions .wishlist-add-to-cart-button:focus {
  background-color: var(--active-color);
}
.page.email-a-friend-page {
  max-width: 800px;
  margin: auto;
  background: #fff;
}
  .page.email-a-friend-page .form-fields {
    position: relative;
    border-top: 1px solid #e6e6e6;
    background-color: #fff;
    padding: 30px 15px;
  }
.wishlist-page .share-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--light-grey);
  text-align: start;
  font-size: 13px;
  line-height: 1.45;
  color: var(--grey);
  display:none;
}

.wishlist-page .share-info .share-label {
  display: block;
  margin-bottom: 6px;
}

.wishlist-page .share-info .share-link {
  display: block;
  word-break: break-all;
  font-weight: 600;
  color: var(--dark-grey);
  text-decoration: none;
}

.wishlist-page .share-info .share-link:hover,
.wishlist-page .share-info .share-link:focus {
  color: var(--secondary);
}

.compare-products-page {
  position: relative;
  overflow: hidden;
}

.compare-products-page .clear-list {
  display: inline-block;
  margin: 0 0 20px;
  background-color: var(--theme-color);
  padding: 10px 15px;
  font-size: 12px;
  color: var(--white);
  text-transform: uppercase;
}

.compare-products-page .clear-list:hover,
.compare-products-page .clear-list:focus {
  background-color: var(--active-color);
}

.compare-products-page .table-wrapper {
  margin: 0 0 30px;
  padding: 0 0 1px; /*IE mobile table border fix*/
}

.compare-products-table td {
  min-width: 150px;
  border: 1px solid var(--light-grey);
  background-color: var(--white);
  padding: 20px;
  text-align: right;
  vertical-align: top;
  color: var(--dark-grey);
}

.compare-products-table td:first-child {
  min-width: 0;
}

.compare-products-table td label {
  font-weight: normal;
  color: var(--grey);
}

.compare-products-table .specification-group td {
  border: 0;
  padding: 20px 10px 10px 10px;
}

.compare-products-table .specification-group td label {
  font-size: 16px;
  color: var(--dark-grey);
}

.compare-products-table .remove-button {
  display: inline-block;
  border: none;
  background: url('../images/remove.png') right center no-repeat;
  padding: 0 18px 0 0;
  font-size: 12px;
  color: var(--grey);
}

.compare-products-table .remove-button:hover,
.compare-products-table .remove-button:focus {
  color: var(--theme-color);
}

.compare-products-table .picture {
  display: block;
  position: relative;
  max-width: 200px;
  height: 200px;
  overflow: hidden;
}

.compare-products-table .picture img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.compare-products-table .product-name td {
  font-weight: bold;
}

.compare-products-table .product-name td a:hover,
.compare-products-table .product-name td a:focus {
  color: var(--theme-color);
}

.compare-products-table .short-description td {
  line-height: 22px;
}

.compare-products-table .full-description td {
  display: none;
}

.compare-products-page .no-data {
  margin: 25px 0 0;
}


/*********** TOPICS ***********/



.topic-block {
  margin: 0 0 25px;
}

.topic-block-title {
  min-height: 50px;
  margin: 0 0 25px;
  border-bottom: 1px solid var(--light-grey);
  padding: 0 0 15px;
}

.topic-block-title h2 {
  font-size: 30px;
  font-weight: normal;
}

.topic-block-body {
  text-align: justify;
  line-height: 24px;
  font-size: 16px;
}

.topic-page .page-title {
  border: none;
}

  .topic-page .page-title h1 {
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
  }

.topic-page .page-body {
  text-align: justify;
  line-height: 22px;
  color: var(--black);
}

.topic-block a,
.topic-page a {
  text-decoration: underline;
}

.topic-block strong,
.topic-page strong {
  color: var(--black);
}

.home-page .topic-block {
  margin: 0 0 50px;
}

.popup-window .topic-page {
  padding: 15px;
}

.not-found-page p {
  margin: 30px 15px;
}

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

.enter-password-title {
  margin: 0 0 20px;
  color: var(--dark-grey);
}

.enter-password-form {
  display: inline-block;
  overflow: hidden;
}

.enter-password-form input[type="password"] {
  float: right;
  width: 200px;
  height: 40px;
  margin: 0 0 0 -1px;
}

.enter-password-form button[type="submit"] {
  float: right;
  width: auto;
  min-width: 86px;
  height: 40px;
  border: none;
  background-color: var(--theme-color);
  padding: 0 15px;
  color: var(--white);
  text-transform: uppercase;
}

.enter-password-form button[type="submit"]:hover,
.enter-password-form button[type="submit"]:focus {
  background-color: var(--active-color);
}


/*********** CONTACT & EMAIL A FRIEND & APPLY FOR VENDOR ACCOUNT ***********/



.contact-page .page-title,
.email-a-friend-page .page-title,
.apply-vendor-page .page-title {
  margin: 0 0 -1px;
}

.contact-page .result,
.contact-page .message-error,
.email-a-friend-page .result,
.email-a-friend-page .message-error,
.apply-vendor-page .result,
.apply-vendor-page .message-error {
  margin: 20px 0;
}

.contact-page .button-1,
.email-a-friend-page .button-1,
.apply-vendor-page .button-1 {
  min-width: 140px;
  border: none;
  background-color: var(--theme-color);
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: var(--white);
  text-transform: uppercase;
}

.contact-page .button-1:hover,
.contact-page .button-1:focus,
.email-a-friend-page .button-1:hover,
.email-a-friend-page .button-1:focus,
.apply-vendor-page .button-1:hover,
.apply-vendor-page .button-1:focus {
  background-color: var(--active-color);
}

.contact-page .topic-block,
.email-a-friend-page .title,
.apply-vendor-page .title {
  margin: 25px 0;
}

.email-a-friend-page .title h2 {
  font-weight: normal;
  color: var(--theme-color);
}

/* Tuwayq: Contact Us polish (scoped to page) */
html.html-contact-page .contact-page .page-body {
  max-width: 820px;
  margin: 0 auto;
  text-align: start;
}

html.html-contact-page .contact-page .form-fields {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-top: none;
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

html.html-contact-page .contact-page .inputs {
  white-space: nowrap;
  text-align: start;
}

html.html-contact-page .contact-page .page-title {
  border-bottom: none;
}

html.html-contact-page .contact-page .inputs input[type="text"],
html.html-contact-page .contact-page .inputs input[type="email"],
html.html-contact-page .contact-page .inputs input[type="tel"],
html.html-contact-page .contact-page .inputs input[type="password"],
html.html-contact-page .contact-page .inputs textarea {
  width: 100%;
  max-width: 100%;
}

html.html-contact-page .contact-page .inputs textarea {
  min-height: 140px;
  resize: vertical;
}

html.html-contact-page .contact-page .buttons {
  margin-top: 16px;
  text-align: start;
}

html.html-contact-page .contact-page .button-1.contact-us-button {
  border-radius: 10px;
  min-width: 180px;
}

@media (max-width: 1000px) {
  html.html-contact-page .contact-page .form-fields {
    padding: 16px 14px;
  }

  html.html-contact-page .contact-page .buttons {
    text-align: center;
  }

  html.html-contact-page .contact-page .button-1.contact-us-button {
    width: 100%;
  }
}

.apply-vendor-page .terms-of-service {
  text-align: center;
}

.apply-vendor-page .terms-of-service > * {
  display: inline-block;
  line-height: 32px;
}

.apply-vendor-page .terms-of-service span,
.apply-vendor-page .terms-of-service a {
  color: var(--theme-color);
  cursor: pointer;
}

/********** REGISTRATION, LOGIN, ACCOUNT PAGES  **********/

/* The outlined box */
.inputs input[type="text"],
.inputs input[type="email"],
.inputs input[type="password"],
.inputs input[type="tel"] {
  width: 100%;
  padding: 12px 14px 12px;
  font-size: 15px;
  line-height: 1.4;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid var(--light-grey);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  height: 45px;
  box-shadow: 1px -1px 0px 0px #0000000D inset;
}

/* Floating label sits on top-left of the border */
.inputs > label {
  position: absolute;
  top: -5px;
  right: 12px;
  background: #fff;
  padding: 0 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey);
  line-height: 1;
  pointer-events: none;
  z-index: 10;
  white-space: nowrap;
  margin: 0;
  display: unset;
  width: auto;
}


.gender {
  display: inline-block;
}

.gender span {
  display: inline-block;
  margin: 0 5px;
}

.gender span > * {
  display: inline !important;
  margin: 0 5px;
  line-height: 32px;
}

.date-of-birth .date-picker-wrapper {
  display: inline;
}

.date-of-birth select {
  width: 31%; /*always single line*/
  max-width: 126px;
}

.date-of-birth select + select {
  margin: 0 10px 0 0;
}

.date-of-birth .select-wrapper + .select-wrapper {
  margin: 0 10px 0 0;
}

#check-availability-button {
  margin: 10px 0 0;
  border: none;
  background-color: var(--medium-grey);
  padding: 10px 15px;
  font-size: 12px;
  color: var(--white);
  text-transform: uppercase;
}

#check-availability-button:hover,
#check-availability-button:focus {
  background-color: var(--medium-grey);
}

.inputs.accept-consent {
  text-align: center;
}

.inputs.accept-consent > * {
  display: inline-block;
  line-height: 32px;
}

.inputs.accept-consent span,
.inputs.accept-consent a {
  color: var(--theme-color);
  cursor: pointer;
  font-size: 14px;
}

.inputs.accept-consent label {
  width: auto;
  margin-right: 10px;
  margin-bottom: 0;
}

.registration-page .button-1,
.registration-result-page .button-1,
.login-page .button-1,
.password-recovery-page .button-1,
.account-page .button-1,
.return-request-page .button-1 {
  min-width: 140px;
  border: none;
  background-color: var(--theme-color);
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: var(--white);
  text-transform: uppercase;
}

.registration-page .button-1:hover,
.registration-page .button-1:focus,
.registration-result-page .button-1:hover,
.registration-result-page .button-1:focus,
.login-page .button-1:hover,
.login-page .button-1:focus,
.password-recovery-page .button-1:hover,
.password-recovery-page .button-1:focus,
.account-page .button-1:hover,
.account-page .button-1:focus,
.return-request-page .button-1:hover,
.return-request-page .button-1:focus {
  background-color: var(--active-color);
}

.return-request-page h1 a {
  color: var(--theme-color);
}

.return-request-page .return-request-file {
  font-size: 14px;
  width: 400px;
  margin: 0 auto;
}

.registration-page .message-error,
.login-page .message-error,
.account-page .message-error {
  margin: 0 0 10px;
}

.registration-result-page .result {
  margin: 0 0 30px;
  padding: 30px 0;
  text-align: center;
  font-size: 16px;
  color: var(--green);
}

.customer-info-page .email-to-revalidate,
.customer-info-page .readonly-username,
.customer-info-page .vat-status {
  margin: 0 5px;
  font-size: 14px;
}

.customer-info-page .vat-status {
  display: block;
}

.registration-page .vat-note,
.customer-info-page .vat-note,
.customer-info-page .email-to-revalidate-note {
  display: block;
  font-size: 14px;
  margin-top: 7px;
  white-space: normal;
}

.login-page .customer-blocks {
  margin: 0 0 30px;
}

.login-page .title {
  margin: 0 0 15px;
  font-size: 20px;
  color: var(--dark-grey);
}

.login-page .title strong {
  font-weight: normal;
}

.login-page .new-wrapper {
  margin: 0 0 50px;
}

.login-page .new-wrapper .text {
  margin: 0 0 30px;
  border-top: 1px solid #e6e6e6;
  background-color: #f9f9f9;
  padding: 30px;
  line-height: 22px;
}

.login-page .new-wrapper .topic-block {
  margin: 0;
}

.login-page .new-wrapper .topic-block-body strong {
  color: var(--dark-grey);
}

.login-page .new-wrapper .button-1 {
  margin: 0 0 5px;
}

.login-page .returning-wrapper {
  margin: 0;
}

.login-page .returning-wrapper .form-fields {
  overflow: hidden;
  padding: 30px 15px 0;
}

.login-page .returning-wrapper .inputs.reversed {
  white-space: normal;
}

.login-page .returning-wrapper .inputs.reversed * {
  display: inline-block;
  width: auto;
  margin: 5px;
  font-size: 14px; /*reset zeroing*/
  color: var(--dark-grey);
}

.login-page .returning-wrapper .inputs.reversed a:hover,
.login-page .returning-wrapper .inputs.reversed a:focus {
  color: var(--theme-color);
}

.login-page .captcha-box {
  margin: -15px 0 20px;
}

.login-page .returning-wrapper .buttons {
  background-color: var(--white);
  padding: 30px 0;
}

.login-page .login-password {
  position: relative;
  width: max-content;
  max-width: 100%;
  display: inline-block;
}

.login-page .password-eye {
  content: "";
  display: block;
  height: 24px;
  width: 24px;
  background-image: url('../images/eye-closed.png');
  position: absolute;
  top: calc(50% - 12px);
  left: 10px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  cursor: pointer;
  opacity: .75
}

.login-page .password-eye-open {
  background-image: url('../images/eye.png');
}

.external-authentication {
  margin: 0 0 50px;
  overflow: hidden;
  text-align: center;
}

.external-authentication .title {
  margin: 0 0 15px;
  font-size: 20px;
  color: var(--dark-grey);
}

.external-authentication .buttons {
  margin: 0 0 30px;
  border-top: 1px solid #e6e6e6;
  padding: 30px;
}

.external-auth-errors {
  color: var(--primary);
}

.external-auth-association {
  color: var(--dark-grey);
}

.external-auth-association a {
  color: var(--theme-color);
}

.external-auth-association a:hover,
.external-auth-association a:focus {
  text-decoration: underline;
}

.password-recovery-page .result {
  margin: 0 0 5px;
  font-weight: bold;
  color: var(--dark-grey);
}

.password-recovery-page .tooltip {
  margin: 0 0 25px;
}

.add-more-external-records {
  text-align: center;
}

.add-more-external-records a {
  color: var(--theme-color);
}

.add-more-external-records a:hover,
.add-more-external-records a:focus {
  text-decoration: underline;
}

.account-page .buttons {
  text-align: center;
}

.account-page .description {
  margin: 0 0 25px;
  padding: 0 10px;
}

.account-page .table-wrapper {
  margin: 0 0 30px
}

.gdpr-tools-page .result {
  margin: 20px 0;
  font-size: 13px;
  color: var(--primary);
}

.gdpr-tools-page .buttons {
  margin-top: 20px;
}

.address-list-page .info,
.order-list-page .info {
  margin: 0 0 10px;
  border-top: 1px solid #e6e6e6;
  background-color: #f9f9f9;
  padding: 20px;
  line-height: 26px;
  color: var(--dark-grey);
}

.address-list-page .info .name,
.order-list-page .info .name {
  font-size: 16px;
  font-weight: bold;
}

.address-list-page .button-2,
.order-list-page .button-2 {
  display: inline-block;
  margin: 0 10px 0 0;
  border: none;
  padding: 0 18px 0 0;
  font-size: 12px;
  color: var(--dark-grey);
}

.edit-address-button {
  background: url('../images/edit.png') right center no-repeat;
}

.delete-address-button,
.cancel-recurring-order-button {
  background: url('../images/remove.png') right center no-repeat;
}

.retry-recurring-order-button {
  background: url('../images/retry.png') right center no-repeat;
}

.return-items-button {
  background: url('../images/return.png') right center no-repeat;
}

.order-details-button {
  background: url('../images/details.png') right center no-repeat;
}

.address-list-page .button-2:hover,
.address-list-page .button-2:focus,
.order-list-page .button-2:hover,
.order-list-page .button-2:focus {
  color: var(--theme-color);
}

.address-list-page .add-button {
  margin: 0 0 20px;
  text-align: center;
}

.address-edit-page .page-title {
  margin: 0 0 -1px;
}

.address-edit-page .message-error {
  margin: 20px 0;
}

.address-edit-page .edit-address {
  margin: 0 0 30px;
  border-top: 1px solid #e6e6e6;
  background-color: #f9f9f9;
  padding: 30px 15px;
}

.recurring-payments table td {
  white-space: nowrap;
}

.recurring-payments table td:first-child {
  min-width: 120px;
  white-space: normal;
}

.recurring-payments .button-2 {
  font-size: 14px;
}

.return-request-list-page .details {
  border-top: 1px solid #e6e6e6;
  background-color: #f9f9f9;
  padding: 20px;
  line-height: 22px;
  color: var(--dark-grey);
}

.return-request-list-page label {
  margin: 0 0 0 5px;
}

.return-request-list-page a {
  color: var(--theme-color);
}

.return-request-list-page a:hover,
.return-request-list-page a:focus {
  text-decoration: underline;
}

.return-request-list-page .comments div {
  margin: 10px 0 0;
  font-size: 15px;
  font-style: italic;
  color: var(--dark-grey);
}

.downloadable-products-page table td {
  color: var(--dark-grey);
}

.reward-points-overview {
  margin: 0 0 25px;
}

.reward-points-history table td {
  color: var(--dark-grey);
}

.reward-points-history table td:first-child {
  min-width: 120px;
}

.change-password-page .page-title {
  margin: 0 0 -1px;
}

.change-password-page .result,
.change-password-page .message-error {
  margin: 20px 0;
}

.change-password-page .fieldset {
  margin: 0 0 30px;
}

.change-password-recovery-link {
  text-align: right;
  font-size: 13px;
  margin-top: 5px;
}

.avatar-page .page-title {
  margin: 0;
}

.avatar-page .page-body {
  margin: 0 0 30px;
  overflow: hidden;
  background-color: #f9f9f9;
  padding: 30px 25px;
}

.avatar-page .message-error {
  margin: 0 0 10px;
}

.avatar-page .image {
  margin: 0 0 10px;
}

.avatar-page .image img {
  border: 1px solid var(--light-grey);
}

.avatar-page .button-1 {
  font-size: 14px;
}

.avatar-page .button-2 {
  border: none;
  background-color: var(--medium-grey);
  padding: 10px 15px;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
}

.avatar-page .button-2:hover,
.avatar-page .button-2:focus {
  background-color: var(--medium-grey);
}

.avatar-page .info {
  color: var(--dark-grey);
}

.vendorinfo-page .button-2 {
  border: medium none;
  background-color: var(--medium-grey);
  padding: 10px 15px;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
}

.vendorinfo-page .button-2:hover,
.vendorinfo-page .button-2:focus {
  background-color: var(--medium-grey);
}

.vendorinfo-page .vendor-picture {
  width: 400px;
  margin: 0 auto;
}

.vendorinfo-page .vendor-picture * {
  display: block;
  margin-top: 15px;
}

.check-gift-card-balance-page .page-title {
  margin: 0 0 -1px;
}

.check-gift-card-balance-page .result,
.check-gift-card-balance-page .message-error {
  margin: 20px 0;
}

.check-gift-card-balance-page .fieldset {
  margin: 0 0 30px;
}

/* MY TICKET FORM STYLE STARTS */

/* Container styling - targeted via the form action */
form[action="/customer/addresponse"] .form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  margin: 0;
}

/* Individual input group styling */
form[action="/customer/addresponse"] .inputs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

  /* Label styling */
  form[action="/customer/addresponse"] .inputs label {
    font-weight: 600;
    font-size: 14px;
    color: #333333;
    margin-bottom: 0;
    display: block;
  }

  /* Textarea styling */
  form[action="/customer/addresponse"] .inputs textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    min-height: 100px;
    box-sizing: border-box;
    color: #606264;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

    /* Focus state for better UX */
    form[action="/customer/addresponse"] .inputs textarea:focus {
      outline: none;
      border-color: #007bff; /* Primary brand color */
      box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
    }

  /* Required asterisk styling */
  form[action="/customer/addresponse"] .inputs .required {
    color: #e44d26;
    margin-right: 4px;
  }


/* Change FilePond background to white */
form[action="/customer/addresponse"] .filepond--panel-root {
  background-color: #ffffff !important;
  border: 1px solid #cccccc; /* Adding a border since white on white might be invisible */
}

/* Optional: Ensure the hover state also looks good */
form[action="/customer/addresponse"] .filepond--root:hover .filepond--panel-root {
  background-color: #fafafa !important;
}

form[action="/customer/addresponse"] .inputs {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 0px;
}

  form[action="/customer/addresponse"] .inputs label {
    grid-column: 1 / span 2;
  }

  form[action="/customer/addresponse"] .inputs textarea {
    width: 100%;
  }

/* MY TICKET FORM STYLE ENDS */

/********** FLYOUT SHOPPING CART **********/


.flyout-cart {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 420px;
  max-width: 100%;
  z-index: 1000;
  background: var(--white);
  transform: translateX(-110%);
  transition: all 0.25s;
  box-shadow: 8px 10px 20px 0px #0000001A;
}

.flyout-cart-open {
  overflow: hidden;
}

.flyout-cart-open .flyout-cart {
  transform: translateX(0);
}

.flyout-cart .mini-shopping-cart {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.flyout-cart .mini-shopping-cart .count {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0px 2px 3px 0px #0000000D;
}

.flyout-cart .mini-shopping-cart .cart-header-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.flyout-cart .mini-shopping-cart .sopping-cart-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--black);
}

.flyout-cart .mini-shopping-cart .cart-count {
  font-size: 12px;
  line-height: 1.2;
  color: var(--black);
  text-decoration: none;
}

.flyout-cart .mini-shopping-cart .close-flyout-cart {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  text-decoration: none;
  font-size: 22px;
}

.flyout-cart .mini-shopping-cart .items {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
}

.flyout-cart .mini-shopping-cart .item {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr 84px;
  grid-template-areas:
    "picture details qty"
    "picture details price";
  gap: 8px 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--light-grey);
}
  .flyout-cart .mini-shopping-cart .item:last-child {
    border-bottom: 0;
  }
  .flyout-cart .mini-shopping-cart .mini-cart-p-buttons {
    position: absolute;
    top: 4px;
    right: 6px;
    z-index: 3;
  }

.flyout-cart .mini-shopping-cart .remove-btn {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #eeeeee;
  color: #777;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flyout-cart .mini-shopping-cart .picture {
  grid-area: picture;
  width: 100px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  background: #f7f7f7;
}

.flyout-cart .mini-shopping-cart .picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flyout-cart .mini-shopping-cart .details {
  grid-area: details;
  min-width: 0;
  padding-top: 8px;
  position: relative;
  z-index: 2;
}

.flyout-cart .mini-shopping-cart .name {
  margin-bottom: 6px;
}

.flyout-cart .mini-shopping-cart .name a {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.flyout-cart .mini-shopping-cart .picture a {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.flyout-cart .mini-shopping-cart .attributes {
  font-size: 13px;
  line-height: 1.45;
  color: var(--grey);
}

.flyout-cart .mini-shopping-cart .attributes p,
.flyout-cart .mini-shopping-cart .attributes ul,
.flyout-cart .mini-shopping-cart .attributes dl {
  margin: 0;
}

.flyout-cart .mini-shopping-cart .sku {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.3;
  color: var(--grey);
}

.flyout-cart .mini-shopping-cart .item-right {
  grid-area: qty;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.flyout-cart .mini-shopping-cart .qty-wrapper {
  width: 80px;
  height: 38px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
}

.flyout-cart .mini-shopping-cart .qty-button {
  width: 26px;
  height: 38px;
  border: 0;
  background: #fff;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flyout-cart .mini-shopping-cart .qty-button.minus {
  font-size: 13px;
}

.flyout-cart .mini-shopping-cart .qty-input {
  width: 28px;
  height: 38px;
  border: 0;
  outline: 0;
  text-align: center;
  font-size: 14px;
  color: #111;
  font-weight: 500;
  padding: 2px;
}

.flyout-cart .mini-shopping-cart .price {
  grid-area: price;
  text-align: left;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.flyout-cart .mini-shopping-cart .old-price {
  display: block;
  font-size: 12px;
  color: var(--grey);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.flyout-cart .mini-shopping-cart .new-price {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--active-color);
}

.flyout-cart .mini-shopping-cart .price-text,
.flyout-cart .mini-shopping-cart .quantity {
  display: none;
}

.flyout-cart .mini-shopping-cart .flyoutcart-footer {
  padding: 18px 16px 14px;
  border-top: 1px solid #d8d8d8;
  background: #fff;
}

.flyout-cart .mini-shopping-cart .totals {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
}

.flyout-cart .mini-shopping-cart .totals strong {
  font-weight: 700;
  margin-right: 8px;
}

.flyout-cart .mini-shopping-cart .buttons {
  display: flex;
  gap: 8px;
  margin: 0;
}

.flyout-cart .mini-shopping-cart .buttons button {
  flex: 1;
  height: 38px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
}

.flyout-cart .mini-shopping-cart .cart-button {
  background: var(--active-color);
}

.flyout-cart .mini-shopping-cart .checkout-button {
  background: var(--primary);
}


/********** SHOPPING CART **********/



.order-progress {
  margin: 0 0 50px;
  background-color: #f6f6f6;
  padding: 15px 0;
  text-align: center;
}

.order-progress ul {
  font-size: 0;
}

.order-progress li {
  display: inline-block;
  margin: 10px;
}

.order-progress a {
  display: block;
  min-width: 70px;
  font-size: 14px; /*reset zeroing*/
  color: var(--dark-grey);
}

.order-progress a:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 15px;
  border: 1px solid #bbb;
  background: var(--white) url('../images/pointer.png') center no-repeat;
}

.order-progress li.active-step a {
  cursor: pointer;
}

.order-progress li.inactive-step a {
  opacity: 0.3;
  cursor: default;
}

.shopping-cart-page .cart-page-title {
  margin: 0 0 24px;
  padding: 0;
  text-align: center;
  border: 0;
}

  .shopping-cart-page .cart-page-title h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--black);
  }

.shopping-cart-page .page-title {
  margin: 0 0 -1px;
  padding: 30px;
}

.shopping-cart-page .cart-page-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cart-main {
  border: 1px solid var(--light-grey);
  padding: 10px;
  border-radius: 8px;
}
.shopping-cart-page .cart-items-list {
  border-top: none;
  padding:10px;
}

.shopping-cart-page .cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 44px;
  grid-template-areas:
    "picture details qty"
    "pricing pricing pricing";
  gap: 8px 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-grey);
}

.shopping-cart-page .cart-item-remove {
  position: absolute;
  top: 10px;
  inset-inline-start: 6px;
  z-index: 2;
}

  .shopping-cart-page .cart-item-remove input[type="checkbox"] {
    display: none;
  }

  .shopping-cart-page .cart-item-remove .remove-btn {
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #eeeeee;
    color: #777;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.shopping-cart-page .cart-item-picture {
  grid-area: picture;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f7f7;
}

  .shopping-cart-page .cart-item-picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

.shopping-cart-page .cart-item-details {
  grid-area: details;
  min-width: 0;
  padding-top: 4px;
  text-align: right;
}

  .shopping-cart-page .cart-item-details .product-name {
    margin-bottom: 6px;
  }

    .shopping-cart-page .cart-item-details .product-name a {
      font-size: 14px;
      line-height: 1.35;
      font-weight: 600;
      color: var(--black);
      text-decoration: none;
    }

      .shopping-cart-page .cart-item-details .product-name a:hover,
      .shopping-cart-page .cart-item-details .product-name a:focus {
        color: var(--secondary);
      }

  .shopping-cart-page .cart-item-details .attributes,
  .shopping-cart-page .cart-item-details .sku,
  .shopping-cart-page .cart-item-details .vendor-name {
    font-size: 14px;
    line-height: 1.45;
    color: var(--grey);
    font-weight: 500;
  }

    .shopping-cart-page .cart-item-details .attributes p,
    .shopping-cart-page .cart-item-details .attributes ul,
    .shopping-cart-page .cart-item-details .attributes dl {
      margin: 0;
    }

  .shopping-cart-page .cart-item-details .sku {
    margin-top: 4px;
  }

  .shopping-cart-page .cart-item-details .edit-item {
    margin-top: 6px;
  }

    .shopping-cart-page .cart-item-details .edit-item a {
      font-size: 13px;
      color: var(--secondary);
    }

  .shopping-cart-page .cart-item-details .message-error {
    margin-top: 8px;
    text-align: start;
  }

.shopping-cart-page .cart-item-price {
  display: none !important;
}

.shopping-cart-page .cart-item-unit-price .price-values {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 4px;
}

  .shopping-cart-page .cart-item-unit-price .price-values .product-unit-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
  }

.shopping-cart-page .cart-item-unit-price {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
}
.checkout-page .shopping-cart-page .cart-item-unit-price {
  display: none !important;
}
  .shopping-cart-page .cart-item-unit-price .price-label {
    display: inline;
    font-size: 13px;
    color: var(--grey);
    margin: 0;
    line-height: 1.35;
  }

  .shopping-cart-page .cart-item-unit-price .old-price,
  .shopping-cart-page .cart-item-unit-price .price-values .old-price {
    font-size: 12px;
    color: var(--grey);
    text-decoration: line-through;
  }

  .shopping-cart-page .cart-item-unit-price .price-values {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

    .shopping-cart-page .cart-item-unit-price .price-values .old-price {
      font-size: 12px;
      line-height: 1.3;
    }

    .shopping-cart-page .cart-item-unit-price .price-values .product-unit-price {
      font-size: 14px;
      line-height: 1.3;
    }

.shopping-cart-page .cart-item-pricing-row {
  grid-area: pricing;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px 16px;
  width: 100%;
  margin-top: 4px;
}

.shopping-cart-page .cart-item-actions {
  display: contents;
}

.shopping-cart-page .cart-item-qty {
  grid-area: qty;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  align-self: stretch;
}

  .shopping-cart-page .cart-item-qty .qty-wrapper {
    width: 44px;
    min-height: 92px;
    height: 100%;
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    overflow: hidden;
    background: var(--white);
  }

  .shopping-cart-page .cart-item-qty .qty-button {
    width: 100%;
    height: 28px;
    flex: 0 0 28px;
    border: 0;
    background: var(--white);
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
  }

  .shopping-cart-page .cart-item-qty .qty-input {
    width: 100%;
    flex: 1 1 auto;
    min-height: 32px;
    border: 0;
    outline: 0;
    text-align: center;
    font-size: 14px;
    color: var(--black);
    font-weight: 600;
    padding: 2px 0;
    background: var(--white);
  }

  .shopping-cart-page .cart-item-qty .qty-dropdown {
    min-width: 44px;
    width: 44px;
    height: 92px;
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    padding: 4px 2px;
    writing-mode: vertical-lr;
    text-orientation: mixed;
  }

.shopping-cart-page .cart-item-subtotal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: end;
  line-height: 1.3;
  margin-inline-start: auto;
}

  .shopping-cart-page .cart-item-subtotal .subtotal-values {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-end;
    gap: 4px;
  }

  .shopping-cart-page .cart-item-subtotal .subtotal-label {
    display: inline;
    font-size: 13px;
    color: var(--grey);
    margin: 0;
    font-weight: 400;
  }

  .shopping-cart-page .cart-item-subtotal .product-subtotal {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    white-space: nowrap;
  }

  .shopping-cart-page .cart-item-subtotal .discount,
  .shopping-cart-page .cart-item-subtotal .discount-additional-info {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 4px;
    font-size: 12px;
    font-style: italic;
    color: var(--secondary);
    text-align: start;
  }

.shopping-cart-page .cart-main-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

  .shopping-cart-page .cart-main-actions .continue-shopping-button {
    border: 1px solid var(--light-grey);
    background: var(--secondary);
    color: var(--white);
    padding: 10px 18px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 6px;
  }

.shopping-cart-page .cart-sidebar {
  border: 1px solid var(--medium-grey);
  border-radius: 12px;
  background: var(--white);
  padding: 20px 16px;
}

  .shopping-cart-page .cart-sidebar .checkout-attributes {
    margin: 0 0 16px;
    color: var(--dark-grey);
  }

    .shopping-cart-page .cart-sidebar .checkout-attributes dt {
      margin: 0 0 8px;
      font-weight: 600;
      font-size: 14px;
    }

    .shopping-cart-page .cart-sidebar .checkout-attributes dd {
      margin: 0 0 16px;
    }

    .shopping-cart-page .cart-sidebar .checkout-attributes select,
    .shopping-cart-page .cart-sidebar .checkout-attributes input[type="text"] {
      width: 100%;
      height: 40px;
      border: 1px solid var(--light-grey);
      border-radius: 6px;
      padding: 0 12px;
    }

  .shopping-cart-page .cart-sidebar .selected-checkout-attributes {
    margin: 0 0 16px;
    font-size: 13px;
    color: var(--grey);
  }

  .shopping-cart-page .cart-sidebar .cart-collaterals {
    width: 100%;
    margin: 0 0 16px;
    padding: 0;
  }

    .shopping-cart-page .cart-sidebar .cart-collaterals > div {
      max-width: none;
      margin: 0;
    }

    .shopping-cart-page .cart-sidebar .cart-collaterals .title {
      display: none;
    }

    .shopping-cart-page .cart-sidebar .cart-collaterals .hint {
      position: absolute;
      background: var(--white);
      inset-inline-start: 10px;
      padding-inline: 5px;
      top: -9px;
      z-index: 99;
      color: var(--black);
      font-weight:500;
    }

    .shopping-cart-page .cart-sidebar .cart-collaterals .deals > div {
      margin: 0 0 28px;
      position: relative;
      padding:0;
    }

    .shopping-cart-page .cart-sidebar .cart-collaterals .coupon-code {
      display: flex;
      gap: 8px;
      position: relative;
    }

      .shopping-cart-page .cart-sidebar .cart-collaterals .coupon-code input[type="text"] {
        flex: 1;
        float: none;
        width: auto;
        height: 45px;
        margin: 0;
        border: 1px solid var(--light-grey);
        border-radius: 6px;
        padding: 0 12px;
        padding-inline-end: 110px;
      }

      .shopping-cart-page .cart-sidebar .cart-collaterals .coupon-code button[type="submit"] {
        float: none;
        width: auto;
        height: 34px;
        margin: 0;
        padding: 0 14px;
        border: 0;
        border-radius: 6px;
        background: var(--secondary);
        color: var(--white);
        font-size: 13px;
        white-space: nowrap;
        text-transform: none;
        position: absolute;
        inset-inline-end: 5px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 99;
      }
.cart-collaterals .coupon-code input[type="text"]::placeholder {
  color: var(--grey);
  font-size: 14px;
  font-weight: 500;
}

.shopping-cart-page .cart-sidebar-totals {
  padding-top: 4px;
}

  .shopping-cart-page .cart-sidebar-totals .total-info {
    margin: 0 0 16px;
    padding: 0 0 12px;
  }

  .shopping-cart-page .cart-sidebar-totals .cart-total td {
    padding: 6px 0;
    font-size: 16px;
    border: 0;
    font-weight: 500;
    background: transparent;
    color: var(--black);
  }

  .shopping-cart-page .cart-sidebar-totals .cart-total .order-total .cart-total-left {
    font-size: 18px;
    color: var(--secondary);
  }

  .shopping-cart-page .cart-sidebar-totals .terms-of-service {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 16px;
    padding: 0;
  }

    .shopping-cart-page .cart-sidebar-totals .terms-of-service input[type="checkbox"] {
      appearance: none;
      -webkit-appearance: none;
      width: 20px;
      height: 20px;
      min-width: 20px;
      margin: 2px 0 0;
      border: 1px solid var(--light-grey);
      border-radius: 4px;
      background: var(--white);
      cursor: pointer;
      position: relative;
      flex-shrink: 0;
    }

      .shopping-cart-page .cart-sidebar-totals .terms-of-service input[type="checkbox"]:checked {
        background: var(--secondary);
        border-color: var(--secondary);
      }

      .shopping-cart-page .cart-sidebar-totals .terms-of-service input[type="checkbox"]:checked::after {
        content: "";
        position: absolute;
        inset-inline-start: 50%;
        top: 45%;
        width: 5px;
        height: 9px;
        border: solid var(--white);
        border-width: 0 2px 2px 0;
        transform: translate(-50%, -50%) rotate(45deg);
      }

    .shopping-cart-page .cart-sidebar-totals .terms-of-service-text {
      flex: 1;
      min-width: 0;
      font-size: 14px;
      line-height: 1.45;
      color: var(--black);
    }

      .shopping-cart-page .cart-sidebar-totals .terms-of-service-text label {
        display: inline;
        margin: 0;
        cursor: pointer;
        color: var(--black);
        font-weight: 400;
        font-size: 16px;
      }

      .shopping-cart-page .cart-sidebar-totals .terms-of-service-text a.read {
        display: inline;
        margin: 0;
        padding: 0;
        color: var(--primary);
        text-decoration: none;
        white-space: nowrap;
      }

        .shopping-cart-page .cart-sidebar-totals .terms-of-service-text a.read:hover,
        .shopping-cart-page .cart-sidebar-totals .terms-of-service-text a.read:focus {
          text-decoration: underline;
        }

  .shopping-cart-page .cart-sidebar-totals .checkout-buttons {
    padding: 0;
  }

  .shopping-cart-page .cart-sidebar-totals .checkout-button {
    display: block;
    width: 100%;
    min-width: 0;
    border: 0;
    border-radius: 6px;
    background-color: var(--primary);
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    cursor: pointer;
  }

    .shopping-cart-page .cart-sidebar-totals .checkout-button:hover,
    .shopping-cart-page .cart-sidebar-totals .checkout-button:focus {
      background-color: var(--active-color);
    }

  .shopping-cart-page .cart-sidebar-totals .addon-buttons {
    margin: 12px 0 0;
    padding: 0;
  }

.shopping-cart-page--empty .page-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px 48px;
}

.shopping-cart-page--empty .cart-page-title {
  width: 100%;
  max-width: 520px;
  margin: 24px auto 34px;
}

.shopping-cart-page--empty .cart-page-title h1 {
  font-weight: 600;
}

.shopping-cart-page--empty .order-summary-content {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.shopping-cart-page .cart-empty {
  width: 100%;
}

.shopping-cart-page .cart-empty__card {
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  background: var(--white);
  padding: 40px 32px 32px;
  text-align: center;
  box-sizing: border-box;
}

.shopping-cart-page .cart-empty__media {
  width: 120px;
  height: 120px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shopping-cart-page .cart-empty__media i {
  font-size: 52px;
  line-height: 1;
  color: var(--medium-grey);
}

.shopping-cart-page .cart-empty__message {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--black);
}

.shopping-cart-page .cart-empty__actions {
  margin: 0;
}

.shopping-cart-page .cart-empty__continue-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 12px 24px;
  background-color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
}

.shopping-cart-page .cart-empty__continue-button:hover,
.shopping-cart-page .cart-empty__continue-button:focus {
  background-color: var(--secondary);
  color: var(--white);
}

@media (max-width: 1000px) {
  .shopping-cart-page--empty .cart-page-title {
    margin-bottom: 24px;
  }

  .shopping-cart-page--empty .cart-page-title h1 {
    font-size: 24px;
  }

  .shopping-cart-page .cart-empty__card {
    padding: 32px 20px 24px;
  }

  .shopping-cart-page .cart-empty__media {
    width: 104px;
    height: 104px;
    margin-bottom: 18px;
  }

  .shopping-cart-page .cart-empty__media i {
    font-size: 44px;
  }

  .shopping-cart-page .cart-empty__message {
    margin-bottom: 20px;
    font-size: 14px;
  }
}

.shopping-cart-page .cart-footer {
  border-top: 0;
  margin: 0;
}

.shopping-cart-page .message-error {
  margin: 20px 0;
}

.shopping-cart-page .cart-item .message-error {
  margin: 10px 0 0;
  text-align: start;
}

.shopping-cart-page .checkout-attributes a {
  color: #4ab3f1;
}

.shopping-cart-page .checkout-attributes a:hover,
.shopping-cart-page .checkout-attributes a:focus {
  text-decoration: underline;
}

.shopping-cart-page .tax-shipping-info {
  margin: 20px 0;
  text-align: center;
}

.shopping-cart-page .tax-shipping-info a {
  color: #4ab3f1;
}

.shopping-cart-page .tax-shipping-info a:hover,
.shopping-cart-page .tax-shipping-info a:focus {
  text-decoration: underline;
}

.shopping-cart-page .common-buttons {
  margin: 0 0 60px;
  background-color: #f6f6f6;
  padding: 20px;
  font-size: 0;
}

.shopping-cart-page .common-buttons button {
  display: inline-block;
  min-width: 180px;
  margin: 5px;
  border: none;
  background-color: var(--medium-grey);
  padding: 10px 20px;
  font-size: 15px;
  color: var(--white);
}

.shopping-cart-page .common-buttons button:hover,
.shopping-cart-page .common-buttons button:focus {
  background-color: var(--medium-grey);
}

.shopping-cart-page .common-buttons button:first-child {
  background-color: var(--theme-color);
}

.shopping-cart-page .common-buttons button:first-child:hover,
.shopping-cart-page .common-buttons button:first-child:focus {
  background-color: var(--active-color);
}

.checkout-attributes {
  margin: -30px 0 30px;
  color: var(--dark-grey);
}

.checkout-attributes dt {
  margin: 0 0 5px;
  font-weight: bold;
}

.checkout-attributes dd {
  margin: 0 0 20px;
}

.checkout-attributes input[type="text"],
.checkout-attributes select {
  min-width: 170px;
}

.checkout-attributes ul {
  font-size: 0;
}

.checkout-attributes .option-list>li {
  display: inline-block;
  margin: 5px;
  border: 1px solid var(--light-grey);
  background-color: var(--white);
  padding: 8px 10px;
  font-size: 14px; /*reset zeroing*/
}

.checkout-attributes .attribute-squares li {
  border: none;
  padding: 0;
  line-height: 0;
}

.checkout-attributes .option-list>li label {
  display: inline-block;
  margin: 0 5px 0 0;
}

.selected-checkout-attributes {
  margin: 30px 0;
  color: var(--dark-grey);
}

.selected-checkout-attributes br {
  content: "";
  display: block;
  margin: 3px;
}

.cart-footer {
  margin: 0 0 50px;
  border-top: 1px solid var(--light-grey);
}

.cart-footer:after {
  content: "";
  display: block;
  clear: both;
}

.cart-footer .totals {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 50px;
  background-color: #f9f9f9;
  padding: 10px;
  color: var(--dark-grey);
}

.cart-footer .total-info {
  margin: 0 0 20px;
  border-bottom: 1px solid var(--light-grey);
  padding: 5px 30px 15px;
}

.cart-total td {
  width: 50%;
  padding: 5px 0;
  text-align: left;
}

.cart-total td:first-child {
  text-align: right;
}

.cart-total .giftcard-summary label {
  display: inline-block;
}

.cart-total .giftcard-remaining {
  display: block;
  font-style: italic;
}

.cart-total .order-total {
  font-size: 20px;
  color: var(--theme-color);
}
  .cart-total .order-total td.cart-total-right {
    color: var(--secondary);
  }
.cart-total .order-total strong {
  font-weight: normal;
}


.min-amount-warning {
  margin: 0 0 20px;
  padding: 0 30px;
  color: var(--primary);
}

.terms-of-service {
  margin: 0 0 20px;
  padding: 0 30px;
}

.terms-of-service label {
  cursor: pointer;
}

.terms-of-service a {
  display: inline-block;
  margin: 0 3px 0 0;
  color: var(--theme-color);
}

.cart-footer .checkout-buttons {
  padding: 0 10px;
}

.cart-footer .checkout-disabled {
  font-size: 20px;
  text-align: center;
  background: var(--orang);
  border: 1px solid #c3891e;
  color: var(--white);
  padding: 15px 50px;
}

.cart-footer .checkout-button {
  display: inline-block;
  min-width: 160px;
  border: none;
  background-color: var(--theme-color);
  padding: 10px 20px;
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
}

.cart-footer .checkout-button:hover,
.cart-footer .checkout-button:focus {
  background-color: var(--active-color);
}

.cart-footer .addon-buttons {
  margin: 20px 0 0;
  padding: 0 10px;
}

.cart-collaterals {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 50px;
  padding: 25px 0 0;
}

.cart-collaterals > div {
  max-width: 400px;
  margin: 0 0 50px;
}

.cart-collaterals .button-2 {
  display: inline-block;
  border: none;
  background-color: var(--medium-grey);
  padding: 10px 15px;
  color: var(--white);
  text-transform: uppercase;
}

.cart-collaterals .button-2:hover,
.cart-collaterals .button-2:focus {
  background-color: var(--medium-grey);
}

.cart-collaterals .title {
  margin: 0 0 5px;
  font-size: 18px;
  color: var(--dark-grey);
}

.cart-collaterals .title strong {
  font-weight: normal;
}

.cart-collaterals .hint {
  margin: 0 0 10px;
}

.cart-collaterals .deals > div {
  margin: 0 0 20px;
}

.cart-collaterals .coupon-code {
  overflow: hidden;
}

.cart-collaterals .coupon-code input[type="text"] {
  float: right;
  width: 60%;
  height: 36px; /*safari padding fix*/
  margin: 0 0 0 -1px;
}

.cart-collaterals .coupon-code button[type="submit"] {
  float: right;
  width: 40%;
  height: 36px; /*safari padding fix*/
  padding: 0;
}

.cart-collaterals .message-failure {
  margin: 5px 0 0;
  font-size: 12px;
  color: var(--primary);
}

.cart-collaterals .message-success {
  margin: 5px 0 0;
  font-size: 12px;
  color: var(--green);
}

.cart-collaterals .current-code {
  margin: 5px 0 0;
  color: var(--green);
}

.remove-discount-button,
.remove-gift-card-button {
  width: 15px;
  height: 15px;
  border: 1px solid var(--medium-grey);
  background: var(--white) url('../images/close.png') center no-repeat;
  cursor: pointer;
}

.cart-collaterals .shipping select {
  height: 36px;
}

.cart-collaterals .shipping-results {
  margin: 30px 0 0;
}

.cart-collaterals .shipping-results li {
  margin: 20px 0;
}

.cart-collaterals .shipping-results li strong {
  display: block;
  margin: 0 0 5px;
  color: var(--dark-grey);
}

.shopping-cart-page .no-data {
  margin: 25px 0 0;
}


/*** ESTIMATE SHIPPING POPUP COMMON ***/


.estimate-shipping-popup {
  position: relative;
  background: var(--white);
  padding: 25px 10px;
  width: auto;
  max-width: 800px;
  margin: 0 auto;
}

.estimate-shipping-popup-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}

.estimate-shipping-popup-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.estimate-shipping-popup-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}

.estimate-shipping-popup-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.estimate-shipping-popup-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}

.estimate-shipping-popup-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.shipping-options-loading {
  background: url(../images/ajax-loader-small.gif) no-repeat;
  width: 16px;
  height: 16px;
  position: relative;
  left: 8px;
  margin: 4% 50%;
}

.shipping-address .required {
  margin-right: 0px;
}

.estimate-shipping-row {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}

.estimate-shipping-row.shipping-option {
  cursor: pointer;
}

.estimate-shipping-row.shipping-option.active {
  font-weight: 700;
}

.estimate-shipping-row-item {
  flex: 0 1 100%;
}

.estimate-shipping-row-item.shipping-item {
  padding: 8px 0;
  overflow: hidden;
  overflow-wrap: break-word;
}

.estimate-shipping-row-item.shipping-header-item {
  padding: 12px 0;
  border-bottom: 1px solid #f2f2f2;
  align-self: flex-end;
}

.estimate-shipping-row-item.address-item + .estimate-shipping-row-item.address-item {
  padding-right: 15px;
}

.estimate-shipping-row-item + .estimate-shipping-row-item {
  padding-right: 10px;
}

.estimate-shipping-row-item-radio {
  flex: 0 0 35px;
}

.ship-to-title {
  margin-bottom: 10px;
  text-align: right;
}

.choose-shipping-title {
  margin-top: 20px;
  text-align: right;
}

.estimate-shipping-address-control {
  width: 100%;
  height: 36px;
}

.estimate-shipping-radio {
  display: none;
}

.estimate-shipping-radio + label {
  -webkit-appearance: none;
  background-color: #fafafa;
  border: 1px solid #cacece;
  padding: 9px;
  border-radius: 50px;
  display: inline-block;
  position: relative;
}

.estimate-shipping-radio:checked + label:after {
  content: ' ';
  width: 6px;
  height: 6px;
  border-radius: 50px;
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--white);
}

.estimate-shipping-radio:checked + label {
  background-color: var(--theme-color);
  color: #99a1a7;
  border: 1px solid #adb8c0;
  border-color: var(--theme-color);
}

.apply-shipping-button {
  border: none;
  padding: 8px 25px;
  background-color: var(--theme-color);
  color: var(--white);
}

.apply-shipping-button-container {
  margin-top: 15px;
  text-align: center;
}

.shipping-options-header {
  top: 0;
  z-index: 1;
  position: sticky;
  background-color: var(--white);
}

.shipping-options {
  position: relative;
  z-index: 1;
  overflow: hidden;
  overflow-y: auto;
  max-height: 200px;
  background: var(--white) no-repeat;
  background-image: -webkit-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), -webkit-radial-gradient(50% 100%, farthest-side, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
  background-image: -moz-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), -moz-radial-gradient(50% 100%, farthest-side, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
  background-image: radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 50% 100%, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
  background-position: 0 0, 0 100%;
  background-size: 100% 7px;
}

.shipping-options:before,
.shipping-options:after {
  content: "";
  position: relative;
  z-index: -1;
  display: block;
  height: 30px;
  margin: 0 0 -30px;
  background: -webkit-linear-gradient(top, var(--white), var(--white) 30%, rgba(255, 255, 255, 0));
  background: -moz-linear-gradient(top, var(--white), var(--white) 30%, rgba(255, 255, 255, 0));
  background: linear-gradient(to bottom, var(--white), var(--white) 30%, rgba(255, 255, 255, 0));
}

.shipping-options:after {
  margin: -30px 0 0;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), var(--white) 70%, var(--white));
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), var(--white) 70%, var(--white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white) 70%, var(--white));
}

.no-shipping-options {
  text-align: center;
  margin: 4% 0;
}

.estimate-shipping-popup .message-failure {
  margin: 5px 0 -5px;
  font-size: 12px;
  color: var(--primary);
}


/*** SHOPPING CART ESTIMATE SHIPPING ***/


.shopping-cart-page .common-buttons .estimate-shipping-button,
.shopping-cart-page .cart-main-actions .estimate-shipping-button {
  display: inline-block;
  min-width: 180px;
  margin: 5px;
  border: none;
  background-color: var(--medium-grey);
  padding: 10px 20px;
  font-size: 15px;
  text-align: center;
  color: var(--white);
}

.shopping-cart-page .common-buttons .estimate-shipping-button:hover,
.shopping-cart-page .common-buttons .estimate-shipping-button:focus,
.shopping-cart-page .cart-main-actions .estimate-shipping-button:hover,
.shopping-cart-page .cart-main-actions .estimate-shipping-button:focus {
  background-color: var(--medium-grey);
}


/*** PRODUCT ESTIMATE SHIPPING ***/


.product-estimate-shipping {
  margin-bottom: 20px;
}

.product-estimate-shipping .shipping-date {
  margin-top: 3px;
}

.product-estimate-shipping .shipping-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--dark-grey);
  margin-bottom: 5px;
  justify-content: center;
}

.product-estimate-shipping .shipping-title .shipping-price {
  margin-left: 5px;
  vertical-align: middle;
}

.product-estimate-shipping .shipping-title .shipping-loading {
  margin-left: 5px;
  vertical-align: middle;
  background: url(../images/ajax-loader-small.gif) no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
}

.product-estimate-shipping .open-estimate-shipping-popup .arrow-down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin: 0 0 3px 6px;
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
}


/********** CHECKOUT **********/



.checkout-page .section {
  margin: 0 0 30px;
}

.checkout-page .section.order-summary {
  margin: 100px 0 30px;
}

.checkout-page .cart-options {
  min-height: 60px;
  overflow: hidden;
}

.checkout-page .cart-footer {
  border-top: none;
}

.checkout-page .total-info {
  margin: 0;
  border-bottom: none;
  padding: 5px 20px 10px;
}

.checkout-page .button-1 {
  display: inline-block;
  min-width: 140px;
  border: none;
  background-color: var(--theme-color);
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: var(--white);
  text-transform: uppercase;
}

.checkout-page .button-1:hover,
.checkout-page .button-1:focus {
  background-color: var(--active-color);
}

.checkout-page .address-item {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 40px;
}

.checkout-page .address-item ul {
  margin: 0 0 15px;
  background-color: #f9f9f9;
  padding: 20px;
  color: var(--dark-grey);
}

.checkout-page .address-item li {
  padding: 5px 0;
}

.checkout-page .address-item li.name {
  font-size: 16px;
  font-weight: bold;
}

.enter-address .message-error {
  margin: 20px 0;
}

.enter-address .edit-address {
  background-color: #f9f9f9;
  border-top: 1px solid #e6e6e6;
  margin: 0 0 30px;
  padding: 30px 15px;
}

.checkout-page .ship-to-same-address {
  padding: 30px 0;
  text-align: center;
}

.checkout-page .ship-to-same-address .selector {
  margin: 0 0 5px;
  font-weight: bold;
  color: var(--dark-grey);
}

.vat-number-warning {
  text-align: center;
  font-size: 13px;
  color: var(--primary);
  margin-top: 5px;
}

  .vat-number-warning a {
    text-decoration: underline;
  }

.checkout-page .pickup-in-store {
  text-align: center;
}

.checkout-page .pickup-in-store .selector {
  margin: 0 0 5px;
  font-weight: bold;
  color: var(--dark-grey);
}

.select-pickup-point {
  text-align: center;
}

.checkout-page .pickup-points-map {
  min-width: 400px;
  min-height: 350px;
  vertical-align: middle;
  margin-top: 5px;
  margin-bottom: 5px;
}

.shipping-method .method-list,
.payment-method .method-list {
  margin: 0 auto 30px;
  overflow: hidden;
  text-align: center;
  font-size: 0;
}

.shipping-method .method-list li,
.payment-method .method-list li {
  margin: 20px 0;
  font-size: 14px; /*reset zeroing*/
}

.shipping-method .method-list li label,
.payment-method .method-list li label {
  font-size: 13px;
  font-weight: bold;
  color: var(--dark-grey);
}

.shipping-method .method-description {
  margin: 5px 0 0;
}

.payment-method .use-reward-points {
  margin: 0 0 30px;
  text-align: center;
  color: var(--dark-grey);
}

.payment-method .payment-logo {
  display: inline-block;
  vertical-align: middle;
}

.payment-method .payment-logo label {
  display: block;
  font-size: 0 !important;
}

.payment-method .payment-details {
  width: 200px;
  display: inline-block;
  margin: 0 10px 0 0;
  text-align: right;
  vertical-align: middle;
}

.payment-info .info {
  padding: 30px 15px;
  color: var(--dark-grey);
}

.payment-info .info tr {
  display: block;
  margin: 0 0 15px;
  font-size: 0;
}

.payment-info .info td {
  display: inline-block;
  width: 100% !important;
  max-width: 400px !important;
  font-size: 14px; /*reset zeroing*/
}

.payment-info .info td:only-child {
  width: 100% !important;
  max-width: 100% !important;
}

.payment-info .info td input[type="text"] {
  width: 100% !important;
}

.payment-info .info td input[name="CardCode"] {
  width: 65px !important;
}

.payment-info .info td select {
  min-width: 70px;
}

.payment-info .info td:first-child {
  margin: 0 0 10px;
}

.payment-info .info p {
  text-align: center;
}

.confirm-order .buttons {
  padding: 10px 0;
}

.confirm-order .button-1 {
  font-size: 16px;
}

.order-review-data > div,
.order-details-area > div,
.shipment-details-area > div {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 40px;
  background-color: #f9f9f9;
  padding: 20px;
  color: var(--dark-grey);
}

.order-review-data li,
.order-details-area li,
.shipment-details-area li {
  padding: 3px 0;
}

.order-review-data .title,
.order-details-area .title,
.shipment-details-area .title {
  margin: 0 0 5px;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
}

.order-review-data .title strong,
.order-details-area .title strong,
.shipment-details-area .title strong {
  font-weight: 700;
}

.order-review-data .payment-method-info,
.order-review-data .shipping-method-info,
.order-details-area .payment-method-info,
.order-details-area .shipping-method-info {
  margin-top: 20px;
}

.order-completed-page .checkout-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 16px 48px;
}

.order-completed-page .order-completed-page__header {
  width: 100%;
  max-width: 520px;
  margin: 24px auto 34px;
  text-align: center;
}

.order-completed-page .order-completed-page__header h1 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}

.order-completed-page .order-completed-card {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  background: var(--white);
  padding: 32px 32px 32px;
  text-align: center;
  box-sizing: border-box;
}

.order-completed-page .order-completed-card__media {
  width: min(280px, 72vw);
  max-width: 100%;
  margin: 0 auto 18px;
  aspect-ratio: 186 / 200;
}

.order-completed-page .order-completed-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-completed-page .order-completed-card__message {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--black);
}

.order-completed-page .order-completed-card__details {
  margin: 0 0 22px;
  padding: 18px 16px;
  background: #f5f5f5;
  border-radius: 10px;
}

.order-completed-page .order-completed-card__order-number {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--black);
  text-transform: none;
}

.order-completed-page .order-completed-card__order-link {
  display: inline-block;
  font-size: 14px;
  line-height: 1.4;
  color: var(--black);
  text-decoration: underline;
}

.order-completed-page .order-completed-card__order-link:hover,
.order-completed-page .order-completed-card__order-link:focus {
  color: var(--secondary);
}

.order-completed-page .order-completed-card__actions {
  margin: 0;
}

.order-completed-page .order-completed-card__actions .order-completed-continue-button {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 12px 24px;
  background-color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  text-transform: uppercase;
}

.order-completed-page .order-completed-card__actions .order-completed-continue-button:hover,
.order-completed-page .order-completed-card__actions .order-completed-continue-button:focus {
  background-color: var(--secondary);
}

@media (max-width: 1000px) {
  .order-completed-page .order-completed-page__header h1 {
    font-size: 24px;
  }

  .order-completed-page .order-completed-card {
    padding: 24px 20px 24px;
  }

  .order-completed-page .order-completed-card__media {
    width: min(240px, 78vw);
    margin-bottom: 14px;
  }

  .order-completed-page .order-completed-card__message {
    margin-bottom: 18px;
    font-size: 14px;
  }
}

.opc .step-title {
  margin: 0 0 1px;
  overflow: hidden;
  background-color: #f6f6f6;
}

.opc .allow .step-title {
  background-color: var(--theme-color);
  cursor: pointer;
}

.opc .step-title .number,
.opc .step-title .title {
  float: right;
  min-height: 40px;
  padding: 10px 15px;
  line-height: 20px;
  font-size: 16px;
  font-weight: normal;
}

.opc .allow .step-title .number,
.opc .allow .step-title .title {
  color: var(--white);
  cursor: pointer;
}

.opc .step-title .number {
  width: 42px;
  border-left: 1px solid var(--white);
  text-align: center;
}

.opc .allow .step-title .number {
  background-color: var(--active-color);
}

.opc .step {
  margin: 10px 0;
  padding: 30px 15px;
  text-align: center;
}

.opc .section {
  margin: 0 0 30px;
}

.opc .section > label {
  display: block;
  margin: 0 0 10px;
}

.opc input[type="text"],
.opc select {
  max-width: 100%;
}

.opc .buttons {
  margin-bottom: 0;
}

.opc .back-link {
  margin: 0 0 10px;
}

.opc .back-link small {
  display: none;
}

.opc .back-link a {
  display: inline-block;
  margin: 0 -15px 0 0;
  background: url('../images/back-button.png') right center no-repeat;
  padding: 0 18px 0 0;
  color: var(--dark-grey);
}

.opc .back-link a:hover,
.opc .back-link a:focus {
  color: var(--theme-color);
}

.opc .buttons .please-wait {
  display: block;
  margin: 10px 0 0;
  background: none;
}

.opc .section.ship-to-same-address {
  margin: 0 0 30px;
  padding: 0;
}

.opc .section.pickup-in-store {
  margin: 0 0 30px;
  padding: 0;
}

.opc .payment-info .info tr {
  text-align: right;
}

.opc .section.order-summary {
  margin: 0;
}

.opc-select-address-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 5px;
}

.checkout-page .opc-select-address-container .button-1 {
  min-width: 100px;
  padding: 5px 20px
}

/****** ORDER DETAILS & SHIPPING DETAILS ******/

/********** ORDER DETAILS PAGE STARTS **********/
.order-details-page{
    text-align: right;
}
.order-details-page .page-title {
  border-bottom: none;
  margin: 0 0 20px;
  padding: 0;
  min-height: auto;
}

  .order-details-page .page-title h1 {
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin: 14px 0 14px;
    padding: 0 0 14px;
    border-bottom: none;
  }

.order-details-page .button-2.back-to-orders-button, .order-details-page .createTicket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 9px 18px;
  margin: 5px 0px;
  background-color: var(--secondary);
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s;
  text-transform: none;
}

.order-details-page .order-actions-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.order-details-page .page-title a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 9px 18px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background-color: var(--medium-grey);
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease;
}

  .order-details-page .page-title a:hover,
  .order-details-page .page-title a:focus {
    background-color: var(--grey);
  }

  .order-details-page .page-title a.print-order-button {
    background-color: var(--secondary);
    min-width: 180px;
    justify-content: center;
  }

    .order-details-page .page-title a.print-order-button:hover,
    .order-details-page .page-title a.print-order-button:focus {
      background-color: #003a66;
    }

/* Overview card */
.order-details-page .order-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 28px;
  padding: 18px 20px;
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  background: #E6E6E633;
  font-size: 14px;
  line-height: 1.5;
  text-align: right;
  color: var(--black);
}

  .order-details-page .order-overview > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .order-details-page .order-overview .overview-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .order-details-page .order-overview .overview-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
  }

  .order-details-page .order-overview .order-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    margin: 0;
  }

  .order-details-page .order-overview .order-status .overview-value {
    color: var(--secondary);
  }

  .order-details-page .order-overview .order-total .overview-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
  }

  .order-details-page .order-overview .order-total strong {
    font-weight: 700;
    color: var(--secondary);
  }

/* Details area — billing, shipping, payment, method blocks */
.order-details-page .order-details-area {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 28px;
}

  .order-details-page .order-details-area > div {
    flex: 1 1 260px;
    min-width: 0;
    padding: 18px 20px;
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    background: var(--white);
    color: var(--dark-grey);
    margin: 0;
  }

  .order-details-page .order-details-area .title {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: right;
  }

    .order-details-page .order-details-area .title strong {
      font-weight: 700;
    }

  .order-details-page .order-details-area li {
    padding: 2px 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--dark-grey);
  }

/* Shipment details area (same card style) */
.shipment-details-area {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 28px;
}

  .shipment-details-area > div {
    flex: 1 1 260px;
    min-width: 0;
    padding: 18px 20px;
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    background: var(--white);
    color: var(--dark-grey);
  }

  .shipment-details-area .title {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

    .shipment-details-area .title strong {
      font-weight: 700;
    }

  .shipment-details-area li {
    padding: 2px 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--dark-grey);
  }

/* Products section heading */
.order-details-page .section.products .title,
.order-details-page .section.shipment-info .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  margin: 0 0 14px;
  padding: 0;
}

  .order-details-page .section.products .title strong,
  .order-details-page .section.shipment-info .title strong {
    font-weight: 700;
  }

/* Data table — order product rows */
.order-details-page .table-wrapper {
  border: 1px solid var(--light-grey);
  border-radius: 8px;
}

.order-details-page .data-table {
  overflow: hidden;
}

  .order-details-page .data-table th {
    background-color: #f0f4f8;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 12px 16px;
    border-color: var(--light-grey);
    white-space: nowrap;
  }

  .order-details-page .data-table td {
    padding: 16px;
    border-color: var(--light-grey);
    vertical-align: middle;
    color: var(--dark-grey);
    font-size: 14px;
  }

  .order-details-page .data-table .product a {
    font-weight: 600;
    color: var(--dark-grey);
    font-size: 14px;
  }

    .order-details-page .data-table .product a:hover,
    .order-details-page .data-table .product a:focus {
      color: var(--secondary);
    }

  .order-details-page .data-table td.unit-price,
  .order-details-page .data-table td.subtotal,
  .order-details-page .data-table td.total {
    font-weight: 600;
    white-space: nowrap;
    color: var(--black);
  }

  .order-details-page .data-table .download a {
    display: inline-block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--secondary);
    text-decoration: underline;
  }

/* Repost (re-order) inline button */
.order-details-page .repost .button-2 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 8px 0 0;
  border: none;
  border-radius: 4px;
  background-color: var(--theme-color);
  padding: 6px 14px;
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

  .order-details-page .repost .button-2:hover,
  .order-details-page .repost .button-2:focus {
    background-color: var(--active-color);
  }

/* Totals section */
.order-details-page .section.totals {
  width: 100%;
  max-width: 400px;
  margin: 28px auto 28px 0;
  padding: 0;
}

.order-details-page .total-info {
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  background-color: var(--white);
  padding: 16px 20px;
  color: var(--dark-grey);
}

  .order-details-page .total-info .cart-total td {
    padding: 7px 0;
    font-size: 14px;
    border: 0;
    background: transparent;
    width: 50%;
  }

    .order-details-page .total-info .cart-total td:first-child {
      text-align: right;
      font-weight: 500;
      color: var(--grey);
    }

    .order-details-page .total-info .cart-total td:last-child {
      text-align: left;
      font-weight: 600;
      color: var(--black);
    }

  .order-details-page .total-info .cart-total .order-total td {
    padding-top: 12px;
    border-top: 1px solid var(--light-grey);
    font-size: 16px;
    font-weight: 700;
  }

    .order-details-page .total-info .cart-total .order-total td:first-child {
      color: var(--secondary);
      font-weight: 700;
    }

    .order-details-page .total-info .cart-total .order-total td:last-child {
      color: var(--secondary);
    }

  .order-details-page .total-info .cart-total .order-total strong {
    font-weight: 700;
  }

  .order-details-page .total-info .cart-total .earn-reward-points {
    font-size: 12px;
    font-style: italic;
    color: var(--grey);
  }

  .order-details-page .total-info .cart-total .giftcard-remaining {
    display: block;
    font-size: 12px;
    font-style: italic;
    color: var(--grey);
  }

/* Tax / shipping info note */
.order-details-page .tax-shipping-info {
  margin: 10px 0 24px;
  font-size: 13px;
  color: var(--grey);
  text-align: left;
}

  .order-details-page .tax-shipping-info a {
    color: var(--secondary);
    text-decoration: underline;
  }

    .order-details-page .tax-shipping-info a:hover,
    .order-details-page .tax-shipping-info a:focus {
      color: var(--primary);
    }

/* Bottom action buttons */
.order-details-page .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  font-size: 0;
  justify-content: flex-start;
}

  .order-details-page .actions button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 140px;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--medium-grey);
    cursor: pointer;
    transition: background-color 0.2s ease;
    background-image: none;
  }

    .order-details-page .actions button:hover,
    .order-details-page .actions button:focus {
      background-color: var(--grey);
    }

    .order-details-page .actions button:first-child {
      background-color: var(--theme-color);
      text-align: center;
      justify-content: center;
      margin-right: 0;
    }

      .order-details-page .actions button:first-child:hover,
      .order-details-page .actions button:first-child:focus {
        background-color: var(--active-color);
      }

/* Shipments list (shipment page) */
.order-details-page .section.shipment-info .table-wrapper {
  margin: 0 0 24px;
}

.order-details-page .section.shipment-info .data-table th {
  background-color: #f0f4f8;
  color: var(--secondary);
}

/* Order status badge helper */
.order-status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  background-color: #e8f4fd;
  color: var(--secondary);
}

  .order-status-badge.status-processing {
    background-color: #fff3e0;
    color: #e65100;
  }

  .order-status-badge.status-complete {
    background-color: #e8f5e9;
    color: var(--green);
  }

  .order-status-badge.status-cancelled {
    background-color: #fce4e4;
    color: var(--primary);
  }



/********** ORDER DETAILS PAGE ENDS **********/

/****** SEARCH & SITEMAP ******/



.search-page .page-title {
  margin: 0 0 -1px;
}

.search-input .fieldset {
  margin: 0 0 30px;
}

.search-input .form-fields {
  padding: 30px 15px 10px;
}

.search-input input + label {
  display: inline;
  margin: 0 5px 0 0;
}

.advanced-search {
  margin: 30px 0 0;
}

.advanced-search .price-range {
  display: inline-block;
}

.advanced-search .price-range input {
  width: 80px;
  margin: 3px;
}

.search-input .buttons {
  text-align: center;
}

.search-input .button-1 {
  min-width: 140px;
  border: none;
  background-color: var(--theme-color);
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: var(--white);
  text-transform: uppercase;
}

.search-input .button-1:hover,
.search-input .button-1:focus {
  background-color: var(--active-color);
}

.search-results {
  margin: 30px 0 0;
}

.search-results .warning {
  margin: 10px 0;
  color: var(--primary);
}

.sitemap-page .description {
  margin: 0 0 30px;
  text-align: center;
}

.sitemap-page .entity {
  margin: 0 0 30px;
}

.sitemap-page .entity-title {
  margin: 0 0 15px;
  padding: 0 10px;
  text-align: center;
}

.sitemap-page .entity-title h2 {
  font-size: 20px;
  font-weight: normal;
  color: var(--dark-grey);
}

.sitemap-page .entity-body {
  border-top: 1px solid #e6e6e6;
  background-color: #f9f9f9;
  padding: 30px 15px;
  text-align: center;
}

.sitemap-page .entity ul {
  font-size: 0;
}

.sitemap-page .entity li {
  display: inline-block;
  position: relative;
  margin: 0 8px;
  padding: 0 12px;
  line-height: 50px;
  font-size: 14px; /*reset zeroing*/
}

.sitemap-page .entity li:before {
  content: "";
  position: absolute;
  top: 23px;
  right: 0;
  width: 5px;
  height: 5px;
  background-color: var(--light-grey);
}

.sitemap-page .entity a {
  color: var(--dark-grey);
}

.sitemap-page .entity a:hover,
.sitemap-page .entity a:focus {
  color: var(--theme-color);
}

.sitemap-page .entity a:empty {
  display: none;
}


/****** BLOG & NEWS ******/



.block-blog-archive .number {
  display: block;
  color: var(--dark-grey);
  cursor: auto;
}

.block-blog-archive .sublist {
  margin: 5px 15px 5px 0;
}

.block-blog-archive li.month {
  padding: 3px 15px 3px 0;
}

.blog-page .page-title,
.news-list-page .page-title {
  margin: 0;
}

.blog-page .post,
.news-items .news-item {
  margin: 0 0 30px;
}

.blog-page .post:after {
  content: "";
  display: block;
  clear: both;
}

.post-title,
.news-title {
  display: inline-block;
  padding: 20px 10px;
  line-height: 20px;
  font-size: 16px;
  font-weight: bold;
  color: var(--dark-grey);
}

.post-title:hover,
.post-title:focus,
.news-title:hover,
.news-title:focus {
  color: var(--theme-color);
}

.post-date,
.news-date {
  display: block;
  margin: 0 0 15px;
  background-color: #f6f6f6;
  padding: 10px;
  font-style: italic;
  color: var(--dark-grey);
}

.post-body,
.news-body {
  margin: 0 0 20px;
  padding: 0 10px;
  line-height: 22px;
}

.blog-page .tags,
.blogpost-page .tags {
  margin: 0 0 15px;
  overflow: hidden;
  padding: 0 10px;
}

.blog-page .tags label,
.blogpost-page .tags label {
  display: inline-block;
  margin: 0 0 3px 3px;
  font-weight: bold;
  color: var(--dark-grey);
}

.blog-page .tags ul,
.blogpost-page .tags ul {
  display: inline-block;
  margin: 0 3px 3px 0;
  font-size: 0;
}

.blog-page .tags li,
.blogpost-page .tags li {
  display: inline-block;
  font-size: 14px; /*reset zeroing*/
}

.blog-page .tags li.separator,
.blogpost-page .tags li.separator {
  margin: 0 0 0 8px;
}

.blog-page .tags a,
.blogpost-page .tags a {
  display: block;
  color: var(--theme-color);
}

.blog-page .tags a:hover,
.blog-page .tags a:focus,
.blogpost-page .tags a:hover,
.blogpost-page .tags a:focus {
  text-decoration: underline;
}

.blog-posts .buttons,
.news-items .buttons {
  margin: 0;
  padding: 0 10px;
}

.blog-posts .buttons .read-comments {
  display: block;
  margin: 0 0 15px;
  font-weight: bold;
  color: var(--dark-grey);
}

.blog-posts .buttons .read-comments:hover,
.blog-posts .buttons .read-comments:focus {
  color: var(--theme-color);
}

.blog-posts .buttons .read-more,
.news-items .buttons .read-more {
  display: inline-block;
  border: none;
  background-color: var(--theme-color);
  padding: 10px 20px;
  font-size: 12px;
  color: var(--white);
  text-transform: uppercase;
}

.blog-posts .buttons .read-more:hover,
.blog-posts .buttons .read-more:focus,
.news-items .buttons .read-more:hover,
.news-items .buttons .read-more:focus {
  background-color: var(--active-color);
}

.new-comment {
  margin: 50px 0 60px;
}

.new-comment .notifications {
  margin: 0 0 10px;
}

.new-comment .result {
  color: #690;
}

.new-comment .form-fields {
  margin: 0 0 20px;
}

.new-comment .button-1 {
  border: none;
  background-color: var(--theme-color);
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: var(--white);
  text-transform: uppercase;
}

.new-comment .button-1:hover,
.new-comment .button-1:focus {
  background-color: var(--active-color);
}

.comment-list {
  margin: 0 0 100px;
}

.comment-list .title {
  margin: 0 0 15px;
  padding: 0 10px;
  font-size: 20px;
  color: var(--dark-grey);
}

.comment-list .title strong {
  font-weight: normal;
}

.comment-list .comment {
  margin: 0 0 40px;
  border-top: 1px solid var(--light-grey);
}

.comment-list .comment:after {
  content: "";
  display: block;
  clear: both;
}

.comment-info {
  width: 150px;
  margin: 20px auto;
}

.comment-info .username {
  display: block;
  margin: 0 0 -1px;
  border: 1px solid var(--light-grey);
  background-color: #f6f6f6;
  padding: 11px 0;
  font-weight: bold;
  color: var(--dark-grey);
}

.comment-info a.username:hover,
.comment-info a.username:focus {
  color: var(--theme-color);
}

.comment-info .avatar {
  position: relative;
  width: 150px;
  height: 150px;
  border: 1px solid var(--light-grey);
  overflow: hidden;
}

.comment-info .avatar img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  border: solid 2px #CEDBE1 !important;
}

.comment-time {
  margin: 0 0 15px;
  font-size: 13px;
  font-weight: bold;
}

.comment-time span {
  display: inline-block;
  color: var(--dark-grey);
}

.comment-title {
  margin: 0 0 15px;
  font-size: 16px;
  color: var(--dark-grey);
}

.comment-body {
  line-height: 22px;
}

.news-list-homepage {
  margin: 0 0 75px;
}

.news-list-homepage .title {
  margin: 0 0 -1px;
  border-bottom: 1px solid var(--light-grey);
  padding: 0 0 15px;
  font-size: 30px;
  font-weight: normal;
  color: var(--dark-grey);
}

.news-list-homepage .title strong {
  font-weight: normal;
}

.news-list-homepage .view-all {
  text-align: center;
}

.news-list-homepage .view-all a {
  color: var(--dark-grey);
  text-decoration: underline;
}

.news-list-homepage .view-all a:hover,
.news-list-homepage .view-all a:focus {
  color: var(--theme-color);
}


/*** FORUM & PROFILE ***/



.forums-main-page .topic-block {
  margin: 0 0 35px;
  text-align: center;
}

.forums-main-page .topic-block p {
  text-align: center;
}

.forums-main-page .pager {
  display: none;
}

.forum-breadcrumb {
  margin: 0 0 40px;
}

.forums-header {
  margin: 0 0 50px;
  overflow: hidden;
}

.forums-header:after {
  content: "";
  display: block;
  clear: both;
}

.forums-header .current-time {
  margin: 0 0 15px;
  color: var(--dark-grey);
}

.forum-search-box .basic {
  overflow: hidden;
  margin: 0 0 10px;
}

.forum-search-box .advanced a {
  line-height: 22px;
  color: var(--dark-grey);
  text-decoration: underline;
}

.forum-search-box .advanced a:hover,
.forum-search-box .advanced a:focus {
  color: var(--theme-color);
}

.forum-search-page .page-title {
  margin: 0 0 -1px;
}

.forum-search-page .search-error,
.forum-search-page .no-result {
  margin: 0 0 15px;
  text-align: center;
  color: var(--primary);
}

/* forum group */

.forums-table-section {
  margin: 0 0 60px;
}

.forums-table-section + .pager {
  margin: -30px 0 30px;
}

.forums-table-section-title {
  margin: 0 0 15px;
  padding: 0 10px;
}

.forums-table-section-title a,
.forums-table-section-title strong {
  font-size: 22px;
  font-weight: normal;
  color: var(--dark-grey);
}

.forums-table-section-title a:hover,
.forums-table-section-title a:focus {
  color: var(--theme-color);
}

.forums-table-section .image div {
  width: 38px;
  height: 32px;
  margin: auto;
  background: url('../images/topic-type1.png') center no-repeat;
}

.forums-table-section .image div.sticky {
  background: url('../images/topic-type2.png') center no-repeat;
}

.forums-table-section .image div.announcement {
  background: url('../images/topic-type3.png') center no-repeat;
}

.forums-table-section .forum-title,
.forums-table-section .topic-title {
  margin: 5px 0;
}

.forums-table-section .forum-title a,
.forums-table-section .topic-title a {
  font-size: 16px;
  font-weight: bold;
  color: var(--dark-grey);
}

.forums-table-section .forum-title a:hover,
.forums-table-section .forum-title a:focus,
.forums-table-section .topic-title a:hover,
.forums-table-section .topic-title a:focus {
  color: var(--theme-color);
  text-decoration: none;
}

.forums-table-section .topic-title span {
  display: block;
  color: var(--grey);
}

.forums-table-section .forum-description,
.forums-table-section .topic-starter {
  margin: 5px 0;
}

.forums-table-section .topic-pager a,
.forums-table-section .topic-starter label {
  display: inline-block;
}

.forums-table-section .latest-post {
  white-space: nowrap;
}

.forums-table-section .latest-post div {
  margin: 5px 0;
}

.forums-table-section .latest-post label {
  display: inline-block;
  color: var(--grey);
}

.forums-table-section .view-all {
  margin: 30px 0 0;
  padding: 0 10px;
}

.forums-table-section .view-all a {
  background-color: var(--theme-color);
  padding: 10px 15px;
  font-size: 12px;
  color: var(--white);
  text-transform: uppercase;
}

.forums-table-section .view-all a:hover,
.forums-table-section .view-all a:focus {
  background-color: var(--active-color);
}

/* forum-page, topic page */

.forum-page .forum-info {
  margin: 0 0 30px;
}

.forum-page .forum-name,
.forum-topic-page .topic-name {
  margin: 0 0 25px;
  border-bottom: 1px solid var(--light-grey);
  padding: 0 10px 10px;
}

.forum-page .forum-name h1,
.forum-topic-page .topic-name h1 {
  font-size: 30px;
  font-weight: normal;
}

.forum-actions,
.topic-actions {
  margin: 0 0 30px;
  font-size: 0;
}

.forum-actions .actions a,
.topic-actions .actions a {
  display: inline-block;
  margin: 1px;
  padding: 10px 33px 10px 10px;
  font-size: 14px;
}

.forum-actions .actions .new-topic {
  background: #eee url('../images/new.png') right center no-repeat;
}

.forum-actions .actions .watch-forum,
.topic-actions .actions .watch-forum {
  background: #eee url('../images/watch.png') right center no-repeat;
}

.forum-actions .actions a:hover,
.forum-actions .actions a:focus,
.topic-actions .actions a:hover,
.topic-actions .actions a:focus {
  background-color: #e6e6e6;
}

.forum-actions .pager.upper,
.topic-actions .pager.upper {
  display: none;
  margin: 0;
}

.topic-actions .reply-topic-button {
  background: #eee url('../images/reply.png') right center no-repeat;
}

.topic-actions .watch-topic-button {
  background: #eee url('../images/watch.png') right center no-repeat;
}

.topic-actions .move-topic-button {
  background: #eee url('../images/move.png') right center no-repeat;
}

.topic-actions .edit-topic-button {
  background: #eee url('../images/edit_.png') right center no-repeat;
}

.topic-actions .delete-topic-button {
  background: #eee url('../images/remove_.png') right center no-repeat;
}

.topic-actions.lower .actions {
  display: none;
}

.active-discussions-page .forums-table-section-title {
  margin: 0 0 25px;
  border-bottom: 1px solid var(--light-grey);
  padding: 0 10px 10px;
}

.active-discussions-page .forums-table-section-title strong {
  font-size: 30px;
  font-weight: normal;
}

.active-discussions-page .forums-table-section-body {
  margin: 0 0 20px;
}

/* topic post */

.topic-post {
  margin: 0 0 30px;
  border-top: 1px solid var(--light-grey);
}

.topic-post:last-child {
  border-bottom: 1px solid var(--light-grey);
}

.topic-post:after {
  content: "";
  display: block;
  clear: both;
}

.topic-post .post-info {
  margin: 30px 0;
}

.topic-post .user-info {
  width: 150px;
  margin: 0 auto 15px
}

.topic-post .username {
  display: block;
  margin: 0 0 -1px;
  border: 1px solid var(--light-grey);
  background-color: #f6f6f6;
  padding: 11px 0;
  font-weight: bold;
  color: var(--dark-grey);
}

.topic-post a.username:hover,
.topic-post a.username:focus {
  color: var(--theme-color);
}

.topic-post .avatar,
.profile-info-box .avatar {
  position: relative;
  width: 150px;
  height: 150px;
  border: 1px solid var(--light-grey);
  overflow: hidden;
}

.topic-post .avatar img,
.profile-info-box .avatar img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.topic-post .avatar img {
  border: solid 2px #CEDBE1 !important;
}

.topic-post .user-stats {
  margin: 0 0 15px;
}

.topic-post .user-stats li {
  display: inline-block;
  margin: 0 10px;
}

.topic-post .user-stats span,
.profile-info-box .profile-stats span {
  display: inline-block;
  margin: 0 3px 0 0;
  font-weight: bold;
  color: var(--dark-grey);
}

.topic-post .pm-button,
.profile-info-box .pm-button {
  display: inline-block;
  border: none;
  background-color: var(--medium-grey);
  padding: 10px 20px;
  font-size: 12px;
  color: var(--white);
  text-transform: uppercase;
}

.topic-post .pm-button:hover,
.topic-post .pm-button:focus,
.profile-info-box .pm-button:hover,
.profile-info-box .pm-button:focus {
  background-color: var(--medium-grey);
}

.topic-post .post-time {
  margin: 0 0 15px;
  background-color: #f6f6f6;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: bold;
}

.topic-post .post-time span {
  display: inline-block;
  color: var(--dark-grey);
}

.topic-post .post-actions {
  margin: 0 0 15px;
  font-size: 0;
}

.topic-post .post-actions > div {
  display: inline-block;
}

.topic-post .post-actions a {
  display: inline-block;
  margin: 1px 5px;
  font-size: 14px;
}

.topic-post .post-actions .edit-post-button,
.topic-post .post-actions .delete-post-button {
  padding: 10px 33px 10px 10px;
}

.topic-post .post-actions .edit-post-button {
  background: url('../images/edit_.png') right center no-repeat;
}

.topic-post .post-actions .delete-post-button {
  background: url('../images/remove_.png') right center no-repeat;
}

.topic-post .post-actions .edit-post-button:hover,
.topic-post .post-actions .edit-post-button:focus,
.topic-post .post-actions .delete-post-button:hover,
.topic-post .post-actions .delete-post-button:focus {
  color: var(--theme-color);
}

.topic-post .post-actions .post-link-button {
  padding: 10px;
  font-weight: bold;
  color: var(--theme-color);
}

.topic-post .post-actions .post-link-button:hover,
.topic-post .post-actions .post-link-button:focus {
  text-decoration: underline;
}

.topic-post .post-actions .quote-post-button {
  background-color: var(--medium-grey);
  padding: 10px 20px;
  color: var(--white);
}

.topic-post .post-actions .quote-post-button:hover,
.topic-post .post-actions .quote-post-button:focus {
  background-color: var(--medium-grey);
  color: var(--white);
}

.topic-post .post-text {
  /*topic post-text also gets style from blog post-body*/
  padding: 0 10px 20px;
  line-height: 22px;
  color: var(--dark-grey);
  margin-bottom: 0;
}

.topic-post .post-vote {
  text-align: center;
  display: table;
  margin: 0 auto 20px;
}

.topic-post .user-posted-image,
.latest-posts .user-posted-image {
  max-width: 100%;
  height: auto;
}

.topic-post .quote,
.latest-posts .quote {
  margin: 10px 0;
  border: 1px dashed var(--light-grey);
  background-color: #f9f9f9;
  padding: 10px;
  color: var(--grey);
}

.topic-post .signature {
  border-top: 1px solid var(--light-grey);
  padding: 20px;
  font-size: 13px;
  font-style: italic;
  clear: both;
}

.topic-post .post-vote span.vote {
  cursor: pointer;
  display: block;
  width: 40px;
  height: 24px;
}

.topic-post .post-vote span.up {
  background: url('../images/vote-up.png') no-repeat 50% 50%;
}

.topic-post .post-vote span.vote.up.selected {
  background: url('../images/vote-up-selected.png') no-repeat 50% 50%;
}

.topic-post .post-vote span.down {
  background: url('../images/vote-down.png') no-repeat 50% 50%;
}

.topic-post .post-vote span.vote.down.selected {
  background: url('../images/vote-down-selected.png') no-repeat 50% 50%;
}

.topic-post .vote-count-post {
  display: block;
  font-size: 160%;
}
/* forum edit & send message */

.forum-edit-page .page-title,
.move-topic-page .page-title,
.private-message-send-page .page-title {
  margin: 0 0 -1px;
}

.move-topic-page label {
  white-space: normal;
}

.forum-edit-page .message-error,
.private-message-send-page .message-error {
  margin: 20px 0;
}

.forum-edit-page .inputs strong {
  display: inline-block;
  max-width: 400px;
  font-size: 22px; /*reset zeroing*/
  font-weight: normal;
  color: var(--dark-grey);
  white-space: normal;
}

.forum-edit-page .inputs .topic-subject {
  font-size: 17px;
}

.forum-edit-page .inputs.reversed {
  margin: 0;
}

.forum-edit-page .inputs.reversed label {
  width: auto;
  margin: 5px;
  font-size: 14px; /*reset zeroing*/
  white-space: normal;
}

.forum-edit-page .bb-code-editor-wrapper,
.private-message-send-page .bb-code-editor-wrapper {
  max-width: 400px;
  margin: 20px auto;
  background-color: var(--light-grey);
  padding: 10px;
}

.forum-edit-page .toolbar .button,
.private-message-send-page .toolbar .button {
  margin: 0 0 0 2px;
  border: #cec6b5 1px solid;
  padding: 2px;
}

.forum-edit-page .toolbar .button:hover,
.forum-edit-page .toolbar .button:focus,
.private-message-send-page .toolbar .button:hover,
.private-message-send-page .toolbar .button:focus {
  border: var(--dark-grey) 1px solid;
}

.forum-edit-page textarea,
.private-message-send-page textarea {
  display: block;
  margin: auto;
}

.forum-edit-page .buttons button,
.move-topic-page .buttons button,
.private-messages .buttons button {
  min-width: 140px;
  border: none;
  background-color: var(--medium-grey);
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: var(--white);
  text-transform: uppercase;
}

.forum-edit-page .buttons button:hover,
.forum-edit-page .buttons button:focus,
.move-topic-page .buttons button:hover,
.move-topic-page .buttons button:focus,
.private-messages .buttons button:hover,
.private-messages .buttons button:focus {
  background-color: var(--medium-grey);
}

.forum-edit-page .buttons .button-1,
.move-topic-page .buttons .button-1,
.private-messages .buttons .button-1 {
  background-color: var(--theme-color);
}

.forum-edit-page .buttons .button-1:hover,
.forum-edit-page .buttons .button-1:focus,
.move-topic-page .buttons .button-1:hover,
.move-topic-page .buttons .button-1:focus,
.private-messages .buttons .button-1:hover,
.private-messages .buttons .button-1:focus {
  background-color: var(--active-color);
}

.private-message-send-page a {
  font-size: 14px;
  color: var(--theme-color);
}

.private-message-send-page span {
  font-size: 14px;
}

/* jQuery tabs */

.ui-tabs {
  /*override jQuery UI styles, do not delete doubled properties*/
  border: none;
  border-radius: 0;
  background: none;
  padding: 0;
  font: normal 14px Arial, Helvetica, sans-serif;
  color: var(--grey);
}

.ui-widget.ui-widget-content.ui-tabs {
  border: none;
}

.ui-tabs-nav {
  margin: 0 0 30px;
  border-bottom: 1px solid var(--light-grey);
  overflow: hidden;
  font-size: 0;
  /*override jQuery UI styles, do not delete doubled properties*/
  margin: 0 0 30px !important;
  border-width: 0 0 1px;
  border-radius: 0;
  background: none;
  padding: 0 !important;
  line-height: normal;
  font-weight: normal;
  color: var(--dark-grey);
}

.ui-tabs-nav li {
  margin: 0 0 -1px;
  /*override jQuery UI styles, do not delete doubled properties*/
  float: none !important;
  margin: 0 0 -1px !important;
  border: none !important;
  border-radius: 0;
  background: none !important;
  padding: 0 !important;
}

.ui-tabs-nav li a {
  display: block;
  border: 1px solid var(--light-grey);
  padding: 12px 24px;
  text-align: center;
  font-size: 18px;
  color: var(--dark-grey);
  /*override jQuery UI styles, do not delete doubled properties*/
  float: none !important;
  padding: 12px 24px !important;
}

.ui-tabs-nav li.ui-state-active a {
  background-color: #eee;
  color: var(--theme-color);
}

.ui-tabs-panel {
  /*override jQuery UI styles, do not delete doubled properties*/
  padding: 0 !important;
}

/* inbox & view message */

.private-messages-page .table-wrapper,
.private-message-view-page .view-message {
  margin: 0 0 30px;
}

.private-messages-page th.select {
  text-align: center;
}

.private-messages-page td.from,
.private-messages-page td.to,
.private-messages-page td.subject {
  min-width: 150px;
}

.private-messages-page td.date {
  white-space: nowrap;
}

.private-messages-page td.subject a {
  color: var(--dark-grey);
}

.private-messages-page td.subject a.pm-unread {
  color: var(--theme-color);
}

.private-messages-page .pager {
  margin: 0 0 30px;
}

.private-messages-page .buttons,
.private-message-view-page .buttons {
  font-size: 0;
}

.private-messages-page .buttons .button-1,
.private-messages-page .buttons .button-2,
.private-message-view-page .buttons .button-1,
.private-message-view-page .buttons .button-2 {
  display: block;
  width: 250px;
  margin: 0 auto 3px;
  font-size: 15px; /*reset zeroing*/
}

.private-message-view-page .view-message {
  margin: 0 0 30px;
}

.private-message-view-page .message-head {
  margin: 0 0 20px;
  line-height: 22px;
}

.private-message-view-page .message-head span {
  font-weight: bold;
  color: var(--dark-grey);
}

.private-message-view-page .message-body {
  border-top: 1px solid var(--light-grey);
  background-color: #f9f9f9;
  padding: 30px 20px;
  line-height: 22px;
  text-align: justify;
}

.private-message-view-page .back-pm-button {
  text-transform: capitalize !important;
}

/* profile page  */

.profile-info-box {
  overflow: hidden;
  /*override jQuery UI styles, do not delete doubled properties*/
  line-height: normal;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--grey);
}

.profile-info-box .user-details {
  margin: 0 0 30px;
}

.profile-info-box .avatar {
  margin: 0 auto 15px;
}

.profile-info-box .title {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--dark-grey);
}

.profile-info-box .stats {
  margin: 0 0 15px;
}

.latest-posts {
  /*override jQuery UI styles, do not delete doubled properties*/
  line-height: normal;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--grey);
}

.latest-posts .topic {
  margin: 0 0 35px;
}

.latest-posts .topic-title {
  margin: 0 0 20px;
  border-top: 1px solid var(--light-grey);
  background: #f6f6f6;
  padding: 10px;
  font-size: 16px;
}

.latest-posts .topic-title a {
  font-weight: bold;
  color: var(--dark-grey);
}

.latest-posts .topic-title a:hover,
.latest-posts .topic-title a:focus {
  color: var(--theme-color);
}

.latest-posts .topic-body {
  margin: 0 0 15px;
  line-height: 22px;
}

.latest-posts .topic-data {
  color: var(--dark-grey);
}

/* BB codes */

.csharpcode {
  margin: 10px 0;
  border: 1px dashed var(--light-grey);
  background-color: var(--white);
  padding: 10px;
  font-family: "Courier New", Courier, monospace;
  color: var(--black);

  white-space: pre-wrap;
  word-wrap: break-word;
}

.csharpcode .rem {
  color: green;
}

.csharpcode .kwrd {
  color: #00f;
}

.csharpcode .str {
  color: #006080;
}

.csharpcode .op {
  color: #00c;
}

.csharpcode .preproc {
  color: #c63;
}

.csharpcode .asp {
  background-color: #ff0;
}

.csharpcode .html {
  color: maroon;
}

.csharpcode .attr {
  color: red;
}

.csharpcode .alt {
  width: 100%;
  margin: 0;
  background-color: #f6f6f6;
}

.csharpcode .lnum {
  color: var(--grey);
}

a.skip {
  position: absolute;
  top: -1000px;
  right: -1000px;
  height: 1px;
  width: 1px;
  text-align: left;
  overflow: hidden;
}

a.skip:active,
a.skip:focus,
a.skip:hover {
  position: initial;
  top: 0;
  right: 0;
  display: block;
  height: auto;
  margin: 3px 0;
  overflow: visible;
  padding: 2px;
  color: var(--dark-grey);
  background: var(--white);
  text-decoration: underline;
  text-align: center;
  width: 100%;
  font-size: 16px;
}

/* Synced from styles.css (side menu, header, product boxes) */
  /* SIDE MENU — Tuwayq mobile drawer (mega menu attaches via JS ≤1000px) */
  .side-menu {
    position: fixed;
    top: 0;
    inset-inline-start: -320px;
    width: min(88vw, 304px);
    max-width: 304px;
    height: 100%;
    background-color: var(--white);
    z-index: 1001;
    transition: inset-inline-start 0.28s ease;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
  }

    .side-menu.open {
      inset-inline-start: 0;
    }

  .side-menu-panels {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
  }

  .side-menu-panel-root {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
  }

  .side-menu-panel {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .side-menu-header {
    min-height: 60px;
    border-bottom: 1px solid var(--light-grey);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 0 18px;
    flex-shrink: 0;
  }

  .close-side-menu {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    padding: 8px;
    font-size: 22px;
    line-height: 1;
    color: var(--black);
  }

  .side-menu-logo {
    flex: 1;
    display: flex;
    align-items: center;
  }

    .side-menu-logo img {
      max-height: 40px;
    }

  .side-menu-divider {
    flex-shrink: 0;
    border: 0;
    margin: 0;
    border-top: 1px solid var(--light-grey);
  }

  .side-menu-icon-row {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 10px 12px;
    gap: 12px;
    flex-shrink: 0;
    font-size: 20px;
  }

  .side-menu-round-btn {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f6f8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    color: var(--secondary);
    border: 0;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
  }

  a.side-menu-round-btn.side-menu-round-whatsapp {
    color: var(--green);
  }

  .side-menu-round-btn:hover,
  .side-menu-round-btn:focus {
    background: rgba(246, 53, 56, 0.08);
    color: var(--primary);
    outline: none;
  }

  .side-menu-round-wishlist .wishlist-qty {
    position: absolute;
    top: 4px;
    inset-inline-end: 4px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    font-size: 10px;
    line-height: 17px;
    font-weight: 700;
    text-align: center;
    border-radius: 999px;
    background: var(--secondary);
    color: var(--white);
    box-sizing: border-box;
  }

  .side-menu-round-compare .compare-qty {
    position: absolute;
    top: 4px;
    inset-inline-end: 4px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    font-size: 10px;
    line-height: 17px;
    font-weight: 700;
    text-align: center;
    border-radius: 999px;
    background: var(--secondary);
    color: var(--white);
    box-sizing: border-box;
  }

  .side-menu-round-lang {
    overflow: visible;
    padding: 0;
    position: relative;
  }

    .side-menu-round-lang .language-selector {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
    }

    /* Icon button (desktop header + mobile drawer): no native <select> → no mobile picker */
    .side-menu-round-lang .language-selector.language-selector--header-icon {
      z-index: 2;
    }

    .side-menu-round-lang .language-selector--header-icon .header-language-icon-btn {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      margin: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
      color: inherit;
      font-family: inherit;
      transition: color .2s ease;
    }

    .side-menu-round-lang .language-selector--header-icon .header-language-icon-btn:focus {
      outline: none;
    }

    /* Select-based language switcher */
    .side-menu-round-lang select {
      opacity: 0;
      cursor: pointer;
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      font-size: 16px;
    }

    /* Flag links */
    .side-menu-round-lang .language-list {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: center;
      gap: 4px;
      max-width: calc(100% - 4px);
      margin: 0;
      padding: 0;
      list-style: none;
    }

      .side-menu-round-lang .language-list a {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 2px;
      }

      .side-menu-round-lang .language-list img {
        width: 24px;
        height: auto;
        border-radius: 2px;
      }

    .side-menu-round-lang .side-menu-globe-visual {
      position: absolute;
      inset: 0;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      font-size: 22px;
      color: var(--secondary);
      z-index: 0;
    }

    .side-menu-round-lang:has(.language-list) .side-menu-globe-visual {
      display: none;
    }

  .side-menu-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
  }

  #side-menu-mega-mount {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .side-menu-category-panel {
    position: absolute;
    inset: 0;
    z-index: 98;
    background: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 0;
    /* When 0, drill-down fills from panel top; body stacks above the outer toolbar (lower z-index there) */
    --side-menu-category-content-top: 0;
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    pointer-events: none;
    visibility: hidden;
  }

html[dir="rtl"] .side-menu-category-panel {
  transform: translateX(100%);
}

/* Beat `html[dir="rtl"] .side-menu-category-panel` specificity so open state is not stuck off-screen */
html[dir="rtl"] .side-menu-category-panel.open {
  transform: translateX(0);
}

  .side-menu-category-panel.open {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
  }

  .side-menu-category-toolbar {
    flex-shrink: 0;
    min-height: 52px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    padding: 0 8px;
    /* Low z-index so .side-menu-category-panel content (#side-menu-category-body, z-index 38 when drilling) paints on top */
    position: relative;
    z-index: 1;
    background: var(--white);
    box-shadow: 0 1px 0 var(--light-grey);
  }

  /* Only the list below the bar scrolls / drills; keep the separator on the same layer as the toolbar */
  .side-menu-category-panel > .side-menu-divider {
    position: relative;
    z-index: 1;
    background-color: var(--white);
  }

  #side-menu-category-body.side-menu-category-body-inner {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 1;
    isolation: isolate;
  }

  .side-menu-categories-title {
    text-align: center;
    font-weight: 700;
    font-family: var(--primary-font);
    font-size: 16px;
    color: var(--black);
  }

  .side-menu-categories-back {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    padding: 8px;
    font-size: 20px;
    color: var(--secondary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .side-menu-category-close {
    justify-self: end;
  }

  .side-menu-footer {
    flex-shrink: 0;
    padding: 16px 18px calc(14px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--light-grey);
    background: var(--white);
  }

  .side-menu-sign-in-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    background: var(--secondary);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.2s ease, background-color 0.2s ease;
  }

    .side-menu-sign-in-btn:hover,
    .side-menu-sign-in-btn:focus {
      background: var(--primary);
      color: var(--white);
      outline: none;
      opacity: 0.94;
    }

    .side-menu-sign-in-btn .ns-user {
      font-size: 20px;
    }

  .side-menu-footer--logged-in {
    display: flex;
    align-items: stretch;
    gap: 10px;
  }

  .side-menu-footer--logged-in .side-menu-account-btn {
    flex: 1;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 16px !important;
    box-shadow: none;
    text-decoration: none;
    transform: none !important;
  }

  .side-menu-footer--logged-in .side-menu-account-btn:hover,
  .side-menu-footer--logged-in .side-menu-account-btn:focus {
    background-color: var(--primary) !important;
    transform: none !important;
    box-shadow: none;
  }

  .side-menu-footer--logged-in .header-account-split__name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: none;
    line-height: 1.2;
  }

  .side-menu-logout-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--light-grey);
    background: var(--white);
    color: var(--secondary);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .side-menu-logout-btn:hover,
  .side-menu-logout-btn:focus {
    background: color-mix(in srgb, var(--light-grey) 45%, var(--white));
    border-color: var(--secondary);
    color: var(--secondary);
    outline: none;
  }

  .side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
  }

    .side-menu-overlay.open {
      display: block;
    }

  body.side-menu-open {
    overflow: hidden;
  }

  /* --- Header Modernization (Web & Mobile) --- */

  .header {
    background-color: var(--white);
    padding: 0;
    position: relative;
    z-index: 7;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.05);
  }

    .header .container {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 20px 20px;
      padding-inline: 0;
    }

  /* Desktop Header Layout */
  .desktop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  /* Reset legacy #topcartlink (base theme: grey bar + bag image) inside Tuwayq header */
  .header li#topcartlink,
  .header #topcartlink-mobile {
    display: list-item;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    list-style: none;
  }

    .header li#topcartlink > a.cart-circular,
    .header #topcartlink-mobile > a.cart-circular {
      background-image: none !important;
      padding: 0 !important;
    }

  .mobile-header.container {
    position: relative;
    width: 100%;
  }

  .header .desktop-header .header-logo {
    margin: 0;
    text-align: right;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

    .header .desktop-header .header-logo img {
      max-height: 50px;
      width: auto;
    }

  /* Search Box Modernization */
  .header-search {
    flex: 1;
    max-width: 650px;
  }

    .header-search .search-box.store-search-box {
      width: 100%;
    }

  /* Form markup comes from SearchBoxViewComponent (#small-search-box-form); rules below apply */

  /* Kill legacy .header-links (inline-block, ALL CAPS, 36px line-height) in compact header */
  .header .desktop-header .header-links ul.header-links-list {
    font-size: inherit;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .header .desktop-header .header-links li {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
  }

  .header .desktop-header .header-links .header-links-list > li > a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    text-transform: none !important;
    font-size: 24px !important;
  }

    .header .desktop-header .header-links .header-links-list > li > a.signin-pill {
      font-size: 14px !important;
    }

  .header-links-list {
    display: flex;
    align-items: center;
    gap: 24px;
  }

    .header-links-list li a {
      color: var(--secondary);
      font-size: 24px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      position: relative;
    }

      .header-links-list li a:hover {
        transform: translateY(-3px);
        color: var(--primary);
      }

  .whatsapp-link a {
    color: #25D366 !important;
  }

  /* Header language: globe only; click cycles to next language (no dropdown) */
  .header .desktop-header .header-links .header-lang-item {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    list-style: none;
  }

  .header .desktop-header .header-links .language-selector.language-selector--header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .header .desktop-header .header-links .language-selector--header-icon .header-language-icon-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--secondary);
    font-size: 24px !important;
    line-height: 1 !important;
    text-transform: none !important;
    transition: all 0.3s ease;
    font-family: inherit;
  }

    .header .desktop-header .header-links .language-selector--header-icon .header-language-icon-btn:hover,
    .header .desktop-header .header-links .language-selector--header-icon .header-language-icon-btn:focus {
      transform: translateY(-3px);
      color: var(--primary);
      outline: none;
    }

  /* Wishlist count badge — match mini-cart (secondary pill); hidden via .is-hidden + theme JS */
  .header .wishlist-link {
    position: relative;
  }

    .header .wishlist-link > a {
      position: relative;
    }

    .header .wishlist-link .wishlist-qty {
      position: absolute;
      top: -6px;
      right: -8px;
      min-width: 18px;
      height: 18px;
      padding: 0 5px;
      border-radius: 100px;
      background: var(--primary);
      color: var(--white);
      font-size: 10px;
      font-weight: 700;
      line-height: 18px;
      text-align: center;
      font-family: var(--primary-font);
      border: 2px solid var(--white);
      box-sizing: border-box;
      pointer-events: none;
      display: none;
      align-items: center;
      justify-content: center;
    }

      .header .wishlist-link .wishlist-qty:not(.is-hidden) {
        display: flex;
      }

  /* Compare count badge — same as wishlist */
  .header .compare-link {
    position: relative;
  }

    .header .compare-link > a {
      position: relative;
    }

    .header .compare-link .compare-qty {
      position: absolute;
      top: -6px;
      right: -8px;
      min-width: 18px;
      height: 18px;
      padding: 0 5px;
      border-radius: 100px;
      background: var(--primary);
      color: var(--white);
      font-size: 10px;
      font-weight: 700;
      line-height: 18px;
      text-align: center;
      font-family: var(--primary-font);
      border: 2px solid var(--white);
      box-sizing: border-box;
      pointer-events: none;
      display: none;
      align-items: center;
      justify-content: center;
    }

      .header .compare-link .compare-qty:not(.is-hidden) {
        display: flex;
      }

  /* Sign In Pill */
  .signin-pill {
    background-color: var(--secondary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px !important;
    font-weight: 700;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 76, 132, 0.2);
  }

    .signin-pill i {
      font-size: 18px;
    }

    .signin-pill:hover {
      background-color: #003a66 !important;
      transform: translateY(-3px) scale(1.02) !important;
      box-shadow: 0 6px 16px rgba(0, 76, 132, 0.3);
    }

  /* Undo legacy .header-links text-transform / line-height on pill */
  .header .header-links .signin-pill,
  .header .header-links .signin-pill span {
    text-transform: none;
    line-height: 1.2;
  }

  /* Header account: secondary (Register / Logout) is absolutely positioned so bar height stays fixed */
  .header .desktop-header .header-links .header-account-split {
    position: relative;
    align-items: stretch !important;
  }

    .header .desktop-header .header-links .header-account-split::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      height: 20px;
      z-index: 1;
    }

    .header .desktop-header .header-links .header-account-split:hover,
    .header .desktop-header .header-links .header-account-split:focus-within {
      z-index: 1101;
    }

    .header .desktop-header .header-links .header-account-split__inner {
      position: relative;
      display: inline-flex;
      flex-direction: column;
      align-items: stretch;
      min-width: 0;
    }

    .header .desktop-header .header-links .header-account-split .signin-pill {
      font-size: 14px !important;
    }

    .header .desktop-header .header-links .header-account-split__name {
      max-width: 11em;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .header .desktop-header .header-links .header-account-split__menu {
      position: absolute;
      left: 50%;
      top: 100%;
      min-width: calc(100% + 0px);
      padding-top: 10px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateX(-50%) translateY(-6px);
      transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
      z-index: 2;
    }

      .header .desktop-header .header-links .header-account-split__menu::before {
        content: '';
        position: absolute;
        top: 4px;
        left: 50%;
        width: 12px;
        height: 12px;
        margin-left: -6px;
        background-color: #003a66;
        transform: rotate(45deg);
        border-radius: 2px 0 0 0;
        box-shadow: -2px -2px 6px rgba(0, 76, 132, 0.12);
        transition: background-color 0.2s ease;
      }

      .header .desktop-header .header-links .header-account-split__menu:has(.header-account-split__sub:hover)::before {
        background-color: var(--secondary);
      }

    .header .desktop-header .header-links .header-account-split:hover .header-account-split__menu,
    .header .desktop-header .header-links .header-account-split:focus-within .header-account-split__menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .header .desktop-header .header-links .header-account-split__sub {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 10px 18px;
      border-radius: 50px;
      font-size: 12px !important;
      font-weight: 700;
      line-height: 1.2 !important;
      text-transform: none !important;
      text-decoration: none !important;
      color: var(--white) !important;
      background-color: #003a66;
      box-shadow: 0 6px 18px rgba(0, 76, 132, 0.22);
      white-space: nowrap;
      transform: none !important;
      transition: background-color 0.2s ease, box-shadow 0.2s ease;
    }

      .header .desktop-header .header-links .header-account-split__sub i {
        font-size: 15px;
        line-height: 1;
        flex-shrink: 0;
        transform: rotate(180deg);
      }
      .header .desktop-header .header-links .header-account-split__sub i.ns-user-plus {
        transform: rotate(0deg);
      }

      .header .desktop-header .header-links .header-account-split__sub span {
        line-height: 1.2 !important;
        text-transform: none !important;
      }

      .header .desktop-header .header-links .header-account-split__sub:hover {
        background-color: var(--secondary);
        color: var(--white) !important;
        box-shadow: 0 8px 20px rgba(0, 76, 132, 0.28);
        transform: none !important;
      }

    .header .desktop-header .header-links .header-account-split .signin-pill:hover {
      transform: translateY(-3px) scale(1.02) !important;
    }

  /* Circular cart (Figma): primary disc + secondary quantity pill */
  .header .cart-circular {
    background-color: var(--primary);
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white) !important;
    box-shadow: 0 4px 14px rgba(246, 53, 56, 0.3);
    text-decoration: none;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  }

    .header .cart-circular i {
      font-size: 18px;
    }

    .header .cart-circular:hover,
    .header .cart-circular:focus {
      transform: scale(1.06);
      box-shadow: 0 6px 20px rgba(246, 53, 56, 0.4);
      background-color: #e02e31;
      color: var(--white) !important;
    }

    .header .cart-circular .cart-qty {
      position: absolute;
      top: -4px;
      right: -4px;
      min-width: 20px;
      height: 20px;
      padding: 0 7px;
      border-radius: 100px;
      background-color: var(--secondary);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      line-height: 22px;
      text-align: center;
      font-family: var(--primary-font);
      box-sizing: border-box;
      border: none;
      pointer-events: none;
      align-items: center;
      justify-content: center;
      display: none;
      animation: badgePop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

      .header .cart-circular .cart-qty:not(.is-hidden) {
        display: flex;
      }

  @keyframes badgePop {
    0% {
      transform: scale(0);
    }

    100% {
      transform: scale(1);
    }
  }

  /* Mobile Header Styles */
  .mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    height: 60px;
  }

  .mobile-left {
    display: flex;
    align-items: center;
    gap: 20px;
  }

    .mobile-left i {
      font-size: 26px;
      color: var(--secondary);
      cursor: pointer;
      transition: color 0.2s ease;
    }

      .mobile-left i:hover {
        color: var(--primary);
      }

  .mobile-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

    .mobile-logo img {
      max-height: 45px;
      width: auto;
    }

  /* Responsive: mobile bar first; desktop row can expand for search-only strip */
  @media (max-width: 1024px) {
    .header {
      display: flex;
      flex-direction: column;
      padding: 0;
    }

    .desktop-header {
      display: none;
      order: 2;
      flex-direction: column;
      gap: 0;
      width: 100%;
      padding: 0 16px 12px;
      box-sizing: border-box;
    }

    .header.header-search-open .desktop-header {
      display: flex;
    }

      .header.header-search-open .desktop-header .header-logo,
      .header.header-search-open .desktop-header .header-links {
        display: none !important;
      }

      .header.header-search-open .desktop-header .header-search {
        display: block !important;
        max-width: none;
        width: 100%;
      }

    .mobile-header {
      display: flex;
      order: 1;
    }

    /* Mega menu: clip while it still lives under .header-menu; theme.js moves it under #side-menu (#side-menu-mega-mount) — avoids a visible flash before relocation */
    .master-wrapper-page .master-header .header-menu .megamenu-wrapper.tuwayq-megamenu-movable {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      overflow: hidden !important;
      clip-path: inset(50%) !important;
      clip: rect(1px, 1px, 1px, 1px) !important;
      white-space: nowrap !important;
      border: 0 !important;
    }

    #side-menu #side-menu-mega-mount .megamenu-wrapper.tuwayq-megamenu-movable {
      position: static !important;
      width: 100% !important;
      height: auto !important;
      padding: 0 !important;
      margin: 0 !important;
      overflow: visible !important;
      clip-path: none !important;
      clip: auto !important;
      white-space: normal !important;
    }
  }

  /* Utility */
  .is-hidden {
    display: none !important;
  }

  /* Header search — overrides legacy .search-box (wrap/center/200px input) + Figma pill + red icon button */
  .header-search .search-box form#small-search-box-form,
  .header-search #small-search-box-form {
    --header-search-inner-height: 44px;
    --header-search-btn-gap: 0px;
    --header-search-btn-size: calc(var(--header-search-inner-height) - var(--header-search-btn-gap));
    display: flex !important;
    flex-flow: row nowrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 4px !important;
    box-sizing: border-box;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

    .header-search #small-search-box-form .search-box-category {
      flex: 0 0 auto;
      max-width: 45%;
      height: var(--header-search-inner-height);
    }

    .header-search #small-search-box-form span:first-child {
      flex: 1;
      min-width: 0;
      display: flex;
      align-items: center;
    }

    .header-search #small-search-box-form:focus-within {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(246, 53, 56, 0.1);
    }

  .header-search .search-box-text {
    width: 100%;
    height: var(--header-search-inner-height);
    padding: 0 16px;
    border: none;
    font-size: 15px;
    font-family: var(--primary-font);
    background: transparent;
    color: var(--dark-grey);
    outline: none;
    box-sizing: border-box;
  }

    .header-search .search-box-text::placeholder {
      color: var(--medium-grey);
    }

  .header-search .search-box-button.button-1,
  .header-search #small-search-box-form .search-box-button.button-1,
  .header-search #small-search-box-form button.search-box-button {
    flex-shrink: 0;
    align-self: center;
    appearance: none;
    -webkit-appearance: none;
    min-width: 34px;
    width: 34px;
    height: 34px !important;
    margin: 0;
    padding: 0;
    border: 0 !important;
    border-radius: 8px;
    background: var(--primary) !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-transform: none !important;
    box-shadow: none !important;
    position: relative;
    top: 0;
    transform: translateY(0) !important;
    font-size: 12px;
  }

  .header-search .search-box-button .ns-search {
    font-size: 20px;
    line-height: 1;
    color: var(--white);
  }

  /* <input type="submit"> cannot hold an <i> tag icomoon pseudo-element reliably — use SVG background */
  .header-search input[type="submit"].search-box-button,
  .header-search .search-box input[type="submit"].search-box-button {
    flex-shrink: 0;
    align-self: center;
    min-width: 34px !important;
    width: 34px !important;
    height: var(--header-search-btn-size) !important;
    display: block !important;
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
    text-indent: -9999px !important;
    background-color: var(--primary) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 20px 20px !important;
    position: relative;
    top: auto;
  }

    .header-search input[type="submit"].search-box-button:hover,
    .header-search input[type="submit"].search-box-button:focus,
    .header-search .search-box input[type="submit"].search-box-button:hover,
    .header-search .search-box input[type="submit"].search-box-button:focus {
      background-color: #d62d30 !important;
      transform: scale(1.04);
    }

  .header-search .search-box-button::before {
    content: none !important;
    display: none !important;
  }

  .header-search .search-box-button:hover,
  .header-search .search-box-button:focus {
    background: #d62d30 !important;
    transform: scale(1.04);
  }

  /* Legacy .header-links applies to mobile cart wrapper — reset anchor */
  .header .mobile-right.header-links .cart-circular {
    display: flex !important;
    line-height: 1 !important;
    text-transform: none !important;
    vertical-align: middle;
  }

  /* --- Tuwayq catalog product box (Figma card) --- */

  .product-item.tuwayq-product-box {
    border-radius: 14px !important;
    overflow: hidden;
    background: #fff;
    box-shadow: none;
    border: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: start;
    width: 100%;
  }

    .product-item.tuwayq-product-box .picture {
      position: relative;
      margin: 0;
      border-radius: 0;
      overflow: hidden;
      background: #fff;
      aspect-ratio: unset;
    }

      .product-item.tuwayq-product-box .picture a {
        display: block;
        width: 100%;
        height: auto;
        position: relative;
      }

        .product-item.tuwayq-product-box .picture a img {
          position: absolute;
          inset-inline-start: 0;
          top: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          transform-origin: center;
          transition: transform 0.35s ease;
        }

      .product-item.tuwayq-product-box:hover .picture a:not(.flip-box-back) img,
      .product-item.tuwayq-product-box:hover .picture .swiper img,
      .product-item.tuwayq-product-box:hover .picture .flip-box-back img {
        transform: scale(1.04);
      }
      .product-item.tuwayq-product-box .picture::before {
        content: "";
        display: block;
        padding-top: 118%;
      }

      .product-item.tuwayq-product-box .picture a {
        position: absolute;
        inset-inline-start: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      /* SmartProductBox second image — crossfade over main on .picture hover */
      .product-item.tuwayq-product-box .picture .flip-box-back {
        position: absolute;
        inset: 0;
        z-index: 2;
        display: block;
        opacity: 0;
        transition: opacity 0.35s ease;
        pointer-events: none;
      }

      .product-item.tuwayq-product-box .picture .flip-box-back::before {
        content: "";
        display: block;
        padding-top: 120%;
      }

      .product-item.tuwayq-product-box .picture .flip-box-back img {
        position: absolute;
        inset-inline-start: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        padding: 6px;
      }

      .product-item.tuwayq-product-box .picture:hover .flip-box-back {
        opacity: 1;
        pointer-events: auto;
      }

      .product-item.tuwayq-product-box .picture:has(.flip-box-back) .swiper img,
      .product-item.tuwayq-product-box .picture:has(.flip-box-back) > a:not(.flip-box-back) img {
        transition: opacity 0.35s ease, transform 0.35s ease;
      }

      .product-item.tuwayq-product-box .picture:has(.flip-box-back):hover .swiper img,
      .product-item.tuwayq-product-box .picture:has(.flip-box-back):hover > a:not(.flip-box-back) img {
        opacity: 0;
      }

      .product-list .product-item.tuwayq-product-box .picture .flip-box-back::before {
        content: none;
        display: none;
        padding-top: 0;
      }

      .product-list .product-item.tuwayq-product-box .picture .flip-box-back img {
        padding: 0;
      }

      .product-item.tuwayq-product-box .picture .tuwayq-pb-badges {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 4;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        pointer-events: none;
      }

    .product-item.tuwayq-product-box .tuwayq-pb-badge {
      display: inline-block;
      padding: 6px 14px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.25;
      color: #fff;
    }
.product-details-page .tuwayq-pb-badges {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 68888;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  pointer-events: none;
}

.product-details-page span.tuwayq-pb-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
    .product-item.tuwayq-product-box .tuwayq-pb-badge--discount {
      background: #ff3549;
    }

    .product-item.tuwayq-product-box .tuwayq-pb-badge--new {
      background: #14b8a6;
    }

    .product-item.tuwayq-product-box .tuwayq-pb-badges .tuwayq-pb-badge-img {
      display: block;
      max-height: 28px;
      width: auto;
    }

    /* Wishlist + compare — stacked white circles, top-right (Figma) */
    .product-item.tuwayq-product-box .tuwayq-pb-picture-actions {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      pointer-events: auto;
    }

/* Grid / catalog cards: hover-reveal FABs from the edge (desktop only; ≤1000px stays always visible). */
@media (min-width: 1001px) {
  .product-item.tuwayq-product-box .tuwayq-pb-picture-actions {
    opacity: 0;
    transform: translateX(calc(-100% + 10px));
    pointer-events: none;
    transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.48s ease-out;
  }

  .product-item.tuwayq-product-box:hover .tuwayq-pb-picture-actions,
  .product-item.tuwayq-product-box:focus-within .tuwayq-pb-picture-actions {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  @media (prefers-reduced-motion: reduce) {
    .product-item.tuwayq-product-box .tuwayq-pb-picture-actions {
      opacity: 1;
      transform: none;
      pointer-events: auto;
      transition: none;
    }
  }
}

    .product-item.tuwayq-product-box .tuwayq-pb-fab {
      width: 38px;
      height: 38px;
      padding: 0;
      margin: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 50%;
      background: #fff;
      color: #ff3549;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

      .product-item.tuwayq-product-box .tuwayq-pb-fab .ns-heart:before,
      .product-item.tuwayq-product-box .tuwayq-pb-fab .ns-repeat:before {
        font-size: 16px;
      }

      .product-item.tuwayq-product-box .tuwayq-pb-fab:hover,
      .product-item.tuwayq-product-box .tuwayq-pb-fab:focus {
        transform: scale(1.1);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
      }

.product-item.tuwayq-product-box .tuwayq-pb-details {
  background: #fff;
  padding: 14px;
  padding-inline: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

  .tuwayq-pb-meta-hidden {
    display: none;
  }

  /* Price + cart column (grid card layout); list view overrides below */
  .product-item.tuwayq-product-box .tuwayq-pb-add-info {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
  }

  .product-item.tuwayq-product-box .tuwayq-pb-price-cta {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    margin-top: auto;
    gap: 0;
  }

.product-item.tuwayq-product-box .product-title {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  min-height: 40px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
}

    .product-item.tuwayq-product-box .product-title a {
      color: #000;
      text-decoration: none;
    }

@media (max-width: 1000px) {
  .product-item.tuwayq-product-box .product-title {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    min-height: 34px;
  }

  .product-list .product-item.tuwayq-product-box .tuwayq-pb-details > .product-title {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    min-height: 34px;
  }

  .product-item.tuwayq-product-box .tuwayq-pb-price-block .actual-price {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
  }
}

.product-item.tuwayq-product-box .tuwayq-pb-price-block {
  margin-top: auto;
  padding-bottom: 6px;
}

    .product-item.tuwayq-product-box .tuwayq-pb-price-block .prices {
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 8px 12px;
      min-height:24px;
    }

    .product-item.tuwayq-product-box .tuwayq-pb-price-block .old-price {
      color: #757575;
      text-decoration: line-through;
      font-size: 12px;
      margin: 0;
    }

    .product-item.tuwayq-product-box .tuwayq-pb-price-block .actual-price {
      color: var(--secondary);
      font-size: 16px;
      font-weight: 700;
      margin: 0;
    }

  .product-item.tuwayq-product-box .tuwayq-pb-vat-note {
    width: 100%;
    margin-top: 0;
    font-size: 13px;
    color: #757575;
    line-height: 1.2;
  }

  /* Inline Smart Product Box attribute chips hidden — overlay handles UX */
  .product-item.tuwayq-product-box .productbox-attributes {
    display: none !important;
  }

  .product-item.tuwayq-product-box .tuwayq-pb-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
    padding-top: 4px;
  }

  .product-item.tuwayq-product-box .tuwayq-pb-actions-row {
    min-width: 0;
    width: 100%;
    display: flex;
    margin: 0;
    font-size: inherit;
  }

    .product-item.tuwayq-product-box .tuwayq-pb-actions-row .buttons {
      font-size: inherit;
    }

  /* Undo catalog default 60% width so grid columns stay equal */
  .product-item.tuwayq-product-box .product-box-add-to-cart-button {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box;
  }

  /* Add to cart — outline style (theme primary) */
  .product-item.tuwayq-product-box .tuwayq-pb-btn--cart {
    flex: 1 1 auto;
    width: 100%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: auto !important;
    min-height: 48px;
    padding: 10px 8px;
    background: #fff !important;
    color: var(--theme-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid rgba(246, 53, 56, 0.2);
  }

    .product-item.tuwayq-product-box .tuwayq-pb-btn--cart .ns-Union:before {
      font-size: 16px;
    }

    .product-item.tuwayq-product-box .tuwayq-pb-btn--cart:hover,
    .product-item.tuwayq-product-box .tuwayq-pb-btn--cart:focus {
      background: #fff5f6 !important;
    }

  .product-item.tuwayq-product-box .tuwayq-pb-advance-wrap {
    min-width: 0;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
  }

    .product-item.tuwayq-product-box .tuwayq-pb-advance-wrap .cart-quantity,
    .product-item.tuwayq-product-box .tuwayq-pb-advance-wrap .cart-quantity.product-box-input,
    .product-item.tuwayq-product-box .tuwayq-pb-advance-wrap .qty-dropdown {
      display: none !important;
    }

    /* Buy now — outline style (secondary) */
    .product-item.tuwayq-product-box .tuwayq-pb-advance-wrap .buynow-btn {
      width: 100%;
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      height: auto !important;
      padding: 10px 8px;
      background: #fff !important;
      color: var(--secondary);
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      text-transform: none;
      white-space: nowrap;
      vertical-align: middle;
      flex: 1 1 auto;
      box-sizing: border-box;
      border: 1px solid rgba(0, 76, 132, 0.2);
    }

      .product-item.tuwayq-product-box .tuwayq-pb-advance-wrap .buynow-btn .ns-Union:before {
        font-size: 16px;
      }

      .product-item.tuwayq-product-box .tuwayq-pb-advance-wrap .buynow-btn:hover,
      .product-item.tuwayq-product-box .tuwayq-pb-advance-wrap .buynow-btn:focus {
        background: #f0f4f8 !important;
      }

@media (max-width: 1000px) {
  .product-item.tuwayq-product-box .tuwayq-pb-actions i {
    display: none !important;
  }
}

/* --- Category / search: list view (horizontal card, Figma) --- */
@media (min-width: 769px) {
  .product-list .item-box .product-item.tuwayq-product-box .picture + .details {
    margin: 0 !important;
  }

    .product-list .item-box .product-item.tuwayq-product-box.has-attribute .tuwayq-pb-details,
    .product-list .item-box .product-item.tuwayq-product-box .tuwayq-pb-details {
      width: auto !important;
      max-width: none !important;
    }

    .product-list .product-item.tuwayq-product-box {
      flex-direction: row;
      align-items: stretch !important;
      gap: 16px 20px;
      border: 1px solid var(--light-grey, #E6E6E6);
      border-radius: 8px !important;
    }

      .product-list .product-item.tuwayq-product-box .picture {
        float: none !important;
        flex: 0 0 220px;
        width: 220px;
        max-width: min(220px, 32vw);
        align-self: stretch;
        aspect-ratio: 1 / 1.12;
        border-radius: 0;
        border-start-start-radius: 8px;
        border-end-start-radius: 8px;
      }

        .product-list .product-item.tuwayq-product-box .picture a::before {
          content: none;
          display: none;
          padding-top: 0;
        }

        .product-list .product-item.tuwayq-product-box .picture a,
        .product-list .product-item.tuwayq-product-box .picture .swiper {
          height: 100%;
        }

        .product-list .product-item.tuwayq-product-box .picture a {
          width: 100%;
          position: absolute;
        }

        .product-list .product-item.tuwayq-product-box .picture img {
          position: static;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }

      .product-list .product-item.tuwayq-product-box .tuwayq-pb-details {
        padding: 16px 20px 16px 16px;
        padding-inline-start: 16px;
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        flex-flow: row wrap;
        align-items: flex-start;
        align-content: flex-start;
        column-gap: 24px;
        row-gap: 4px;
      }

  .product-list .product-item.tuwayq-product-box .tuwayq-pb-details > .product-title {
    flex: 1 1 100%;
    order: 1;
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
  }

        .product-list .product-item.tuwayq-product-box .tuwayq-pb-details > .tuwayq-pb-meta-hidden {
          flex: 1 1 100%;
          order: 2;
        }

      .product-list .product-item.tuwayq-product-box .tuwayq-pb-meta-hidden {
        display: block !important;
      }

        .product-list .product-item.tuwayq-product-box .tuwayq-pb-meta-hidden .sku,
        .product-list .product-item.tuwayq-product-box .tuwayq-pb-meta-hidden .product-rating-box {
          display: none;
        }

        .product-list .product-item.tuwayq-product-box .tuwayq-pb-meta-hidden .description {
          margin: 0 0 14px;
          color: #757575;
          font-size: 14px;
          line-height: 1.45;
        }

          .product-list .product-item.tuwayq-product-box .tuwayq-pb-meta-hidden .description[data-short-description="none"] {
            display: block;
          }

      .product-list .product-item.tuwayq-product-box .tuwayq-pb-details > .spb-list-attr-panel {
        order: 3;
        flex: 1 1 0;
        min-width: 0;
        margin: 0;
      }

      .product-list .product-item.tuwayq-product-box .tuwayq-pb-details > .tuwayq-pb-add-info {
        order: 4;
        flex: 1 1 100%;
        margin: 0;
        min-height: 0;
      }

      .product-list .product-item.tuwayq-product-box .tuwayq-pb-details:has(.spb-list-attr-panel) > .tuwayq-pb-add-info {
        flex: 0 0 min(150px, 26vw);
        justify-content: center;
        align-self: start;
      }

      .product-list .product-item.tuwayq-product-box .tuwayq-pb-price-cta {
        margin-top: 0;
        height: 100%;
        justify-content: space-between;
        gap: 12px;
        flex-direction: row;
      }

      .product-list .product-item.tuwayq-product-box .tuwayq-pb-details:has(.spb-list-attr-panel) .tuwayq-pb-price-cta .tuwayq-pb-price-block {
        display: none;
      }

      .product-list .product-item.tuwayq-product-box .tuwayq-pb-actions {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 0;
      }

      .product-list .product-item.tuwayq-product-box .spb-list-attr-panel__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 20px;
      }

      .product-list .product-item.tuwayq-product-box .spb-list-attr-panel__price-row {
        margin-top: 14px !important;
      }

        .product-list .product-item.tuwayq-product-box .spb-list-attr-panel__price-row .spb-attr-overlay__price-current {
          color: var(--secondary);
        }
  }

  @media (min-width: 992px) {
    .product-list .item-box .product-item.has-attribute .details .spb-list-attr-panel__price-row .spb-attr-overlay__price-current {
      margin: 0;
      font-size: 16px;
      line-height: 1.2;
      font-weight: 700;
    }
  }

  @media (max-width: 768px) {
    .product-list .product-item.tuwayq-product-box {
      flex-direction: column;
      align-items: stretch;
    }

      .product-list .product-item.tuwayq-product-box .picture {
        float: none !important;
        flex: 0 0 auto;
        width: 100%;
        max-width: none;
        aspect-ratio: 1 / 1.05;
        border-radius: 0;
        border-start-start-radius: 14px;
        border-start-end-radius: 14px;
      }

      .product-list .product-item.tuwayq-product-box .picture a::before {
        content: none;
        display: none;
        padding-top: 0;
      }

      .product-list .product-item.tuwayq-product-box .picture a,
      .product-list .product-item.tuwayq-product-box .picture .swiper {
        height: 100%;
      }

      .product-list .product-item.tuwayq-product-box .picture a {
        width: 100%;
      }

      .product-list .product-item.tuwayq-product-box .picture img {
        position: static;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .product-list .product-item.tuwayq-product-box .tuwayq-pb-details > .product-title {
        order: 1;
      }

      .product-list .product-item.tuwayq-product-box .tuwayq-pb-details > .tuwayq-pb-meta-hidden {
        order: 2;
      }

      .product-list .product-item.tuwayq-product-box .tuwayq-pb-details > .spb-list-attr-panel {
        order: 3;
        width: 100%;
      }

      .product-list .product-item.tuwayq-product-box .tuwayq-pb-details > .tuwayq-pb-add-info {
        order: 4;
        width: 100%;
        max-width: none;
      }

      .product-list .product-item.tuwayq-product-box .tuwayq-pb-details {
        display: flex;
        flex-direction: column;
        padding: 12px 14px 16px;
        padding-inline-start: 14px;
      }

      .product-list .product-item.tuwayq-product-box .tuwayq-pb-meta-hidden {
        display: block !important;
      }

        .product-list .product-item.tuwayq-product-box .tuwayq-pb-meta-hidden .sku,
        .product-list .product-item.tuwayq-product-box .tuwayq-pb-meta-hidden .product-rating-box {
          display: none;
        }

      .product-list .product-item.tuwayq-product-box .tuwayq-pb-details:has(.spb-list-attr-panel) .tuwayq-pb-price-cta .tuwayq-pb-price-block {
        display: none;
      }

      .product-list .product-item.tuwayq-product-box .tuwayq-pb-actions {
        grid-template-columns: 1fr 1fr;
      }
  }

  .tuwayq-pb-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
.header .desktop-header .header-links-list li#topcartlink .cart-qty,
.header .mobile-right #topcartlink-mobile .cart-qty {
  right: auto;
  left: -4px;
}

.header .desktop-header .wishlist-link .wishlist-qty {
  right: auto;
  left: -6px;
}

.header .desktop-header .compare-link .compare-qty {
  right: auto;
  left: -6px;
}

.header .mobile-right .wishlist-link .wishlist-qty {
  right: auto;
  left: -8px;
}

.header .mobile-right .compare-link .compare-qty {
  right: auto;
  left: -8px;
}

.header-search #small-search-box-form {
  flex-direction: row-reverse;
}

/* Swiper navigation — circular outline + icomoon chevrons (matches styles.css; RTL glyph direction) */
.swiper-button-next,
.swiper-button-prev {
  width: 35px;
  height: 35px;
  margin-top: 0;
  border-radius: 50%;
  border: 1px solid var(--theme-color);
  background-color: var(--white);
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next::before,
.swiper-button-prev::before {
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  speak: never;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
}

.swiper-button-prev::before {
  content: "\e932";
}

.swiper-button-next::before {
  content: "\e931";
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  border-color: var(--light-grey);
  color: var(--light-grey);
  opacity: 1;
  cursor: default;
}

@media (max-width: 1000px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 28px;
    height: 28px;
  }
}

/* SIDE MENU RTL — drawer position uses inset-inline-start in styles.css */
.close-side-menu {
  margin-inline: 0;
}

.side-menu-categories-back .ns-arrow-left::before {
  display: inline-block;
  transform: scaleX(-1);
}

.spl-readonly-field {
  background-color: #edf0f3 !important;
  border-color: #d6dbe1 !important;
  color: #5f6772 !important;
  cursor: not-allowed !important;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  caret-color: transparent;
}
.header-menu > .mobile-menu-close {
  display: none;
}

/********** MANUFACTURER LIST PAGE **********/

/* MANUFACTURER LIST PAGE - Based on sub-category-grid design */
.manufacturer-list-page .page-title {
  margin: 25px 0 25px;
  text-align: center;
  border: none;
  padding: 0;
  min-height: unset;
}

  .manufacturer-list-page .page-title h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
    text-align: center;
    line-height: 1;
  }

.manufacturer-list-page .item-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 0;
}

.manufacturer-list-page .item-box {
  width: 15%;
  box-sizing: border-box;
  margin: 0;
  float: none;
}

.manufacturer-list-page .manufacturer-item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 6px;
  padding: 15px 12.5px;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
}

  .manufacturer-list-page .manufacturer-item .picture {
    flex-shrink: 0;
    width: 100%;
    margin-bottom: 0;
    border-radius: 50%;
  }

    .manufacturer-list-page .manufacturer-item .picture a {
      display: flex;
      width: 100%;
      aspect-ratio: 1 / 1;
    }

      .manufacturer-list-page .manufacturer-item .picture a:before {
        padding-top: 0;
      }

      .manufacturer-list-page .manufacturer-item .picture a img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        position: relative;
        max-width: unset;
        border-radius: 50%;
      }

  .manufacturer-list-page .manufacturer-item .title {
    font-size: 14px;
    color: var(--black);
    font-weight: 500;
    text-align: right;
    margin: 0;
  }

    .manufacturer-list-page .manufacturer-item .title a {
      padding: 0;
      font-size: 14px;
      color: var(--black);
      font-weight: 500;
    }


.inputs input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  /* left: 0; */
  right: 2px;
  margin: 0 auto;
  top: 3px;
  width: 9px;
  height: 5px;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

/*ACCOUNT NAVIGATION STARTS*/
.block-account-navigation {
  background-color: #E6E6E680;
  border-radius: 8px;
  border: none;
  padding: 17px 17px 23px 17px;
}

  .block-account-navigation .title {
    background-color: transparent;
    border: none !important;
    color: var(--secondary);
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    margin: 0;
  }

  .block-account-navigation .listbox {
    border-bottom: none !important;
    padding: 0;
  }

  .block-account-navigation .forum-subscriptions {
    display: none;
  }

  .block-account-navigation .listbox li {
    padding-right: 0;
  }

    .block-account-navigation .listbox li.active a {
      color: var(--primary);
    }

    .block-account-navigation .listbox li a {
      padding-right: 0;
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 0%;
      vertical-align: middle;
      text-transform: capitalize;
      color: var(--black);
      display: flex;
      align-items: center;
    }

      .block-account-navigation .listbox li a svg {
        width: 17px;
        margin-left: 17px;
        margin-right: 5px;
      }

  .block-account-navigation .title {
    background: url('../images/account-navigation-arrow-plus.png') left no-repeat;
    background-size: 15px;
  }

    .block-account-navigation .title.collapsed {
      background: url('../images/account-navigation-arrow-minus.png') left no-repeat;
      background-size: 15px;
    }


.html-order-list-page .side-2, .html-return-request-list-page .side-2, .html-address-list-page .side-2, .html-back-in-stock-subscription-list-page .side-2, .html-reward-points-page .side-2, .html-change-password-page .side-2,
.html-my-product-reviews-list-page .side-2 {
  margin-top: 76px;
}


.html-account-page .page-title, .html-change-password-page .page-title {
  border-bottom: none;
  margin-top: 30px;
  margin-bottom: 25px;
  min-height: auto;
  padding: 0;
}

  .html-account-page .page-title h1 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0%;
    text-align: center;
    color: var(--black);
    margin-bottom: 0px;
    border-bottom: none;
    padding: 0;
  }

.html-account-page .order-list-page .page-body {
  border: 1px solid var(--light-grey);
  padding: 35px 35px 98px 35px;
  border-radius: 8px;
}

.html-account-page .order-list-page .order-item .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  margin: 0 0 10px;
  padding: 0;
}

  .html-account-page .order-list-page .order-item .title strong {
    font-weight: 600;
  }

.html-order-list-page .page-body, .html-return-request-list-page .page-body, .html-address-list-page .page-body, .html-back-in-stock-subscription-list-page .page-body, .html-reward-points-page .page-body, .html-change-password-page .page-body,
.html-my-product-reviews-list-page .page-body {
  border: 1px solid var(--light-grey);
  padding: 35px 35px 98px 35px;
  border-radius: 8px;
  color: var(--black);
}

.change-password-page form {
  margin-inline: auto;
  max-width: 550px;
  border-radius: 8px;
  margin: 0 auto;
  padding: 35px 35px 98px 35px;
  background: transparent !important;
  border: none !important;
}

.change-password-page .form-fields {
  background: transparent;
  border: none;
  padding: 0;
}

  .change-password-page .form-fields .inputs .form-input-wrapper {
    width: 100%;
  }

.change-password-page .change-password-button {
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 30px !important;
  margin-bottom: 0;
}

.address-list-page .title {
  display: none;
}

.address-list-page .address-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.address-list-page .address-item {
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  width: 31.5%;
  background: #E6E6E633;
}

.address-list-page .info, .order-list-page .info {
  margin: 0px !important;
  border-top: none !important;
  background-color: #f9f9f9;
  padding: 0px !important;
  line-height: 26px;
  color: var(--dark-grey);
}
.address-list-page .buttons {
  text-align: right !important;
  margin-bottom: 0;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
}

.address-list-page .edit-address-button, .address-list-page .delete-address-button {
  font-size: 18px;
  background: white;
  border-radius: 25px;
  box-shadow: 0px 2px 3px 0px #0000001A;
  padding: 10px 12px;
  border: none;
  margin-left: 10px;
  margin-top: 20px;
}

.address-item .edit-address-button{
    margin-right: 0;
}
/*ACCOUNT NAVIGATION ENDS*/
.footer-contact-info {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  max-width: 203px;
}
.vendor-list-page .item-box {
  margin-bottom: 20px;
}

.current-balance, .min-balance {
  unicode-bidi: isolate;
  direction: ltr;
}