/*#region Base */
:root {
  --clr-primary: rgb(8 61 150 / 0.91);
  --clr-white: #fff;
  --clr-primary-hover: #08259b;
  --clr-gray-g100: #f7f7f9;
  --clr-gray-g200: #d9d8da;
  --clr-gray-g300: #bab9bb;
  --clr-gray-g400: #9b9a9c;
  --clr-gray-g500: #7c7b7d;
  --text-color: #55545b;
  --heading-color: #1a152e;
  --clr-error: red;
  --clr-success: green;
  --clr-info: #66b3ff;
  --clr-warning: #ff9800;
  --header-upper-bg: #1a152e;
  --header-upper-text: rgba(255, 255, 255, 0.8);
  --header-upper-text-hover: #fff;
  --header-shadow: 0 2px 12px rgba(8, 0, 42, 0.06);
  --dropdown-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  --dropdown-radius: 8px;
  --nav-gap: 40px;
  --header-transition: 0.2s ease;
}

/*#endregion Base */

/*#region Reset */
* {
  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;
  -webkit-text-size-adjust: none;
}

ol,
ul {
  list-style: none;
  padding-left: 0 !important;
}

p {
  margin-bottom: 0;
}

dl,
ol,
ul {
  margin-bottom: 0 !important;
}

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"] {
  -webkit-appearance: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 40px var(--clr-gray-g100) inset !important;
  transition: none;
}

.form-select {
  font-size: 14px;
  color: var(--text-color);
  box-shadow: none;
  outline: none;
}

.form-select:hover,
.form-select:focus {
  border-color: var(--clr-primary);
  box-shadow: none;
}

script {
  display: none !important;
}

/************Bootstrap Reset *************/
.btn-close {
  box-shadow: none;
  border: none;
  background: none;
  opacity: 1;
  width: auto;
  height: auto;
}

.btn-close:focus {
  box-shadow: none;
}

/*#endregion Reset*/

/*#region GlobalStyle*/
body {
  max-width: 100%;
  overflow-x: hidden;
  background-color: #fff;
  font-family: "Google Sans", sans-serif !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-weight: 600 !important;
  line-height: 1.5;
  color: var(--heading-color);
  margin-bottom: 0;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none !important;
}

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

a:has(.ri-arrow-right-long-line) .ri-arrow-right-long-line {
  margin-left: 5px;
  transition: 0.3s ease;
}

a:has(.ri-arrow-right-long-line):hover .ri-arrow-right-long-line {
  margin-left: 10px;
  transition: 0.3s ease;
}

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

::selection {
  color: white;
  background: var(--clr-primary);
}

/**** Input Styling ****/
textarea {
  min-height: 150px;
}

select {
  background: var(--clr-white) url(../images/arrow-drop-down-line.png) no-repeat center right 10px !important;
  min-width: 60px;
  padding: 10px 16px;
  /*padding-inline-end: 32px;*/
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 4px;
  border: 1px solid var(--clr-gray-g200);
  outline: none;
  color: inherit;
  background: var(--clr-gray-g100);
  box-shadow: 0 1px 4px -2px transparent;
  transition: all 0.3s ease-out 0s;
}

select:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 1px 4px -3px var(--clr-primary);
  background: var(--clr-white);
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--clr-primary);
  height: 1.3em;
  width: 1.3em;
  transition: all 0.3s ease-in;
}

input[type="checkbox"]:hover,
input[type="radio"]:hover,
input[type="checkbox"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:active,
input[type="radio"]:active,
input[type="checkbox"]:visited,
input[type="radio"]:visited,
input[type="checkbox"]:checked,
input[type="radio"]:checked {
  transition: all 0.3s ease-in;
}

.inputs {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 0 28px;
  text-align: start;
  white-space: nowrap;
  /*fix for 'required' elements*/
  font-size: inherit;
}

.inputs:not(.custom-attributes):has(input[type="checkbox"]) {
  flex-direction: row;
  gap: 8px;
  align-items: end;
}

.inputs:not(.custom-attributes):has(input[type="checkbox"])>label {
  display: flex !important;
  /* Important to override boostrap */
  justify-content: center;
  align-items: center;
  margin: 0;
}

.inputs.custom-attributes {
  flex-direction: column;
}

.inputs label {
  width: max-content;
  margin-bottom: 8px;
}

.inputs label {
  font-weight: 400;
}

.inputs>label {
  font-weight: 500;
}

.inputs input[type="text"],
.inputs input[type="email"],
.inputs input[type="tel"],
.inputs input[type="password"],
.inputs select,
.inputs textarea {
  width: 100%;
}

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

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

.inputs .form-input-wrapper {
  display: inline-block;
  max-width: 100%;
}

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

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  padding: 10px 16px;
  border-radius: 4px;
  border: 1px solid var(--clr-gray-g200);
  outline: none;
  color: inherit;
  background: var(--clr-gray-g100);
  box-shadow: 0 1px 4px -2px transparent;
  transition: all 0.3s ease-out 0s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 1px 4px -3px var(--clr-primary);
}

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

input[type="password"] {
  padding-inline-end: 40px;
}

[id^="eyeToggle"] {
  position: absolute;
  top: 30%;
  right: 12px;
  cursor: pointer;
}

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

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

.button-2 i,
.button-1 i {
  margin-inline-end: 4px;
}

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

.home-page .section {
  margin-bottom: 70px;
}

.fieldset .title strong,
.section .title strong {
  color: var(--heading-color);
  line-height: 1.2;
}

.section .title {
  color: var(--heading-color);
  font-size: calc(1.5em + 1.5vw);
  font-weight: 800 !important;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: var(--clr-primary);
}

.section .title.title--center {
  text-align: center;
  position: static;
  display: block;
  padding-bottom: 0;
}

.section .title.title--center::after {
  content: none;
}

.section .subtitle {
  max-width: 740px;
  margin: 24px auto 0 auto;
}

.section .subtitle--center {
  text-align: center;
}

.category-page .category-inner-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.header--underline {
  border-bottom: 1px solid var(--clr-gray-g200);
}

:is(.section.shipments, .section.products) .title {
  margin-bottom: 0.6em;
}

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

.form-fields {
  position: relative;
}

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

.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;
}

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

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

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

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

.center-1 .buttons {
  text-align: center;
}

.center-1:has(.contact-page) {
  margin-bottom: 0 !important;
}

.contact-us-grid {
  margin-bottom: 64px;
}

.contact-us-grid .contact-us-form {
  max-width: 550px;
  margin: 0 auto;
}

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

.site-page {
  margin: 4rem 0;
}

.page {
  min-height: 200px;
}

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

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

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

.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;
}

.top__banner-wrapper {
  overflow-x: clip;
}

/*#endregion GlobalStyle*/

/*#region Utils*/
.text--primary {
  color: var(--clr-primary);
}

.text--black {
  color: var(--heading-color);
}

.text--success {
  color: var(--clr-success);
}

.text-gray-g300 {
  color: var(--clr-gray-g300);
}

.bg-gray-g200 {
  background-color: var(--clr-gray-g200);
}

.text-12 {
  font-size: 12px;
}

.text-14 {
  font-size: 14px;
}

.text-16 {
  font-size: 16px;
}

.text-18 {
  font-size: 18px;
}

.text-24 {
  font-size: 24px;
}

.theme-icon {
  font-size: 16px;
}

.theme-icon--md {
  font-size: 18px;
}

.theme-icon--lg {
  font-size: 20px;
}

.theme-icon--xl {
  font-size: 24px;
}

.theme-icon--2xl {
  font-size: 32px;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--heading-color);
}

.section-gap {
  margin-top: 40px;
}

.button {
  display: inline-block;
  padding: 12px 32px;
  text-align: center;
  font-size: inherit;
  color: var(--clr-white);
  text-transform: capitalize;
  border: 1px solid transparent;
  border-radius: 6px;
  outline: none;
  transition: all 0.3s ease;
}

.button--md {
  padding: 8px 16px;
}

.button--sm {
  display: inline-block;
  font-size: 14px;
  padding: 4px 12px;
}

.button--primary {
  color: var(--clr-white);
  background-color: var(--clr-primary);
}

.button--secondary {
  color: var(--clr-primary);
  background-color: var(--clr-white) !important;
  border-color: var(--clr-gray-g200);
}

.button--gray {
  color: var(--clr-primary);
  background-color: var(--clr-white);
  border-color: var(--clr-gray-g400);
}

.button--danger {
  color: var(--clr-error);
  background-color: var(--clr-white);
  border-color: var(--clr-error);
}

.button--danger-filled {
  color: var(--clr-white);
  background-color: var(--clr-error);
  border-color: var(--clr-white);
}

.button--primary:hover,
.button--primary:focus,
.button--sm:hover,
.button--sm:focus,
.button--md:hover,
.button--md:focus,
.button--danger-filled:hover,
.button--danger-filled:focus {
  opacity: 0.9;
}

.button--secondary:hover,
.button--secondary:focus {
  color: var(--clr-white);
  background-color: var(--clr-primary) !important;
  border: 1px solid transparent;
}

.button--gray:hover,
.button--gray:focus {
  color: var(--clr-white);
  background-color: var(--clr-gray-g400);
  border-color: var(--clr-white);
}

.button--danger:hover,
.button--danger:focus {
  color: var(--clr-white);
  background-color: var(--clr-error);
}

/*#endregion Utils*/

/*********** GLOBAL FORMS ***********/
.form-fields {
  position: relative;
  margin-top: 12px;
}

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

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

.inputs .option-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-width: 99%;
  gap: 8px;
  vertical-align: middle;
}

.inputs .option-list li {
  display: inline-block;
}

.inputs .form-input-wrapper {
  display: inline-block;
  max-width: 100%;
}

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

.required {
  position: absolute;
  margin: 0;
  vertical-align: top;
  inset-inline-end: 5px;
  font-size: 20px;
  font-weight: normal;
  color: var(--clr-error);
}

.product-essential dl dt .required,
.variant-overview .required {
  position: static;
}

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

.validation-summary-errors {
  font-size: 0.75rem;
}

/***** Font Styling ****/
b,
strong {
  font-weight: 500;
}

label {
  font-weight: 500;
  color: var(--heading-color);
}

.footer a {
  font-weight: 400;
}

p,
a {
  font-size: inherit;
}

/*********** 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(--clr-gray-g200);
  background-color: var(--clr-gray-g100);
  color: var(--heading-color);
  padding: 18px;
  white-space: nowrap;
  font-weight: 500;
}

.cart th.quantity,
.data-table th.quantity,
.cart td.quantity,
.data-table td.quantity {
  text-align: center;
}

.cart th.total,
.data-table th.total,
.cart td.total,
.data-table td.total {
  text-align: end;
}

.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(--clr-gray-g200) var(--clr-gray-g200);
  background-color: #fff;
  padding: 20px;
}

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

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

.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: 280px;
  text-align: left;
}

.cart .product .product__extra-details,
.data-table .product .product__extra-details {
  font-size: 14px;
}

.cart .product .product__extra-details .attr-info,
.data-table .product .product__extra-details .attr-info {
  line-height: 22px;
  word-break: break-all;
}

.cart td.product-picture,
.cart td.picture {
  vertical-align: baseline;
}

.cart td.move-to-cart {
  vertical-align: top;
}

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

.cart .product a,
.data-table .product a,
.data-table .info a,
.data-table .name a {
  font-weight: 500;
  color: var(--heading-color);
}

.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,
.data-table .name a:hover,
.data-table .name a:focus {
  color: var(--clr-primary);
  text-decoration: none;
}

.data-table .attributes-info {
  word-break: break-all;
}

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

.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 {
  border: none;
  outline: none;
  background-color: transparent;
}

.cart .remove-from-cart .remove-btn:hover {
  color: var(--clr-error);
}

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

.cart td.quantity {
  min-width: 212px;
}

.cart td.quantity input {
  width: 100%;
  text-align: center;
  padding: 12px;
  max-width: 82px;
  margin: 0 auto;
}

.cart td.quantity .quantity-btn {
  border: none;
  outline: none;
  padding: 0 10px;
  border-radius: 4px;
  border: 1px solid var(--clr-gray-g200);
}

.cart td.subtotal,
.data-table td.total {
  color: var(--heading-color);
  font-weight: 500;
}

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

.data-table em a {
  font-weight: 500;
  color: var(--text-color);
}

/*#region NOTIFICATIONS & POPUPS*/
/*********** NOTIFICATIONS & POPUPS  ***********/

/* ======== Toast / Bar Notifications ======== */
.bar-notification-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  width: 380px;
  max-width: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.bar-notification {
  position: relative;
  display: none;
  padding: 16px 44px 16px 52px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  pointer-events: all;
  animation: toastSlideIn 0.35s cubic-bezier(0.21, 1.02, 0.73, 1);
}

/* Icon circle before text */
.bar-notification::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "remixicon";
  font-size: 15px;
  font-style: normal;
  color: #fff;
  line-height: 26px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

/* Accent bar on left */
.bar-notification::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 12px 0 0 12px;
}

/* Success toast */
.bar-notification.success {
  border-left: 4px solid #22c55e;
}

.bar-notification.success::before {
  content: "\EB7B";
  background: #22c55e;
}

.bar-notification.success::after {
  background: #22c55e;
}

/* Error toast */
.bar-notification.error {
  color: var(--heading-color);
  border-left: 4px solid var(--clr-error);
}

.bar-notification.error::before {
  content: "\EB99";
  background: var(--clr-error);
}

.bar-notification.error::after {
  background: var(--clr-error);
}

/* Warning toast */
.bar-notification.warning {
  color: var(--heading-color);
  border-left: 4px solid var(--clr-warning);
}

.bar-notification.warning::before {
  content: "\F028";
  background: var(--clr-warning);
}

.bar-notification.warning::after {
  background: var(--clr-warning);
}

.bar-notification .content {
  margin: 0;
}

.bar-notification .content a {
  color: var(--clr-primary);
  text-decoration: underline;
}

.bar-notification .close {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.15s;
  line-height: 1;
}

.bar-notification .close:hover {
  opacity: 1;
}

.bar-notification .close:after {
  content: "\EB97";
  font-family: "remixicon", serif !important;
  font-style: normal;
  font-size: 1.25em;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

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

.noscript {
  border-bottom: 1px solid #333;
  background-color: #ff9;
  padding: 30px 15px;
  text-align: center;
  line-height: 22px;
  color: #444;
}

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

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

/* ========================================
   Bootstrap Modal - Modern Modal Design
   ======================================== */

/* Backdrop */
.modal-backdrop.show {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 1 !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Base modal */
.nop-modal .modal-dialog {
  animation: scaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nop-modal .modal-content {
  border: none;
  border-radius: 16px;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  font-family: "Afacad", sans-serif;
}

@media (max-width: 767.98px) {
  .nop-modal .modal-dialog {
    margin: 16px;
    max-width: calc(100% - 32px);
  }
}

@media (min-width: 768px) {
  .nop-modal .modal-dialog {
    min-width: 600px;
  }
}

/* Header */
.nop-modal__header {
  border: none;
  border-radius: 0;
  padding: 24px 28px;
  position: relative;
  color: #fff;
  background-color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .nop-modal__header {
    padding: 20px 24px;
  }
}

.nop-modal__title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  width: calc(100% - 80px);
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 767.98px) {
  .nop-modal__title {
    font-size: 18px;
  }
}

/* Close button */
.nop-modal__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  z-index: 10;
  font-size: 0;
  color: #fff;
  line-height: 1;
  opacity: 1;
}

.nop-modal__close:hover,
.nop-modal__close:focus {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) rotate(90deg);
  opacity: 1;
}

.nop-modal__close::before {
  content: "\EB98";
  font-family: "remixicon";
  font-size: 20px;
  color: #fff;
  font-weight: normal;
  line-height: 1;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  width: 20px;
  height: 20px;
  text-align: center;
}

/* Body */
.nop-modal__body {
  padding: 32px 28px;
  background: #fff;
  line-height: 1.6;
  color: #444;
  overflow-y: auto;
}

@media (max-width: 767.98px) {
  .nop-modal__body {
    padding: 24px;
    font-size: 16px;
  }
}

.nop-modal__body p {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .nop-modal__body p {
    font-size: 16px;
  }
}

.nop-modal__body p:not(:last-child) {
  margin-bottom: 4px;
}

/* Footer */
.nop-modal__footer {
  background: var(--clr-gray-g100);
  border: none;
  padding: 16px 28px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 767.98px) {
  .nop-modal__footer {
    padding: 16px 24px;
  }
}

.nop-modal__footer .btn {
  margin: 0;
  padding: 8px 24px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  font-family: "Afacad", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 6px;
}

@media (max-width: 767.98px) {
  .nop-modal__footer .btn {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 90px;
  }
}

/* ======== Success notification ======== */
.nop-modal--success .nop-modal__header {
  background: transparent;
  padding: 8px 8px 0;
  min-height: 0;
}

.nop-modal--success .nop-modal__title {
  display: none;
}

.nop-modal--success .nop-modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  transform: none;
  background: var(--clr-gray-g100);
  border: 1px solid var(--clr-gray-g200);
  color: var(--clr-gray-g400);
  z-index: 10;
}

.nop-modal--success .nop-modal__close::before {
  color: var(--clr-gray-g400);
}

.nop-modal--success .nop-modal__close:hover {
  background: var(--clr-gray-g200);
  transform: none;
}

.nop-modal--success .nop-modal__body {
  position: relative;
  padding-top: 48px;
}

.nop-modal--success .nop-modal__body::before {
  content: "";
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
  animation: successBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (max-width: 767.98px) {
  .nop-modal--success .nop-modal__body::before {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
}

.nop-modal--success .nop-modal__body::after {
  content: "\EB7B";
  font-family: "remixicon";
  position: absolute;
  top: 84px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 38px;
  font-weight: normal;
  color: #fff;
  line-height: 1;
  animation: checkPop 0.4s ease 0.25s both;
  z-index: 1;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 767.98px) {
  .nop-modal--success .nop-modal__body::after {
    top: 78px;
    font-size: 34px;
  }
}

.nop-modal--success .nop-modal__body p {
  font-weight: 600;
  font-size: 16px;
  color: var(--heading-color);
}

@keyframes successBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.15);
    opacity: 1;
  }

  80% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes checkPop {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* ======== Error notification ======== */
.nop-modal--error .nop-modal__header {
  background: transparent;
  padding: 8px 8px 0;
  min-height: 0;
}

.nop-modal--error .nop-modal__title {
  display: none;
}

.nop-modal--error .nop-modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  transform: none;
  background: var(--clr-gray-g100);
  border: 1px solid var(--clr-gray-g200);
  color: var(--clr-gray-g400);
  z-index: 10;
}

.nop-modal--error .nop-modal__close::before {
  color: var(--clr-gray-g400);
}

.nop-modal--error .nop-modal__close:hover {
  background: var(--clr-gray-g200);
  transform: none;
}

.nop-modal--error .nop-modal__body {
  position: relative;
  padding-top: 48px;
}

.nop-modal--error .nop-modal__body::before {
  content: "";
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
  animation: errorPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (max-width: 767.98px) {
  .nop-modal--error .nop-modal__body::before {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
}

.nop-modal--error .nop-modal__body::after {
  content: "\EB99";
  font-family: "remixicon";
  position: absolute;
  top: 84px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 38px;
  font-weight: normal;
  color: #fff;
  line-height: 1;
  animation: errorShake 0.5s ease 0.25s both;
  z-index: 1;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 767.98px) {
  .nop-modal--error .nop-modal__body::after {
    top: 78px;
    font-size: 34px;
  }
}

.nop-modal--error .nop-modal__body p {
  font-weight: 600;
  font-size: 16px;
  color: var(--heading-color);
}

@keyframes errorPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.15);
    opacity: 1;
  }

  80% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes errorShake {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }

  50% {
    transform: translate(-50%, -50%) scale(1) translateX(6px);
    opacity: 1;
  }

  70% {
    transform: translate(-50%, -50%) scale(1) translateX(-4px);
  }

  90% {
    transform: translate(-50%, -50%) scale(1) translateX(2px);
  }

  100% {
    transform: translate(-50%, -50%) scale(1) translateX(0);
  }
}

/* ======== Warning notification ======== */
.nop-modal--warning .nop-modal__header {
  background: #f59e0b;
}

.nop-modal--warning .nop-modal__body {
  position: relative;
}

.nop-modal--warning .nop-modal__body::before {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: #f59e0b;
  border-radius: 50%;
  position: relative;
  animation: warningBounce 0.6s ease;
}

@media (max-width: 767.98px) {
  .nop-modal--warning .nop-modal__body::before {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }
}

.nop-modal--warning .nop-modal__body::after {
  content: "\ECCC";
  font-family: "remixicon";
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 42px;
  font-weight: normal;
  color: white;
  line-height: 1;
  animation: warningIcon 0.6s ease 0.2s both;
  z-index: 1;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 767.98px) {
  .nop-modal--warning .nop-modal__body::after {
    top: 56px;
    font-size: 38px;
  }
}

.nop-modal--warning .nop-modal__body p {
  font-weight: 500;
  color: #d97706;
}

@keyframes warningBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes warningIcon {

  0%,
  20%,
  40%,
  60%,
  80% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* Link styling inside modals */
.nop-modal__body a {
  color: var(--clr-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.nop-modal__body a:hover,
.nop-modal__body a:focus {
  color: var(--clr-primary-hover);
}

.nop-modal--error .nop-modal__body a {
  color: var(--clr-error);
}

.nop-modal--error .nop-modal__body a:hover,
.nop-modal--error .nop-modal__body a:focus {
  color: #dc2626;
}

.nop-modal--warning .nop-modal__body a {
  color: var(--clr-warning);
}

.nop-modal--warning .nop-modal__body a:hover,
.nop-modal--warning .nop-modal__body a:focus {
  color: #d97706;
}

/* ======== Delete Confirmation Dialog ======== */
.nop-modal--delete .nop-modal__header {
  background: #f59e0b;
  padding: 20px 28px;
}

@media (max-width: 767.98px) {
  .nop-modal--delete .nop-modal__header {
    padding: 16px 24px;
  }
}

.nop-modal--delete .nop-modal__body {
  padding: 40px 28px 28px;
  position: relative;
  text-align: center;
}

@media (max-width: 767.98px) {
  .nop-modal--delete .nop-modal__body {
    padding: 36px 24px 24px;
  }
}

.nop-modal--delete .nop-modal__body::before {
  content: "\ECA1";
  font-family: "remixicon";
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: #f59e0b;
  border-radius: 50%;
  font-size: 36px;
  color: white;
  line-height: 64px;
  text-align: center;
  animation: warningBounce 0.6s ease;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 767.98px) {
  .nop-modal--delete .nop-modal__body::before {
    width: 56px;
    height: 56px;
    line-height: 56px;
    font-size: 32px;
    margin-bottom: 20px;
  }
}

.nop-modal--delete .nop-modal__body p {
  font-size: 18px;
  line-height: 1.5;
  color: #444;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .nop-modal--delete .nop-modal__body p {
    font-size: 15px;
  }
}

.nop-modal--delete .nop-modal__footer .btn-danger {
  background: var(--clr-error);
  color: #fff;
}

.nop-modal--delete .nop-modal__footer .btn-danger:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.nop-modal--delete .nop-modal__footer .btn-danger:active {
  transform: translateY(0);
}

.nop-modal--delete .nop-modal__footer .btn-cancel {
  background: #fff;
  color: #444;
  border: 2px solid var(--clr-gray-g200);
}

.nop-modal--delete .nop-modal__footer .btn-cancel:hover {
  background: var(--clr-gray-g100);
  border-color: #ccc;
}

.nop-modal--delete .nop-modal__footer .btn-cancel:active {
  transform: scale(0.98);
}

.nop-modal--delete .nop-modal__footer .btn span {
  color: inherit;
}

/* ======== Address dialogs (billing/shipping) ======== */
.nop-modal--address .modal-dialog {
  max-width: 800px;
  width: 90%;
}

@media (max-width: 767.98px) {
  .nop-modal--address .modal-dialog {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }
}

@media (min-width: 768px) {
  .nop-modal--address .modal-dialog {
    width: 700px;
    min-width: 700px;
  }
}

@media (min-width: 992px) {
  .nop-modal--address .modal-dialog {
    width: 800px;
  }
}

.nop-modal--address .nop-modal__header {
  background: var(--clr-primary);
  padding: 20px 24px;
}

.nop-modal--address .nop-modal__title {
  text-align: left;
  width: calc(100% - 50px);
  font-size: 20px;
}

@media (max-width: 767.98px) {
  .nop-modal--address .nop-modal__title {
    font-size: 18px;
  }
}

.nop-modal--address .nop-modal__close {
  right: 20px;
}

.nop-modal--address .nop-modal__body {
  padding: 24px;
  max-height: 70vh;
  overflow-y: auto;
  text-align: left;
}

@media (max-width: 767.98px) {
  .nop-modal--address .nop-modal__body {
    padding: 20px;
  }
}

.nop-modal--address .nop-modal__body p {
  text-align: left;
  font-size: 14px;
  padding: 0;
}

/* ======== Content pages in modals (BackInStock, Topics) ======== */
.nop-modal__body .page {
  min-height: 0;
}

.nop-modal__body .page-title {
  min-height: 0;
  margin: 0 0 15px;
  padding: 0 10px 10px 10px;
  text-align: center;
}

.nop-modal__body .page-title h1 {
  font-size: 24px;
  line-height: 30px;
}

.nop-modal__body .back-in-stock-subscription-page {
  text-align: center;
}

.nop-modal__body .back-in-stock-subscription-page .tooltip {
  margin-bottom: 10px;
}

.nop-modal__body .back-in-stock-subscription-page .button-1 {
  border: none;
  background-color: var(--clr-primary);
  padding: 10px 15px;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

.nop-modal__body .back-in-stock-subscription-page .button-1:hover,
.nop-modal__body .back-in-stock-subscription-page .button-1:focus {
  background-color: var(--clr-primary);
}

/* Notification modals get higher z-index for stacking */
.nop-modal--notification {
  z-index: 1060;
}

.nop-modal--notification+.modal-backdrop {
  z-index: 1059;
}

/* Keep jQuery UI autocomplete above modals */
.search-box .ui-widget-content a {
  font-weight: 500 !important;
}

.eu-cookie-bar-notification {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  height: auto;
  background-color: var(--clr-white);
  padding: 16px 16px;
  box-shadow: 0px -8px 15px -3px rgba(0, 0, 0, 0.1);
}

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

button#eu-cookie-ok {
  max-width: 100%;
}

/*#endregion*/

.theme-menu-offcanvas .offcanvas-header img {
  max-width: 110px;
  height: auto;
}

.theme-menu-offcanvas .menu-content {
  display: grid;
  grid-auto-rows: minmax(0, 1fr) auto;
  height: 100%;
}

.theme-menu-offcanvas .menu-content .menu-body {
  overflow-y: auto;
  overscroll-behavior-y: contain;
}

.theme-menu-offcanvas .menu-content .menu-footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid var(--clr-gray-g200);
}

.theme-menu-offcanvas .menu-content .menu-footer .header-selectors-wrapper {
  width: 100%;
  padding: 0;
}

.theme-menu-offcanvas .menu-content .menu-footer .menu-footer-contact {
  display: flex;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid var(--clr-gray-g200);
}

.theme-menu-offcanvas .menu-content .menu-footer .menu-footer-contact__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  word-break: break-word;
}

.theme-menu-offcanvas .menu-content .menu-footer .menu-footer-contact__item i {
  color: var(--clr-primary);
  flex: 0 0 auto;
}

.theme-menu-offcanvas .menu-content .menu-footer .menu-footer-contact__item:hover,
.theme-menu-offcanvas .menu-content .menu-footer .menu-footer-contact__item:focus {
  color: var(--clr-primary);
}

.theme-menu-offcanvas .menu-content .menu-footer .header-selectors-wrapper div:first-child {
  border-right: 1px solid var(--clr-gray-g200);
}

.theme-menu-offcanvas .menu-content .menu-footer .currency-selector,
.theme-menu-offcanvas .menu-content .menu-footer .tax-display-type-selector,
.theme-menu-offcanvas .menu-content .menu-footer .language-selector {
  width: 100%;
}

.theme-menu-offcanvas .menu-content .menu-footer .currency-selector select,
.theme-menu-offcanvas .menu-content .menu-footer .tax-display-type-selector select,
.theme-menu-offcanvas .menu-content .menu-footer .language-selector select {
  padding-top: 10px;
  padding-bottom: 10px;
  border: none;
}

/*********** HEADER ***********/
/*#region Header*/
.admin-header-links {
  background-color: var(--clr-primary);
  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: #555;
  padding: 0 15px;
}

.admin-header-links .impersonate a:hover,
.admin-header-links .impersonate a:focus {
  background-color: #666;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: #fff;
  transition: all 0.3s;
  box-shadow: var(--header-shadow);
}

.header-upper {
  display: none;
  position: relative;
  z-index: 1;
  background-color: var(--header-upper-bg);
  color: var(--header-upper-text);
}

.header-selectors-wrapper {
  padding: 10px 0;
}

.header-selectors-wrapper>div {
  display: block;
}

.header-selectors-wrapper select {
  width: 100%;
  height: auto;
  padding: 4px 8px;
  padding-inline-end: 32px;
  font-size: 12px;
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--header-upper-text);
  transition: border-color var(--header-transition);
}

.header-selectors-wrapper select:hover,
.header-selectors-wrapper select:focus {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--header-upper-text-hover);
}

.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 PROFILE (FLYOUT PROFILE) ************/
.flyout-user {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 100;
  width: 220px;
  box-shadow: var(--dropdown-shadow);
  background-color: #fff;
  border-radius: var(--dropdown-radius);
  overflow: hidden;
  display: none;
}

.flyout-user.active {
  display: none;
}

.flyout-user__options__item {
  padding: 14px 28px;
  transition: background-color var(--header-transition), color var(--header-transition);
}

.flyout-user__options__item:hover {
  color: var(--clr-primary) !important;
  background-color: var(--clr-gray-g100);
}

.flyout-user__options__item:not(:last-child) {
  border-bottom: 1px solid var(--clr-gray-g200);
}

.flyout-user__options__item svg {
  width: 18px;
}

.header-links-wrapper {
  position: relative;
}

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

.header-links li {
  display: inline-block;
}

.header-links li:not(:first-child) {
  margin-left: 4px;
}

.header-links span,
.header-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 12px;
  border-radius: 8px;
  transition: background-color var(--header-transition);
}

.header-links a:hover,
.header-links a:focus {
  color: var(--clr-primary);
  background-color: var(--clr-gray-g100);
}

.cart-qty,
.wishlist-qty {
  position: absolute;
  top: 2px;
  right: 0;
  width: 18px;
  height: 18px;
  font-size: 10px;
  color: #fff;
  background-color: var(--clr-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.bottom-navigation .cart-qty {
  top: -10px;
  right: -7px;
}

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

.header-logo a img {
  max-width: 155px;
  opacity: 1;
}

.header-links .search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: inherit;
  background-color: transparent;
  border: none;
  outline: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color var(--header-transition);
}

.header-links .search-button:hover {
  background-color: var(--clr-gray-g100);
}

.header-upper .profile a {
  color: var(--text-color);
  transition: color var(--header-transition);
}

.header-upper .profile :is(.user-name, .register, .login)>* {
  color: var(--header-upper-text-hover);
}

.header-upper .profile a:hover {
  color: var(--header-upper-text-hover);
}

.profile-divider {
  color: var(--header-upper-text);
  margin: 0 4px;
  opacity: 0.4;
  user-select: none;
}

/* Search box */

.search-modal .modal-body {
  padding: 0;
}

.search-box .ui-autocomplete {
  top: 112% !important;
  left: 0 !important;
  width: 100% !important;
  border-radius: 4px;
}

.search-modal .modal-body input[type="text"] {
  width: 100%;
  padding: 12px;
}

.search-modal .modal-body input[type="text"],
.search-modal .modal-body select {
  border: none;
  min-width: 0;
  border-radius: 0;
  background: var(--clr-white);
}

.search-modal .modal-body input[type="text"]:focus,
.search-modal .modal-body select {
  box-shadow: none;
}

.search-modal .modal-body select {
  max-width: 170px;
  border-left: 1px solid var(--clr-gray-g200);
}

.search-box .search-box-button {
  border: none;
  border-radius: 4px;
  background-color: var(--clr-primary);
  padding: 0 24px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}

.search-box .search-box-button:hover,
.search-box .search-box-button:focus {
  opacity: 0.9;
}

.search-box .ui-autocomplete-loading {
  background: #fff url("../images/ajax-loader-small.gif") right center no-repeat;
}

.menu-toggle {
  color: inherit;
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: none;
}

.top-menu {
  display: none;
}

/*#endregion RegionName*/

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

.ui-autocomplete {
  width: 285px !important;
  border: 1px solid var(--clr-gray-g200);
  border-top: none;
  overflow: hidden;
  background-color: #fff;
  text-align: left;
  /*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(--clr-gray-g200);
}

.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: #777 !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 10px 0 0;
  vertical-align: middle;
}

/*#region Category-Box*/
/* .category-box,
.scarousel-item {
  background-color: var(--clr-gray-g100);
  border-radius: 10px;
  border: 1px solid var(--clr-gray-g200);
  transition: all 0.3s ease-out 0s;
}

.scarousel-item {
  padding: 24px;
}

.category-box:hover {
  border-color: var(--clr-primary);
  transform: translateY(-10px);
}

.category-box .picture img,
.scarousel-item .category-slider__image img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
}

.category-box .title a
.scarousel-item .category-name a {
  font-size: 18px !important;
  font-weight: 500;
  color: var(--heading-color);
}

.category-box .title a:hover,
.scarousel-item .category-name a:hover {
  color: var(--clr-primary);
} */

.category-box,
.scarousel-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--clr-gray-g200);
  box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.06);
}

.category-box::before,
.scarousel-item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(2, 0, 36, 1) 0%, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.category-box img,
.scarousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-box:hover img,
.scarousel-item:hover img {
  transform: scale(1.1);
}

.category-box .category-title,
.scarousel-item .category-name {
  position: absolute;
  bottom: -32px;
  right: 24px;
  color: white;
  z-index: 1;
  transition: all 0.4s ease;
}

.category-box .category-title::after {
  display: none;
}

.category-box:hover .category-title,
.scarousel-item:hover .category-name {
  bottom: 12px;
}

.category-box .category-title .category-explore-btn,
.scarousel-item .category-name .category-explore-btn {
  font-size: 14px;
  outline: none;
  border: 1px solid var(--clr-white);
  background: transparent;
  padding: 8px 14px;
  border-radius: 4px;
  color: var(--clr-white);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-box:hover .category-title .category-explore-btn {
  opacity: 1;
}

.category-box .category-title .category-explore-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-inline-start: 4px;
  border: 1px solid var(--clr-white);
  padding: 2px;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.category-box .category-title .category-explore-btn:hover {
  color: var(--clr-primary);
  background: var(--clr-white);
}

.category-box .category-title .category-explore-btn:hover i {
  border-color: var(--clr-primary);
  transform: rotate(360deg);
}

/*#endregion Category-Box*/

/*#region Footer*/
/*********** FOOTER ***********/
/*@layer Footer {*/
/**** Boostrap Style Clear Start ****/
.footer {
  margin-bottom: 64px;
}

.footer .marketplace-footer-list {
  padding-left: 0 !important;
}

.footer .networks {
  padding-left: 0 !important;
}

/**** Boostrap Style Clear End ****/

.footer {
  background-color: #eee;
  text-align: center;
}

.footer.bg-footer.light {
  background: #14121d;
}

.footer .text-white {
  color: white;
}

.footer .text-whitesmoke {
  color: #99989e;
}

.footer .text-whitesmoke li a:hover {
  color: #ffff;
}

.footer .text-effect *:hover,
.footer .text-effect *::after,
.footer .text-effect *:hover::after {
  transition: all 0.3s ease-in-out;
}

.footer .text-effect li a {
  position: relative;
  text-wrap: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer .text-effect li a:hover {
  color: #ffffff !important;
  padding-inline-start: 20px;
}

.footer .text-effect li a::after {
  position: absolute;
  content: "";
  top: 58%;
  transform: translateY(-58%);
  inset-inline-start: 0;
  height: 1px;
  width: 0;
  background: #99989e;
}

.footer .text-effect li a:hover::after {
  width: 15px;
}

.footer-middle__item.supported-payment-cards {
  width: fit-content;
}

.footer-upper {
  margin: auto;
  border-bottom: 1px solid #22202a;
  overflow: hidden;
  font-size: 0;
}

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

.footer-block .footer-title {
  margin: 0;
  background: transparent;
  padding: 10px 15px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

.footer-block .footer-title strong {
  font-weight: normal;
}

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

.footer-block .list a {
  display: block;
  padding: 10px 15px;
  line-height: 20px;
}

.follow-us {
  text-align: center;
}

.follow-us .title {
  margin: 0 0 10px;
  background: none;
  color: #444;
  cursor: auto;
}

.follow-us .social ul {
  margin: 0;
  padding: 0 0 30px;
  font-size: 0;
}

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

.follow-us .social a {
  display: block;
  width: 38px;
  height: 38px;
  background: url("../images/social-sprite.png") no-repeat;
  font-size: 0;
}

.follow-us .social .facebook a {
  background-position: 0 0;
}

.follow-us .social .twitter a {
  background-position: -38px 0;
}

.follow-us .social .rss a {
  background-position: -76px 0;
}

.follow-us .social .youtube a {
  background-position: -114px 0;
}

.follow-us .social .instagram a {
  background-position: -152px 0;
}

.follow-us .social .networks li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 18px;
  color: var(--clr-white);
  transition: opacity 0.2s ease;
}

.follow-us .social .networks li a:hover {
  opacity: 0.8;
}

.follow-us .social .networks li.facebook a {
  background: #1877F2;
}

.follow-us .social .networks li.linkedin a {
  background: #0A66C2;
}

.footer-logo__img {
  max-width: 160px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-lower {
  margin: auto;
  overflow: hidden;
  font-size: 12px;
  background: #211d2f;
}

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

.footer-powered-by {
  margin: 0;
  font-size: 12px;
}

.footer-info {
  font-size: 12px;
}

.footer-powered-by a,
.footer-tax-shipping a {
  font-weight: 500;
  color: var(--clr-gray-g100);
}

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

.theme-selector {
  margin: 0;
}

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

/*#endregion Footer*/

/*********** SIDE COLUMN ***********/

.block {
  max-width: 600px;
  /*width limit in mobile*/
  min-height: 50px;
  margin: auto;
  text-align: left;
}

.block .block-title {
  position: relative;
  margin: 0 0 10px;
  border-bottom: 1px solid var(--clr-gray-g200);
  background: #f6f6f6 url("../images/toggle-gray.png") right 14px no-repeat;
  padding: 12px 30px 28px 10px;
  font-size: 20px;
  cursor: pointer;
}

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

.block .listbox {
  display: none;
  border-bottom: 1px solid var(--clr-gray-g200);
  padding: 10px 5px;
}

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

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

.block .list a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  width: 5px;
  height: 5px;
  background-color: var(--clr-gray-g200);
}

.block .list .active>a:before {
  background-color: var(--clr-primary);
}

.block .list .active>a {
  color: var(--clr-primary);
  font-weight: 500;
}

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

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

.block a.product-picture img {
  max-width: 100%;
}

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

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

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

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

.block .view-all a {
  display: inline-block;
  color: var(--clr-primary);
}

.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;
  overflow: hidden;
  font-size: 17px !important;
  /*setting base size*/
}

.block .tags li a,
.product-tags-all-page li a {
  float: left;
  line-height: 30px;
  color: #444;
}

.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(--clr-primary);
}

.product-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tags-all-page li,
.product-tags-all-page li,
.product-tags-list .tag {
  padding: 4px 16px;
  background: var(--clr-gray-g100);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 6px;
}

.poll strong {
  display: block;
  margin: 10px 0;
  background-color: #f6f6f6;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: normal;
  color: #444;
  text-transform: uppercase;
}

.poll-options,
.poll-results {
  margin: 10px 0 15px;
  overflow: hidden;
  font-size: 15px;
  color: #444;
}

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

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

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

.poll-total-votes {
  display: block;
  margin: 10px 0 0;
  font-weight: bold;
  font-style: italic;
  color: #444;
}

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

.home-page-polls .title {
  border-bottom: 1px solid var(--clr-gray-g200);
  color: #444;
  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 **********/
/*#region Breadcrumb*/
.breadcrumb {
  margin: 0;
}

.breadcrumb ul {
  font-size: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

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

.breadcrumb li * {
  display: inline-block;
  font-size: 14px;
  color: var(--clr-gray-g500);
}

.breadcrumb .delimiter {
  color: var(--clr-gray-g400);
}

.breadcrumb strong.current-item {
  font-weight: 600;
  color: var(--heading-color);
}

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

/*#endregion Breadcrumb*/

/*#region CatalogFilter*/
.offcanvas-lg .offcanvas-body {
  display: block;
}

.filter-offcanvas .offcanvas-body {
  padding: 24px;
  border-radius: 8px;
  background-color: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.product-filter .filter-title {
  margin: 0 0 12px;
  padding-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-transform: none;
  letter-spacing: normal;
}

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

.product-filter .filter-content {
  margin-bottom: 24px;
}

.product-filter+.product-filter {
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.product-filter .category-list li a,
.product-filter .manufacturer-list li a {
  position: relative;
  display: block;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  transition: all 0.15s ease;
}

.product-filter .category-list li a:hover,
.product-filter .manufacturer-list li a:hover {
  background-color: var(--clr-gray-g100);
  color: var(--clr-primary);
}

.product-filter .category-list li.active.last>a,
.product-filter .manufacturer-list li.active>a {
  color: var(--clr-primary);
  font-weight: 600;
  background-color: rgba(8, 61, 150, 0.08);
}

.product-filter .category-list li:not(:last-child),
.product-filter .manufacturer-list li:not(:last-child) {
  margin-bottom: 2px;
}

.product-filter .category-list .sublist {
  margin-top: 4px;
  margin-left: 20px;
  padding-left: 0;
}

.product-filter .category-list .sublist li a {
  font-size: 13px;
  font-weight: 400;
  color: var(--clr-gray-g500);
  padding: 5px 10px;
}

.product-filter .category-list .sublist li a:hover {
  color: var(--clr-primary);
  background-color: var(--clr-gray-g100);
}

.product-filter .category-list .sublist li.active.last>a {
  color: var(--clr-primary);
  font-weight: 500;
  background-color: rgba(8, 61, 150, 0.08);
}

.product-filter .category-list .sublist .sublist {
  margin-left: 16px;
}

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

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

.product-filter .group .name {
  padding-bottom: 10px;
}

.product-filter .group .item {
  display: flex;
  align-items: center;
}

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

.product-filter .group .item label {
  color: var(--text-color);
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-left: 8px;
  flex-grow: 1;
}

.product-filter .group .item input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--clr-gray-g300);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s ease;
  position: relative;
  margin: 0;
}

.product-filter .group .item input[type="checkbox"]:checked {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.product-filter .group .item input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.product-filter .group .item input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 2px;
}

.price-range-filter .ui-widget-content {
  background-color: var(--clr-gray-g300);
}

.price-range-filter .ui-slider-horizontal {
  height: 6px;
}

.price-range-filter .ui-slider {
  margin-left: 6px;
  margin-right: 5px;
}

.price-range-filter .ui-slider .ui-slider-range {
  background: var(--clr-primary);
  border: none;
}

.price-range-filter .ui-slider .ui-slider-handle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: none;
  color: inherit;
  background-color: var(--clr-primary);
  top: 50%;
  transform: translateY(-50%);
}

.price-range-filter .ui-slider .ui-slider-handle:hover,
.price-range-filter .ui-slider .ui-slider-handle:focus {
  border: none;
  outline: none;
}

.product-filter .recent-products li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}

.product-filter .recent-products li:hover {
  background-color: var(--clr-gray-g100);
}

.product-filter .recent-products li:not(:last-child) {
  margin-bottom: 4px;
}

.product-filter .recent-products .product-picture img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 4px;
  background-color: var(--clr-gray-g100);
}

.product-filter .recent-products .product-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.3;
}

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

.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-filter .tags li:not(:last-child) {
  margin-right: 4px;
}

/*#endregion CatalogFilter*/

.category-description,
.manufacturer-description,
.vendor-description {
  margin: 0 0 32px;
  line-height: 1.6;
  color: var(--clr-gray-g500);
}

.category-description__toggle {
  margin-top: 16px;
}

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

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

.contact-vendor .button-2:hover,
.contact-vendor .button-2:focus {
  background-color: #248ece;
}

.product-selectors {
  margin: 0 0 20px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background-color: transparent;
  border-radius: 0;
  padding: 12px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.product-selectors>div {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-selectors span {
  vertical-align: middle;
  font-size: 13px;
  color: var(--clr-gray-g500);
  font-weight: 500;
}

.product-selectors select {
  min-width: 62px;
  background-color: var(--clr-gray-g100);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
  color: var(--text-color);
  cursor: pointer;
  transition: border-color 0.15s ease;
  padding-inline-end: 32px;
}

.product-selectors select:hover {
  border-color: var(--clr-gray-g300);
}

.product-selectors select:focus {
  border-color: var(--clr-primary);
  outline: none;
}

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

.category-page .page-title {
  margin-bottom: 0;
  padding-bottom: 16px;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.category-page .page-title h1 {
  font-weight: 800 !important;
  font-size: 28px;
  letter-spacing: -0.01em;
}

.home-page .item-grid,
.category-page .item-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.category-page .product-grid .item-grid,
.product-tag-page .product-grid .item-grid,
.vendor-page .product-grid .item-grid,
.manufacturer-page .product-grid .item-grid,
.recently-added-products-page .product-grid .item-grid,
.search-results .product-grid .item-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.category-page .product-list .item-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.item-box {
  position: relative;
  width: 100%;
  text-align: start;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 10px 16px;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.item-box:hover {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.item-box .product-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.item-box .details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.item-box .add-info {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.item-box .picture {
  z-index: 1;
  background-color: #f8f9fa;
  margin: 0 0 16px;
  border-radius: 6px;
  overflow: hidden;
}

.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;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  object-fit: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateZ(0) scale(1, 1);
}

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

.item-box .product-title {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--heading-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.item-box .product-title a:hover,
.item-box .product-title a:focus {
  color: var(--clr-primary);
}

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

.item-box .product-rating-box {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
}

.item-box .review-count {
  font-size: 12px;
  color: var(--clr-gray-g400);
  font-weight: 400;
}

.item-box .rating {
  background: url("../images/rating1.png") repeat-x;
  background-size: contain;
  width: 98px;
  height: 20px;
}

.item-box .rating div {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(30,78,159,1)'%3E%3Cpath d='M12.0006 18.26L4.94715 22.2082L6.52248 14.2799L0.587891 8.7918L8.61493 7.84006L12.0006 0.5L15.3862 7.84006L23.4132 8.7918L17.4787 14.2799L19.054 22.2082L12.0006 18.26Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
  background-size: contain;
  height: 20px;
}

.item-box .description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 12px;
  line-height: 1.5;
  font-size: 13px;
  color: var(--clr-gray-g500);
}

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

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

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

.item-box .old-price {
  margin: 0 5px 0 0;
  font-size: 16px;
  text-decoration: line-through;
}

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

.item-box .tax-shipping-info {
  font-size: 14px;
}

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

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

.item-box button {
  outline: none;
}

.item-box .item-box-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.item-box .item-box-buttons>* {
  flex: 1;
  width: 100%;
}

.item-box .product-box-add-to-cart-button,
.item-box .product-box-live-view-button {
  padding: 8px 12px;
  flex: 1;
  width: 100%;
  border: none;
  outline: none;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.15s ease;
}

.item-box .product-box-add-to-cart-button {
  background-color: var(--clr-primary);
  text-align: center;
  color: #fff;
  border: 1px solid var(--clr-primary);
}

.item-box .product-box-live-view-button {
  background-color: transparent;
  border: 1px solid var(--clr-gray-g200);
  color: var(--text-color);
}

.item-box .product-box-live-view-button:hover,
.item-box .product-box-live-view-button:focus {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background-color: transparent;
}

.item-box .product-box-add-to-cart-button:hover,
.item-box .product-box-add-to-cart-button:focus {
  background-color: var(--clr-primary-hover);
  border-color: var(--clr-primary-hover);
  color: #fff;
  opacity: 1;
}

.item-box .extra-buttons {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
}

.item-box:hover .extra-buttons {
  right: 10px;
}

.product-list .item-box .extra-buttons {
  right: 10px;
}

.item-box .extra-buttons .add-to-compare-list-button,
.item-box .extra-buttons .add-to-wishlist-button,
.item-box .extra-buttons .quickview-button {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  color: var(--clr-white);
  background-color: var(--clr-primary);
  border-radius: 4px;
}

.item-box .extra-buttons .add-to-compare-list-button:hover,
.item-box .extra-buttons .add-to-compare-list-button:focus,
.item-box .extra-buttons .add-to-wishlist-button:hover,
.item-box .extra-buttons .add-to-wishlist-button:focus,
.item-box .extra-buttons>*:focus,
.item-box .extra-buttons>*:hover {
  opacity: 0.8;
}

.sub-category-grid,
.manufacturer-grid,
.vendor-grid {
  margin: 0 0 32px;
}

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

.home-page-category-grid .category-title a,
.sub-category-grid .category-title a {
  display: inline-block;
  font-weight: 500;
}

.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%;
}

.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 50px;
}

/*.bestsellers .title,
.home-page-product-grid .title {
  color: var(--heading-color);
  position: relative;
  font-size: calc(1em + 1.5vw);
  font-weight: 500;
  text-align: center;
  padding-bottom: 16px;
  width: max-content;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--clr-gray-g200);
}*/

/*.bestsellers .title::after, 
.home-page-product-grid .title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: var(--clr-primary);
}*/

/*.product-grid .title {
  margin: 0 0 24px;
  border-bottom: 1px solid var(--clr-gray-g200);
  padding: 0 0 14px;
  font-weight: normal;
}
*/
.best-seller-catagories .best-seller-catagories__title {
  margin: 0 0 24px;
  border: none;
}

.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(--clr-primary);
}

.manufacturer-grid .picture {
  border: 1px solid var(--clr-gray-g200);
}

.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(--clr-primary);
}

.vendor-grid .picture {
  border: 1px solid var(--clr-gray-g200);
}

.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: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: transparent;
  padding: 8px;
  text-align: center;
  font-size: 14px;
  /*reset zeroing*/
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.pager li span {
  border-color: transparent;
  background-color: var(--clr-primary);
  color: var(--clr-white);
  transition: all 0.3s ease;
}

.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: #fff;
}

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

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

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

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

.pager li a:hover,
.pager li a:focus {
  border-color: var(--clr-primary);
  background-color: transparent;
  color: var(--clr-primary);
  transition: all 0.2s ease;
}

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

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

/* Product Purchase Wrapper — price left, button right */
.product-purchase-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px 0 20px;
  padding: 18px 0;
  border-top: 2px solid var(--clr-gray-g200);
  border-bottom: 2px solid var(--clr-gray-g200);
  gap: 28px;
}

.purchase-main-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 0 1 40%;
  max-width: 40%;
  min-width: 0;
}

/* Left side — price */
.purchase-left {
  flex: 1 1 auto;
  min-width: 0;
}

.purchase-left .prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 !important;
}

.purchase-left .product-price {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: var(--heading-color) !important;
  letter-spacing: -0.03em;
  line-height: 1;
}

.purchase-left .old-product-price,
.purchase-left .non-discounted-price {
  font-size: 20px;
  font-weight: 500;
  color: var(--clr-gray-g400);
}

.purchase-left .tier-prices {
  margin: 4px 0 0;
}

/* Right side — add to cart button */
.purchase-right {
  flex: 0 0 auto;
}

.purchase-extra {
  flex: 0 1 50%;
  max-width: 50%;
  min-width: 0;
  overflow: hidden;
}

.purchase-extra>* {
  width: 100%;
  max-width: 100%;
}

.purchase-extra img,
.purchase-extra iframe,
.purchase-extra .anywhere-slider,
.purchase-extra .widget,
.purchase-extra .payment-method-item {
  max-width: 100%;
}

@media (max-width: 991.98px) {
  .product-purchase-wrapper {
    /*    flex-direction: column;
     align-items: stretch;*/
    gap: 18px;
    padding: 14px 0;
  }

  .purchase-main-container {
    flex-basis: 46%;
    max-width: 46%;
    gap: 10px;
  }

  .purchase-extra {
    flex-basis: 48%;
    max-width: 48%;
  }
}


@media (max-width: 576px) {
  .product-purchase-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .purchase-main-container,
  .purchase-main-container,
  .purchase-extra {
    flex-basis: auto;
    max-width: 100%;
    width: 100%;
  }

  .purchase-main-container {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}

.purchase-right .add-to-cart {
  margin: 0;
}

.purchase-right .add-to-cart-panel {
  display: flex !important;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

/* Hide qty label and qty dropdown */
.purchase-right .qty-label,
.purchase-right .qty-dropdown {
  display: none !important;
}

.purchase-right .add-to-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px;
  color: var(--clr-white);
  background-color: var(--clr-primary) !important;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgb(8 61 150 / 0.22);
  white-space: nowrap;
}

.purchase-right .add-to-cart-button:hover,
.purchase-right .add-to-cart-button:focus {
  background-color: var(--clr-primary-hover) !important;
  box-shadow: 0 6px 20px rgb(8 61 150 / 0.32);
  transform: translateY(-2px);
}

.purchase-right .add-to-cart-button i {
  font-size: 22px;
}

/* Mobile responsive */
@media (max-width: 767.98px) {
  .purchase-left .product-price {
    font-size: 28px !important;
  }

  .purchase-right .add-to-cart-button {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

.product-details-page dd> :is(textarea, input) {
  width: 100%;
}

.product-essential {
  margin: 0 0 40px;
  border-bottom: 1px solid var(--clr-gray-g200);
  padding: 0 0 10px;
}

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

.gallery {
  position: relative;
  margin: 0 auto 32px;
}

.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,
.video-gallery .video-thumbs iframe,
.variant-picture img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  max-height: 100%;
}

.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;
}

.video-gallery .video-thumbs .thumb-item {
  display: inline-block;
  position: relative;
  margin: 0 5px 10px;
  overflow: hidden;
}

.overview {
  position: relative;
  margin: 0 0 50px;
}

.overview .required {
  font-size: 20px;
  line-height: 1;
  font-weight: normal;
  color: var(--clr-error);
  margin-inline-start: 4px;
  inset-inline-end: revert;
}

.overview .label,
.overview label {
  color: var(--heading-color);
  font-weight: 600;
}

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

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

.overview .product-name {
  margin: 0 0 18px;
  border-bottom: 1px solid var(--clr-gray-g200);
  padding: 0 0 10px;
}

.overview .product-name h1 {
  font-weight: normal;
  line-height: 1.2 !important;
}

.overview .short-description {
  margin: 10px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--clr-gray-g200);
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.7;
}

.product-no-reviews,
.product-reviews-overview {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: var(--text-color);
}

.product-no-reviews {
  margin: 0;
}

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

.product-review-box .rating {
  width: 98px;
  height: 20px;
  background: url("../images/rating1.png") repeat-x;
  background-size: contain;
}

.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: right;
}

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

.product-review-box .rating div {
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(30,78,159,1)'%3E%3Cpath d='M12.0006 18.26L4.94715 22.2082L6.52248 14.2799L0.587891 8.7918L8.61493 7.84006L12.0006 0.5L15.3862 7.84006L23.4132 8.7918L17.4787 14.2799L19.054 22.2082L12.0006 18.26Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
  background-size: contain;
  font-size: 0;
  line-height: 0;
}

.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(--clr-primary);
}

/* Manufacturer part number — inline boxes after reviews */
.mpn-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
  font-size: 14px;
}

.mpn-label {
  color: var(--clr-gray-g400);
  font-weight: 500;
  white-space: nowrap;
  color: var(--heading-color);
}

.mpn-values {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.mpn-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 14px 5px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: var(--heading-color);
  background: var(--clr-gray-g100);
  border: 1.5px solid var(--clr-gray-g200);
  border-radius: 6px;
}

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

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

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

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

.overview .button-2,
.variant-overview .button-2 {
  display: block;
  width: 100%;
  border: none;
  border-radius: 4px;
  background-color: var(--clr-gray-g200);
  background-position: left center;
  background-repeat: no-repeat;
  padding: 12px 24px;
  text-align: left;
  font-size: 14px;
  /*reset zeroing*/
  color: var(--heading-color);
}

.overview .button-2:hover,
.overview .button-2:focus,
.variant-overview .button-2:hover,
.variant-overview .button-2:focus {
  color: var(--clr-white);
  background-color: var(--clr-primary);
}

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

.overview .availability,
.variant-overview .availability {
  margin: 0 0 20px;
  overflow: hidden;
}

.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 8px;
}

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

.overview .free-shipping,
.variant-overview .free-shipping {
  display: inline-block;
  margin: 10px 0;
  padding: 2px 0 2px 0;
  font-weight: 600;
  color: var(--clr-primary);
}

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

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

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

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

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

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

.overview .prices>div>span,
.variant-overview .prices>div>span {
  vertical-align: middle;
  color: var(--heading-color);
}

.overview .old-product-price,
.variant-overview .old-product-price,
.overview .non-discounted-price,
.variant-overview .non-discounted-price {
  text-decoration: line-through;
}

.overview .product-price,
.variant-overview .product-price {
  font-size: 24px;
  font-weight: 500;
  color: var(--heading-color);
}

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

.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(--text-color);
}

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

.customer-entered-price .price-range {
  margin: 5px 0 0;
  color: #777;
}

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

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

.tier-prices table td {
  border: 1px solid var(--clr-gray-g200);
  padding: 10px;
  color: var(--text-color);
}

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

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

/* .overview .add-to-cart {
  margin: 0 0 20px;
} */

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

:is(.overview, .variant-overview) .addtocart-quantity-box .addtocart-quantity-button {
  padding: 8px 10px;
  outline: none;
  height: 100%;
  border-radius: 4px;
  color: var(--clr-primary);
  background-color: transparent;
  border: 1px solid var(--clr-gray-g200);
}

:is(.overview, .variant-overview) .addtocart-quantity-box .addtocart-quantity-button:hover,
:is(.overview, .variant-overview) .addtocart-quantity-box .addtocart-quantity-button:focus {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

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

.overview .qty-input,
.variant-overview .qty-input {
  width: 42px;
  height: 100%;
  padding: 0 12px;
  text-align: center;
  color: var(--heading-color);
}

.overview .qty-dropdown,
.variant-overview .qty-dropdown {
  height: 43px;
  padding: 0 12px;
}

.product-share-button {
  display: inline-block;
  overflow: hidden;
}

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

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

/* .product-collateral .title {
  margin: 0 0 10px;
  font-size: 18px;
  color: #444;
} */

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

.product-variant-line {
  margin: 0 0 30px;
  border-bottom: 1px solid var(--clr-gray-g200);
  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(--clr-primary);
}

.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(--clr-gray-g200);
  padding: 10px;
}

.product-specs-box td.spec-group-name {
  border: 0;
  padding-top: 20px;
  font-size: 16px;
  color: #444;
}

.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 5px 0 3px;
}

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

.product-tags-list a:hover,
.product-tags-list a:focus {
  color: #444;
}

.attributes {
  margin-top: 8px;
}

.attributes dl {
  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: 600;
  color: var(--heading-color);
}

.attributes dt label {
  font-weight: inherit;
}

/* Inline attribute validation errors */
.attribute-error {
  display: none;
  margin-left: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-error, #e4434b);
}

.attribute-error.shake {
  display: inline-block;
  animation: attr-shake 0.4s ease;
}

@keyframes attr-shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-4px);
  }

  40% {
    transform: translateX(4px);
  }

  60% {
    transform: translateX(-3px);
  }

  80% {
    transform: translateX(3px);
  }
}

.attributes dt.has-error {
  color: var(--clr-error, #e4434b);
}

.attributes dt.has-error .text-prompt,
.attributes dt.has-error .required {
  color: inherit;
}

.attribute-error:focus,
.attributes dt.has-error:focus,
.attributes dt.has-error:active {
  outline: none;
  box-shadow: none;
}

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

.attributes dd label {
  font-weight: inherit;
  color: var(--text-color);
}

.attributes ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.attributes li {
  margin: 0;
}

/* Radio & checkbox as selectable box */
.attributes .option-list li {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 1px solid var(--clr-gray-g200);
  border-radius: 8px;
  background: var(--clr-white);
  cursor: pointer;
  transition: all 0.15s ease;
}

.attributes .option-list li:hover {
  border-color: var(--clr-primary);
}

/* Hide native radio/checkbox — keep clickable */
.attributes .option-list li input[type="radio"],
.attributes .option-list li input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}

/* Selected state — strong border + background */
.attributes .option-list li:has(input:checked) {
  border-color: var(--clr-primary);
  background: rgb(8 61 150 / 0.08);
  box-shadow: 0 0 0 1px var(--clr-primary);
}

.attributes .option-list li:has(input:checked) label {
  color: var(--clr-primary);
  font-weight: 700;
  padding-left: 26px;
}

.attributes .option-list li:has(input:checked) label::before {
  content: "✓";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-primary);
}

/* Label fills the entire box — no dead zones */
.attributes .option-list label {
  display: block;
  margin: 0;
  padding: 8px 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  white-space: nowrap;
  user-select: none;
}

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

.attributes .datepicker {
  width: 280px;
  text-align: center;
  color: #444;
}

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

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

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

.attributes .attribute-squares .disabled .attribute-square-container {
  background: 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%), 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%);
}

.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-left: -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;
}

.ui-datepicker {
  width: 280px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  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: #777;
}

.ui-datepicker-header {
  position: relative;
  height: 32px;
  background-color: var(--clr-primary);
  color: #fff;
  /*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 {
  left: 0;
  background: url("../images/calendar-prev.png") center no-repeat;
}

.ui-datepicker-header a.ui-datepicker-next {
  right: 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(--clr-gray-g200);
  /*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: #444;
}

.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: #444 !important;
}

.ui-datepicker-calendar .ui-state-active {
  outline: 2px solid var(--clr-primary);
  font-weight: bold;
  color: var(--clr-primary);
  /*override jQuery UI styles, do not delete doubled properties*/
  color: var(--clr-primary) !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: 32px !important;
  height: 32px !important;
  border: 1px solid #444 !important;
  cursor: pointer;
}

.attribute-squares .selected-value .attribute-square-container {
  background-color: var(--clr-primary);
}

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

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

.tooltip-container {
  position: absolute;
  width: 200px;
  color: #000000;
  background: #ffffff;
  border: 1px solid #eeeeee;
  text-align: center;
  visibility: hidden;
  border-radius: 5px;
}

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

.tooltip-container:after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-bottom: 6px solid #ffffff;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}

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

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

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

.tooltip-container .tooltip-body img {
  border: 0 #fff;
  width: 190px;
}

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

.giftcard .required {
  position: unset;
}

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

.giftcard label {
  display: block;
  margin: 0 auto 5px;
  font-weight: bold;
  color: #444;
}

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

.giftcard textarea {
  height: 150px;
}

/*#region Product_Reviews*/
/********** PRODUCT CUSTOM REVIEWS **********/
.product-reviews-page {
  width: 100%;
  margin: 0 auto;
}

.product-review-summary .product-review-summary__rating,
.product-review-summary .product-review-summary__chart {
  background-color: var(--clr-gray-g100);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 4px;
  padding: 24px;
}

.product-review-summary .product-review-summary__rating .value {
  margin-bottom: 10px;
}

.theme-progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background-color: var(--clr-gray-g300);
  position: relative;
}

.theme-progress {
  display: inline-block;
  background-color: var(--clr-primary);
  height: 100%;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.product-review-summary .product-review-summary__chart .count {
  display: inline-block;
  width: 28px;
  text-align: center;
}

.product-review-card {
  padding: 28px 30px;
  border-radius: 8px;
  border: 1px solid #e4ebf5;
  background: #fff;
  box-shadow: 0 10px 30px rgb(15 23 42 / 0.05);
}

.product-review-card .product-review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2559b3, #3f73d4);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.product-review-card .product-review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.product-review-card .review-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.product-review-card .reviewer-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.product-review-card .reviewer-meta {
  min-width: 0;
}

.product-review-card .name {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 700;
}

.product-review-card .date {
  color: #8f98ab;
  font-size: 14px;
}

.product-review-card .review-title {
  margin: 0 0 14px;
  color: var(--heading-color);
  font-size: 18px;
  line-height: 1.35;
}

.product-review-card .review-text {
  margin: 0 0 18px;
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.7;
}

.product-review-card .review-type-rating-ext {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 16px;
}

.product-review-card .review-type-rating-ext .review-title {
  margin: 0;
  font-size: 14px;
  color: #5f6b7f;
}

.product-review-card .product-review-box {
  flex: 0 0 auto;
}

.product-review-card .reply {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #e6edf7;
}

.product-review-card .reply-header {
  margin: 0 0 12px;
}

.product-review-card .reply-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2559b3, #3f73d4);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.product-review-card .reply-text {
  border-radius: 8px;
  background: #f4f7fb;
  padding: 18px 20px;
  color: #4a5568;
  line-height: 1.7;
}

.product-review-card .extra > .widget {
  margin-top: 12px;
}

.rating-wrapper {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: start;
}

input[type="radio"].review-input-radio {
  display: inline-block;
  width: 0;
  opacity: 0;
}

.star-icon {
  color: var(--clr-gray-g200);
}

.star-label:hover~.star-label .star-icon,
.star-label:hover .star-icon,
.review-input-radio:checked~.star-label .star-icon {
  color: var(--clr-primary);
  cursor: pointer;
}

/*#region Product Cross Sell*/
/**** Product Cross Sell ****/
.also-purchased-products-grid .item-grid,
.related-products-grid .item-grid,
.product-grid.cross-sells .item-grid,
.manufacturer-grid .item-grid,
.recently-viewed-products-page .item-grid,
.vendor-grid .item-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-gap: 10px;
}

/*#endregion*/

/********** PRODUCT REVIEWS **********/
.product-reviews h1 a {
  color: var(--clr-primary);
}

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

.product-reviews .title {
  margin: 0 0 20px;
  font-size: 20px;
  color: var(--text-color);
}

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

.write-review {
  margin: 0;
}

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

.tooltip .tooltiptext {
  visibility: hidden;
  width: auto;
  background: #f0f0f0 no-repeat 100% 5%;
  border: #c0c0c0 1px dotted;
  text-align: Left;
  padding: 10px 10px 5px 5px;
  position: absolute;
  z-index: 1;
  left: 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;
}

.write-review .review-rating {
  text-align: start;
}

.write-review .review-rating div.first {
  color: #e4444c;
}

.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(--clr-success);
}

.write-review .captcha-box {
  margin: 15px 0 0;
}

.write-review .button-1 {
  border: none;
  background-color: var(--clr-primary);
  padding: 10px 25px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

.product-reviews .result,
.product-reviews .message-error {
  margin: 0 0 20px;
}

.product-review-list {
  display: grid;
  gap: 24px;
  overflow: visible;
}

.product-review-item {
  margin: 0;
  border: 1px solid #e4ebf5;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 30px rgb(15 23 42 / 0.05);
  padding: 28px 30px;
}

.product-review-item .review-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

.product-review-item .review-title {
  margin: 0 0 14px;
  line-height: 1.35;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
}

.product-review-item .product-review-box {
  flex: 0 0 auto;
  margin: 2px 0 0;
}

.product-review-item .review-content {
  padding: 0;
}

.product-review-item .review-text {
  margin: 0 0 18px;
  line-height: 1.7;
  font-size: 17px;
  color: var(--text-color);
}

.product-review-item .avatar {
  margin: 0;
}

.product-review-item .reviewer-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.product-review-item .reviewer-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2559b3, #3f73d4);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  overflow: hidden;
  flex: 0 0 52px;
}

.product-review-item .avatar-img-link,
.product-review-item .avatar-img {
  display: block;
  width: 100%;
  height: 100%;
}

.product-review-item .avatar-img {
  object-fit: cover;
}

.product-review-item .avatar-initial {
  line-height: 1;
}

.product-review-item .reviewer-meta {
  min-width: 0;
}

.product-review-item .reviewer-name,
.product-review-item .reviewer-name a {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 700;
}

.product-review-item .reviewer-name a:hover,
.product-review-item .reviewer-name a:focus {
  color: var(--clr-primary);
}

.product-review-item .review-date {
  margin-top: 4px;
  color: #8f98ab;
  font-size: 14px;
  white-space: nowrap;
}

.product-review-item .reply {
  margin: 22px 0 0;
  padding: 18px 20px;
  border-top: 0;
  border-radius: 18px;
  background: #f4f7fb;
}

.product-review-item .reply-header {
  margin: 0 0 12px;
}

.product-review-item .reply-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2559b3, #3f73d4);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.product-review-item .reply-text {
  background: transparent;
  padding: 0;
  line-height: 1.7;
  color: #4a5568;
}

.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-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product-review-helpfulness .question {
  margin: 0;
  color: #8f98ab;
  font-size: 14px;
  font-style: normal;
}

.product-review-helpfulness .result {
  margin: 0;
  color: var(--clr-primary);
  font-size: 14px;
}

.product-review-item .review-type-rating-ext {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 16px;
}

.product-review-item .review-type-rating-ext .review-title {
  margin: 0;
  font-size: 14px;
  color: #5f6b7f;
}

.product-review-item .product-review-box .rating {
  width: 116px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d7dee9'%3E%3Cpath d='M12.0006 18.26L4.94715 22.2082L6.52248 14.2799L0.587891 8.7918L8.61493 7.84006L12.0006 0.5L15.3862 7.84006L23.4132 8.7918L17.4787 14.2799L19.054 22.2082L12.0006 18.26Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
  background-size: contain;
}

.product-review-item .product-review-box .rating div {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f5b31f'%3E%3Cpath d='M12.0006 18.26L4.94715 22.2082L6.52248 14.2799L0.587891 8.7918L8.61493 7.84006L12.0006 0.5L15.3862 7.84006L23.4132 8.7918L17.4787 14.2799L19.054 22.2082L12.0006 18.26Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
  background-size: contain;
  font-size: 0;
}

.product-review-helpfulness {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.product-review-helpfulness .vote-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-review-helpfulness .vote {
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid #d3ddeb;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  gap: 7px;
  transition: all 0.2s ease;
}

.product-review-helpfulness .vote-yes {
  background: linear-gradient(135deg, #2559b3, #3f73d4);
  border-color: transparent;
  color: #fff;
}

.product-review-helpfulness .vote-no {
  background: #fff;
  color: #6b7280;
}

.product-review-helpfulness .vote:hover,
.product-review-helpfulness .vote:focus {
  transform: translateY(-1px);
}

.product-review-helpfulness .vote-icon {
  font-size: 14px;
  line-height: 1;
}

.product-review-helpfulness .vote-icon i {
  display: block;
  font-size: 14px;
  line-height: 1;
}

.product-review-helpfulness .vote-count {
  opacity: 0.9;
}

.product-review-item .review-content > .widget {
  margin-top: 12px;
}

@media (max-width: 767.98px) {
  .product-review-card {
    padding: 22px 18px;
    border-radius: 8px;
  }

  .product-review-card .review-item-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .product-review-card .review-title {
    font-size: 16px;
  }

  .product-review-card .review-text {
    font-size: 15px;
  }

  .product-review-card .review-type-rating-ext {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-review-item {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .product-review-item .review-item-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .product-review-item .review-title {
    font-size: 16px;
  }

  .product-review-item .review-text {
    font-size: 15px;
  }

  .product-review-item .review-type-rating-ext {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-review-helpfulness {
    align-items: flex-start;
  }

  .product-review-helpfulness .vote-options {
    width: 100%;
  }

  .product-review-helpfulness .vote {
    flex: 1 1 auto;
  }

}

/*#endregion Product_Reviews*/

/*#region WISHLIST & COMPARE LIST*/
/********** WISHLIST & COMPARE LIST **********/
.wishlist-content {
  margin: 0 0 20px;
}

.wishlist-content .message-error {
  margin: 20px 0;
}

.wishlist-content .table-wrapper {
  margin: 0 0 30px;
}

.wishlist-content .product-content {
  min-width: 300px;
  text-align: left;
}

.wishlist-content .tax-shipping-info {
  margin: 0 0 20px;
  text-align: center;
}

.wishlist-content .tax-shipping-info a {
  color: var(--clr-primary);
}

.wishlist-content .update-wishlist-button,
.wishlist-content .wishlist-add-to-cart-button {
  background-color: var(--clr-primary);
  text-transform: uppercase;
}

.wishlist-page .share-info {
  text-align: center;
}

.wishlist-page .share-info span {
  display: block;
  margin: 0 0 5px;
}

.wishlist-page .share-info a {
  font-weight: 500;
  color: var(--text-color);
}

.wishlist-page .share-info a:hover,
.wishlist-page .share-info a:focus {
  color: var(--clr-primary);
}

.wishlist-page .no-data {
  margin: 25px 0 0;
}

.compare-products-page {
  position: relative;
  overflow: hidden;
}

.compare-products-page .table-wrapper {
  margin: 0 0 30px;
  padding: 0 0 1px;
  /*IE mobile table border fix*/
  overflow-x: auto;
}

.compare-products-table td {
  min-width: 150px;
  border: 1px solid var(--clr-gray-g200);
  background-color: var(--clr-white);
  padding: 20px;
  text-align: left;
  vertical-align: top;
  color: var(--text-color);
}

.compare-products-table td:first-child {
  min-width: 0;
}

.compare-products-table td label {
  font-weight: normal;
  color: var(--text-color);
}

.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(--text-color);
}

.compare-products-table .remove-button {
  display: inline-block;
  border: none;
  background: url("../images/remove.png") left center no-repeat;
  padding: 0 0 0 18px;
  font-size: 12px;
  color: #666;
}

.compare-products-table .remove-button:hover,
.compare-products-table .remove-button:focus {
  color: var(--clr-primary);
}

.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(--clr-primary);
}

.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;
}

/*#endregion*/

/*********** TOPICS ***********/

.topic-block {
  margin: 0 0 25px;
}

.topic-block-title {
  min-height: 50px;
  margin: 0 0 25px;
  border-bottom: 1px solid var(--clr-gray-g200);
  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-body {
  text-align: justify;
  line-height: 22px;
}

.topic-block a,
.topic-page a {
  text-decoration: underline;
}

.topic-block strong,
.topic-page strong {
  color: #444;
}

.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: #444;
}

.enter-password-form {
  display: inline-block;
  overflow: hidden;
}

.enter-password-form input[type="password"] {
  float: left;
  width: 200px;
  height: 40px;
  margin: 0 -1px 0 0;
}

.enter-password-form button[type="submit"] {
  float: left;
  width: auto;
  min-width: 86px;
  height: 40px;
  border: none;
  background-color: var(--clr-primary);
  padding: 0 15px;
  color: #fff;
  text-transform: uppercase;
}

/*********** 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(--clr-primary);
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

.contact-page .topic-block,
.email-a-friend-page .title,
.apply-vendor-page .title {
  margin: 25px 0;
}

.email-a-friend-page .title h2 {
  color: var(--clr-primary);
  text-align: center;
}

.email-a-friend-page .page-body,
.apply-vendor-page .page-body {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.apply-vendor-page .page-body>*,
.email-a-friend-page .page-body>* {
  flex-shrink: 0;
  flex-grow: 1;
}

.email-a-friend-page .page-body form,
.apply-vendor-page .page-body form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.apply-vendor-page .page-body form .fieldset,
.email-a-friend-page .page-body form .fieldset {
  width: 100%;
  margin: 0;
}

.email-a-friend-page .fieldset,
.apply-vendor-page .fieldset {
  max-width: 500px;
}

.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(--clr-primary);
  cursor: pointer;
}

/********** REGISTRATION, LOGIN, ACCOUNT PAGES  **********/

/* ═══════════════════════════════════════════
   REDESIGNED LOGIN PAGE
═══════════════════════════════════════════ */
.login-page-wrapper {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 960px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px -8px rgba(0, 0, 0, 0.12), 0 2px 8px -2px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--clr-gray-g200);
}

/* ── Left brand panel ── */
.login-panel--brand {
  background: linear-gradient(145deg, var(--clr-primary) 0%, color-mix(in srgb, var(--clr-primary) 65%, #6366f1) 100%);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.login-brand {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.login-brand__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--clr-white);
  backdrop-filter: blur(8px);
}

.login-brand__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--clr-white);
  margin: 0;
  line-height: 1.3;
}

.login-brand__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 300px;
}

.login-brand__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  width: 100%;
  max-width: 240px;
}

.login-brand__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.login-brand__btn--primary {
  background: var(--clr-white);
  color: var(--clr-primary);
}

.login-brand__btn--primary:hover {
  box-shadow: 0 6px 20px -4px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.login-brand__btn--outline {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.login-brand__btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

.login-brand__decoration {
  position: absolute;
  bottom: -30px;
  right: -30px;
  font-size: 140px;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 0;
}

/* ── Right form panel ── */
.login-panel--form {
  background: var(--clr-white);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form-card {
  width: 100%;
  max-width: 380px;
}

.login-page-wrapper .login-logo a {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.login-page-wrapper .login-logo a img {
  max-width: 200px;
  height: auto;
}

.login-form-header {
  text-align: center;
  margin-bottom: 28px;
}

.login-form-header__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 6px;
}

.login-form-header__sub {
  font-size: 13.5px;
  color: var(--clr-gray-g500, #6b7280);
  margin: 0;
}

.login-form-header__register-link {
  color: var(--clr-primary);
  font-weight: 700;
  text-decoration: none;
}

.login-form-header__register-link:hover {
  text-decoration: underline;
  color: var(--clr-primary);
}

/* ── Form fields ── */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.login-form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.login-form__label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.login-form__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.login-form__input-icon {
  position: absolute;
  left: 14px;
  font-size: 17px;
  color: var(--clr-gray-g400, #9ca3af);
  pointer-events: none;
  transition: color 0.2s ease;
  z-index: 1;
}

.login-form__input-wrap:focus-within .login-form__input-icon {
  color: var(--clr-primary);
}

.login-form__input {
  width: 100%;
  padding: 12px 14px 12px 42px !important;
  font-size: 14px;
  border: 1.5px solid var(--clr-gray-g200);
  border-radius: 10px !important;
  background: var(--clr-white) !important;
  color: var(--text-color);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.login-form__input:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--clr-primary) 12%, transparent);
  background: var(--clr-white) !important;
}

.login-form__input--password {
  padding-right: 42px !important;
}

.login-form__eye-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--clr-gray-g400, #9ca3af);
  cursor: pointer;
  transition: color 0.18s ease;
  z-index: 2;
}

.login-form__eye-toggle:hover {
  color: var(--clr-primary);
}

.login-form__error {
  font-size: 12px;
  color: var(--clr-error, #e53e3e);
}

/* ── Options row ── */
.login-form__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.login-form__remember {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--text-color);
  font-weight: 500;
  margin: 0;
}

.login-form__remember input {
  accent-color: var(--clr-primary);
}

.login-form__forgot {
  color: var(--clr-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
}

.login-form__forgot:hover {
  text-decoration: underline;
  color: var(--clr-primary);
}

/* ── Submit button ── */
.login-form__submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-white);
  background: linear-gradient(135deg, var(--clr-primary) 0%, color-mix(in srgb, var(--clr-primary) 70%, #6366f1) 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px -4px color-mix(in srgb, var(--clr-primary) 50%, transparent);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 4px;
}

.login-form__submit-btn:hover {
  opacity: 0.92;
  box-shadow: 0 6px 20px -4px color-mix(in srgb, var(--clr-primary) 60%, transparent);
  transform: translateY(-1px);
}

.login-form__submit-btn i {
  font-size: 18px;
}

/* ── External auth ── */
.login-form__external {
  margin-top: 20px;
  text-align: center;
}

.login-form__captcha {
  margin: 4px 0;
}

/* ── Responsive ── */
@media only screen and (max-width: 767px) {
  .login-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .login-panel--brand {
    padding: 32px 28px;
    order: 1;
  }

  .login-panel--form {
    padding: 32px 24px;
    order: 0;
  }

  .login-brand__decoration {
    display: none;
  }
}

/* ── Registration Page (reuses login-page-wrapper / login-grid / login-panel) ── */
.html-registration-page .login-page-wrapper {
  justify-content: flex-start;
}

.reg-grid {
  max-width: 1060px;
  grid-template-columns: 340px 1fr;
}

/* ── Brand panel features ── */
.reg-brand-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.reg-brand-features__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
}

.reg-brand-features__item i {
  font-size: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reg-brand-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 8px 0;
}

.reg-form-header__login-hint {
  display: none;
}

.reg-form-panel {
  align-items: flex-start;
  padding: 28px 32px;
}

.reg-form-card {
  width: 100%;
}

.reg-form-header {
  margin-bottom: 20px;
}

.reg-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Section Cards ── */
.reg-section {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}

.reg-section__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: color-mix(in srgb, var(--clr-primary) 5%, var(--clr-white));
  border-bottom: 1px solid var(--clr-gray-g200);
  font-size: 13.5px;
  color: var(--heading-color);
}

.reg-section__icon {
  font-size: 18px;
  color: var(--clr-primary);
}

.reg-section__body {
  padding: 14px 16px;
}

/* ── Form Grid ── */
.reg-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}

.reg-form-grid__full {
  grid-column: 1 / -1;
}

/* ── Gender Radio Labels ── */
.reg-gender-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.reg-gender-group input[type="radio"] {
  display: none;
}

.reg-radio-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border: 1.5px solid var(--clr-gray-g200);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.18s ease;
}

.reg-radio-label:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.reg-gender-group input[type="radio"]:checked+.reg-radio-label {
  background: color-mix(in srgb, var(--clr-primary) 10%, transparent);
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  font-weight: 600;
}

/* ── Input Fields ── */
.reg-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reg-field__label-row {
  display: flex;
  align-items: center;
  gap: 2px;
}

.reg-field__label-row .required {
  position: static;
  font-size: 14px;
  color: var(--clr-error, #ef4444);
  line-height: 1;
  margin: 0;
}

.reg-field__label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.reg-field__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.reg-field__input-icon {
  position: absolute;
  left: 12px;
  font-size: 16px;
  color: var(--clr-gray-g400, #9ca3af);
  pointer-events: none;
  transition: color 0.2s ease;
  z-index: 1;
}

.reg-field__input-wrap:focus-within .reg-field__input-icon {
  color: var(--clr-primary);
}

.reg-field__input {
  width: 100%;
  padding: 9px 12px 9px 38px !important;
  font-size: 13.5px;
  border: 1.5px solid var(--clr-gray-g200) !important;
  border-radius: 10px !important;
  background: var(--clr-white) !important;
  color: var(--text-color);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.reg-field__input:focus {
  border-color: var(--clr-primary) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--clr-primary) 12%, transparent);
  background: var(--clr-white) !important;
}

select.reg-field__input {
  padding-left: 12px !important;
}

.reg-field__input--password {
  padding-right: 42px !important;
}

.reg-field__eye-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--clr-gray-g400, #9ca3af);
  cursor: pointer;
  transition: color 0.18s ease;
  z-index: 2;
}

.reg-field__eye-toggle:hover {
  color: var(--clr-primary);
}

.reg-field__error {
  font-size: 12px;
  color: var(--clr-error, #ef4444);
}

/* ── Consent / Checkbox ── */
.reg-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
}

.reg-consent+.reg-consent {
  border-top: 1px solid var(--clr-gray-g200);
}

.reg-consent__check {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--clr-primary);
  flex-shrink: 0;
}

.reg-consent__label {
  font-size: 13.5px;
  color: var(--text-color);
  line-height: 1.5;
  margin: 0;
}

.reg-consent__link {
  color: var(--clr-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.reg-consent__link:hover {
  opacity: 0.8;
}

.reg-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Captcha ── */
.reg-captcha {
  margin: 8px 0 16px;
}

/* ── Registration Responsive (tablet) ── */
@media only screen and (max-width: 991px) {
  .reg-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .reg-brand-panel {
    display: none;
  }

  .reg-form-panel {
    padding: 24px 20px;
  }

  .reg-form-grid {
    grid-template-columns: 1fr;
  }

  .reg-form-header__login-hint {
    display: block;
  }
}

/* ── Registration Responsive (mobile) ── */
@media only screen and (max-width: 767px) {
  .reg-grid {
    max-width: 480px;
  }

  .reg-form-panel {
    padding: 20px 16px;
  }

  .reg-section__body {
    padding: 12px;
  }
}

/* ═══════════════════════════════════════════ */

/*@layer AuthPages {*/
/*This Card should be used in 'Login', 'Registration', 'Multi-factor auth' Pages*/
.auth__details_form-card {
  width: 98%;
  height: max-content;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.auth__details_form-card .field-validation-error {
  text-align: center;
}

.returning-wrapper .auth__details_form-card {
  width: 100%;
}

.returning-wrapper .auth__details_form-card .inputs label {
  margin-bottom: 0;
}

.auth .button-1 {
  display: inline-block;
  height: 60px;
  width: 100%;
  padding: 0 30px;
  text-align: center;
  border: 1px solid var(--clr-primary);
  border-radius: 6px;
  font-size: 16px;
  position: relative;
  z-index: 1;
  color: var(--clr-white);
  background: var(--clr-primary);
  text-transform: uppercase;
  transition: box-shadow 0.3s ease-out;
}

.auth .button-1:hover {
  box-shadow: 0px 14px 20px 0px rgb(17 22 124 / 0.16);
  transition: box-shadow 0.3s ease-out;
}

.gender {
  display: inline-block;
}

.gender span {
  display: inline-block;
  margin: 0 5px;
}

.gender span>* {
  display: inline !important;
  line-height: 32px;
}

.gender span>label {
  margin: 0 5px;
}

.date-of-birth .date-picker-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.date-of-birth .date-picker-wrapper>* {
  flex: 1 1 0;
}

.date-of-birth select+select {
  margin: 0 0 0 10px;
}

.date-of-birth .select-wrapper+.select-wrapper {
  margin: 0 0 0 10px;
}

#check-availability-button {
  margin: 10px 0 0;
  border: none;
  background-color: var(--clr-gray-g200);
  padding: 10px 15px;
  font-size: 12px;
  color: var(--clr-white);
  text-transform: uppercase;
}

#check-availability-button:hover,
#check-availability-button:focus {
  background-color: var(--clr-gray-g100);
}

.inputs.accept-consent {
  justify-content: start;
  align-items: center;
  text-align: start;
}

.inputs.accept-consent>* {
  display: inline-block;
  line-height: 32px;
}

.inputs.accept-consent span,
.inputs.accept-consent a {
  color: var(--clr-primary);
  cursor: pointer;
  font-size: 14px;
}

.inputs.accept-consent label {
  width: auto;
  margin-left: 10px;
  margin-bottom: 0;
}

.registration-page .button-1,
.registration-result-page .button-1,
.login-page .button-1,
.password-recovery-page .button-1,
.email-revalidation-page .button-1,
.account-activation-page .button-1,
.account-page .button-1,
.return-request-page .button-1 {
  border: none;
  border-radius: 6px;
  background-color: var(--clr-primary);
  padding: 12px 32px;
  text-align: center;
  color: var(--clr-white);
  text-transform: uppercase;
  transition: box-shadow 0.3s ease-out;
}

.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,
.email-revalidation-page .button-1:hover,
.email-revalidation-page .button-1:focus,
.account-activation-page .button-1:hover,
.account-activation-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 {
  box-shadow: 0px 14px 20px 0px rgb(9 46 209 / 0.16);
  transition: box-shadow 0.3s ease-out;
}

.return-request-page h1 a {
  color: var(--clr-primary);
}

.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 {
  padding: 30px 0;
  text-align: center;
  font-size: 16px;
  color: var(--clr-success);
}

.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;
}

.login-page .login-password {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: inline-block;
}

.login-logo a {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.login-logo a img {
  max-width: 50%;
}

.login-page .password-eye {
  content: "";
  display: block;
  height: 24px;
  width: 24px;
  position: absolute;
  top: calc(50% - 12px);
  right: 10px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  cursor: pointer;
  opacity: 0.75;
}

.provider-verification,
.provider-verification button {
  width: 100%;
}

.external-authentication {
  text-align: center;
}

.external-authentication .title {
  margin: 0 0 15px;
}

.external-auth-errors {
  color: #e4444c;
}

.external-auth-association {
  color: #444;
}

.external-auth-association a {
  color: var(--clr-primary);
}

.external-auth-association a:hover,
.external-auth-association a:focus {
  text-decoration: underline;
}

.password-recovery-page .result {
  margin: 0 0 5px;
  font-weight: 400;
  color: var(--text-color);
}

.add-more-external-records {
  text-align: center;
}

.add-more-external-records a {
  color: var(--clr-primary);
}

.add-more-external-records a:hover,
.add-more-external-records a:focus {
  text-decoration: underline;
}

/*region Customer Account Pages*/
/**** Customer Account Pages ****/
.account-page {
  width: 100%;
}

/* ── Account Page Header ── */
.acct-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--clr-gray-g200);
}

.acct-page-header__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.acct-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--clr-primary);
  border-radius: 10px;
  background: transparent;
  color: var(--clr-primary);
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.acct-nav-toggle:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.acct-page-header__title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.acct-page-header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--clr-primary) 0%, color-mix(in srgb, var(--clr-primary) 70%, #6366f1) 100%);
  color: var(--clr-white);
  font-size: 20px;
  flex-shrink: 0;
}

.acct-page-header__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: var(--heading-color);
}

/* ── Account Sections ── */
.acct-section {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease;
}

.acct-section:focus-within {
  box-shadow: 0 4px 20px -4px color-mix(in srgb, var(--clr-primary) 25%, transparent);
  border-color: color-mix(in srgb, var(--clr-primary) 40%, var(--clr-gray-g200));
}

.acct-section__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--clr-gray-g100);
  border-bottom: 1px solid var(--clr-gray-g200);
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  letter-spacing: 0.01em;
}

.acct-section__icon {
  font-size: 18px;
  color: var(--clr-primary);
  flex-shrink: 0;
}

.acct-section__body {
  padding: 22px 22px 6px;
}

/* ── 2-column form grid ── */
.acct-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.acct-form-grid__full {
  grid-column: 1 / -1;
}

/* ── Input with leading icon ── */
.acct-input-wrap {
  margin-bottom: 20px !important;
}

.acct-input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.acct-input-icon {
  position: absolute;
  left: 12px;
  font-size: 16px;
  color: var(--clr-gray-g400, #9ca3af);
  pointer-events: none;
  transition: color 0.2s ease;
  z-index: 1;
}

.acct-input-icon-wrap:focus-within .acct-input-icon {
  color: var(--clr-primary);
}

.acct-input {
  padding-left: 38px !important;
}

.acct-input-icon-wrap:has(.acct-pwd-toggle) .acct-input {
  padding-right: 40px !important;
}

/* Readonly value display */
.acct-readonly-value {
  display: inline-block;
  padding: 10px 16px;
  background: var(--clr-gray-g100);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 4px;
  color: var(--text-color);
  width: 100%;
}

/* ── Gender radio group ── */
.acct-gender-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.acct-gender-group span {
  flex: 0 0 auto;
}

.acct-radio-label {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid var(--clr-gray-g200);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500 !important;
  font-size: 14px;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
  margin: 0 !important;
  width: auto !important;
}

.acct-gender-group input[type="radio"] {
  display: none;
}

.acct-gender-group input[type="radio"]:checked+.acct-radio-label {
  border-color: var(--clr-primary);
  background: color-mix(in srgb, var(--clr-primary) 8%, transparent);
  color: var(--clr-primary);
}

.acct-radio-label:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

/* ── Save bar ── */
.acct-save-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 0 8px;
  border-top: 1px solid var(--clr-gray-g200);
  margin-top: 8px;
}

.acct-save-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 32px;
  background: linear-gradient(135deg, var(--clr-primary) 0%, color-mix(in srgb, var(--clr-primary) 70%, #6366f1) 100%);
  color: var(--clr-white);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px -4px color-mix(in srgb, var(--clr-primary) 50%, transparent);
}

.acct-save-btn:hover {
  opacity: 0.9;
  box-shadow: 0 6px 20px -4px color-mix(in srgb, var(--clr-primary) 60%, transparent);
}

.acct-save-btn i {
  font-size: 18px;
}

/* ── Password eye toggle ── */
.acct-pwd-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--clr-gray-g500, #6b7280);
  cursor: pointer;
  transition: color 0.18s ease;
  z-index: 2;
}

.acct-pwd-toggle:hover {
  color: var(--clr-primary);
}

/* ── Add / Back buttons ── */
.acct-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--clr-primary) 0%, color-mix(in srgb, var(--clr-primary) 70%, #6366f1) 100%);
  color: var(--clr-white);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 4px 14px -4px color-mix(in srgb, var(--clr-primary) 50%, transparent);
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.acct-add-btn:hover {
  opacity: 0.9;
  color: var(--clr-white);
  box-shadow: 0 6px 20px -4px color-mix(in srgb, var(--clr-primary) 60%, transparent);
}

.acct-add-btn i {
  font-size: 18px;
}

.acct-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: transparent;
  color: var(--text-color);
  border: 1.5px solid var(--clr-gray-g200);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  flex-shrink: 0;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.acct-back-btn:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.acct-back-btn i {
  font-size: 16px;
}

/* ── Address cards grid ── */
.address-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 8px;
}

.addr-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px -4px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.addr-card:hover {
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.12);
  border-color: color-mix(in srgb, var(--clr-primary) 35%, var(--clr-gray-g200));
  transform: translateY(-2px);
}

.addr-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px 14px;
  background: linear-gradient(135deg, var(--clr-primary) 0%, color-mix(in srgb, var(--clr-primary) 70%, #6366f1) 100%);
}

.addr-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--clr-white);
  font-size: 20px;
  flex-shrink: 0;
}

.addr-card__name {
  color: var(--clr-white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.addr-card__body {
  flex: 1;
  padding: 16px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.addr-card__row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-color);
  line-height: 1.5;
}

.addr-card__row--address {
  color: var(--text-color);
}

.addr-card__icon {
  font-size: 16px;
  color: var(--clr-primary);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.75;
}

.addr-card__footer {
  display: flex;
  border-top: 1px solid var(--clr-gray-g200);
}

.addr-card__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: transparent;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.addr-card__btn--edit {
  color: var(--clr-primary);
  border-right: 1px solid var(--clr-gray-g200);
}

.addr-card__btn--edit:hover {
  background: color-mix(in srgb, var(--clr-primary) 8%, transparent);
  color: var(--clr-primary);
}

.addr-card__btn--delete {
  color: var(--clr-error, #e53e3e);
}

.addr-card__btn--delete:hover {
  background: color-mix(in srgb, var(--clr-error, #e53e3e) 8%, transparent);
  color: var(--clr-error, #e53e3e);
}

/* ── Empty state ── */
.addr-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 20px;
  text-align: center;
}

.addr-empty__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--clr-primary) 8%, transparent);
  color: var(--clr-primary);
  font-size: 36px;
}

.addr-empty__text {
  font-size: 15px;
  color: var(--clr-gray-g500, #6b7280);
  margin: 0;
}

/* ── Delete Address Modal ── */
.addr-delete-modal .modal-content,
.addr-delete-modal__content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.2);
}

.addr-delete-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 28px 0;
}

.addr-delete-modal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--clr-error, #e53e3e) 10%, transparent);
  color: var(--clr-error, #e53e3e);
  font-size: 26px;
}

.addr-delete-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--clr-gray-g200);
  border-radius: 8px;
  background: transparent;
  color: var(--clr-gray-g500, #6b7280);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
  flex-shrink: 0;
}

.addr-delete-modal__close:hover {
  background: var(--clr-gray-g100);
  color: var(--text-color);
}

.addr-delete-modal__body {
  padding: 20px 28px 8px;
}

.addr-delete-modal__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 8px;
}

.addr-delete-modal__desc {
  font-size: 14px;
  color: var(--clr-gray-g500, #6b7280);
  line-height: 1.6;
  margin: 0;
}

.addr-delete-modal__footer {
  display: flex;
  gap: 12px;
  padding: 20px 28px 28px;
}

.addr-delete-modal__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.addr-delete-modal__btn--cancel {
  background: var(--clr-gray-g100);
  color: var(--text-color);
  border: 1.5px solid var(--clr-gray-g200);
}

.addr-delete-modal__btn--cancel:hover {
  background: var(--clr-gray-g200);
}

.addr-delete-modal__btn--confirm {
  background: var(--clr-error, #e53e3e);
  color: var(--clr-white);
  box-shadow: 0 4px 14px -4px color-mix(in srgb, var(--clr-error, #e53e3e) 50%, transparent);
}

.addr-delete-modal__btn--confirm:hover {
  background: color-mix(in srgb, var(--clr-error, #e53e3e) 85%, #000);
  box-shadow: 0 6px 18px -4px color-mix(in srgb, var(--clr-error, #e53e3e) 60%, transparent);
}

.account-page .buttons {
  text-align: center;
}

.account-page .button-2 {
  padding: 12px 32px;
  text-align: center;
  font-size: inherit;
  text-transform: capitalize;
  border: 1px solid var(--clr-gray-g200);
  outline: none;
  border-radius: 6px;
  color: var(--clr-primary);
  background-color: var(--clr-white);
}

.account-page .button-2.delete-address-button:hover {
  background-color: var(--clr-error);
}

.account-page .button-2:hover,
.account-page .button-2:focus {
  color: var(--clr-white);
  background-color: var(--clr-primary);
}

.account-page__offcanvas {
  width: 85% !important;
  max-width: 340px;
}

.account-page__offcanvas-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 8px;
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
  background: transparent;
  font-weight: 500;
  font-size: 14px;
  text-wrap: nowrap;
  flex-grow: 0;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.account-page__offcanvas-button:hover,
.account-page__offcanvas-button:active {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.account-page__offcanvas-button span {
  display: none;
}

.account-page .description {
  margin: 0 0 25px;
  padding: 0 10px;
}

.account-page .table-wrapper {
  margin: 0 0 30px;
}

.account-page .fieldset {
  position: relative;
  border-radius: 14px;
  padding: 28px;
  margin-top: 20px;
  border: 1px solid var(--clr-gray-g200);
  box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-out 0s;
  background: var(--clr-white);
}

.account-page .fieldset:hover {
  box-shadow: 0 4px 18px -4px rgba(0, 0, 0, 0.1);
}

.account-page .fieldset:focus,
.account-page .fieldset:focus-visible,
.account-page .fieldset:focus-within {
  border: 1px solid var(--clr-primary);
  box-shadow: 0 4px 20px -4px color-mix(in srgb, var(--clr-primary) 25%, transparent);
}

.account-page .fieldset:has(.inputs) {
  padding: 0 28px;
}

.account-page .fieldset:first-child:has(.title) {
  margin-top: 16px;
}

.account-page .fieldset .fieldset-title {
  position: absolute;
  padding: 0 10px;
  top: 0;
  left: 18px;
  transform: translateY(-58%);
  background: var(--clr-white);
  font-weight: 600;
  font-size: 14px;
}

.account-page .fieldset .inputs:first-child {
  margin-top: 28px;
}

.account-page .name-title {
  font-size: 1.125em;
}

.account-page .address-item,
.account-page .recurring-card-wrapper .data-card,
.shipment-card-wrapper .shipment-card,
.order-note-card-wrapper .order-note-card {
  padding: 16px;
  background: var(--clr-gray-g100);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 4px;
  text-align: start;
  box-shadow: 0 1px 4px -2px var(--clr-gray-g200);
  transition: all 0.3s ease-out 0s;
}

.account-page .address-item:hover,
.account-page .address-item:focus,
.account-page .address-item:focus-visible,
.account-page .address-item:focus-within,
.account-page .recurring-card-wrapper .data-card:hover,
.account-page .recurring-card-wrapper .data-card:focus,
.account-page .recurring-card-wrapper .data-card:focus-visible,
.account-page .recurring-card-wrapper .data-card:focus-within,
.shipment-card-wrapper .shipment-card:hover,
.shipment-card-wrapper .shipment-card:focus,
.shipment-card-wrapper .shipment-card:focus-visible,
.shipment-card-wrapper .shipment-card:focus-within,
.order-note-card-wrapper .order-note-card:hover,
.order-note-card-wrapper .order-note-card:focus,
.order-note-card-wrapper .order-note-card:focus-visible,
.order-note-card-wrapper .order-note-card:focus-within {
  border: 1px solid var(--clr-primary);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.account-page .recurring-card-wrapper .data-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.account-page ul.info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.account-page ul.info .title {
  font-weight: 800;
  text-transform: capitalize;
  font-size: 22px;
  color: var(--heading-color);
}

.account-page .section .title {
  margin: 0;
  padding: 0;
}

.account-page .product-review-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid var(--clr-gray-g200);
  transition: all 0.3s ease-out 0s;
  box-shadow: 0 4px 8px -2px transparent;
}

.account-page .product-review-item:hover,
.account-page .product-review-item:focus,
.account-page .product-review-item:focus-visible,
.account-page .product-review-item:focus-within {
  border: 1px solid var(--clr-primary);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.account-page .product-review-item .review-content {
  padding-bottom: 0;
}

.account-page .product-review-box {
  width: max-content;
}

.account-page .reward-points-history,
.account-page .reward-points-overview {
  width: 100%;
  text-align: center;
}

.account-page .review-item-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  border-top: 0;
}

.account-page .product-review-item .review-title {
  color: var(--text-color);
  font-size: 20px;
}

/* ── Account Navigation ─────────────────────────────────── */
.account-nav {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px -4px rgba(0, 0, 0, 0.07);
}

.account-nav__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--clr-primary) 0%, color-mix(in srgb, var(--clr-primary) 70%, #6366f1) 100%);
  color: var(--clr-white);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.account-nav__header-icon {
  font-size: 20px;
  opacity: 0.9;
}

.account-nav__list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.account-nav__item {
  margin: 0;
}

.account-nav__link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 20px;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
  text-decoration: none;
  position: relative;
}

.account-nav__link:hover {
  background: color-mix(in srgb, var(--clr-primary) 7%, transparent);
  color: var(--clr-primary);
  padding-left: 24px;
}

.account-nav__item.is-active .account-nav__link {
  background: color-mix(in srgb, var(--clr-primary) 10%, transparent);
  color: var(--clr-primary);
  font-weight: 600;
  padding-left: 24px;
  border-left: 3px solid var(--clr-primary);
}

.account-nav__icon {
  font-size: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}

.account-nav__item.is-active .account-nav__icon {
  opacity: 1;
}

.account-nav__arrow {
  margin-left: auto;
  font-size: 16px;
  opacity: 0.6;
}

.account-nav__footer {
  border-top: 1px solid var(--clr-gray-g200);
  padding: 8px 0;
}

.account-nav__logout {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 20px;
  color: var(--clr-error, #e53e3e);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.account-nav__logout:hover {
  background: color-mix(in srgb, var(--clr-error, #e53e3e) 8%, transparent);
  color: var(--clr-error, #e53e3e);
}

.account-nav__logout .account-nav__icon,
.account-nav__logout i {
  font-size: 18px;
}

/* ── Account Nav Offcanvas (mobile) ─── */
.account-nav-offcanvas {
  width: 85% !important;
  max-width: 340px;
}

.account-nav-offcanvas__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--clr-primary) 0%, color-mix(in srgb, var(--clr-primary) 70%, #6366f1) 100%);
}

.account-nav-offcanvas__title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-white) !important;
  font-size: 16px !important;
  margin: 0 !important;
}

.account-nav-offcanvas__close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 8px;
  color: var(--clr-white);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.account-nav-offcanvas__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.account-nav-offcanvas__body .account-nav__list {
  padding: 8px 0;
}

.account-nav-offcanvas__body .account-nav__link {
  padding: 13px 20px;
  border-bottom: 1px solid var(--clr-gray-g200);
  border-radius: 0;
}

.account-nav-offcanvas__body .account-nav__link:hover {
  padding-left: 24px;
}

.account-nav-offcanvas__body .account-nav__item.is-active .account-nav__link {
  padding-left: 24px;
  border-bottom-color: var(--clr-gray-g200);
}

.account-nav__item--logout .account-nav__link {
  color: var(--clr-error, #e53e3e);
}

.account-nav__item--logout .account-nav__link:hover {
  background: color-mix(in srgb, var(--clr-error, #e53e3e) 8%, transparent);
  color: var(--clr-error, #e53e3e);
}

/* Legacy classes kept for backwards compat */
.block-account-navigation .title strong {
  font-size: 24px;
  text-transform: capitalize;
}

.account-page .payment-method .method-list li {
  width: 100%;
  padding: 0;
}

.account-page .payment-method .payment-details {
  width: 100%;
  text-align: center;
}

.account-page .method-name {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.account-page .page-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  text-align: start;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--clr-gray-g200);
  padding-bottom: 16px;
  width: 100%;
}

.account-page .page-title h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 0 0;
  position: relative;
  text-align: start;
  color: var(--heading-color);
}

/* account-page__offcanvas legacy — now handled by account-nav-offcanvas */
.account-page__offcanvas-header {
  border-bottom: 1px solid var(--clr-gray-g200);
}

.account-page__offcanvas-body li a {
  display: block;
  padding: 16px 0 16px 16px;
  border-bottom: 1px solid var(--clr-gray-g200);
  background: transparent;
  transition: all 0.3s ease-out 0s;
}

.account-page__offcanvas-body li.active {
  color: var(--clr-primary);
}

.page::after,
.page-title::after,
.page-body::after {
  display: none;
}

.gdpr-tools-page .result {
  margin: 20px 0;
  font-size: 13px;
  color: var(--clr-error);
}

.gdpr-tools-page .buttons {
  margin-top: 20px;
}

.address-list-page .info .name,
.order-list-page .info .name {
  font-size: 16px;
  font-weight: bold;
}

/* ═══════════════════════════════════════════
   CUSTOMER PRODUCT REVIEWS PAGE
═══════════════════════════════════════════ */

.acct-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.acct-review-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 12px -4px rgba(0, 0, 0, 0.07);
}

.acct-review-card:hover {
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.acct-review__header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--clr-gray-g200);
  background: color-mix(in srgb, var(--clr-primary) 4%, var(--clr-white));
}

.acct-review__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.acct-review__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

.acct-review__status {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  white-space: nowrap;
}

.acct-review__status--approved {
  background: color-mix(in srgb, var(--clr-primary) 12%, transparent);
  color: var(--clr-primary);
}

.acct-review__status--pending {
  background: color-mix(in srgb, var(--clr-warning, #f59e0b) 12%, transparent);
  color: var(--clr-warning, #f59e0b);
}

.acct-review__rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.acct-review__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.acct-review__star {
  font-size: 16px;
  color: var(--clr-gray-g300, #d1d5db);
}

.acct-review__star--filled {
  color: #f59e0b;
}

.acct-review__star--sm {
  font-size: 13px;
}

.acct-review__date {
  font-size: 12px;
  color: var(--clr-gray-g500, #6b7280);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.acct-review__body {
  padding: 16px 20px;
  flex: 1;
}

.acct-review__text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 12px;
}

.acct-review__text:last-child {
  margin-bottom: 0;
}

.acct-review__extras {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px dashed var(--clr-gray-g200);
  margin-top: 4px;
}

.acct-review__extra-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.acct-review__extra-label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--clr-gray-g500, #6b7280);
  font-style: italic;
}

.acct-review__extra-stars {
  display: flex;
  align-items: center;
  gap: 1px;
}

.acct-review__reply {
  margin-top: 12px;
  padding: 14px;
  background: color-mix(in srgb, var(--clr-primary) 5%, var(--clr-white));
  border-radius: 10px;
  border-left: 3px solid var(--clr-primary);
}

.acct-review__reply-header {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.acct-review__reply-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-color);
}

.acct-review__footer {
  padding: 12px 20px;
  border-top: 1px solid var(--clr-gray-g200);
  background: color-mix(in srgb, var(--clr-gray-g200) 30%, var(--clr-white));
}

.acct-review__product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-primary);
  text-decoration: none;
  transition: opacity 0.18s ease;
}

.acct-review__product-link:hover {
  opacity: 0.8;
  color: var(--clr-primary);
}

/* ═══════════════════════════════════════════
   ORDER LIST PAGE
═══════════════════════════════════════════ */

/* Order cards grid */
.order-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 8px;
}

.order-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px -4px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.order-card:hover {
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Left status stripe */
.order-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  min-width: 76px;
  flex-shrink: 0;
}

.order-card__header--complete {
  background: linear-gradient(180deg, var(--clr-primary) 0%, color-mix(in srgb, var(--clr-primary) 70%, #6366f1) 100%);
}

.order-card__header--pending {
  background: linear-gradient(180deg, var(--clr-warning, #f59e0b) 0%, color-mix(in srgb, var(--clr-warning, #f59e0b) 70%, #fb923c) 100%);
}

.order-card__header--cancelled {
  background: linear-gradient(180deg, var(--clr-error, #e53e3e) 0%, color-mix(in srgb, var(--clr-error, #e53e3e) 70%, #f43f5e) 100%);
}

.order-card__header--processing {
  background: linear-gradient(180deg, var(--clr-info, #3b82f6) 0%, color-mix(in srgb, var(--clr-info, #3b82f6) 70%, #6366f1) 100%);
}

.order-card__header-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--clr-white);
}

.order-card__header-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.order-card__number {
  font-weight: 700;
  font-size: 11px;
  text-align: center;
  color: var(--clr-white);
  opacity: 0.9;
  line-height: 1.3;
  word-break: break-all;
}

/* Main content area */
.order-card__body {
  flex: 1;
  padding: 14px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  border-right: 1px solid var(--clr-gray-g200);
}

.order-card__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13.5px;
  flex: 1;
}

.order-card__body .order-card__row+.order-card__row {
  border-left: 1px solid var(--clr-gray-g200);
  padding-left: 20px;
}

.order-card__icon {
  display: none;
}

.order-card__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-gray-g500, #6b7280);
}

.order-card__value {
  margin-left: 0;
  font-weight: 500;
  color: var(--text-color);
}

.order-card__total {
  color: var(--clr-primary);
  font-weight: 700;
}

.order-card__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  flex-shrink: 0;
  min-width: 120px;
}

/* Details button — primary tinted */
.order-card__details-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, var(--clr-primary) 0%, color-mix(in srgb, var(--clr-primary) 70%, #6366f1) 100%);
  color: var(--clr-white);
  text-decoration: none;
  border: none;
  border-radius: 8px;
  transition: opacity 0.18s ease;
  box-shadow: 0 4px 10px -4px color-mix(in srgb, var(--clr-primary) 50%, transparent);
}

.order-card__details-btn:hover {
  opacity: 0.9;
  color: var(--clr-white);
}

.order-card__footer .addr-card__btn--edit {
  width: 100%;
  border-right: none;
  border: 1.5px solid var(--clr-primary);
  border-radius: 8px;
  padding: 7px 12px;
  justify-content: center;
  font-size: 12px;
}

/* Status badge */
.order-card__status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.order-card__status-badge--complete {
  background: rgba(255, 255, 255, 0.25);
  color: var(--clr-white);
}

.order-card__status-badge--pending {
  background: rgba(255, 255, 255, 0.25);
  color: var(--clr-white);
}

.order-card__status-badge--cancelled {
  background: rgba(255, 255, 255, 0.25);
  color: var(--clr-white);
}

.order-card__status-badge--processing {
  background: rgba(255, 255, 255, 0.25);
  color: var(--clr-white);
}

/* Recurring orders */
.order-recurring-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-recurring-card {
  border: 1px solid var(--clr-gray-g200);
  border-radius: 12px;
  overflow: hidden;
}

.order-recurring-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  padding: 16px;
}

.order-recurring-card__field {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.order-recurring-card__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-gray-g500, #6b7280);
}

.order-recurring-card__value {
  font-size: 14px;
  color: var(--text-color);
  font-weight: 500;
}

.order-recurring-card__actions {
  display: flex;
  border-top: 1px solid var(--clr-gray-g200);
}

/* ═══════════════════════════════════════════
   ORDER DETAILS PAGE
═══════════════════════════════════════════ */

.order-details-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Overview banner */
.order-overview-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.order-overview-banner--complete {
  background: linear-gradient(135deg, var(--clr-primary) 0%, color-mix(in srgb, var(--clr-primary) 70%, #6366f1) 100%);
}

.order-overview-banner--pending {
  background: linear-gradient(135deg, var(--clr-warning, #f59e0b) 0%, color-mix(in srgb, var(--clr-warning, #f59e0b) 70%, #fb923c) 100%);
}

.order-overview-banner--cancelled {
  background: linear-gradient(135deg, var(--clr-error, #e53e3e) 0%, color-mix(in srgb, var(--clr-error, #e53e3e) 70%, #f43f5e) 100%);
}

.order-overview-banner--processing {
  background: linear-gradient(135deg, var(--clr-info, #3b82f6) 0%, color-mix(in srgb, var(--clr-info, #3b82f6) 70%, #6366f1) 100%);
}

.order-overview-banner__left {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--clr-white);
}

.order-overview-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 26px;
  flex-shrink: 0;
}

.order-overview-banner__number {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-white);
}

.order-overview-banner__date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

.order-overview-banner__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.order-overview-banner__total {
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-white);
}

/* Info cards grid */
.order-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.order-info-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.06);
}

.order-info-card--totals {
  grid-column: span 1;
}

.order-info-card__header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  background: var(--clr-gray-g100);
  border-bottom: 1px solid var(--clr-gray-g200);
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.order-info-card__header i {
  font-size: 17px;
  color: var(--clr-primary);
}

.order-info-card__body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-info-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.order-info-card__row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-color);
  line-height: 1.5;
}

.order-info-card__row-icon {
  font-size: 15px;
  color: var(--clr-primary);
  opacity: 0.75;
  flex-shrink: 0;
  margin-top: 2px;
}

.order-info-card__label {
  color: var(--clr-gray-g500, #6b7280);
  min-width: 100px;
  font-size: 13px;
}

.order-info-card__value {
  font-weight: 500;
}

.order-info-card__divider {
  height: 1px;
  background: var(--clr-gray-g200);
  margin: 4px 0;
}

.order-info-card__hint {
  font-size: 12px;
  color: var(--clr-gray-g500, #6b7280);
  margin: 0;
}

.order-info-card__actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--clr-gray-g200);
}

.order-info-card__actions .acct-save-btn,
.order-info-card__actions .acct-back-btn {
  flex: 1 1 0;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  white-space: nowrap;
  justify-content: center;
}

/* Totals table */
.order-totals-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  padding: 4px 0;
  color: var(--text-color);
}

.order-totals-row--discount span:last-child {
  color: var(--clr-error, #e53e3e);
}

.order-totals-row--total {
  border-top: 2px solid var(--clr-gray-g200);
  margin-top: 4px;
  padding-top: 10px;
  font-size: 15px;
  font-weight: 700;
}

.order-totals-row--total span:last-child {
  color: var(--clr-primary);
  font-size: 17px;
}

/* Shipment cards */
.order-shipments-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-shipment-card {
  border: 1px solid var(--clr-gray-g200);
  border-radius: 12px;
  overflow: hidden;
}

.order-shipment-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  padding: 16px;
}

.order-shipment-card__footer {
  display: flex;
  border-top: 1px solid var(--clr-gray-g200);
}

/* Order notes */
.order-notes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.order-note-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--clr-gray-g200);
}

.order-note-item:last-child {
  border-bottom: none;
}

.order-note-item__date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--clr-gray-g500, #6b7280);
  white-space: nowrap;
  flex-shrink: 0;
}

.order-note-item__text {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.6;
}

.order-note-item__download {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: 13px;
  color: var(--clr-primary);
  font-weight: 500;
  text-decoration: none;
}

.order-note-item__download:hover {
  text-decoration: underline;
}

.order-details-button {
  background: transparent;
}

/* ── Order Details – Products card ── */
.order-details-page .section.products {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.06);
}

.order-details-page .section.products>.title {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  margin: 0;
  background: var(--clr-gray-g100);
  border-bottom: 1px solid var(--clr-gray-g200);
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.order-details-page .section.products .table-wrapper {
  padding: 0;
}

.order-details-page .section.products .data-table {
  border: none;
  border-radius: 0;
  margin: 0;
}

.order-details-page .section.products .data-table thead tr {
  background: var(--clr-gray-g100);
  border-bottom: 1px solid var(--clr-gray-g200);
}

.order-details-page .section.products .data-table th {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-gray-g500, #6b7280);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: none;
  border-right: 1px solid var(--clr-gray-g200);
  background: transparent;
}

.order-details-page .section.products .data-table th:last-child {
  border-right: none;
}

.order-details-page .section.products .data-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text-color);
  border: none;
  border-right: 1px solid var(--clr-gray-g200);
  border-bottom: 1px solid var(--clr-gray-g200);
  vertical-align: middle;
}

.order-details-page .section.products .data-table td:last-child {
  border-right: none;
}

.order-details-page .section.products .data-table th.quantity,
.order-details-page .section.products .data-table td.quantity,
.order-details-page .data-table th.quantity,
.order-details-page .data-table td.quantity {
  text-align: center !important;
}

.order-details-page .section.products .data-table tbody tr:last-child td {
  border-bottom: none;
}

.order-details-page .section.products .data-table td.picture img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--clr-gray-g200);
}

.order-details-page .section.products .data-table td.product a {
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
}

.order-details-page .section.products .data-table td.product a:hover {
  color: var(--clr-primary);
}

.order-details-page .section.products .tax-shipping-info {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--clr-gray-g500, #6b7280);
  border-top: 1px solid var(--clr-gray-g200);
}

/* ── Order Details – License card ── */
.order-details-page .section.license-section {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.06);
  margin-top: 20px;
}

.order-details-page .section.license-section>.title {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  margin: 0;
  background: var(--clr-gray-g100);
  border-bottom: 1px solid var(--clr-gray-g200);
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.order-details-page .section.license-section>.title i {
  font-size: 17px;
  color: var(--clr-primary);
}

.order-details-page .section.license-section .table-wrapper {
  padding: 0;
}

.order-details-page .section.license-section .license-table {
  border: none;
  border-radius: 0;
  margin: 0;
  width: 100%;
}

.order-details-page .section.license-section .license-table th {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-gray-g500, #6b7280);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: none;
  border-right: 1px solid var(--clr-gray-g200);
  background: var(--clr-gray-g100);
  border-bottom: 1px solid var(--clr-gray-g200);
}

.order-details-page .section.license-section .license-table th:last-child {
  border-right: none;
}

.order-details-page .section.license-section .license-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text-color);
  border: none;
  border-right: 1px solid var(--clr-gray-g200);
  border-bottom: 1px solid var(--clr-gray-g200);
  vertical-align: middle;
}

.order-details-page .section.license-section .license-table td:last-child {
  border-right: none;
}

.order-details-page .section.license-section .license-table tbody tr:last-child td {
  border-bottom: none;
}

.order-details-page .section.license-section .license-table td label {
  display: none;
}

.order-details-page .section.license-section .license-table td.url a {
  color: var(--clr-primary);
  text-decoration: none;
  font-weight: 500;
}

.order-details-page .section.license-section .license-table td.url a:hover {
  text-decoration: underline;
}

.order-details-page .section.license-section .license-text {
  padding: 8px 12px;
  border: 1px solid var(--clr-gray-g200);
  border-radius: 8px;
  font-size: 13px;
  font-family: monospace;
  background: var(--clr-gray-g100);
  color: var(--text-color);
}

.order-details-page .license-section__empty {
  padding: 16px 18px;
  margin: 0;
  font-size: 14px;
  color: var(--clr-gray-g500, #6b7280);
}

/* ── Order Details – Mobile Responsive ── */
@media (max-width: 767px) {
  .html-order-details-page .acct-page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 18px;
  }

  .html-order-details-page .acct-page-header__left {
    gap: 10px;
    width: 100%;
  }

  .html-order-details-page .acct-page-header__title {
    font-size: 18px;
  }

  .html-order-details-page .acct-page-header__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 17px;
  }

  .order-details-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .order-details-actions .acct-back-btn {
    font-size: 13px;
    padding: 6px 12px;
  }

  /* Overview banner */
  .order-overview-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 12px;
    margin-bottom: 18px;
    gap: 12px;
  }

  .order-overview-banner__icon {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .order-overview-banner__number {
    font-size: 16px;
  }

  .order-overview-banner__right {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .order-overview-banner__total {
    font-size: 20px;
  }

  /* Info grid */
  .order-info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 20px;
  }

  .order-info-card {
    border-radius: 12px;
  }

  .order-info-card__header {
    padding: 10px 14px;
    font-size: 13px;
  }

  .order-info-card__body {
    padding: 14px;
    gap: 6px;
  }

  .order-info-card__name {
    font-size: 14px;
  }

  .order-info-card__row {
    font-size: 13px;
  }

  .order-info-card__label {
    min-width: 80px;
    font-size: 12px;
  }

  .order-info-card__actions {
    flex-direction: column;
    gap: 8px;
  }

  .order-info-card__actions .acct-save-btn,
  .order-info-card__actions .acct-back-btn {
    font-size: 13px;
    padding: 8px 14px;
  }

  /* Totals */
  .order-totals-row {
    font-size: 13px;
  }

  .order-totals-row--total {
    font-size: 14px;
  }

  .order-totals-row--total span:last-child {
    font-size: 16px;
  }

  /* Order notes */
  .order-note-item {
    flex-direction: column;
    gap: 6px;
    padding: 10px 0;
  }

  .order-note-item__date {
    font-size: 11px;
  }

  .order-note-item__text {
    font-size: 13px;
  }

  /* Shipment cards */
  .order-shipment-card__grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }
}

@media (max-width: 425px) {
  .html-order-details-page .container-xl {
    padding-left: 10px;
    padding-right: 10px;
  }

  .html-order-details-page .acct-page-header {
    gap: 10px;
    padding-bottom: 12px;
    margin-bottom: 14px;
  }

  .html-order-details-page .acct-page-header__left {
    flex-wrap: wrap;
    gap: 8px;
  }

  .html-order-details-page .acct-page-header__title {
    font-size: 16px;
  }

  .html-order-details-page .acct-page-header__icon {
    width: 32px;
    height: 32px;
    font-size: 15px;
    border-radius: 8px;
  }

  .order-details-actions {
    gap: 6px;
    flex-wrap: wrap;
  }

  .order-details-actions .acct-back-btn {
    font-size: 12px;
    padding: 5px 10px;
    gap: 4px;
    border-radius: 8px;
  }

  /* Overview banner */
  .order-overview-banner {
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 14px;
    gap: 10px;
  }

  .order-overview-banner__left {
    gap: 10px;
  }

  .order-overview-banner__icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .order-overview-banner__number {
    font-size: 14px;
  }

  .order-overview-banner__date {
    font-size: 11px;
  }

  .order-overview-banner__total {
    font-size: 17px;
  }

  .order-card__status-badge {
    font-size: 11px;
    padding: 3px 8px;
  }

  /* Info cards */
  .order-info-grid {
    gap: 10px;
    margin-bottom: 14px;
  }

  .order-info-card {
    border-radius: 10px;
  }

  .order-info-card__header {
    padding: 9px 12px;
    font-size: 12.5px;
    gap: 7px;
  }

  .order-info-card__header i {
    font-size: 15px;
  }

  .order-info-card__body {
    padding: 10px 12px;
    gap: 5px;
  }

  .order-info-card__name {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .order-info-card__row {
    font-size: 12px;
    gap: 6px;
  }

  .order-info-card__row-icon {
    font-size: 13px;
  }

  .order-info-card__label {
    min-width: 70px;
    font-size: 11.5px;
  }

  .order-info-card__value {
    font-size: 12px;
  }

  /* Totals */
  .order-totals-row {
    font-size: 12px;
    padding: 3px 0;
  }

  .order-totals-row--total {
    font-size: 13px;
    padding-top: 8px;
  }

  .order-totals-row--total span:last-child {
    font-size: 15px;
  }

  /* Sections (shipments, notes) */
  .acct-section .acct-section__header {
    padding: 10px 12px;
    font-size: 13px;
  }

  .acct-section .acct-section__body {
    padding: 10px 12px;
  }

  .order-note-item__date {
    font-size: 10.5px;
  }

  .order-note-item__text {
    font-size: 12.5px;
  }

  .order-shipment-card__grid {
    padding: 10px;
    gap: 6px;
  }
}

/* ── Order List Cards – Mobile Responsive ── */
@media (max-width: 767px) {
  .order-card {
    flex-direction: column;
    border-radius: 12px;
  }

  .order-card__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    min-width: unset;
    border-radius: 0;
  }

  .order-card__header-left {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .order-card__header-icon {
    font-size: 20px;
  }

  .order-card__number {
    font-size: 13px;
    text-align: left;
    word-break: normal;
  }

  .order-card__body {
    padding: 14px 16px;
    flex-direction: row;
    gap: 16px;
    border-right: none;
    border-bottom: 1px solid var(--clr-gray-g200);
  }

  .order-card__body .order-card__row+.order-card__row {
    border-left: 1px solid var(--clr-gray-g200);
    padding-left: 16px;
  }

  .order-card__footer {
    flex-direction: row;
    min-width: unset;
    padding: 12px 16px;
    width: 100%;
  }

  .order-card__footer .addr-card__btn--edit,
  .order-card__details-btn {
    flex: 1;
  }
}

@media (max-width: 425px) {
  .order-cards-grid {
    gap: 12px;
  }

  .order-card__header {
    padding: 10px 14px;
  }

  .order-card__header-icon {
    font-size: 18px;
  }

  .order-card__number {
    font-size: 12px;
  }

  .order-card__status-badge {
    font-size: 10px;
    padding: 2px 8px;
  }

  .order-card__body {
    padding: 12px 14px;
    gap: 12px;
  }

  .order-card__row {
    font-size: 12.5px;
  }

  .order-card__label {
    font-size: 10px;
  }

  .order-card__body .order-card__row+.order-card__row {
    padding-left: 12px;
  }

  .order-card__footer {
    padding: 10px 14px;
    gap: 6px;
  }

  .order-card__details-btn {
    font-size: 12px;
    padding: 7px 10px;
  }

  .order-card__footer .addr-card__btn--edit {
    font-size: 11px;
    padding: 6px 10px;
  }
}

.address-list-page .add-button {
  margin-top: 24px;
  text-align: center;
}

.address-edit-page .message-error {
  margin: 20px 0;
}

.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 {
  padding: 16px !important;
  background: var(--clr-gray-g100);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 4px;
  text-align: start;
  box-shadow: 0 1px 4px -2px var(--clr-gray-g200);
  transition: all 0.3s ease-out 0s;
}

.return-request-list-page label {
  margin: 0 5px 0 0;
}

.return-request-list-page a {
  color: var(--clr-primary);
}

.return-request-list-page a:hover,
.return-request-list-page a:focus {
  text-decoration: underline;
}

.return-request-list-page .comments div {
  font-style: italic;
}

.request-item:not(:last-child) {
  margin-bottom: 32px;
}

.downloadable-products-page table td {
  color: #444;
}

.reward-points-overview {
  margin: 0 0 25px;
}

.reward-points-history table td {
  color: var(--text-color);
}

.reward-points-history table td.date,
.reward-points-history table td.endDate {
  min-width: 205px;
}

.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;
}

.payment-method #mfa-provider-block .payment-details input {
  display: inline;
}

.avatar-container {
  padding: 16px;
  background: var(--clr-gray-g100);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 4px;
  text-align: start;
  box-shadow: 0 1px 4px -2px var(--clr-gray-g200);
  transition: all 0.3s ease-out 0s;
}

.vendorinfo-page .button-2 {
  border: medium none;
  background-color: #888;
  padding: 12px 24px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}

.vendorinfo-page .button-2:hover,
.vendorinfo-page .button-2:focus {
  background-color: #999;
}

.vendorinfo-page .vendor-picture {
  width: 400px;
}

.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;
}

.downloadable-products-page .table-wrapper {
  width: 100%;
}

.downloadable-products-page .data-table {
  width: 100%;
}

/* Mobile-first styles */
.downloadable-products-page .table-header {
  display: none;
  /* Hide table headers on small screens */
}

.downloadable-products-page .table-row {
  display: block;
  margin-bottom: 1rem;
  border: 1px solid var(--clr-gray-g200);
  border-radius: 4px;
}

.downloadable-products-page .table-row.even {
  background-color: var(--clr-white);
}

.downloadable-products-page .cell {
  padding: 0.75rem;
  border-bottom: 1px solid var(--clr-gray-g200);
  display: flex;
  flex-wrap: wrap;
}

.downloadable-products-page .cell-label {
  font-weight: 500;
  margin-right: 0.5rem;
  width: 30%;
  text-align: start;
}

.downloadable-products-page .cell-value {
  text-align: start;
  width: 65%;
}

/* Product attributes */
.downloadable-products-page .attributes {
  margin-top: 0.5rem;
  font-size: 0.9em;
  color: var(--text-color);
  width: 100%;
}

.downloadable-products-page a:hover {
  text-decoration: underline;
}

.reward-points-history {
  width: 100%;
  margin-bottom: 2rem;
}

.reward-points-history .table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.reward-points-history .data-table {
  width: 100%;
  border-collapse: collapse;
}

.reward-points-history .data-table th,
.reward-points-history .data-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--clr-gray-g200);
}

.reward-points-history .data-table thead {
  background-color: var(--clr-gray-g100);
}

.reward-points-history .data-table .even {
  background-color: var(--clr-gray-g100);
}

/* Hide mobile labels on desktop */
.reward-points-history .mobile-label {
  display: none;
}

/*#endregion*/

/*#region Fly Out Cart*/
/**** Fly Out Cart ****/
.flyout-cart {
  display: none;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  background-color: var(--clr-white);
}

.mini-shopping-cart .count {
  padding: 5px 0 15px;
  color: var(--text-color);
}

.flyout-cart .flyout__cart-remove-from-cart:hover {
  color: var(--clr-error);
}

.flyout__cart-remove-from-cart .btn {
  outline: none;
  border: none;
  box-shadow: none;
  border: 0;
}

.flyout__cart-remove-from-cart .btn:first-child:active:focus-visible {
  outline: none;
  border: none;
  box-shadow: none;
  border: 0;
}

/*#endregion*/

/*#region SHOPPING CART*/
/********** SHOPPING CART **********/
.shopping-cart-page {
  text-align: start;
}

/* ---- Cart table wrapper card ---- */
.shopping-cart-page .table-wrapper {
  border: 1px solid var(--clr-gray-g200);
  border-radius: 12px;
  overflow: hidden;
}

/* ---- Table header ---- */
.shopping-cart-page .cart th {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--clr-gray-g200);
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8b8fa3;
}

/* ---- Table rows ---- */
.shopping-cart-page .cart td {
  border: none;
  border-bottom: 1px solid var(--clr-gray-g200);
  padding: 20px;
  vertical-align: middle;
}

.shopping-cart-page .cart tbody tr:last-child td {
  border-bottom: none;
}

/* ---- Product image ---- */
.shopping-cart-page .cart td.product-picture {
  width: 100px;
  vertical-align: middle;
}

.shopping-cart-page .cart td.product-picture img {
  border-radius: 10px;
  width: 90px;
  height: 90px;
  object-fit: cover;
}

/* ---- Hide SKU, unit price & discount in product column ---- */
.shopping-cart-page .cart .sku,
.shopping-cart-page .cart td.product .discount,
.shopping-cart-page .cart td.product .discount-additional-info {
  display: none;
}

.shopping-cart-page .cart td.product>div>.d-flex.fw-medium {
  display: none !important;
}

/* ---- Vendor label cleanup ---- */
.shopping-cart-page .cart .vendor {
  margin-top: 4px;
}

.shopping-cart-page .cart .vendor .td-title {
  font-weight: 400;
  color: #8b8fa3;
  font-size: 13px;
}

.shopping-cart-page .cart .vendor .vendor-name {
  font-weight: 500;
  font-size: 13px;
}

/* ---- Attribute info ---- */
.shopping-cart-page .cart .attr-info {
  font-size: 13px;
  color: #6b7280;
}


/* ---- Edit & remove row ---- */
.shopping-cart-page .cart .edit-item a {
  font-size: 13px;
  padding: 4px 12px;
  border: 1px solid var(--clr-gray-g200);
  border-radius: 6px;
  color: var(--text-color);
  transition: all 0.15s ease;
}

.shopping-cart-page .cart .edit-item a:hover {
  background-color: var(--clr-gray-g100);
  text-decoration: none;
}

.shopping-cart-page .cart .remove-from-cart .remove-btn {
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 6px;
  color: #9ca3af;
  transition: all 0.15s ease;
}

.shopping-cart-page .cart .remove-from-cart .remove-btn:hover {
  color: var(--clr-error);
  background-color: rgba(239, 68, 68, 0.08);
}

/* ---- Quantity stepper pill ---- */
.shopping-cart-page .cart td.quantity {
  min-width: auto;
}

.shopping-cart-page .cart .product-quantity {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--clr-gray-g200);
  border-radius: 8px;
  overflow: hidden;
  background: var(--clr-gray-g100);
}

.shopping-cart-page .cart .product-quantity .quantity-btn {
  border: none;
  background: transparent;
  padding: 8px 12px;
  cursor: pointer;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease;
}

.shopping-cart-page .cart .product-quantity .quantity-btn:hover {
  background-color: var(--clr-gray-g200);
}

.shopping-cart-page .cart .product-quantity .qty-input {
  border: none;
  background: #fff;
  width: 48px;
  text-align: center;
  padding: 8px 4px;
  font-weight: 600;
  font-size: 14px;
  border-left: 1px solid var(--clr-gray-g200);
  border-right: 1px solid var(--clr-gray-g200);
}

/* ---- Subtotal ---- */
.shopping-cart-page .cart td.subtotal {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  white-space: nowrap;
}

/* ---- Totals sidebar ---- */
.shopping-cart-page .totals__title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--clr-gray-g200);
}

/* ---- Continue shopping button (outline) ---- */
.shopping-cart-page .common-buttons .continue-shopping-button {
  background-color: transparent;
  color: var(--clr-primary);
  border: 1px solid var(--clr-primary);
  transition: all 0.15s ease;
}

.shopping-cart-page .common-buttons .continue-shopping-button:hover {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

.shopping-cart-page .order-summary-content .cart-page-layout,
.order-details-page .order-details-layout {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

.order-progress {
  margin: 0 0 50px;
  background-color: #f6f6f6;
  padding: 15px 0;
  text-align: center;
}

.cart-footer .checkout-buttons,
.cart-footer .addon-buttons {
  text-align: end;
}

.shopping-cart-page .page-title,
.wishlist-page .page-title {
  margin: 0 0 -1px;
  padding: 10px;
  margin-bottom: 32px;
}

.shopping-cart-page .page-title h1,
.wishlist-page .page-title h1 {
  font-weight: 800 !important;
}

.shopping-cart-page .message-error {
  margin: 20px 0;
}

.shopping-cart-page td .message-error {
  margin: 10px 0 0;
  text-align: start;
}

.shopping-cart-page .checkout-attributes a {
  color: var(--clr-primary);
}

.shopping-cart-page .checkout-attributes a:hover,
.shopping-cart-page .checkout-attributes a:focus {
  text-decoration: underline;
}

.shopping-cart-page .tax-shipping-info {
  margin: 32px 0 20px 0;
  text-align: center;
}

.shopping-cart-page .tax-shipping-info a {
  color: var(--clr-primary);
}

.shopping-cart-page .common-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.shopping-cart-page .common-buttons button,
.shopping-cart-page .common-buttons a {
  display: inline-block;
  padding: 16px 32px;
  text-align: center;
  font-size: inherit;
  text-transform: capitalize;
  border: 1px solid transparent;
  border-radius: 6px;
  outline: none;
  color: var(--clr-white);
  background-color: var(--clr-primary);
}

.shopping-cart-page .cart-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0;
}

.shopping-cart-page .cart-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.shopping-cart-page .selected-checkout-attributes {
  margin-top: 0;
  width: 70%;
}

.shopping-cart-page .date-picker-wrapper {
  display: flex;
  gap: 4px;
}

.shopping-cart-page .date-picker-wrapper>* {
  flex-shrink: 1;
  flex-grow: 1;
  flex-basis: 100px;
  min-width: 0;
}

.shopping-cart-page .left-column {
  text-align: start;
  max-width: 500px;
  border-radius: 6px;
  background: var(--clr-gray-g100);
}

.shopping-cart-page .left-column>* {
  flex-grow: 1;
}

.shopping-cart-page .terms-of-service {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
}

.shopping-cart-page .terms-of-service input {
  flex-shrink: 0;
  margin-top: 3px;
}

.shopping-cart-page .title {
  text-align: start;
}

.checkout-attributes dt {
  position: relative;
  margin: 0 0 5px;
  font-weight: bold;
  padding-inline-end: 18px;
  width: max-content;
}

.checkout-attributes dd {
  margin: 0 0 20px;
}

.checkout-attributes ul {
  font-size: 0;
}

.checkout-attributes .option-list>li {
  display: inline-block;
  margin: 5px;
  border-radius: 4px;
  border: 1px solid var(--clr-gray-g200);
  background-color: #fff;
  padding: 14px;
  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 0 0 5px;
}

.selected-checkout-attributes {
  margin: 30px 0;
}

.selected-checkout-attributes br {
  content: "";
  display: block;
  margin: 3px;
}

.cart-footer {
  margin: 0 0 50px;
  border-top: 1px solid var(--clr-gray-g200);
  padding-top: 32px;
}

.order-summary-content .totals {
  border-radius: 12px;
  max-width: 100%;
  height: max-content;
  border: 1px solid var(--clr-gray-g200);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 24px;
  color: var(--text-color);
  position: sticky;
  top: 150px;
}

#opc-payment_method .use-reward-points {
  margin-bottom: 16px;
}

#opc-confirm_order .order-review-data>div,
.order-details-area>div {
  width: 100%;
}

#opc-confirm_order .order-summary-content .totals {
  box-shadow: 0 10px 15px 6px rgba(0, 0, 0, 0);
  width: 100%;
}

#opc-confirm_order .cart-page-right {
  display: flex;
  margin-top: 24px;
  justify-content: end;
}

#opc-confirm_order .cart-footer {
  display: none;
}

.total-info {
  margin: 0 0 20px;
  border-bottom: 1px solid var(--clr-gray-g200);
  padding: 8px 0;
}

.totals .cart-collaterals {
  border-bottom: 1px solid var(--clr-gray-g200);
}

.cart-footer .total-info {
  padding: 1.5rem 0;
}

.cart-total td {
  width: 50%;
  padding: 5px 0;
  text-align: right;
}

.cart-total td:first-child {
  text-align: left;
}

.cart-total .giftcard-remaining {
  display: block;
  font-style: italic;
}

.cart-total .order-total {
  font-size: 20px;
  color: var(--clr-primary);
}

.cart-total .order-total strong {
  font-weight: normal;
}

.cart-total .earn-reward-points {
  font-style: italic;
}

.min-amount-warning {
  margin: 0 0 20px;
  padding: 0 30px;
  color: var(--clr-error);
}

.terms-of-service {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 0 0 20px;
}

.terms-of-service label {
  cursor: pointer;
  text-align: start;
}

.terms-of-service a {
  margin: 0 0 0 3px;
  color: var(--clr-primary);
}

.cart-footer .checkout-disabled {
  font-size: 20px;
  text-align: center;
  background: #ffa500;
  border: 1px solid #c3891e;
  color: #fff;
  padding: 15px 50px;
}

.cart-footer .addon-buttons {
  margin: 20px 0 0;
  padding: 0 10px;
}

.cart-collaterals {
  max-width: 100%;
}

.cart-collaterals .deals {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cart-collaterals .deals>div {
  width: 100%;
}

.cart-collaterals .button-2 {
  display: inline-block;
  text-align: center;
  text-transform: capitalize;
  border: 1px solid var(--clr-primary);
  border-radius: 6px;
  outline: none;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-size: 14px;
  padding: 4px 12px;
}

.cart-collaterals .box-title {
  margin: 0 0 5px;
  font-size: 1.1em;
  color: var(--heading-color);
}

.cart-collaterals .box-title strong {
  font-weight: 600 !important;
}

.cart-collaterals .hint {
  margin: 0 0 10px;
}

.cart-collaterals .coupon-code:has(input + button) {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}

.cart-collaterals .deals input[type="text"] {
  flex-grow: 1;
  flex-shrink: 2;
  flex-basis: 200px;
  overflow: auto;
  min-width: 0;
  width: 140px;
  max-width: 100%;
}

.cart-collaterals .deals button {
  flex-shrink: 0;
}

.cart-collaterals .message-failure {
  margin: 5px 0 0;
  font-size: 12px;
  color: var(--clr-error);
}

.cart-collaterals .message-success {
  margin: 5px 0 0;
  font-size: 12px;
  color: var(--clr-success);
}

.cart-collaterals .current-code {
  margin: 5px 0 0;
  color: var(--clr-success);
}

.remove-discount-button,
.remove-gift-card-button {
  width: fit-content;
  height: fit-content;
  border: 0;
  color: var(--text-color);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.remove-discount-button:hover,
.remove-gift-card-button:hover {
  color: var(--clr-error);
}

.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: #444;
}

.shopping-cart-page .no-data {
  margin: 25px 0 0;
  text-align: center;
}

/*#endregion*/

/*#region CHECKOUT PAGE*/
/****CHECKOUT PAGE****/
.checkout-page .buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.checkout-page .selected-checkout-attributes {
  margin: 0 0 32px 0;
  background: var(--clr-gray-g100);
  padding: 18px;
}

.checkout-page .page-title {
  margin-bottom: 32px;
}

.order-progress {
  margin: 0 0 50px;
  background-color: #f6f6f6;
  padding: 15px 0;
  text-align: center;
}

.order-progress ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 16px;
  padding-right: 16px;
}

.order-progress li {
  display: inline-block;
  margin: 10px;
}

.checkout-page .select-billing-address .title,
.checkout-page .new-billing-address .title,
.checkout-page .order-summary .title,
.checkout-page .select-shipping-address .title,
.checkout-page .new-shipping-address .title {
  padding: 0 0 15px 0;
  border-bottom: 1px solid var(--clr-gray-g200);
  text-align: start;
  margin: 0 0 15px;
}

.checkout-page .address-select {
  max-width: 100%;
}

.checkout-page .select-pickup-point label {
  margin-bottom: 0.8em;
}

.order-progress a {
  display: block;
  min-width: 70px;
  font-size: 14px;
  /*reset zeroing*/
  color: #444;
}

.order-progress li.active-step a {
  cursor: pointer;
  font-size: 1em;
  color: var(--clr-primary);
}

.order-progress li.inactive-step a {
  opacity: 0.3;
  cursor: default;
  font-size: 1em;
}

.checkout-page .section {
  margin: 0 0 30px;
}

.checkout-page .cart-options {
  min-height: 60px;
  overflow: hidden;
}

.checkout-page .cart-footer {
  border-top: none;
}

.checkout-page .total-info {
  border-radius: 6px;
  height: max-content;
  box-shadow: 0 10px 15px 6px rgba(0, 0, 0, 0.1);
  padding: 24px;
  color: var(--text-color);
}

.address-box .address-line {
  display: block;
  max-width: 500px;
}

.checkout-page .button-1 {
  padding: 16px 32px;
  text-align: center;
  font-size: inherit;
  color: var(--clr-white);
  border: 1px solid transparent;
  border-radius: 6px;
  outline: none;
  text-transform: uppercase;
  background-color: var(--clr-primary);
}

.checkout-page .button-1:hover,
.checkout-page .button-1:focus {
  background-color: var(--clr-primary-hover);
}

.checkout-page .address-item {
  max-width: 100%;
}

.checkout-page .address-item ul {
  width: 100%;
  border-radius: 6px;
  background: var(--clr-gray-g100);
  padding: 14px !important;
  border: 1px solid var(--clr-gray-g200);
  transition: 0.3s ease;
}

.checkout-page .address-item ul:hover {
  border: 1px solid var(--clr-primary);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.checkout-page .address-item li:not(:last-child) {
  padding-bottom: 4px;
}

.checkout-page .address-item li:first-child {
  padding-bottom: 8px;
}

.checkout-page .address-item li.name {
  font-size: 1.15em;
  font-weight: 500;
}

.enter-address .message-error {
  margin: 20px 0;
}

.enter-address .edit-address {
  background: var(--clr-gray-g100);
  margin: 0 0 30px;
  border-radius: 6px;
}

.checkout-page .ship-to-same-address {
  text-align: center;
}

.checkout-page .ship-to-same-address .selector {
  margin: 0 0 5px;
  font-weight: bold;
  color: #444;
}

.vat-number-warning {
  text-align: center;
  font-size: 13px;
  color: var(--clr-error);
  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: #444;
}

.select-pickup-point {
  text-align: center;
}

.checkout-page .pickup-points-map {
  min-height: 350px;
  vertical-align: middle;
  margin-top: 5px;
  margin-bottom: 5px;
}

.checkout-page .edit-address-button {
  float: right;
  margin: 20px 10px 10px 12px;
}

.checkout-page .delete-address-button {
  float: right;
  margin: 20px 0 10px 0;
}

.shipping-method .method-name {
  display: flex;
  gap: 8px;
  align-items: center;
  background-color: var(--clr-gray-g100);
  padding: 10px;
}

.shipping-method .method-name>label {
  flex-shrink: 0;
}

#payment-method-block {
  padding: 0 24px 24px 24px !important;
}

.checkout-page.payment-method-page #payment-method-block {
  margin-top: 24px;
}

.payment-method .method-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  overflow: hidden;
  text-align: center;
  font-size: inherit;
  align-items: center;
  margin-bottom: 24px;
}

.payment-method .method-list li {
  font-size: 1em;
  width: max-content;
  /*reset zeroing*/
}

.payment-method .method-list .method-name {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 16px;
  border-radius: 6px;
  background: var(--clr-gray-g100);
  border: 1px solid var(--clr-gray-g200);
  transition: 0.3s ease;
  min-height: 90px;
  cursor: pointer;
}

.payment-method .method-list .method-name:hover {
  border: 1px solid var(--clr-primary);
}

.payment-method .method-list .method-name * {
  cursor: pointer;
}

.payment-method .method-list .method-name:has(.payment-details > input:checked) {
  border: 1px solid var(--clr-primary);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.shipping-method .method-name {
  border-radius: 6px;
}

.shipping-method .method-description {
  text-align: center;
  margin: 5px 0 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
}

.shipping-method .method-list {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px !important;
}

.shipping-method .method-list li label,
.payment-method .method-list li label {
  font-size: 13px;
  font-weight: bold;
  color: #444;
}

.payment-method .use-reward-points {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.payment-method .payment-logo {
  display: inline-block;
  vertical-align: middle;
}

.payment-method .payment-logo label {
  display: block;
  font-size: 0 !important;
  max-height: 53px;
}

.payment-method .payment-logo label img {
  max-width: 53px;
}

.payment-method .payment-details {
  width: 200px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 0 0 0 10px;
  text-align: start;
  vertical-align: middle;
  font-weight: 400;
}

.payment-method .payment-details input {
  display: none;
}

.payment-info .info {
  padding: 24px;
  color: var(--text-color);
  background: var(--clr-gray-g100);
  border-radius: 6px;
  margin-bottom: 24px;
  border: 1px solid var(--clr-gray-g200);
}

.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;
}

.shipment-details-area .order-info-wrap,
.shipment-details-area .shipping-info-wrap {
  background-color: var(--clr-gray-g100);
  padding: 24px;
  color: var(--text-color);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 4px;
}

.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;
}

.shipment-details-page .table-wrapper {
  width: 100%;
  overflow-x: auto;
  /* Let tables scroll horizontally if needed */
}

.shipment-details-page .data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  /* Reset default margins if desired */
  /* Optional: Add any cell or row spacing as needed */
}

.shipment-details-page .data-table tbody tr {
  display: block;
  /* Each row becomes a block on mobile */
  margin-bottom: 1rem;
  border: 1px solid var(--clr-gray-g200);
  border-radius: 4px;
  overflow: hidden;
}

/* Each table cell stacks with a label (via data-label) */
.shipment-details-page .data-table td {
  display: block;
  width: 100%;
  padding: 0.75rem;
  position: relative;
  border: none;
}

.shipment-details-page .data-table td:not(:last-child) {
  border-bottom: 1px solid var(--clr-gray-g200);
}

.shipment-details-page .data-table td::before {
  content: attr(data-label);
  position: absolute;
  left: 0.75rem;
  font-weight: bold;
}

/* Hide the table header on mobile */
.shipment-details-page .data-table thead {
  display: none;
}

.order-details-area .payment-method-info,
.order-details-area .shipping-method-info {
  padding-top: 16px;
  border-top: 1px solid var(--clr-gray-g200);
}

.return-request-page .table-wrapper {
  width: 100%;
  overflow: auto;
  /* Allow horizontal scroll on narrow screens if necessary */
}

.return-request-page .data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

/* Hide the table header on small devices by default */
.return-request-page .data-table thead {
  display: none;
}

/* Table cells: basic border/padding */
.return-request-page .data-table tr th,
.return-request-page .data-table tr td {
  border: 1px solid var(--clr-gray-g200);
  padding: 0.75rem;
}

/* --- Mobile (default) - single column "cards" --- */
/* Turn each <tr> into a card, stacked in a single column */
.return-request-page .data-table tbody {
  display: block;
  /* so we can place each row as a card */
}

.return-request-page .data-table tbody tr {
  display: block;
  /* each row is its own "card" */
  border: 1px solid var(--clr-gray-g200);
  border-radius: 4px;
  margin-bottom: 1rem;
  background-color: var(--clr-white);
}

/* Cells behave like blocks, stacked within the card */
.return-request-page .data-table tbody td {
  display: block;
  position: relative;
  border: none;
  /* rely on the row border for the overall outline */
  border-bottom: 1px solid var(--clr-gray-g200);
  /* subtle divider between cells */
  padding: 0.75rem;
}

/* Pull the label text from data-label, placed *above* the content */
.return-request-page .data-table tbody td::before {
  content: attr(data-label);
  display: block;
  font-weight: 500;
  margin-bottom: 0.3rem;
  /* space between label and content */
  color: var(--text-color);
}

.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: 16px;
}

/* ===== Order Completed Page ===== */
.order-completed {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 16px 60px;
}

.order-completed__card {
  background: #fff;
  border: 1px solid var(--clr-gray-g200);
  border-radius: 20px;
  box-shadow: 0 8px 40px -8px rgba(0, 0, 0, 0.10);
  padding: 48px 40px 44px;
  max-width: 760px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.order-completed__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--clr-primary) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.order-completed__icon i {
  font-size: 44px;
  color: var(--clr-primary);
  line-height: 1;
}

.order-completed__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.order-completed__subtitle {
  font-size: 15px;
  color: var(--clr-gray-g500, #6b7280);
  margin: 0;
  line-height: 1.5;
}

.order-completed__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-gray-g100);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 100px;
  padding: 8px 20px;
  margin-top: 4px;
}

.order-completed__badge-label {
  font-size: 13px;
  color: var(--clr-gray-g500, #6b7280);
  font-weight: 500;
}

.order-completed__badge-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
}

.order-completed__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}

.order-completed__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.order-completed__btn--details {
  background: transparent;
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
}

.order-completed__btn--details:hover {
  background: color-mix(in srgb, var(--clr-primary) 8%, transparent);
  text-decoration: none;
  color: var(--clr-primary);
}

.order-completed__btn--continue {
  background: var(--clr-primary);
  color: #fff;
  border: 1.5px solid var(--clr-primary);
}

.order-completed__btn--continue:hover {
  background: color-mix(in srgb, var(--clr-primary) 85%, black);
  border-color: color-mix(in srgb, var(--clr-primary) 85%, black);
  color: #fff;
}

@media (min-width: 480px) {
  .order-completed__actions {
    flex-direction: row;
  }

  .order-completed__btn {
    flex: 1;
  }
}

.opc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.opc .step-title {
  display: flex;
  padding: 16px;
  gap: 16px;
  border-radius: 6px;
  align-items: center;
  background-color: var(--clr-gray-g100);
}

.opc .allow .step-title {
  background-color: var(--clr-primary);
  border-radius: 6px;
  cursor: pointer;
}

.opc .allow .step-title .number {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-white);
  border-radius: 6px;
  height: 2em;
  width: 2em;
  color: var(--text-color);
}

.opc .step-title .title {
  font-size: 1.25em;
  margin: 0;
}

.opc .allow .step-title .title {
  color: var(--clr-white);
  cursor: pointer;
}

.opc .step-title .number {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-gray-g300);
  border-radius: 6px;
  height: 2em;
  width: 2em;
  color: var(--text-color);
}

.opc .step {
  margin: 10px 0;
  padding: 30px 15px;
  text-align: center;
}

.opc .step .order-summary {
  text-align: start;
}

.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 .payment-method .method-list {
  padding-bottom: 0;
}

.opc .buttons {
  margin-bottom: 0;
}

.opc .back-link small {
  display: none;
}

.opc .back-link a {
  display: inline-block;
  margin: 0 0 0 -15px;
  background: url("../images/back-button.png") left center no-repeat;
  padding: 0 0 0 18px;
  color: #444;
}

.opc .back-link a:hover,
.opc .back-link a:focus {
  color: var(--clr-primary);
}

.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: left;
}

.opc .section.order-summary {
  margin: 0;
}

.opc-select-address-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 10px 5px;
}

.checkout-page .opc-select-address-container .button-1 {
  min-width: 100px;
  padding: 5px 20px;
}

.checkout-page .order-summary {
  width: 100%;
}

.order-summary-card-wrapper {
  max-height: 380px;
  overflow-y: auto;
  padding-right: 10px;
  margin: 0 0 32px 0;
}

.order-summary-card {
  padding: 0px;
  display: grid;
  grid-template-columns: 80px 1fr;
  border: 1px solid var(--clr-gray-g200);
}

.order-summary-card:not(:last-child) {
  margin-bottom: 16px;
}

.order-summary-card .order-summary-card__image {
  padding: 10px;
  border-right: 1px solid var(--clr-gray-g200);
}

.order-summary-card .order-summary-card__image a {
  display: inline-block;
  width: 100%;
}

.order-summary-card__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.order-summary-card .order-summary-card__details {
  grid-column: 2/-1;
  padding: 10px;
}

.order-summary-card .order-summary-card__details .attr-info {
  word-break: break-all;
}

.order-summary-card__details,
.order-summary-card__prices {
  font-size: 14px;
}

.order-summary-card__details .product-name {
  font-size: 16px;
  font-weight: 600;
}

.order-summary-card__details .product-name:hover {
  color: var(--secondary-s400);
}

.order-summary-card .order-summary-card__prices {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

.order-summary-card .order-summary-card__prices .unit-price {
  border-top: 1px solid var(--clr-gray-g200);
  border-right: 1px solid var(--clr-gray-g200);
  padding: 10px;
}

.order-summary-card .order-summary-card__prices .product-quantity {
  padding: 10px;
  border-top: 1px solid var(--clr-gray-g200);
}

.order-summary-card .order-summary-card__prices .product-total {
  grid-column: 1 / -1;
  padding: 10px;
  border-top: 1px solid var(--clr-gray-g200);
}

.order-summary-card .order-summary-card__prices .product-total span {
  font-weight: 600;
}

.order-summary--sc .total-info {
  padding: 16px;
  border: 1px solid var(--clr-gray-g200);
  background-color: var(--clr-gray-g100);
}

/*#endregion CHECKOUT PAGE*/

/*#region ESTIMATE SHIPPING POPUP COMMON */
/*** ESTIMATE SHIPPING POPUP COMMON ***/

.estimate-shipping-popup {
  position: relative;
  background: var(--clr-white);
  padding: 25px;
  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;
  right: 8px;
  margin: 4% 50%;
}

.shipping-address .required {
  margin-left: 0;
}

.estimate-shipping-row {
  position: relative;
  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-left: 15px;
}

.estimate-shipping-row-item+.estimate-shipping-row-item {
  padding-left: 10px;
}

.estimate-shipping-row-item-radio {
  flex: 0 0 35px;
}

.ship-to-title {
  margin-bottom: 10px;
}

.choose-shipping-title {
  display: none;
}

.estimate-shipping-address-control {
  width: 100%;
}

.estimate-shipping-row-item .required {
  top: 0;
  right: -12px;
}

.estimate-shipping-radio {
  display: block;
}

.estimate-shipping-row-item-radio>label {
  display: none;
}

.apply-shipping-button {
  padding: 12px 24px;
  text-align: center;
  font-size: inherit;
  text-transform: capitalize;
  border: 1px solid var(--clr-gray-g200);
  outline: none;
  border-radius: 6px;
  color: var(--clr-primary);
  background-color: var(--clr-white);
}

.apply-shipping-button.delete-address-button:hover {
  background-color: var(--clr-error);
}

.apply-shipping-button:hover,
.apply-shipping-button:focus {
  color: var(--clr-white);
  background-color: var(--clr-primary);
}

.apply-shipping-button-container {
  margin-top: 15px;
  text-align: center;
}

.shipping-options-header {
  top: 0;
  z-index: 1;
  position: sticky;
  background-color: #fff;
}

.shipping-options {
  position: relative;
  z-index: 1;
  overflow: hidden;
  overflow-y: auto;
  margin-top: 18px;
  max-height: 200px;
  background: #fff 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, #fff, #fff 30%, rgba(255, 255, 255, 0));
  background: -moz-linear-gradient(top, #fff, #fff 30%, rgba(255, 255, 255, 0));
  background: linear-gradient(to bottom, #fff, #fff 30%, rgba(255, 255, 255, 0));
}

.shipping-options:after {
  margin: -30px 0 0;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #fff 70%, #fff);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), #fff 70%, #fff);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 70%, #fff);
}

.no-shipping-options {
  text-align: center;
  margin: 4% 0;
}

.estimate-shipping-popup .message-failure {
  margin: 5px 0 -5px;
  font-size: 12px;
  color: var(--clr-error);
}

/*** 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: #444;
  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;
}

/*#endregion*/

/*#region ORDER DETAILS & SHIPPING DETAILS*/
/****** ORDER DETAILS & SHIPPING DETAILS ******/
.order-details-page .page-title {
  border-bottom: none;
}

.data-table.license-table {
  width: 100%;
}

.data-table.license-table tbody label {
  display: block;
  margin-bottom: 4px;
}

.data-table.license-table tbody tr {
  grid-template-columns: repeat(1, 1fr);
}

.order-details-page .license-table td.license {
  width: 100%;
  overflow: auto;
  text-overflow: clip;
}

.order-details-page .license-table td.license>* {
  width: 100%;
  overflow: auto;
  white-space: nowrap;
}

.order-details-page .page-title h1 {
  margin: 0 0 32px;
  border-bottom: 1px solid var(--clr-gray-g200);
  padding: 0 0 8px;
}

.order-details-page .page-title a.print-order-button {
  background-color: var(--clr-primary);
}

.print-order-button {
  display: none !important;
}

/*.order-status .complete {*/
/*  color: var(--clr-primary);*/
/*}*/

/*.order-status .pending {*/
/*  color: var(--clr-warning);*/
/*}*/

/*.order-status .cancelled {*/
/*  color: var(--clr-error);*/
/*}*/

/*.order-status .processing {*/
/*  color: var(--text-color);*/
/*}*/

.order-details-page .order-overview-item {
  position: relative;
  text-align: start;
  color: var(--text-color);
  border-radius: 6px;
  border: 1px solid var(--clr-gray-g100);
  padding: 16px;
  width: 100%;
  box-shadow: rgba(17, 17, 26, 0.05) 0 1px 0, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.order-details-page .order-overview-item .bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.order-details-page .order-overview-item .bar.complete {
  background: var(--clr-primary);
}

.order-details-page .order-overview-item .bar.pending {
  background: var(--clr-warning);
}

.order-details-page .order-overview-item .bar.cancelled {
  background: var(--clr-error);
}

.order-details-page .order-overview-item .bar.processing {
  background: var(--clr-info);
}

.order-details-page .order-overview .order-number {
  margin: 0 0 8px;
  text-transform: uppercase;
}

.order-details-page .order-total strong {
  font-weight: normal;
  color: var(--clr-primary);
}

.order-details-page .order-details-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.order-details-page .order-overview-item:not(:has(> *)) {
  visibility: hidden;
  height: 0;
  width: 0;
}

.order-details-page .order-overview-item:nth-child(1) {
  grid-column: span 5;
}

.order-details-page .order-overview-item:nth-child(2) {
  grid-column: span 5;
}

.order-details-page .order-overview-item:nth-child(3) {
  grid-column: span 5;
}

.order-details-page .order-overview-item:nth-child(4) {
  grid-column: span 5;
}

.order-details-page .order-overview-item:nth-child(5) {
  grid-column: span 5;
}

.order-details-page .order-overview-item:nth-child(6) {
  grid-column: span 5;
}

.order-details-page h4 {
  margin-bottom: 8px;
}

.order-details-page .repost .button-2 {
  display: inline-block;
  margin: 10px 0;
  border: none;
  background-color: var(--clr-primary);
  padding: 10px 15px;
  font-size: 12px;
  color: var(--clr-white);
  text-transform: uppercase;
}

.order-details-page .download a {
  font-weight: normal;
  color: var(--clr-primary);
}

.order-details-page .download a:hover,
.order-details-page .download a:focus {
  text-decoration: underline;
}

.user-agreement-page .terms-of-agreement {
  margin: 0 0 20px;
  padding: 20px;
  text-align: center;
}

.user-agreement-page .button-1 {
  min-width: 140px;
  border: none;
  background-color: var(--clr-primary);
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: var(--clr-white);
  text-transform: uppercase;
}

.order-details-page .tax-shipping-info {
  margin: 30px 0;
}

.order-details-page .tax-shipping-info a {
  color: var(--clr-primary);
}

.order-details-page .tax-shipping-info a:hover,
.order-details-page .tax-shipping-info a:focus {
  text-decoration: underline;
}

.order-details-page .actions {
  margin: 32px 0 0;
}

.order-details-page .actions button:hover,
.order-details-page .actions button:focus {
  background-color: var(--clr-gray-g200);
}

.order-details-page .actions button:first-child {
  background-color: var(--clr-primary);
}

.order-details-page .selected-checkout-attributes {
  margin: 0;
}

.order-details-page .totals.section {
  width: 100%;
  padding: 0;
  max-width: 100%;
  margin: 0 auto 50px;
}

.order-details-page .total-info {
  padding: 24px;
  color: var(--text-color);
  border-bottom: 0;
  height: max-content;
  border-radius: 6px;
  box-shadow: 0 10px 15px 6px rgba(0, 0, 0, 0.1);
}

.view-details {
  font-weight: 500;
  color: var(--clr-primary);
}

.order-details-area>div {
  width: 100%;
}

/*#endregion*/

/****** SEARCH & SITEMAP ******/

.search-input .fieldset {
  margin: 0 0 30px;
}

/* .search-input .form-fields {
  padding: 30px 15px 10px;
} */

.search-input input+label {
  display: inline;
  margin: 0 0 0 5px;
}

.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(--clr-primary);
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

.search-input .button-1:hover,
.search-input .button-1:focus {
  background-color: #248ece;
}

.search-results {
  margin: 30px 0 0;
}

.search-results .warning {
  margin: 10px 0;
  color: var(--clr-error);
}

.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: #444;
}

.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;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: var(--clr-gray-g200);
}

.sitemap-page .entity a {
  color: #444;
}

.sitemap-page .entity a:hover,
.sitemap-page .entity a:focus {
  color: var(--clr-primary);
}

.sitemap-page .entity a:empty {
  display: none;
}

/*** 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: #444;
}

.forum-search-box .basic {
  overflow: hidden;
  margin: 0 0 10px;
}

.forum-search-box .advanced a {
  line-height: 22px;
  color: #444;
  text-decoration: underline;
}

.forum-search-box .advanced a:hover,
.forum-search-box .advanced a:focus {
  color: var(--clr-primary);
}

.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(--clr-error);
}

/* 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: #444;
}

.forums-table-section-title a:hover,
.forums-table-section-title a:focus {
  color: var(--clr-primary);
}

.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: #444;
}

.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(--clr-primary);
  text-decoration: none;
}

.forums-table-section .topic-title span {
  display: block;
  color: #777;
}

.forums-table-section .forum-description,
.forums-table-section .topic-starter {
  margin: 5px 0;
}

.forums-table-section .latest-post {
  white-space: nowrap;
}

.forums-table-section .latest-post div {
  margin: 5px 0;
}

.forums-table-section .latest-post label {
  color: #777;
}

.forums-table-section .view-all {
  margin: 30px 0 0;
  padding: 0 10px;
}

.forums-table-section .view-all a {
  background-color: var(--clr-primary);
  padding: 10px 15px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
}

.forums-table-section .view-all a:hover,
.forums-table-section .view-all a:focus {
  background-color: #248ece;
}

/* 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(--clr-gray-g200);
  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 10px 10px 33px;
  font-size: 14px;
}

.forum-actions .actions .new-topic {
  background: #eee url("../images/new.png") left center no-repeat;
}

.forum-actions .actions .watch-forum,
.topic-actions .actions .watch-forum {
  background: #eee url("../images/watch.png") left 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") left center no-repeat;
}

.topic-actions .watch-topic-button {
  background: #eee url("../images/watch.png") left center no-repeat;
}

.topic-actions .move-topic-button {
  background: #eee url("../images/move.png") left center no-repeat;
}

.topic-actions .edit-topic-button {
  background: #eee url("../images/edit_.png") left center no-repeat;
}

.topic-actions .delete-topic-button {
  background: #eee url("../images/remove_.png") left 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(--clr-gray-g200);
  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(--clr-gray-g200);
}

.topic-post:last-child {
  border-bottom: 1px solid var(--clr-gray-g200);
}

.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(--clr-gray-g200);
  background-color: #f6f6f6;
  padding: 11px 0;
  font-weight: bold;
  color: #444;
}

.topic-post a.username:hover,
.topic-post a.username:focus {
  color: var(--clr-primary);
}

.topic-post .avatar,
.profile-info-box .avatar {
  position: relative;
  width: 150px;
  height: 150px;
  border: 1px solid var(--clr-gray-g200);
  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 {
  margin: 0 0 0 3px;
  font-weight: bold;
  color: #444;
}

.topic-post .pm-button,
.profile-info-box .pm-button {
  display: inline-block;
  border: none;
  background-color: #888;
  padding: 10px 20px;
  font-size: 12px;
  color: #fff;
  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: #999;
}

.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 {
  color: #444;
}

.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 10px 10px 33px;
}

.topic-post .post-actions .edit-post-button {
  background: url("../images/edit_.png") left center no-repeat;
}

.topic-post .post-actions .delete-post-button {
  background: url("../images/remove_.png") left 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(--clr-primary);
}

.topic-post .post-actions .post-link-button {
  padding: 10px;
  font-weight: bold;
  color: var(--clr-primary);
}

.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: #888;
  padding: 10px 20px;
  color: #fff;
}

.topic-post .post-actions .quote-post-button:hover,
.topic-post .post-actions .quote-post-button:focus {
  background-color: #999;
  color: #fff;
}

.topic-post .post-text {
  /*topic post-text also gets style from blog post-body*/
  padding: 0px;
  line-height: 22px;
  color: #444;
  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 #ccc;
  background-color: #f9f9f9;
  padding: 10px;
  color: #777;
}

.topic-post .signature {
  border-top: 1px solid var(--clr-gray-g200);
  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: #444;
  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(--clr-gray-g200);
  padding: 10px;
  border-radius: 6px;
}

.forum-edit-page .toolbar .button,
.private-message-send-page .toolbar .button {
  margin: 0 2px 0 0;
  border: #cec6b5 1px solid;
  padding: 2px;
  background-color: var(--clr-primary);
}

.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: #333 1px solid;
}

.forum-edit-page textarea,
.private-message-send-page textarea {
  display: block;
  margin: auto;
}

.private-message-send-page a {
  font-size: 14px;
  color: var(--clr-primary);
}

.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: #777;
}

.ui-widget.ui-widget-content.ui-tabs {
  border: none;
}

.ui-tabs-nav {
  margin: 0 0 30px;
  border-bottom: 1px solid var(--clr-gray-g200);
  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: #444;
}

.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(--clr-gray-g200);
  padding: 12px 24px;
  text-align: center;
  font-size: 18px;
  color: #444;
  /*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(--clr-primary);
}

.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: #444;
}

.private-messages-page td.subject a.pm-unread {
  color: var(--clr-primary);
}

.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-messages-page .no-items {
  padding: 20px;
  text-align: center;
}

.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: #444;
}

.private-message-view-page .message-body {
  border-top: 1px solid var(--clr-gray-g200);
  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;
  color: #777;
}

.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: #444;
}

.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;
  color: #777;
}

.latest-posts .topic {
  margin: 0 0 35px;
}

.latest-posts .topic-title {
  margin: 0 0 20px;
  border-top: 1px solid var(--clr-gray-g200);
  background: #f6f6f6;
  padding: 10px;
  font-size: 16px;
}

.latest-posts .topic-title a {
  font-weight: bold;
  color: #444;
}

.latest-posts .topic-title a:hover,
.latest-posts .topic-title a:focus {
  color: var(--clr-primary);
}

.latest-posts .topic-body {
  margin: 0 0 15px;
  line-height: 22px;
}

.latest-posts .topic-data {
  color: #444;
}

/* BB codes */

.csharpcode {
  margin: 10px 0;
  border: 1px dashed #ccc;
  background-color: #fff;
  padding: 10px;
  font-family: "Courier New", Courier, monospace;
  color: #000;
  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: #666;
}

@media all and (max-width: 769px) {
  .review-rating .name-description {
    text-align: center;
    width: 100%;
    display: block;
  }

  /*** ESTIMATE SHIPPING POPUP ***/

  .shipping-address {
    flex-flow: column;
  }

  .address-item {
    width: 100%;
  }

  .estimate-shipping-row-item.address-item+.estimate-shipping-row-item.address-item {
    padding-left: 0;
    padding-top: 8px;
  }
}

@media all and (max-width: 1000px) {

  /*** MOBILE NAVIGATION ***/
  .block-account-navigation {
    float: none;
    margin: auto !important;
  }

  .write-review .review-rating {
    text-align: center;
  }

  .write-review .review-rating div.name-description {
    width: 100%;
    margin: 0 5px 0 0;
    text-align: center;
  }

  .product-review-box {
    width: fit-content;
  }
}

@media all and (min-width: 481px) {
  /*** GLOBAL ***/

  .master-wrapper-content {
    width: 92.5%;
  }

  /*** GLOBAL TABLES ***/
  .ui-autocomplete {
    width: 280px !important;
  }

  .ui-autocomplete img {
    display: inline;
  }

  /*** CATEGORY ***/

  /*** PRODUCT PAGE ***/

  .overview-buttons div {
    display: inline-block;
    width: auto;
    margin: 0;
  }

  /*** TOPICS ***/

  .enter-password-form input[type="password"] {
    width: 260px;
  }

  /*** FORUM & PROFILE ***/

  .forums-header {
    background-color: #f9f9f9;
    padding: 30px 20px 20px;
  }

  .ui-tabs-nav li {
    display: inline-block;
    min-width: 150px;
    margin: 0 5px -1px;
    /*override jQuery UI styles, do not delete doubled properties*/
    margin: 0 5px -1px !important;
  }

  .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: inline-block;
    width: auto;
    margin: 1px;
  }

  .topic-post .post-text {
    float: left;
    width: 90.5%;
    text-align: left;
  }

  .forum-group .forum-table th.latest-post,
  .forum-group .forum-table th.topics,
  .forum-group .forum-table th.posts,
  .forum-group .forum-table td.latest-post,
  .forum-group .forum-table td.topics,
  .forum-group .forum-table td.posts {
    display: table-cell;
  }

  .topic-group .forum-table th.latest-post,
  .topic-group .forum-table td.latest-post {
    display: table-cell;
  }

  .forum-table td.image {
    max-width: 40px;
  }

  .forum-table td.image div {
    max-width: 100%;
    background-size: contain;
  }

  /*** ESTIMATE SHIPPING POPUP ***/

  .estimate-shipping-popup {
    padding: 25px;
  }
}

@media all and (min-width: 769px) {
  /**** GLOBAL ***/

  .master-wrapper-content {
    width: 94%;
  }

  .home-page-polls li {
    min-width: 100px;
  }

  /**** GLOBAL TABLES ***/
  .cart tr {
    width: 100%;
  }

  .order-details-page .data-table tr {
    width: 31.33333%;
    margin: 40px 1% 0;
  }

  /*** PRODUCT PAGE ***/

  /* .gallery {
    width: 550px;
  } */

  /* .variant-picture {
    float: left;
  } */

  .variant-picture+.variant-overview {
    width: auto;
    margin: 0 0 0 240px;
  }

  .variant-overview {
    text-align: left;
  }

  /*** PRODUCT REVIEWS ***/

  .product-review-item .review-title {
    max-width: none;
  }

  .product-review-item .product-review-box {
    float: none;
  }

  /*** REGISTRATION, LOGIN, ACCOUNT ***/
  .return-request-list-page .section {
    display: inline-block;
    width: 45%;
    margin: 20px 1%;
    vertical-align: top;
  }

  /*** ORDER DETAILS & SHIPPING DETAILS ***/

  .order-details-page .section.options {
    text-align: right;
  }

  .order-details-page .tax-shipping-info {
    text-align: right;
  }

  .order-details-page .totals {
    float: right;
    clear: both;
  }

  .shipment-details-page .tracking-number .tracking-url {
    color: var(--clr-primary);
  }

  /*** BLOG & NEWS ***/

  .blog-posts .tags {
    float: right;
    width: 80%;
    text-align: right;
  }

  .blog-posts .buttons {
    float: left;
    width: 20%;
    text-align: left;
  }

  .new-comment {
    text-align: center;
  }

  .new-comment .buttons {
    text-align: center;
  }

  .comment-list .comment {
    display: table;
    width: 100%;
    margin: 0;
  }

  .comment-list .comment:last-child {
    border-bottom: 1px solid var(--clr-gray-g200);
  }

  .comment-info {
    display: table-cell;
    width: 15%;
    margin: 0;
    vertical-align: top;
  }

  .comment-info .username {
    min-height: 40px;
    margin: 0;
    border: none;
    text-align: center;
  }

  .comment-info .avatar {
    border: none;
  }

  .comment-info .avatar img {
    max-width: 80%;
    max-height: 80%;
  }

  .comment-content {
    display: table-cell;
    width: 85%;
    border-left: 1px solid var(--clr-gray-g200);
    vertical-align: top;
    text-align: left;
  }

  .comment-time {
    min-height: 40px;
    margin: 0;
    background-color: #f6f6f6;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: normal;
  }

  .comment-title {
    margin: 0 0 -20px;
    padding: 20px;
  }

  .comment-body {
    padding: 20px;
  }

  /*** FORUM & PROFILE ***/

  .forum-actions,
  .topic-actions {
    overflow: hidden;
  }

  .forum-actions .actions,
  .topic-actions .actions {
    float: left;
  }

  .forum-actions .pager,
  .topic-actions .pager {
    float: right;
    max-width: 450px;
  }

  .forum-actions .pager li,
  .topic-actions .pager li {
    margin: 2px 4px;
  }

  .forum-actions .pager.upper {
    display: block;
  }

  .topic-actions.lower .actions {
    display: block;
  }

  .topic-posts {
    margin: 0 0 30px;
  }

  .topic-post {
    display: table;
    width: 100%;
    margin: 0;
  }

  .topic-post .post-info {
    display: table-cell;
    width: 15%;
    margin: 0;
    vertical-align: top;
    text-align: left;
  }

  .topic-post .user-info {
    width: auto;
  }

  .topic-post .username {
    min-height: 40px;
    margin: 0;
    border: none;
    text-align: center;
  }

  .topic-post .avatar {
    margin: auto;
    border: none;
  }

  .topic-post .avatar img {
    max-width: 80%;
    max-height: 80%;
  }

  .topic-post .user-stats li {
    margin: 0;
  }

  .topic-post .send-pm {
    margin: 0 0 20px;
  }

  .topic-post .pm-button,
  .profile-info-box .pm-button {
    padding: 8px 16px;
    font-size: 13px;
  }

  .topic-post .post-content {
    display: table-cell;
    width: 85%;
    border-left: 1px solid var(--clr-gray-g200);
    vertical-align: top;
    text-align: left;
  }

  .topic-post .post-head {
    min-height: 40px;
    overflow: hidden;
    background-color: #f6f6f6;
  }

  .topic-post .post-time {
    float: left;
    margin: 0;
    font-size: 14px;
    font-weight: normal;
  }

  .topic-post .post-actions {
    float: right;
    margin: 0;
  }

  .topic-post .post-actions a {
    margin: 0px !important;
    line-height: 20px;
  }

  .topic-post .post-actions .quote-post a {
    min-width: 70px;
  }

  .topic-post .post-actions a.post-link-button {
    margin: 0 0 0 10px;
    border-left: 1px solid var(--clr-gray-g200);
    text-align: center;
  }

  .topic-post .post-text {
    padding: 20px 5px;
  }

  .topic-post .post-vote {
    padding: 20px 0 20px 15px;
  }

  .forum-table th.replies,
  .forum-table th.views,
  .forum-table th.votes,
  .forum-table td.replies,
  .forum-table td.views,
  .forum-table td.votes {
    display: table-cell;
  }

  .forum-table td.image {
    max-width: none;
  }

  .forum-table td.image div {
    max-width: none;
    background-size: initial;
  }

  .ui-tabs-nav {
    text-align: left;
  }

  .ui-tabs-nav li {
    margin: 0 10px -1px 0;
    /*override jQuery UI styles, do not delete doubled properties*/
    margin: 0 10px -1px 0 !important;
  }

  .profile-info-box .avatar {
    float: left;
    margin: 0 15px 15px 0;
  }

  .profile-info-box .profile-stats {
    float: left;
    text-align: left;
  }

  .profile-info-box .title {
    text-align: left;
  }

  .profile-info-box .send-pm {
    clear: both;
    text-align: left;
  }
}

@media all and (min-width: 1001px) {

  /*** HEADER ***/
  .language-list {
    text-align: left;
  }

  /*** CATEGORY ***/
  .item-box .buttons {
    text-align: left;
  }

  /*** PRODUCT PAGE ***/

  /*** PRODUCT REVIEWS ***/

  .product-review-item .review-title {
    max-width: 850px;
  }

  .write-review .review-rating div.name-description {
    width: 265px;
    margin: 0 5px 0 0;
    text-align: right;
  }

  .product-review-item .review-text {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  .product-review-item .avatar {
    display: table-cell;
    vertical-align: top;
    width: 120px;
  }

  .product-review-item .avatar img {
    max-width: 100%;
  }

  .product-review-item .text-body {
    display: table-cell;
    vertical-align: top;
  }

  .product-review-item .avatar+.text-body {
    padding: 0 0 0 20px;
  }

  /*** WISHLIST & COMPARE LIST ***/

  .compare-products-page .page-title {
    margin: 0 0 -1px;
  }

  .compare-products-table .full-description td {
    display: table-cell;
  }

  .compare-products-table .full-description td p {
    margin-top: 0;
  }

  /*** TOPICS ***/

  .center-1 .topic-block-title {
    text-align: center;
  }

  .topic-page p {
    text-align: justify;
  }

  /*** REGISTRATION, LOGIN, ACCOUNT ***/

  .gender span {
    margin: 0 10px 0 0;
  }

  .date-of-birth select+select {
    margin: 0 0 0 11px;
  }

  #check-availability-button {
    display: block;
    margin: 10px auto;
  }

  .address-list-page .section,
  .return-request-list-page .section {
    display: block;
    width: auto;
    margin: 0 0 40px;
  }

  .avatar-page .message-error,
  .avatar-page .buttons {
    text-align: left;
  }

  .registration-page .vat-note {
    margin-left: 275px;
  }

  .customer-info-page .vat-note,
  .customer-info-page .vat-status,
  .customer-info-page .email-to-revalidate-note {
    margin-left: 150px;
  }

  .customer-info-page .vat-status {
    display: inline-block;
  }

  /*** SEARCH & SITEMAP ***/

  .advanced-search .price-range {
    margin-left: 114px;
  }

  /*** FORUM & PROFILE ***/

  .forum-breadcrumb {
    margin: -30px 0 30px;
  }

  .current-time {
    float: right;
  }

  .forum-search-box {
    float: left;
  }

  .forum-search-box .advanced {
    text-align: left;
  }

  .forum-search-box .advanced a {
    line-height: normal;
  }

  .forums-table-section td {
    min-width: 150px;
  }

  .forums-table-section td:first-child {
    min-width: 90px;
  }

  .forums-table-section .view-all {
    text-align: right;
  }

  .topic-actions .pager.upper {
    display: block;
    max-width: 400px;
  }

  .forum-table .forum-details,
  .forum-table .topic-details {
    min-width: 225px;
  }

  .forum-table td {
    padding: 20px;
  }

  .forum-edit-page textarea,
  .private-message-send-page textarea {
    width: 600px;
    height: 250px;
  }

  .private-message-send-page .bb-code-editor-wrapper {
    display: inline-block;
    width: 400px;
    margin: 10px 0;
    vertical-align: middle;
  }
}

@media all and (min-width: 1367px) {

  /*** GLOBAL STYLES ***/
  .master-wrapper-content {
    width: 1200px;
  }

  /*** PRODUCT REVIEWS ***/
  .product-review-item .review-title {
    max-width: 1050px;
  }

  .write-review .review-rating div.name-description {
    margin: 0 5px 0 0;
    min-width: 375px;
  }

  /*** FORUM & PROFILE ***/

  .forum-actions .pager,
  .topic-actions .pager {
    max-width: 600px !important;
  }

  .topic-post .post-text {
    width: 930px;
    max-width: 100%;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  height: auto !important;
}

.swiper-pagination-bullet-active {
  padding: 5px;
  background-color: var(--clr-primary);
}

a.skip {
  position: absolute;
  top: -1000px;
  left: -1000px;
  height: 1px;
  width: 1px;
  text-align: left;
  overflow: hidden;
}

a.skip:active,
a.skip:focus,
a.skip:hover {
  position: initial;
  top: 0;
  left: 0;
  display: block;
  height: auto;
  margin: 3px 0;
  overflow: visible;
  padding: 2px;
  color: #444444;
  background: #ffffff;
  text-decoration: underline;
  text-align: center;
  width: 100%;
  font-size: 16px;
}

/*#region Newsletter*/
.newsletter {
  margin-top: 2em;
}

.Newsletter label {
  color: var(--clr-white);
}

.newsletter-bg {
  /* background: url("../images/Newsletter/subscribe-bg.jpg") no-repeat center
    center; */
  /* background-size: cover; */
  background: hsla(195, 90%, 59%, 1);
  background: linear-gradient(270deg, hsla(195, 90%, 59%, 1) 0%, hsla(228, 74%, 52%, 1) 100%);
  padding: 100px 0;
}

.subscribe {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.subscribe_title {
  margin-bottom: 24px;
  color: var(--clr-white);
  max-width: 605px;
  margin-left: auto;
  margin-right: auto;
}

.subscribe_title h4 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--clr-white);
}

.subscribe_title p {
  margin-top: 16px;
}

.subscribe_content p {
  margin-top: 15px;
  font-size: 16px;
}

.subscribe_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.subscribe_input {
  position: relative;
}

.newsletter-result {
  margin-bottom: 50px;
}

.newsletter-validation {
  font-weight: 400;
}

.subscribe_form input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 1em;
  border: none;
  border-radius: 6px;
  box-shadow: 0px 20px 30px 0px rgba(8, 0, 42, 0.14);
  margin-right: 0;
  color: black !important;
}

.subscribe_form input:focus {
  outline: none;
  box-shadow: none;
}

.email-icon {
  position: absolute;
  color: var(--text-color);
}

.subscribe-btn {
  display: inline-block;
  color: var(--clr-white);
  background: #1a152e;
  padding: 12px 16px;
  height: 60px;
  text-align: center;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  text-transform: capitalize;
}

.subscribe-btn:hover {
  box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.1);
}

.subscribe_icons img {
  position: absolute;
  background: transparent;
  border-radius: 50%;
}

.subscribe_icons .subscribe_icon {
  display: none;
}

.subscribe_icons img.man {
  max-width: 160px;
  width: 12vw;
  right: 5%;
  bottom: 0;
  border-radius: 0%;
  box-shadow: none !important;
}

.validation-message {
  display: none;
  font-size: 14px;
  line-height: 20px;
}

/*#endregion Newsletter*/

/*#region Forum-Main*/
.forums-custom-header {
  background-color: var(--clr-white);
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.forum_custom_section {
  margin: 0 0 30px !important;
}

.forum_text {
  text-align: left !important;
}

.advanced_search {
  text-decoration: underline;
}

.checkbox-subscribed {
  width: 20px !important;
}

.view-mesage-content {
  background-color: var(--clr-gray-g100);
  padding: 10px;
  border-radius: 4px;
  min-height: 150px;
}

.topic-page {
  margin-top: 30px;
}

.tab-content {
  display: none;
}

.tab-button {
  padding: 10px 20px;
  background: var(--clr-gray-g100);
  border: 1px solid var(--clr-gray-g200);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button.active {
  background: var(--clr-primary);
  color: white;
  border-color: var(--clr-gray-g200);
}

.tab-button:hover,
.tab-button:focus {
  box-shadow: 0px 14px 20px 0px rgba(37, 17, 124, 0.16);
}

.post-header-content {
  background-color: var(--clr-gray-g100);
  padding: 4.5px 0px;
}

.user-info-content {
  border-right: 0px;
}

.username-info {
  font-size: 16px;
  font-weight: 700;
  height: 37px;
  background-color: var(--clr-gray-g100);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  width: 100%;
}

/*#endregion Forum-Main*/

/*#region Forum-Topic*/
.topic-container .inputs {
  margin-bottom: 15px;
}

.topic-container label {
  font-weight: bold;
  margin-bottom: 5px;
}

.topic-container input,
.topic-container select,
.topic-container textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.topic-container textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.topic-container {
  width: 90%;
  max-width: 100%;
  margin: auto;
  padding: 40px 15px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.topic-actions-content {
  margin: 0 0 30px;
  font-size: 0;
  color: var(--clr-white);
}

.topic-actions-content .reply-topic-button {
  background: var(--clr-info);
}

.topic-actions-content .watch-topic-button {
  background: var(--clr-warning);
}

.topic-actions-content .move-topic-button {
  background: var(--clr-gray-g200);
}

.topic-actions-content .edit-topic-button,
.edit-post-button {
  background: var(--clr-success);
}

.topic-actions-content .delete-topic-button,
.delete-post-button {
  background: var(--clr-error);
}

.topic-actions-content.lower .actions {
  display: none;
}

/*#endregion Forum-Topic*/

/*#region Forum-Table*/

.table-shadow-container {
  border-radius: 15px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.table-shadow-container:hover {
  box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.18);
}

.custom-table thead th {
  background-color: var(--clr-gray-g100) !important;
}

.custom-table {
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  background: white;
}

.custom-table th,
.custom-table td {
  padding: 13px;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--clr-gray-g200);
}

.custom-table th:first-child,
.custom-table td:first-child {
  border-left: 1px solid var(--clr-gray-g100);
}

.custom-table th:last-child,
.custom-table td:last-child {
  border-right: 1px solid var(--clr-gray-g100);
}

.custom-table tbody tr:hover {
  background-color: var(--clr-gray-g100);
}

/*#endregion Forum-Table*/

/*#region News*/
.news-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-body {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  max-height: 6em;
}

/**** Home Page News Item ****/
.news-item {
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.news-item:hover {
  box-shadow: 0px 10px 15px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.news-list-homepage .news-items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  gap: 18px;
}

/*#endregion News*/

/*#region Blogs*/
.blog-content {
  width: 100%;
  max-width: 100%;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-form-content {
  width: 100%;
  max-width: 100%;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-divider,
.modal-divider {
  width: 100%;
  height: 1px;
  background-color: var(--clr-gray-g200);
  margin: 10px 0;
}

.comment-contents {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.comment-contents:hover {
  background: var(--clr-gray-g100);
}

.comment-date {
  font-size: 14px;
}

.comment-text {
  font-size: 14px;
  margin-top: 5px;
}

.comment-custom-border {
  margin: 10px 0px;
  border-top: 1px solid var(--clr-gray-g200);
}

.tag-button {
  background: var(--clr-gray-g300);
  color: var(--clr-white);
}

.tag-button:hover {
  box-shadow: 0 14px 20px 0 rgba(0, 0, 0, 0.15);
}

.post-body p strong,
.news-item-page .news-body p strong {
  font-weight: 500 !important;
  font-size: 20px;
}

.post-body ul,
.news-body ul {
  margin: 12px 20px;
  padding: 0 0 0 36px;
  list-style: disc;
}

.comment-left {
  width: 100%;
}

.comment-right {
  width: 100%;
}

.block-blog-archive .number {
  display: block;
  color: #444;
  cursor: auto;
}

.block-blog-archive .sublist {
  margin: 5px 0 5px 15px;
}

.block-blog-archive li.month {
  padding: 3px 0 3px 15px;
}

.blog-page .page-title,
.news-list-page .page-title {
  margin: 0;
}

.blog-page .post {
  margin: 0 0 30px;
}

.blog-page .post:after {
  content: "";
  display: block;
  clear: both;
}

.post-title,
.news-title {
  display: inline-block;
  color: var(--text-color);
}

.post-title:hover,
.post-title:focus,
.news-title:hover,
.news-title:focus {
  color: var(--clr-primary);
}

.news-date {
  display: block;
  font-size: 0.9em;
  margin-bottom: 1em;
}

.post-date {
  display: block;
  margin: 0 0 15px;
  background-color: #f6f6f6;
  padding: 10px;
  font-style: italic;
  color: #444;
}

.post-body,
.news-body {
  margin: 0 0 16px;
  padding: 0;
  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 3px 3px 0;
  font-weight: bold;
  color: #444;
}

.blog-page .tags ul,
.blogpost-page .tags ul {
  display: inline-block;
  margin: 0 0 3px 3px;
  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 8px 0 0;
}

.blog-page .tags a,
.blogpost-page .tags a {
  display: block;
  color: var(--clr-primary);
}

.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: #444;
}

.blog-posts .buttons .read-comments:hover,
.blog-posts .buttons .read-comments:focus {
  color: var(--clr-primary);
}

.blog-posts .buttons .read-more,
.news-items .buttons .read-more {
  display: inline-block;
  border: none;
  background-color: var(--clr-primary);
  padding: 10px 20px;
  font-size: 12px;
  color: #fff;
  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: #248ece;
}

.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(--clr-primary);
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

.new-comment .button-1:hover,
.new-comment .button-1:focus {
  background-color: #248ece;
}

.comment-list {
  margin: 0 0 100px;
}

.comment-list .title {
  margin: 0 0 15px;
  padding: 0 10px;
  font-size: 20px;
  color: #444;
}

.comment-list .title strong {
  font-weight: normal;
}

.comment-list .comment {
  margin: 0 0 40px;
  border-top: 1px solid var(--clr-gray-g200);
}

.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(--clr-gray-g200);
  background-color: #f6f6f6;
  padding: 11px 0;
  font-weight: bold;
  color: #444;
}

.comment-info a.username:hover,
.comment-info a.username:focus {
  color: var(--clr-primary);
}

.comment-info .avatar {
  position: relative;
  width: 150px;
  height: 150px;
  border: 1px solid var(--clr-gray-g200);
  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 {
  color: #444;
}

.comment-title {
  margin: 0 0 15px;
  font-size: 16px;
  color: #444;
}

.comment-body {
  line-height: 22px;
}

.news-list-homepage {
  margin: 0 0 75px;
}

/*.news-list-homepage .title {*/
/*  margin-bottom: 24px;*/
/*  border-bottom: 1px solid var(--clr-gray-g200);*/
/*  padding: 0 0 15px;*/
/*  font-size: 30px;*/
/*  font-weight: normal;*/
/*  color: var(--text-color);*/
/*}*/

.news-list-homepage .title strong {
  font-weight: normal;
}

.news-list-homepage .view-all {
  text-align: center;
}

.news-list-homepage .view-all a {
  color: #444;
  text-decoration: underline;
}

.news-list-homepage .view-all a:hover,
.news-list-homepage .view-all a:focus {
  color: var(--clr-primary);
}

/*#endregion Blogs*/

/*#region Bottom Navigation*/

.bottom-navigation-blank {
  height: 57px;
}

.bottom-navigation {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--clr-white);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  padding: 8px 0;
  display: block;
}

.bottom-nav-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 480px;
  margin: 0 auto;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 5px 12px;
  transition: all 0.3s ease;
}

.nav-item.active {
  color: var(--clr-primary);
}

.nav-text {
  letter-spacing: 0.025em;
}

.nav-item:hover {
  color: var(--clr-primary);
  transform: translateY(-2px);
}

.icon-wrapper {
  position: relative;
}

#profileModal .modal-content {
  border-radius: 15px;
}

#profileModal .modal-header {
  border-top: 1px solid var(--clr-gray-g200);
  background: var(--clr-gray-g100);
  color: var(--clr-white);
  border-radius: 15px 15px 0 0;
}

#profileModal .btn-close {
  color: var(--clr-gray-g500);
}

#profileModal .modal-body {
  padding: 1rem;
}

/*#endregion Bottom Navigation */

i {
  line-height: normal;
}

.lh-30 {
  line-height: 30px;
}

.lh-32 {
  line-height: 32px;
}

.about-home .left-image {
  max-width: 410px;
  margin: 0 auto;
}

.highlight {
  color: var(--clr-primary);
}


.qna-image-wrapper {
  max-width: 252px;
  margin: 0 auto;
}

#st-1 {
  z-index: 1 !important;
}
