@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html {
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  line-height: 1.15; }

body,
html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-color: #fff;
  color: var(--skin-text-color);
  font-family: var(--skin-text-font);
  font-size: 14px;
  font-weight: 400;
  position: relative; }

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

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

/* 1.1 - HTML5 Elements */
article,
aside,
details,
figcaption,
figure,
dialog,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

/* 1.2 - Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--skin-title-color);
  font-family: var(--skin-text-font);
  margin: 0 0 10px 0;
  font-weight: 700;
  line-height: 1.3; }

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: var(--skin-title-color); }

.font-inter {
  font-family: var(--skin-header-font); }

/* 1.3 - Links  */
a {
  color: var(--skin-text-color);
  text-decoration: none;
  outline: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  a:hover, a:focus {
    color: var(--skin-title-color);
    text-decoration: none;
    outline: none; }
  a:active {
    outline: none; }

.a-link {
  text-decoration: underline !important; }

strong {
  font-weight: 700; }

em {
  font-style: italic; }

/* 1.4 - Lists */
ul,
ol {
  padding: 0;
  margin: 0;
  list-style-type: none; }

.typeList-style * {
  max-width: 100% !important; }

.typeList-style ul {
  list-style: initial;
  padding-left: 20px; }

.typeList-style ol {
  list-style-type: decimal;
  padding-left: 20px; }

.typeList-style ul ul {
  list-style-type: circle; }

.typeList-style ul ul ul {
  list-style-type: square; }

.typeList-style ul li,
.typeList-style ol li {
  margin: 5px 0; }

/* 1.5 - form */
input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'],
.input {
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  appearance: none; }

input[type='date'].form-control,
input[type='time'].form-control,
input[type='datetime-local'].form-control,
input[type='month'].form-control {
  -moz-appearance: none;
  appearance: none; }

input[placeholder] {
  text-overflow: ellipsis; }

input:required {
  box-shadow: none; }

textarea {
  resize: none; }

.form-control {
  display: block;
  width: 100%;
  height: 45px;
  padding: 20px 20px 6px 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #27251f;
  background: #fff;
  background-clip: padding-box;
  border: 1px solid #d0d1d2;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  .form-control::-ms-expand {
    background-color: transparent;
    border: 0; }
  .form-control:focus {
    color: #27251f;
    background-color: #fff;
    border-color: #27251f;
    outline: 0;
    box-shadow: none; }
  .form-control:-ms-input-placeholder {
    color: #71706c;
    opacity: 1; }
  .form-control::placeholder {
    color: #71706c;
    opacity: 1; }
  .form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1; }
  .form-control.is-invalid {
    border-color: #d91f46;
    padding-right: calc(1.5em + 0.75rem) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23d91f46' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23d91f46' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
    .form-control.is-invalid:focus {
      border-color: #d91f46 !important;
      box-shadow: 0 0 0 0.2rem rgba(217, 31, 70, 0.25); }
    .form-control.is-invalid ~ .invalid-feedback {
      display: block; }

.form-check-input.is-invalid ~ .form-check-label {
  color: #d91f46; }

.form-check-input.is-invalid ~ .invalid-feedback {
  display: block; }

select.form-control {
  padding: 20px 20px 6px 12px; }
  select.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #27251f; }
  select.form-control:focus::-ms-value {
    color: #27251f;
    background-color: #fff; }
  select.form-control[size], select.form-control[multiple] {
    height: auto; }
  select.form-control.is-invalid {
    padding-right: 3rem !important;
    background-position: right 1.5rem center; }

textarea.form-control {
  height: auto; }
  textarea.form-control.is-invalid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); }

.form-group {
  margin-bottom: 20px;
  position: relative; }
  .form-group .invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.625rem;
    color: #d91f46; }
  .form-group.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%; }
    .form-group.input-group label {
      color: #71706c;
      display: -ms-flexbox;
      display: flex;
      font-size: 0.625rem;
      height: 1rem;
      left: 1.25rem;
      margin: 0.375rem 0;
      position: absolute;
      z-index: 5; }
    .form-group.input-group > .form-control,
    .form-group.input-group > .form-control-plaintext,
    .form-group.input-group > .custom-select,
    .form-group.input-group > .custom-file {
      position: relative;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      width: 1%;
      min-width: 0;
      margin-bottom: 0; }
    .form-group.input-group.required .form-control-label::after {
      color: #71706c;
      content: '*';
      padding-left: 2px; }
    .form-group.input-group.required .form-control-label::before {
      content: ''; }
  .form-group.check-group label[for*='radio'] {
    margin-bottom: 0;
    margin: 0 20px 0 4px;
    font-size: 12px; }
  .form-group.check-group input[name='gender'] {
    margin-top: 0;
    vertical-align: top;
    width: 14px;
    height: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    cursor: pointer;
    outline: 0 !important; }
    .form-group.check-group input[name='gender']:before {
      content: '';
      position: absolute;
      z-index: 1;
      left: -1px;
      right: 0;
      bottom: 0;
      top: 0;
      margin: auto;
      width: 10px;
      height: 10px;
      background: #fff;
      border: 1px solid #fff;
      cursor: pointer;
      border-radius: 50%; }
    .form-group.check-group input[name='gender']:checked:before {
      background: var(--skin-primary-color);
      border-color: var(--skin-primary-color); }
    .form-group.check-group input[name='gender']:after {
      content: '';
      position: absolute;
      left: -1px;
      right: 0;
      bottom: 0;
      top: 0;
      margin: auto;
      width: 14px;
      height: 14px;
      background: #fff;
      border: 1px solid #777777;
      cursor: pointer;
      border-radius: 50%; }
    .form-group.check-group input[name='gender']:checked:after {
      border-color: var(--skin-primary-color); }

.password-mask {
  background-color: #fff;
  position: absolute;
  right: 19.2px;
  top: 10.24px;
  z-index: 3; }
  .password-mask:focus {
    outline: 0; }
  .password-mask.hide .icon__eye-hide,
  .password-mask.hide .icon__eye-show {
    display: none; }
  .password-mask .icon__eye-hide,
  .password-mask .icon__eye-show {
    fill: #71706c;
    width: 20px;
    height: 20px; }

.password-forgot {
  font-size: 12px;
  padding-top: 4px;
  display: flex;
  justify-content: flex-end; }
  .password-forgot a {
    text-decoration: underline;
    vertical-align: middle; }

/* 1.6 - Img */
img {
  max-width: 100%; }

/* 1.7 - Button */
.btn-link {
  color: var(--skin-primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  height: auto;
  padding: 0;
  position: relative;
  text-align: center;
  text-decoration: underline;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out; }
  .btn-link.has-svg {
    gap: 10px;
    text-decoration: none; }
    .btn-link.has-svg .icon {
      width: 16px;
      height: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center; }
    .btn-link.has-svg svg {
      width: 14px;
      height: 14px; }
  .btn-link:hover {
    text-decoration: none;
    color: var(--skin-text-color); }
  @media (min-width: 992px) {
    .btn-link {
      font-size: 16px; } }

.btn-th,
.btn {
  height: 36px;
  color: var(--skin-textbtn-color);
  border: 1px solid var(--skin-borderbtn-color);
  background: var(--skin-bgbtn-color);
  border-radius: 0px;
  box-shadow: none;
  outline: none !important;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  transition: all 0.4s; }
  .btn-th.has-svg,
  .btn.has-svg {
    gap: 4px; }
    .btn-th.has-svg svg,
    .btn.has-svg svg {
      width: 14px;
      height: 14px;
      position: relative;
      z-index: 2; }
  .btn-th:hover,
  .btn:hover {
    color: #fff;
    background: #000102;
    border: 1px solid #000102; }
  .btn-th.btn-second,
  .btn.btn-second {
    border: 1px solid var(--skin-borderbtn-color);
    color: #fff;
    background: var(--skin-borderbtn-color); }
  .btn-th.btn-third,
  .btn.btn-third {
    border: 1px solid #d1d5db;
    color: var(--skin-text-color);
    background: #d1d5db; }
  .btn-th.outline-1,
  .btn.outline-1 {
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
    border-radius: 22px; }
    .btn-th.outline-1:hover,
    .btn.outline-1:hover {
      color: #000102;
      background: #fff;
      border: 1px solid #000102; }
  .btn-th.outline-2,
  .btn.outline-2 {
    border: 1px solid #000102;
    color: #000102;
    background: transparent; }
    .btn-th.outline-2:hover,
    .btn.outline-2:hover {
      color: #fff;
      background: #000102; }
  .btn-th.btn-icon,
  .btn.btn-icon {
    padding: 0;
    width: 26px;
    height: 26px; }
  .btn-th.btn-full,
  .btn.btn-full {
    width: 100%;
    display: flex; }
  @media (min-width: 568px) {
    .btn-th,
    .btn {
      padding: 4px 20px; } }
  @media (min-width: 992px) {
    .btn-th,
    .btn {
      font-size: 15px;
      padding: 12px 24px; }
      .btn-th.has-svg svg,
      .btn.has-svg svg {
        width: 20px;
        height: 20px; }
      .btn-th.btn-icon,
      .btn.btn-icon {
        width: 36px;
        height: 36px; }
      .btn-th.outline-1,
      .btn.outline-1 {
        height: 46px; }
      .btn-th:not(.btn-icon, .btn-icon),
      .btn:not(.btn-icon, .btn-icon) {
        padding: 0 24px; } }

.btn-loadmore {
  position: relative;
  color: var(--skin-textbtn-color);
  border: 1px solid var(--skin-borderbtn-color);
  background: var(--skin-bgbtn-color);
  text-transform: initial; }

/* 1.8 - Swiper */
.swiper-style .swiper-pagination {
  z-index: 4;
  justify-content: center;
  display: flex;
  position: relative;
  padding: 16px 0; }
  .swiper-style .swiper-pagination span {
    display: inline-flex;
    width: 40px;
    padding: 10px 0;
    position: relative;
    background: transparent;
    border-radius: 0; }
    .swiper-style .swiper-pagination span:before {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      margin: auto;
      height: 4px;
      width: 40px;
      background: rgba(255, 255, 255, 0.4); }
    .swiper-style .swiper-pagination span.swiper-pagination-bullet-active:before {
      background: white; }

.swiper-style .swiper-button-next,
.swiper-style .swiper-button-prev {
  align-items: center;
  border-radius: 100%;
  cursor: pointer;
  display: flex;
  height: 32px;
  width: 32px;
  transition: all 0.4s;
  justify-content: center;
  font-size: 0;
  background: #d9d9d9;
  color: currentColor;
  border: 1px solid #d9d9d9;
  margin: 0;
  opacity: 1; }
  .swiper-style .swiper-button-next svg,
  .swiper-style .swiper-button-prev svg {
    width: 16px;
    height: 16px; }
  .swiper-style .swiper-button-next:after,
  .swiper-style .swiper-button-prev:after {
    content: none; }
  .swiper-style .swiper-button-next.swiper-button-disabled,
  .swiper-style .swiper-button-prev.swiper-button-disabled {
    opacity: 0.5; }
  @media (min-width: 992px) {
    .swiper-style .swiper-button-next,
    .swiper-style .swiper-button-prev {
      height: 42px;
      width: 42px; }
      .swiper-style .swiper-button-next svg,
      .swiper-style .swiper-button-prev svg {
        width: 24px;
        height: 24px; } }

.swiper-style.swiper-banner .swiper-button-next,
.swiper-style.swiper-banner .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #272727;
  background: #fff;
  border: 1px solid #fff; }

.swiper-style.swiper-banner .swiper-button-prev {
  left: 3%; }

.swiper-style.swiper-banner .swiper-button-next {
  right: 3%; }

@media (min-width: 992px) {
  .swiper-style.swiper-banner .swiper-button-prev {
    left: calc(100% / 6); }
  .swiper-style.swiper-banner .swiper-button-next {
    right: calc(100% / 6); } }

.swiper-style.swiper-loop .swiper-button-next,
.swiper-style.swiper-loop .swiper-button-prev {
  color: #272727;
  top: 50%;
  transform: translateY(-50%); }

@media (min-width: 992px) {
  .swiper-style.swiper-loop .swiper-button-prev {
    left: -42px; }
  .swiper-style.swiper-loop .swiper-button-next {
    right: -42px; } }

.swiper-gallery .swiper-pagination {
  z-index: 10;
  justify-content: center;
  display: flex;
  position: absolute;
  padding: 16px 0;
  bottom: 0; }
  .swiper-gallery .swiper-pagination span {
    display: inline-flex;
    width: 12px;
    height: 12px;
    padding: 0;
    position: relative;
    background: transparent;
    border-radius: 100%; }
    .swiper-gallery .swiper-pagination span:before {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      margin: auto;
      height: 12px;
      width: 12px;
      background: rgba(0, 0, 0, 0.9);
      border-radius: 100%;
      background-color: rgba(255, 255, 255, 0.8);
      border: solid 1px rgba(153, 153, 153, 0.8); }
    .swiper-gallery .swiper-pagination span.swiper-pagination-bullet-active:before {
      background-color: rgba(56, 56, 56, 0.8);
      border-color: rgba(255, 255, 255, 0.8); }

/* 1.9 - Layout */
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  padding-right: 16px;
  padding-left: 16px; }

.row {
  margin-left: -16px;
  margin-right: -16px; }

.container, .container-fluid {
  padding-left: 16px;
  padding-right: 16px; }

@media (min-width: 576px) {
  .container {
    max-width: 100%; } }

@media (min-width: 736px) {
  .w-8 {
    width: 83.3333333333%;
    margin: auto; } }

@media (min-width: 768px) {
  .container {
    max-width: 100%; } }

@media (min-width: 992px) {
  .container {
    max-width: 940px; } }

@media (min-width: 1025px) {
  .container {
    max-width: 940px; } }

@media (min-width: 1200px) {
  .container {
    max-width: 1160px; } }

@media (min-width: 1440px) {
  .container {
    max-width: 1232px; } }

@media (min-width: 1600px) {
  .container {
    max-width: 100%; }
  .container {
    padding-left: 82px;
    padding-right: 82px;
    max-width: 1440px; } }

/* 1.10 - Anmaiton css3 */
@keyframes bounce {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    transform: translate3d(0, 10px, 0); } }

@keyframes sk-rotate {
  100% {
    transform: rotate(360deg); } }

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0); }
  50% {
    transform: scale(1); } }

@keyframes load {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes addedToBag {
  0% {
    background-color: #27251f;
    color: #27251f; }
  10% {
    background-color: #27251f;
    color: #fff; }
  90% {
    background-color: #27251f;
    color: #fff; }
  100% {
    background-color: #27251f;
    color: #27251f; } }

@keyframes check {
  0% {
    border-color: #27251f;
    top: 0.6em; }
  5% {
    border-color: #fff;
    top: 0.6em; }
  10% {
    border-color: #fff;
    top: 1.1em; }
  12% {
    border-color: #fff;
    top: 0.8em; }
  15% {
    border-color: #fff;
    top: 1.1em; }
  90% {
    border-color: #fff;
    top: 1.1em; }
  100% {
    border-color: #27251f;
    top: 1.1em; } }

@keyframes loading {
  100% {
    transform: translateX(100%); } }

/* 1.11 - Tables */
table {
  width: 100%;
  border-spacing: 0; }

table tr td {
  border-top: 1px solid #dddddd; }

table tr td,
table tr th {
  padding: 10px;
  text-align: left; }

table tr td:first-child,
table tr th:first-child {
  padding-left: 0px; }

table tr td:last-child,
table tr th:last-child {
  padding-right: 0px; }

/*-----------------------------------------------*/
/* GENERAL */
/*-----------------------------------------------*/
.fix-style:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  gap: 10px; }
  @media (max-width: 991px) {
    .fix-style:not(.swiper-initialized) .swiper-wrapper[item-gap-mb='5'] {
      gap: 5px; } }
  .fix-style:not(.swiper-initialized) .swiper-wrapper[item-gap-mb='1'] {
    gap: 1px; }
  .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show='1'] {
    grid-template-columns: repeat(1, 1fr); }
    .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show='1'] .swiper-slide:nth-child(n + 2) {
      display: none; }
  .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show='2'] {
    grid-template-columns: repeat(2, 1fr); }
    .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show='2'] .swiper-slide:nth-child(n + 3) {
      display: none; }
  .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show='3'] {
    grid-template-columns: repeat(3, 1fr); }
    .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show='3'] .swiper-slide:nth-child(n + 4) {
      display: none; }
  .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show='4'] {
    grid-template-columns: repeat(4, 1fr); }
    .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show='4'] .swiper-slide:nth-child(n + 5) {
      display: none; }
  .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show='5'] {
    grid-template-columns: repeat(5, 1fr); }
    .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show='5'] .swiper-slide:nth-child(n + 6) {
      display: none; }
  .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show='9'] {
    grid-template-columns: repeat(9, 1fr); }
    .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show='9'] .swiper-slide:nth-child(n + 10) {
      display: none; }
  @media (max-width: 991px) {
    .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show-mb='2'] {
      grid-template-columns: repeat(2, 1fr); }
      .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show-mb='2'] .swiper-slide:nth-child(n + 3) {
        display: none; } }
  @media (max-width: 991px) {
    .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show-mb='1.2'] {
      display: flex;
      overflow-x: hidden; }
      .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show-mb='1.2'] .swiper-slide {
        flex: 0 0 83%;
        max-width: 83%; }
      .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show-mb='1.2'] .swiper-slide:nth-child(n + 2) {
        display: block; }
      .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show-mb='1.2'] .swiper-slide:nth-child(n + 3) {
        display: none; } }
  @media (max-width: 991px) {
    .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show-mb='1'] {
      grid-template-columns: repeat(1, 1fr); }
      .fix-style:not(.swiper-initialized) .swiper-wrapper[item-show-mb='1'] .swiper-slide:nth-child(n + 2) {
        display: none; } }
  .fix-style:not(.swiper-initialized) .swiper-wrapper.no-product {
    grid-template-columns: auto; }

.swiper-container {
  position: relative;
  width: 100%; }

.lock-scroll {
  overflow: hidden; }

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 6, 23, 0.1);
  display: none;
  z-index: 10; }
  .overlay.overlay-menu {
    z-index: 10; }

/* - Loading  */
.mainLoading {
  position: fixed;
  z-index: 999999;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  display: none; }
  .mainLoading .underlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-color: #000; }
  .mainLoading .spinner {
    position: fixed;
    width: 80px;
    height: 80px;
    text-align: center;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    animation: sk-rotate 2s infinite linear; }
  .mainLoading .dot1,
  .mainLoading .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #fff;
    border-radius: 100%;
    animation: sk-bounce 2s infinite ease-in-out; }
  .mainLoading .dot2 {
    top: auto;
    bottom: 0;
    animation-delay: -1s; }
  .mainLoading.active {
    opacity: 1;
    visibility: visible;
    display: block; }

.no-img--loading img {
  visibility: hidden;
  opacity: 0; }

.no-img--loading .aspect-ratio {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
  background: #f3f3f3; }
  .no-img--loading .aspect-ratio:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: translateX(-100%);
    animation: loading 1.5s infinite;
    z-index: 1;
    top: 0; }

.product-loading {
  padding: 0 1px; }
  .product-loading .product-loop--wrap {
    background: #fff;
    height: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease; }
  .product-loading .product-loop--head .lazy-img {
    position: relative;
    width: 100%;
    height: 0;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    padding-bottom: calc(1 / 1 * 100%);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    background: #f5f5f5; }
  .product-loading .product-loop--body {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
    background: #fff;
    -webkit-transition: transform 300ms ease;
    -moz-transition: transform 300ms ease;
    -ms-transition: transform 300ms ease;
    -o-transition: transform 300ms ease;
    transition: transform 300ms ease; }
  .product-loading .loading-mask .loading-mask--image {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0; }
  .product-loading .loading-mask .loading-mask--detail {
    padding: 10px 0; }
  .product-loading .loading-mask .loading-mask--detail .mask-line {
    height: 10px;
    width: 100%;
    border-radius: 8px;
    background: #f5f5f5; }
  .product-loading .loading-mask .loading-mask--detail .mask-line:nth-child(2) {
    width: 80%;
    background: #f5f5f5; }
  .product-loading .loading-mask .loading-mask--detail .mask-line:nth-child(3) {
    width: 65%;
    background: #f5f5f5; }
  .product-loading .product-loop-load {
    border: 1px solid #eae8e4;
    margin-left: -1px;
    margin-bottom: -1px; }
  .product-loading.small-loop .product-loop--wrap {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-direction: row; }
  .product-loading.small-loop .product-loop--head {
    -webkit-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .product-loading.small-loop .product-loop--head .lazy-img {
    border-radius: 4px;
    background: #f0efef;
    padding-bottom: 100%; }
  .product-loading.small-loop .product-loop--body {
    -webkit-flex: 0 0 calc(60% - 8px);
    flex: 0 0 calc(60% - 8px);
    max-width: calc(60% - 8px); }
  .product-loading.small-loop .loading-mask .loading-mask--detail {
    padding: 4px 0; }
  .product-loading.small-loop .loading-mask .loading-mask--detail .mask-line {
    height: 5px; }

.catemenu-loading {
  position: relative;
  overflow: hidden;
  height: 37px;
  width: 100px;
  background: #efefef; }

.line-loading .line-block {
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease; }

.line-loading .loading-mask .loading-mask--title {
  padding: 10px 4px;
  position: relative;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
  background: #fff;
  border: 1px solid #f5f5f5;
  border-radius: 4px;
  height: 94px;
  -webkit-transition: transform 300ms ease;
  -moz-transition: transform 300ms ease;
  -ms-transition: transform 300ms ease;
  -o-transition: transform 300ms ease;
  transition: transform 300ms ease; }

.line-loading .loading-mask .loading-mask--title .mask-line {
  height: 8px;
  border-radius: 8px;
  margin: 2px 0;
  background: #f5f5f5; }

.line-loading .loading-mask .loading-mask--title .mask-line:nth-child(1) {
  width: 100%; }

.line-loading .loading-mask .loading-mask--title .mask-line:nth-child(2) {
  width: 80%; }

.line-loading .loading-mask .loading-mask--title .mask-line:nth-child(3) {
  width: 60%; }

.line-loading .loading-mask .loading-mask--title .mask-line:nth-child(4) {
  width: 40%; }

.line-loading.line-cart .line-block {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 152px; }

.line-loading.line-cart .loading-mask .loading-mask--title {
  -ms-flex: 0 0 88%;
  flex: 0 0 88%;
  max-width: 88%;
  padding: 16px 24px;
  border: none;
  border-radius: 0; }

.line-loading.line-cart .loading-mask .loading-mask--img {
  background: #f5f5f5;
  -ms-flex: 0 0 12%;
  flex: 0 0 12%;
  max-width: 12%; }

.alert-info {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem; }

.unreset {
  line-height: 1.2; }
  .unreset body {
    margin: 8px; }
  .unreset th {
    font-weight: bold;
    text-align: center; }
  .unreset caption {
    text-align: center; }
  .unreset h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  .unreset h2 {
    font-size: 1.5em;
    margin: 0.75em 0; }
  .unreset h3 {
    font-size: 1.17em;
    margin: 0.83em 0; }
  .unreset h4,
  .unreset p,
  .unreset blockquote,
  .unreset ul,
  .unreset fieldset,
  .unreset form,
  .unreset ol,
  .unreset dl,
  .unreset dir,
  .unreset menu {
    margin: 1.12em 0; }
  .unreset h5 {
    font-size: 0.83em;
    margin: 1.5em 0; }
  .unreset h6 {
    font-size: 0.75em;
    margin: 1.67em 0; }
  .unreset h1,
  .unreset h2,
  .unreset h3,
  .unreset h4,
  .unreset h5,
  .unreset h6,
  .unreset b,
  .unreset strong {
    font-weight: bold; }
  .unreset blockquote {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 40px;
    margin-inline-end: 40px;
    font-style: italic;
    padding: 2px 0;
    border-style: solid;
    border-color: #ccc;
    border-width: 0;
    padding-left: 20px;
    padding-right: 8px;
    border-left-width: 5px; }
  .unreset i,
  .unreset cite,
  .unreset em,
  .unreset var,
  .unreset address {
    font-style: italic; }
  .unreset pre,
  .unreset tt,
  .unreset code,
  .unreset kbd,
  .unreset samp {
    font-family: monospace; }
  .unreset pre {
    white-space: pre; }
  .unreset big {
    font-size: 1.17em; }
  .unreset small,
  .unreset sub,
  .unreset sup {
    font-size: 0.83em; }
  .unreset sub {
    vertical-align: sub; }
  .unreset sup {
    vertical-align: super; }
  .unreset table {
    border-spacing: 2px;
    border-collapse: separate; }
  .unreset thead,
  .unreset tbody,
  .unreset tfoot {
    vertical-align: middle; }
  .unreset td,
  .unreset th,
  .unreset tr {
    vertical-align: inherit; }
  .unreset s,
  .unreset strike,
  .unreset del {
    text-decoration: line-through; }
  .unreset hr {
    border: 1px inset; }
  .unreset ol,
  .unreset ul,
  .unreset dir,
  .unreset menu,
  .unreset dd {
    margin-left: 40px; }
  .unreset ol {
    list-style-type: decimal; }
  .unreset ul {
    list-style-type: disc; }
  .unreset ol ul,
  .unreset ul ol,
  .unreset ul ul,
  .unreset ol ol {
    margin-top: 0;
    margin-bottom: 0; }
  .unreset figure {
    margin: 1em 40px; }

.content-style-list ul {
  list-style: initial;
  padding-left: 30px; }

.content-style-list ol {
  list-style: decimal;
  padding-left: 30px; }

.content-style-list ul,
.content-style-list ol {
  margin-bottom: 12px; }
  .content-style-list ul li:last-child,
  .content-style-list ol li:last-child {
    margin-bottom: 0; }
  .content-style-list ul ul,
  .content-style-list ol ul {
    list-style: circle;
    margin-bottom: 0; }

.content-style-list li,
.content-style-list p {
  margin-bottom: 10px; }

.content-style-list li {
  margin-bottom: 2px; }

.content-style-list table {
  width: 100% !important;
  margin-bottom: 12px; }

.content-style-list h3,
.content-style-list h4,
.content-style-list h5,
.content-style-list h6 {
  margin-bottom: 12px;
  font-weight: bold;
  color: #000; }

.content-style-list h1,
.content-style-list h2 {
  color: #f00 !important;
  margin-bottom: 12px;
  font-weight: bold; }
  .content-style-list h1 *,
  .content-style-list h2 * {
    color: inherit !important; }

.content-style-list h1 {
  font-size: 22px; }

.content-style-list h2 {
  font-size: 18px; }

.content-style-list h3 {
  font-size: 16px; }

.content-style-list h4 {
  font-size: 14px; }

.content-style-list a[href] {
  color: #007bff; }

.content-style-list blockquote {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 40px;
  margin-inline-end: 40px;
  font-style: italic;
  padding: 2px 0;
  border-style: solid;
  border-color: #ccc;
  border-width: 0;
  padding-left: 20px;
  padding-right: 8px;
  border-left-width: 5px;
  margin-bottom: 12px; }

.content-style-list figure {
  margin: 12px 40px; }

.content-style-list img {
  display: block; }

/* - Breadcrumb  - Pagination  */
.breadcrumb-wrapper {
  background: transparent; }
  .breadcrumb-wrapper .breadcrumb-list {
    overflow: hidden; }
  .breadcrumb-wrapper .breadcrumb-list .breadcrumb-arrows {
    font-size: 12px;
    padding: 24px 0 14px;
    background: transparent;
    border-radius: 0;
    margin: 0;
    list-style: none;
    align-items: center; }
  .breadcrumb-wrapper .breadcrumb-list .breadcrumb-arrows > li {
    display: inline-flex;
    align-items: center; }
  .breadcrumb-wrapper .breadcrumb-list .breadcrumb-arrows > li strong {
    font-weight: 400;
    color: var(--skin-link-color); }
  .breadcrumb-wrapper .breadcrumb-list .breadcrumb-arrows > li a {
    color: #71706c; }
  .breadcrumb-wrapper .breadcrumb-list .breadcrumb-arrows > li + li:before {
    content: '';
    margin: 0 2px;
    width: 20px;
    color: #71706c;
    background-repeat: no-repeat;
    background-size: 9px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' id='sprite-caret-right' viewBox='0 0 20 20'%3E%3Ctitle%3Ecaret-right%3C/title%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.275 10.07a.1.1 0 00.001-.143L5.422.073a.1.1 0 00-.14 0l-.572.56a.1.1 0 000 .141l9.15 9.15a.1.1 0 010 .142L4.714 19.21a.1.1 0 000 .14l.56.572a.1.1 0 00.141 0L15 10.338l.274-.269z' fill='%2327251F'/%3E%3C/svg%3E");
    align-items: center;
    justify-content: center;
    background-position: center;
    display: none; }
  @media (max-width: 767px) {
    .breadcrumb-wrapper .breadcrumb-list .breadcrumb-arrows {
      padding: 7px 0;
      font-size: 12px;
      flex-wrap: nowrap;
      white-space: nowrap;
      overflow: scroll; }
    .breadcrumb-wrapper .breadcrumb-list .breadcrumb-arrows > li + li:before {
      padding: 0 2px; }
    .breadcrumb-wrapper .breadcrumb-list .breadcrumb-arrows::-webkit-scrollbar {
      display: none; }
    .breadcrumb-wrapper .breadcrumb-list .breadcrumb-arrows {
      -ms-overflow-style: none;
      scrollbar-width: none; } }

.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 0; }
  .pagination-wrapper--pages {
    display: flex;
    align-items: center;
    gap: 4px; }
  .pagination-wrapper .page-node {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 1px 7px;
    border: none;
    border-radius: 24px;
    background: transparent;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease; }
    .pagination-wrapper .page-node:not(.prev):not(.next):not(.current):hover {
      color: #035eb7; }
    .pagination-wrapper .page-node.current {
      background: #035eb7;
      color: #fff;
      font-weight: 700;
      border-radius: 9999px; }
    .pagination-wrapper .page-node.dot {
      min-width: auto;
      padding: 1px 4px;
      pointer-events: none; }
    .pagination-wrapper .page-node.prev, .pagination-wrapper .page-node.next {
      padding: 8px;
      border: 1px solid #e5e7eb;
      border-radius: 50%; }
      .pagination-wrapper .page-node.prev svg, .pagination-wrapper .page-node.next svg {
        display: block;
        flex-shrink: 0; }
      .pagination-wrapper .page-node.prev:hover, .pagination-wrapper .page-node.next:hover {
        border-color: #035eb7; }
        .pagination-wrapper .page-node.prev:hover svg path, .pagination-wrapper .page-node.next:hover svg path {
          stroke: #035eb7; }
  @media (min-width: 992px) {
    .pagination-wrapper {
      padding: 24px 0; } }

/*-----------------------------------------------*/
/* HEADER */
/*-----------------------------------------------*/
.topbar {
  position: relative;
  background: linear-gradient(90deg, #003d79 0%, #3773af 100%);
  color: #e7e7e7;
  font-size: 15px;
  padding: 4px 0;
  display: none; }
  .topbar a {
    color: #e7e7e7; }
  .topbar .topbar-inner {
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .topbar .list {
    display: flex;
    gap: 20px;
    align-items: center;
    height: 28px; }
    .topbar .list .item a {
      display: flex;
      align-items: center;
      gap: 8px; }
    .topbar .list .item#head_language {
      position: relative; }
      .topbar .list .item#head_language #current_language {
        display: flex;
        align-items: center;
        gap: 8px; }
        .topbar .list .item#head_language #current_language img {
          width: 20px;
          height: 20px; }
      .topbar .list .item#head_language .languages {
        position: absolute;
        z-index: 15;
        right: 0;
        top: 100%;
        width: max-content;
        padding: 12px 0 0;
        transition: all 0.4s ease-in-out;
        opacity: 0;
        visibility: hidden; }
        .topbar .list .item#head_language .languages:before {
          content: '';
          position: absolute;
          top: 0;
          right: 6px;
          /* transform: translateX(-50%); */
          width: 24px;
          height: 12px;
          overflow: hidden;
          z-index: 15; }
        .topbar .list .item#head_language .languages:after {
          content: '';
          position: absolute;
          top: 6px;
          right: 14px;
          width: 14px;
          height: 14px;
          background: #fff;
          transform: translateX(-50%) rotate(45deg);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
          z-index: 10; }
        .topbar .list .item#head_language .languages #list_language {
          background: #fff;
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
          padding: 8px;
          border-radius: 8px; }
          .topbar .list .item#head_language .languages #list_language li a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #000; }
            .topbar .list .item#head_language .languages #list_language li a img {
              width: 20px;
              height: 20px; }
      .topbar .list .item#head_language:hover .languages {
        opacity: 1;
        visibility: visible; }
  @media (min-width: 568px) {
    .topbar {
      display: block; } }
  @media (min-width: 1025px) {
    .topbar .topbar-inner {
      gap: 20px; } }

.main-header {
  width: 100%;
  border-bottom: 1px solid #d3d3d3;
  background: #fff;
  /* Chỉ neo khi scroll (class .is-fixed từ JS) — tránh sticky/z-index che popup lúc đầu trang */
  /*
  @media (min-width: 1400px) {
    .container {
      padding: 0 120px;
    }
  }
  */ }
  .main-header:not(.is-fixed) {
    position: sticky;
    z-index: 11; }
  .main-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
    animation: mainHeaderSlideDown 0.35s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06); }
  .main-header .main-header--grid {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    column-gap: 16px;
    padding: 12px 0; }
    .main-header .main-header--grid .main-header--logo,
    .main-header .main-header--grid .main-header--action {
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      display: -ms-flexbox;
      display: flex;
      align-items: center; }
    .main-header .main-header--grid .main-header--menu {
      display: none;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto; }
    .main-header .main-header--grid .main-header--logo {
      gap: 10px;
      width: 13.3333%; }
  @media (min-width: 992px) {
    .main-header .main-header--grid {
      padding: 0;
      column-gap: 20px; }
      .main-header .main-header--grid .main-header--menu {
        display: block; } }
  @media (min-width: 1024px) {
    .main-header .main-header--grid {
      padding: 0;
      column-gap: 40px; } }

@keyframes mainHeaderSlideDown {
  from {
    transform: translateY(-100%); }
  to {
    transform: translateY(0); } }

.main-header-placeholder {
  width: 100%;
  pointer-events: none;
  visibility: hidden; }

/* - Main logo */
.main-header--logo a {
  display: -ms-flexbox;
  display: flex;
  align-items: center; }

.main-header--logo a img {
  /*
    height: 25px;
    aspect-ratio: 160 / 35;
    */ }

/* - Main action */
.main-header--action {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-direction: row-reverse;
  width: 25.75%; }
  .main-header--action .main-header--action-list {
    display: flex;
    align-items: center;
    gap: 8px; }
    .main-header--action .main-header--action-list > div {
      display: inline-flex;
      align-items: center; }
    .main-header--action .main-header--action-list .main-header--icon > a {
      width: 26px;
      height: 26px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 100%;
      background: #f3f3f4;
      color: var(--blue-600); }
      .main-header--action .main-header--action-list .main-header--icon > a svg {
        width: 16px;
        height: 16px; }
    .main-header--action .main-header--action-list .main-header--icon.h-cart a, .main-header--action .main-header--action-list .main-header--icon.h-notify a {
      position: relative; }
    .main-header--action .main-header--action-list .main-header--icon.h-cart a span.count, .main-header--action .main-header--action-list .main-header--icon.h-notify a span.count {
      position: absolute;
      z-index: 1;
      top: -11px;
      left: 58%;
      color: #fff;
      border-radius: 80px;
      background: linear-gradient(90deg, #ff2701 0%, #ff0202 100%);
      display: inline-flex;
      padding: 2px 4px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 10px;
      width: auto;
      height: 20px;
      min-width: 20px;
      color: #fff;
      text-align: center;
      font-size: 10px; }
      @media (max-width: 767px) {
        .main-header--action .main-header--action-list .main-header--icon.h-cart a span.count, .main-header--action .main-header--action-list .main-header--icon.h-notify a span.count {
          top: 0; } }
    .main-header--action .main-header--action-list .main-header--icon.h-account {
      position: relative; }
      .main-header--action .main-header--action-list .main-header--icon.h-account span.box {
        display: none;
        flex-direction: column;
        max-width: unset; }
        .main-header--action .main-header--action-list .main-header--icon.h-account span.box span:first-child {
          font-size: 14px; }
        .main-header--action .main-header--action-list .main-header--icon.h-account span.box span:last-child {
          font-size: 16px;
          font-weight: 600; }
      .main-header--action .main-header--action-list .main-header--icon.h-account .h-account-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        right: -50px;
        z-index: 120;
        min-width: 240px;
        padding: 8px 0;
        /*
          background: #fff;
          border-radius: 8px;
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
          */ }
        .main-header--action .main-header--action-list .main-header--icon.h-account .h-account-dropdown::before {
          content: '';
          position: absolute;
          top: 0;
          left: 50%;
          z-index: 3;
          transform: translateX(-50%);
          width: 24px;
          height: 12px;
          overflow: hidden; }
        .main-header--action .main-header--action-list .main-header--icon.h-account .h-account-dropdown::after {
          content: '';
          position: absolute;
          top: 0;
          left: 50%;
          z-index: 4;
          width: 16px;
          height: 16px;
          background: #fff;
          transform: translateX(-50%) rotate(45deg);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08); }
      .main-header--action .main-header--action-list .main-header--icon.h-account .h-account-dropdown__list {
        list-style: none;
        margin: 0;
        padding: 0;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        position: relative;
        z-index: 5; }
        .main-header--action .main-header--action-list .main-header--icon.h-account .h-account-dropdown__list li.has-tline {
          position: relative; }
          .main-header--action .main-header--action-list .main-header--icon.h-account .h-account-dropdown__list li.has-tline:before {
            content: "";
            width: calc(100% - 24px);
            height: 1px;
            background: rgba(194, 198, 212, 0.3);
            display: block;
            left: 12px;
            position: absolute;
            top: 0; }
      .main-header--action .main-header--action-list .main-header--icon.h-account .h-account-dropdown__link {
        display: flex;
        width: 100%;
        align-items: center;
        padding: 12px 16px;
        font-size: 16px;
        line-height: 1.4;
        color: #111;
        text-decoration: none;
        white-space: nowrap;
        transition: background 0.15s ease, color 0.15s ease; }
        .main-header--action .main-header--action-list .main-header--icon.h-account .h-account-dropdown__link:hover {
          background: rgba(3, 94, 183, 0.06);
          color: var(--main-color, #003d79); }
        .main-header--action .main-header--action-list .main-header--icon.h-account .h-account-dropdown__link .h_acc_icon {
          display: inline-block;
          width: 24px;
          height: 24px;
          margin-right: 8px; }
          .main-header--action .main-header--action-list .main-header--icon.h-account .h-account-dropdown__link .h_acc_icon svg {
            width: 100%;
            height: 100%; }
      .main-header--action .main-header--action-list .main-header--icon.h-account .h-account-dropdown__divider {
        height: 1px;
        margin: 4px 16px;
        background: var(--global-color-border-default, #e7e7e7); }
      .main-header--action .main-header--action-list .main-header--icon.h-account .h-account-dropdown__link--logout {
        color: #ff0202; }
        .main-header--action .main-header--action-list .main-header--icon.h-account .h-account-dropdown__link--logout:hover {
          background: rgba(255, 2, 2, 0.06);
          color: #ff0202; }
      .main-header--action .main-header--action-list .main-header--icon.h-account.has-dropdown.is-open .h-account-dropdown {
        display: block; }
      @media (max-width: 767px) {
        .main-header--action .main-header--action-list .main-header--icon.h-account {
          display: none; } }
    @media (min-width: 992px) {
      .main-header--action .main-header--action-list .main-header--icon {
        width: 63px;
        height: 57px; }
        .main-header--action .main-header--action-list .main-header--icon > a {
          width: 44px;
          height: 44px; }
          .main-header--action .main-header--action-list .main-header--icon > a svg {
            width: 28px;
            height: 28px; }
        .main-header--action .main-header--action-list .main-header--icon.h-cart a span.count, .main-header--action .main-header--action-list .main-header--icon.h-notify a span.count {
          top: 0%;
          font-size: 12px; }
        .main-header--action .main-header--action-list .main-header--icon.h-menu-mb {
          display: none; }
        .main-header--action .main-header--action-list .main-header--icon.h-search {
          width: 44px; }
        .main-header--action .main-header--action-list .main-header--icon.h-account {
          width: auto; }
          .main-header--action .main-header--action-list .main-header--icon.h-account a {
            width: auto;
            padding: 8px 12px;
            height: auto;
            align-items: center;
            gap: 8px;
            background: none;
            border-radius: 0; }
          .main-header--action .main-header--action-list .main-header--icon.h-account span.box {
            display: flex; } }

/* - Main menu */
.main-nav-menu ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none; }

.main-nav-menu .menu-list {
  display: -ms-flexbox;
  display: flex; }
  .main-nav-menu .menu-list svg.icon--arrow-bottom {
    width: 10px;
    height: 6px;
    margin-left: 4px;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s; }
  .main-nav-menu .menu-list svg.icon--nav-triangle {
    opacity: 0;
    position: absolute;
    bottom: -1px;
    right: 50%;
    width: 20px;
    height: 9px;
    z-index: 4; }

.main-nav-menu .menu-list--top {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center; }
  .main-nav-menu .menu-list--top > li {
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-flex; }
    .main-nav-menu .menu-list--top > li > a {
      position: relative;
      display: inline-flex;
      gap: 8px;
      align-items: center;
      margin: auto;
      min-height: 57px;
      line-height: 57px;
      color: var(--skin-primary-color);
      font-size: 16px;
      font-weight: 600;
      text-decoration: none; }
    .main-nav-menu .menu-list--top > li > a > span[data] {
      display: block; }
    .main-nav-menu .menu-list--top > li:hover > a {
      text-decoration: none;
      color: var(--blue-light); }
    @media (min-width: 1170px) {
      .main-nav-menu .menu-list--top > li {
        gap: 32px; } }
  .main-nav-menu .menu-list--top > li.menu-item--dropdown {
    display: inline-flex;
    justify-content: center; }
    .main-nav-menu .menu-list--top > li.menu-item--dropdown .menu-list--dropdown {
      background: #fff;
      position: absolute;
      z-index: 2;
      opacity: 0;
      visibility: hidden;
      padding: 12px 0;
      list-style-type: none;
      top: 101%;
      -moz-box-shadow: 0px 2px 6px rgba(193, 193, 193, 0.25);
      -webkit-box-shadow: 0px 2px 6px rgba(193, 193, 193, 0.25);
      box-shadow: 0px 2px 6px rgba(193, 193, 193, 0.25); }
      .main-nav-menu .menu-list--top > li.menu-item--dropdown .menu-list--dropdown li {
        position: relative; }
        .main-nav-menu .menu-list--top > li.menu-item--dropdown .menu-list--dropdown li a {
          padding: 8px 20px;
          white-space: nowrap;
          text-align: left;
          display: block;
          font-size: 14px; }
          .main-nav-menu .menu-list--top > li.menu-item--dropdown .menu-list--dropdown li a svg.icon--arrow-bottom {
            -webkit-transform: rotate(-90deg);
            -moz-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
            -o-transform: rotate(-90deg);
            transform: rotate(-90deg); }
          .main-nav-menu .menu-list--top > li.menu-item--dropdown .menu-list--dropdown li a svg.icon--nav-triangle {
            top: 15px;
            right: -6px;
            width: 18px;
            height: 9px;
            -webkit-transform: rotate(270deg);
            -moz-transform: rotate(270deg);
            -ms-transform: rotate(270deg);
            -o-transform: rotate(270deg);
            transform: rotate(270deg); }
        .main-nav-menu .menu-list--top > li.menu-item--dropdown .menu-list--dropdown li .menu-list--dropdown {
          left: 100%;
          top: 0;
          margin-left: 0px;
          margin-top: -1px;
          visibility: hidden;
          opacity: 0;
          list-style-type: none;
          border-radius: 0 5px 5px 5px;
          -moz-box-shadow: 0px 2px 6px rgba(193, 193, 193, 0.25);
          -webkit-box-shadow: 0px 2px 6px rgba(193, 193, 193, 0.25);
          box-shadow: 0px 2px 6px rgba(193, 193, 193, 0.25); }
        .main-nav-menu .menu-list--top > li.menu-item--dropdown .menu-list--dropdown li:hover > .menu-list--dropdown {
          visibility: visible;
          opacity: 1; }
        .main-nav-menu .menu-list--top > li.menu-item--dropdown .menu-list--dropdown li:hover svg.icon--nav-triangle {
          opacity: 1; }
    .main-nav-menu .menu-list--top > li.menu-item--dropdown:hover > .menu-list--dropdown {
      visibility: visible;
      opacity: 1; }
    .main-nav-menu .menu-list--top > li.menu-item--dropdown:not(.menu-red):hover > a {
      color: #000000; }
    .main-nav-menu .menu-list--top > li.menu-item--dropdown.last {
      position: relative; }
      .main-nav-menu .menu-list--top > li.menu-item--dropdown.last .menu-list--dropdown {
        right: 0; }
  .main-nav-menu .menu-list--top > li.menu-item--mega > a svg {
    stroke: var(--skin-primary-color); }
  .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 140%;
    opacity: 0;
    z-index: 2;
    overflow: hidden;
    visibility: hidden;
    transition: all 0.2s;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 14px 12px 0;
    background: #fff;
    box-shadow: 0 9.62px 24.051px -12.025px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 16px 16px; }
    @media (min-width: 1025px) {
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content {
        max-width: 940px; } }
    @media (min-width: 1200px) {
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content {
        max-width: 1160px; } }
    @media (min-width: 1440px) {
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content {
        max-width: 1280px; } }
    .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      width: 100%;
      border-radius: 0 12px 12px 0;
      background: rgba(209, 213, 220, 0.5); }
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex > a {
        padding: 0 15px;
        font-size: 13px;
        text-transform: uppercase;
        line-height: 55px; }
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-box {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%; }
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-list--second {
        display: grid;
        gap: 26px 14px;
        grid-template-columns: repeat(5, minmax(auto, 1fr)); }
        .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-list--second > li {
          display: flex;
          flex-direction: column;
          gap: 12px;
          min-width: 138px; }
          .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-list--second > li > a {
            display: block;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase; }
          .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-list--second > li .menu-list--thirt {
            flex-direction: column;
            gap: 8px; }
            .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-list--second > li .menu-list--thirt li {
              width: 100%; }
            .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-list--second > li .menu-list--thirt li > a {
              font-size: 14px;
              font-weight: 400;
              display: block; }
        .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-list--second.size-2 {
          grid-template-columns: repeat(2, minmax(auto, 1fr)); }
        .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-list--second.size-3 {
          grid-template-columns: repeat(3, minmax(auto, 1fr)); }
        .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-list--second.size-4 {
          grid-template-columns: repeat(4, minmax(auto, 1fr)); }
        .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-list--second.size-5 {
          grid-template-columns: repeat(5, minmax(auto, 1fr)); }
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-product--list {
        padding-left: 26px;
        display: flex;
        gap: 10px; }
        .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-product--list .menu-product--item {
          display: flex;
          flex-direction: column;
          position: relative;
          flex: 1;
          gap: 10px; }
          .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-product--list .menu-product--item .item--img {
            position: relative;
            overflow: hidden; }
            .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-product--list .menu-product--item .item--img a {
              display: block;
              padding-bottom: calc(3 / 2 * 100%);
              position: relative;
              z-index: 1; }
            .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-product--list .menu-product--item .item--img img {
              position: absolute;
              left: 0;
              top: 0;
              width: 100%;
              height: 100%;
              object-fit: cover; }
          .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-product--list .menu-product--item .item--detail {
            display: flex;
            flex-direction: column;
            padding: 12px 0 0;
            gap: 8px; }
            .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-product--list .menu-product--item .item--detail h3 {
              font-size: 16px;
              margin-bottom: 0;
              text-transform: uppercase;
              overflow: hidden;
              text-overflow: ellipsis;
              display: -webkit-box;
              -webkit-line-clamp: 1;
              -webkit-box-orient: vertical; }
            .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-product--list .menu-product--item .item--detail h3 a {
              color: #0a0a0a; }
            .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-product--list .menu-product--item .item--detail .item--price {
              display: flex;
              font-size: 14px;
              gap: 12px;
              align-items: center; }
              .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-product--list .menu-product--item .item--detail .item--price .price {
                font-weight: 700; }
              .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-product--list .menu-product--item .item--detail .item--price .price.hightlight {
                color: #b51f29; }
              .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex .menu-product--list .menu-product--item .item--detail .item--price .price-del {
                font-weight: 400;
                color: #6b7280; }
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex.has-img .menu-box {
        display: flex;
        gap: 57px; }
        .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex.has-img .menu-box .menu-list {
          -ms-flex: 1 1 auto;
          flex: 1 1 auto; }
        .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content .menu-flex.has-img .menu-box .menu-banner {
          -ms-flex: 0 0 326px;
          flex: 0 0 326px;
          max-width: 326px; }
    .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-flex {
      display: flex;
      flex-direction: row; }
    .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-tablist {
      display: flex;
      width: 420px;
      background: #fff;
      flex-direction: column;
      padding: 0 24px 0 16px;
      max-height: 645px;
      overflow-y: scroll;
      height: 100%; }
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-tablist::-webkit-scrollbar {
        width: 8px;
        height: 8px; }
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-tablist::-webkit-scrollbar-thumb {
        -webkit-border-radius: 12px;
        border-radius: 12px;
        background: #99a1af;
        -webkit-box-shadow: inset 0 0 6px #99a1af; }
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-tablist::-webkit-scrollbar-track {
        background: #d9d9d9;
        border-radius: 12px; }
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-tablist .menu-tablist--item {
        display: flex;
        width: 100%;
        padding: 12px 20px;
        gap: 8px;
        align-items: center;
        cursor: pointer;
        border-radius: 8px;
        color: #035eb7;
        font-size: 16px;
        text-transform: capitalize; }
        .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-tablist .menu-tablist--item.active {
          font-weight: 500;
          background: #e6f5fb; }
        .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-tablist .menu-tablist--item span.icon {
          width: 48px; }
        .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-tablist .menu-tablist--item span {
          display: inline-block; }
    .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-tabcontent {
      width: 100%;
      max-height: 645px;
      overflow-y: scroll;
      height: 100%; }
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-tabcontent::-webkit-scrollbar {
        display: none; }
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-tabcontent .menu-tabpand {
        display: none;
        padding: 24px 14px; }
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-tabcontent .menu-tabpand.active {
        display: block; }
    .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-list.menu-list--thirt {
      gap: 12px;
      flex-wrap: wrap;
      /*
            &.size-4 > li {
              flex: 0 0 calc((100% - (16px * 3)) / 4);
              max-width: calc((100% - (16px * 3)) / 4);
            }
            */ }
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-list.menu-list--thirt > li {
        flex: 0 0 calc((100% - (16px * 2)) / 3);
        max-width: calc((100% - (16px * 2)) / 3);
        display: flex;
        gap: 16px;
        max-width: 245px; }
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-list.menu-list--thirt > li > a {
        width: 100%;
        display: inline-flex;
        border-radius: 8px;
        background: #fff;
        padding: 20px;
        align-items: center;
        gap: 8px;
        color: #003d79;
        font-size: 16px; }
        .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-list.menu-list--thirt > li > a span {
          display: inline-block; }
        .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-list.menu-list--thirt > li > a span.icon {
          width: 48px;
          height: 48px; }
        .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-list.menu-list--thirt > li > a span.text {
          width: calc(100% - 56px); }
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-list.menu-list--thirt > li > ul {
        width: 100%;
        flex-direction: column;
        gap: 12px; }
    .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-link-page {
      border-top: 1px solid #f3f4f6;
      padding-top: 16px;
      margin-top: 16px;
      text-align: center; }
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-link-page a {
        border-radius: 9999px;
        border: 1px solid #18181a;
        background: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 24px; }
    .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-list-group {
      padding: 0 14px 24px;
      display: flex;
      flex-direction: column;
      gap: 20px; }
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-list-group .menu-list-group--title {
        border-top: 1px solid rgba(197, 198, 204, 0.6);
        padding-top: 20px;
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: flex-end; }
        .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-list-group .menu-list-group--title h4 {
          color: #111;
          font-size: 18px;
          font-weight: 600;
          margin-bottom: 0;
          position: relative;
          padding-right: 20px;
          border-right: 1px solid #4a5565; }
      .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-list-group .menu-list-group--grid .grid-products {
        display: flex;
        gap: 12px;
        margin: 0; }
        .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-list-group .menu-list-group--grid .grid-products > div {
          -ms-flex: 0 0 calc((100% - (12px * 3)) / 4);
          flex: 0 0 calc((100% - (12px * 3)) / 4);
          max-width: calc((100% - (12px * 3)) / 4); }
        .main-nav-menu .menu-list--top > li.menu-item--mega .menu-content.menu-products .menu-list-group .menu-list-group--grid .grid-products .add-to-cart {
          display: none !important; }
  .main-nav-menu .menu-list--top > li.menu-item--mega:hover > a svg {
    stroke: var(--blue-light); }
  .main-nav-menu .menu-list--top > li.menu-item--mega:hover .menu-content {
    visibility: visible;
    opacity: 1;
    top: calc(100% + 0px); }

.main-header--search {
  display: none; }
  .main-header--search .search-box {
    position: relative; }
  .main-header--search .searchform {
    position: relative;
    min-width: 170px;
    margin: 10px 5px; }
    .main-header--search .searchform .input-search {
      height: 40px;
      padding: 8px 16px 8px 50px;
      margin: 0;
      width: 100%;
      border: none;
      font-weight: 400;
      display: inline-block;
      border-radius: 0;
      -webkit-appearance: none;
      -moz-appearance: none;
      -o-appearance: none;
      appearance: none;
      border-radius: 100px;
      background: #f2f2f2;
      font-size: 14px; }
      .main-header--search .searchform .input-search::placeholder {
        color: #717171; }
      .main-header--search .searchform .input-search:focus {
        outline: none; }
    .main-header--search .searchform .btn-search {
      width: 40px;
      height: 40px;
      line-height: 40px;
      position: absolute;
      padding: 0;
      top: 0px;
      left: 8px;
      background: transparent;
      transition: opacity 150ms linear;
      border: none; }
  .main-header--search .smart-search-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    background: #ffffff; }
    .main-header--search .smart-search-wrapper .resultsContent {
      max-width: 648px;
      margin: auto; }
    .main-header--search .smart-search-wrapper .dataEmpty {
      text-align: center;
      padding: 20px 0; }
    .main-header--search .smart-search-wrapper .dataMore {
      width: 100%;
      text-align: center;
      padding: 16px 0; }
    .main-header--search .smart-search-wrapper .item-ult {
      padding: 12px;
      border-bottom: 1px dotted #dfe0e1;
      width: 100%;
      display: flex; }
      .main-header--search .smart-search-wrapper .item-ult .thumbs {
        width: 60px;
        display: inline-block; }
      .main-header--search .smart-search-wrapper .item-ult .thumbs a {
        display: inline-block;
        width: 100%;
        height: 100%;
        padding-bottom: 120%;
        position: relative;
        overflow: hidden; }
      .main-header--search .smart-search-wrapper .item-ult .thumbs a img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .main-header--search .smart-search-wrapper .item-ult .info {
        width: calc(100% - 60px);
        padding-left: 12px;
        position: relative; }
      .main-header--search .smart-search-wrapper .item-ult .info .title a {
        text-overflow: ellipsis;
        overflow: hidden;
        width: 100%;
        margin: 0 0 6px;
        font-weight: 600;
        text-decoration: none; }
      .main-header--search .smart-search-wrapper .item-ult .info .title p {
        font-size: 12px;
        font-weight: 500;
        margin: 0; }
      .main-header--search .smart-search-wrapper .item-ult .info .price {
        margin-top: 6px; }
      .main-header--search .smart-search-wrapper .item-ult .info .price .has-sale {
        display: inline-flex;
        gap: 10px;
        align-items: center; }
      .main-header--search .smart-search-wrapper .item-ult .info .price del {
        font-size: 12px;
        font-weight: 400;
        color: #797979; }
    .main-header--search .smart-search-wrapper .list {
      max-height: 520px;
      overflow-y: auto; }
      .main-header--search .smart-search-wrapper .list::-webkit-scrollbar {
        width: 2px;
        height: 2px; }
      .main-header--search .smart-search-wrapper .list::-webkit-scrollbar-track {
        -webkit-border-radius: 0px;
        border-radius: 0px;
        background: #e7e7e7; }
      .main-header--search .smart-search-wrapper .list::-webkit-scrollbar-thumb {
        -webkit-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: inset 0 0 6px #262626; }
      .main-header--search .smart-search-wrapper .list::-webkit-scrollbar-thumb:window-inactive {
        background: #262626; }
  @media (min-width: 568px) {
    .main-header--search {
      display: block; }
      .main-header--search .search-box {
        padding-top: 0; }
      .main-header--search .searchform {
        margin: 0; }
      .main-header--search .smart-search-wrapper {
        position: absolute;
        right: 0;
        min-width: 400px;
        max-width: 500px;
        border: 1px solid #ededed;
        box-shadow: 0px 8px 14px rgba(224, 229, 238, 0.8); } }
  @media (max-width: 1199px) and (min-width: 992px) {
    .main-header--search {
      display: none; }
      .main-header--search .searchform {
        margin: 10px 5px; } }
  @media (min-width: 1170px) {
    .main-header--search {
      min-width: 200px; } }
  @media (min-width: 1200px) {
    .main-header--search .smart-search-wrapper {
      top: calc(100% + 30px); } }

/*-----------------------------------------------*/
/* FOOTER */
/*-----------------------------------------------*/
.main-footer {
  padding: 80px 0 60px; }
  .main-footer .main-footer--grid {
    display: flex;
    flex-direction: column;
    gap: 40px; }
    .main-footer .main-footer--grid .footer-coll.coll-left {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
      .main-footer .main-footer--grid .footer-coll.coll-left .slogan-mb {
        display: none;
        color: #035eb7;
        font-size: 24px; }
    .main-footer .main-footer--grid .footer-coll.coll-right {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
  .main-footer .slogan {
    color: #035eb7;
    font-size: 24px;
    margin-bottom: 32px; }
  .main-footer .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 35px; }
    .main-footer .footer-inner .footer-title h4 {
      color: #000;
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 0;
      text-transform: uppercase; }
    .main-footer .footer-inner .footer-content div.list {
      display: flex;
      flex-direction: column;
      gap: 16px; }
      .main-footer .footer-inner .footer-content div.list .item {
        display: flex;
        gap: 19px; }
        .main-footer .footer-inner .footer-content div.list .item .icon {
          width: 44px;
          color: #035eb7;
          font-size: 16px; }
        .main-footer .footer-inner .footer-content div.list .item .detail {
          width: calc(100% - 55px);
          color: #292d32; }
    .main-footer .footer-inner .footer-content ul.list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px; }
      .main-footer .footer-inner .footer-content ul.list li {
        width: 100%; }
        .main-footer .footer-inner .footer-content ul.list li a {
          display: block;
          color: #999;
          font-family: var(--skin-header-font); }
    .main-footer .footer-inner .footer-block {
      display: flex;
      flex-direction: column;
      gap: 16px; }
      .main-footer .footer-inner .footer-block.footer-menu .footer-title .arrow {
        display: none; }
    .main-footer .footer-inner .footer-coll {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      gap: 22px; }
    .main-footer .footer-inner .footer-coll-new a {
      display: inline-block;
      width: 150px;
      margin-bottom: 16px; }
      .main-footer .footer-inner .footer-coll-new a:last-child {
        margin-bottom: 0; }
    .main-footer .footer-inner .footer-info .footer-content {
      display: flex;
      flex-direction: column;
      gap: 16px; }
    .main-footer .footer-inner .footer-info .text {
      color: #999; }

/*-----------------------------------------------*/
/* ALL */
/*-----------------------------------------------*/
main.body-main {
  overflow: hidden;
  padding-bottom: 50px;
  position: relative;
  z-index: 10; }

.section {
  overflow: hidden;
  padding-bottom: calc(var(--space-unit) * 2);
  position: relative; }
  .section .s-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 0.7px solid #035eb7;
    padding-top: 20px; }
    .section .s-heading h2 {
      font-size: 24px;
      font-weight: 500;
      margin-bottom: 0;
      overflow-wrap: break-word;
      word-break: normal; }
    .section .s-heading .tablist {
      --color-tab-tt: #929292;
      --color-tab-bg: #eff0f0;
      --color-tab-bg-active: #035eb7;
      --color-tab-tt-active: #ffffff;
      display: flex;
      gap: 4px;
      align-items: center;
      overflow-x: scroll; }
      .section .s-heading .tablist a {
        padding: 6px;
        display: inline-flex;
        align-items: center;
        color: var(--color-tab-tt);
        border: 1px solid var(--color-tab-bg);
        background: var(--color-tab-bg);
        border-radius: 8px;
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap; }
        .section .s-heading .tablist a.active {
          background: var(--color-tab-bg-active);
          color: var(--color-tab-tt-active);
          border-color: var(--color-tab-bg-active); }
    .section .s-heading .s-heading--right {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
      display: flex;
      flex-direction: row;
      gap: 16px 8px; }
    .section .s-heading .s-heading--left {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
      display: flex; }
    .section .s-heading.has-tab {
      flex-direction: column;
      padding-top: 0;
      border: none; }
      .section .s-heading.has-tab .s-heading--left,
      .section .s-heading.has-tab .s-heading--right {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        display: flex; }
  .section .s-content .tabcontent .tabpand {
    display: none; }
  .section .s-content .tabcontent .tabpand.active {
    display: block; }
  .section .s-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px; }
    .section .s-wrapper .media {
      height: 100%;
      width: 100%;
      position: relative;
      overflow: hidden; }
      .section .s-wrapper .media img,
      .section .s-wrapper .media video {
        -o-object-fit: cover;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
  .section.has-banner .s-inner {
    display: flex;
    flex-direction: column;
    gap: 16px; }
    .section.has-banner .s-inner .s-coll {
      -webkit-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
  .section-userdashboard + .section-category .s-heading {
    border: none;
    padding-top: 0; }
  @media (min-width: 992px) {
    .section {
      padding-bottom: calc(var(--space-unit) * 2.5); }
      .section-userdashboard {
        padding-bottom: calc(var(--space-unit) * 2); }
      .section .s-wrapper {
        gap: 20px; }
      .section .s-heading {
        flex-direction: row;
        gap: 40px;
        justify-content: space-between; }
        .section .s-heading h2 {
          font-size: 32px; }
        .section .s-heading .s-heading--right {
          -ms-flex: 1 1 auto;
          flex: 1 1 auto;
          max-width: 100%;
          flex-direction: row;
          align-items: center;
          justify-content: flex-end; }
        .section .s-heading .s-heading--left {
          -ms-flex: 0 0 auto;
          flex: 0 0 auto;
          max-width: 100%; }
        .section .s-heading .tablist {
          overflow: hidden; }
          .section .s-heading .tablist a {
            padding: 9px 20px;
            font-size: 15px; }
        .section .s-heading.has-tab {
          flex-direction: row; }
          .section .s-heading.has-tab .s-heading--right {
            -ms-flex: 1 1 auto;
            flex: 1 1 auto;
            max-width: 100%; }
          .section .s-heading.has-tab .s-heading--left {
            -ms-flex: 0 0 auto;
            flex: 0 0 auto;
            max-width: 100%; }
      .section.has-banner .s-inner {
        flex-direction: row; }
        .section.has-banner .s-inner .s-coll {
          -webkit-flex: 0 0 calc((100% - 16px) / 2);
          flex: 0 0 calc((100% - 16px) / 2);
          max-width: calc((100% - 16px) / 2); } }

.section {
  --sectional-grid-gap: 10px; }
  .section .custom-content {
    position: relative; }
    .section .custom-content:before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      right: 100%;
      background: #ffffff;
      z-index: 6;
      top: 0; }
    .section .custom-content:after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      left: 100%;
      background: #ffffff;
      z-index: 4;
      top: 0; }
  .section.section-collection {
    overflow: initial; }
    .section.section-collection .s-content {
      position: relative; }
  .section.section-priority {
    position: relative;
    z-index: 5; }
  .section .swiper:not(.swiper-initialized),
  .section .swiper-container:not(.swiper-initialized) {
    padding-left: 16px;
    margin: 0 -16px; }
    .section .swiper:not(.swiper-initialized) .products-slide,
    .section .swiper-container:not(.swiper-initialized) .products-slide {
      display: -ms-flex;
      display: -webkit-flex;
      display: flex;
      gap: var(--sectional-grid-gap);
      overflow-x: scroll;
      padding-left: 16px;
      margin: 0 -16px; }
      .section .swiper:not(.swiper-initialized) .products-slide::-webkit-scrollbar,
      .section .swiper-container:not(.swiper-initialized) .products-slide::-webkit-scrollbar {
        display: none; }
      .section .swiper:not(.swiper-initialized) .products-slide .swiper-slide,
      .section .swiper-container:not(.swiper-initialized) .products-slide .swiper-slide {
        -webkit-flex: 0 0 55%;
        flex: 0 0 55%;
        max-width: 55%; }
    .section .swiper:not(.swiper-initialized) .blog-slide,
    .section .swiper-container:not(.swiper-initialized) .blog-slide {
      display: -ms-flex;
      display: -webkit-flex;
      display: flex;
      gap: var(--sectional-grid-gap);
      overflow-x: scroll;
      padding-left: 16px;
      margin: 0 -16px; }
      .section .swiper:not(.swiper-initialized) .blog-slide::-webkit-scrollbar,
      .section .swiper-container:not(.swiper-initialized) .blog-slide::-webkit-scrollbar {
        display: none; }
      .section .swiper:not(.swiper-initialized) .blog-slide .swiper-slide,
      .section .swiper-container:not(.swiper-initialized) .blog-slide .swiper-slide {
        -webkit-flex: 0 0 45%;
        flex: 0 0 45%;
        max-width: 45%; }
  @media (min-width: 586px) {
    .section .swiper:not(.swiper-initialized) .products-slide .swiper-slide,
    .section .swiper-container:not(.swiper-initialized) .products-slide .swiper-slide {
      -webkit-flex: 0 0 45%;
      flex: 0 0 45%;
      max-width: 45%; } }
  @media (min-width: 992px) {
    .section {
      --sectional-grid-gap: 16px; }
      .section .swiper:not(.swiper-initialized),
      .section .swiper-container:not(.swiper-initialized) {
        padding-left: 0px;
        margin: 0; }
        .section .swiper:not(.swiper-initialized) .products-slide,
        .section .swiper-container:not(.swiper-initialized) .products-slide {
          flex-wrap: nowrap;
          overflow: hidden;
          padding-left: 0px;
          margin: 0; }
        .section .swiper:not(.swiper-initialized) .products-slide[data-view='3'] .swiper-slide,
        .section .swiper-container:not(.swiper-initialized) .products-slide[data-view='3'] .swiper-slide {
          -webkit-flex: 0 0 calc((100% - (var(--sectional-grid-gap) * 2)) / 3);
          flex: 0 0 calc((100% - (var(--sectional-grid-gap) * 2)) / 3);
          max-width: calc((100% - (var(--sectional-grid-gap) * 2)) / 3); }
        .section .swiper:not(.swiper-initialized) .products-slide[data-view='4'] .swiper-slide,
        .section .swiper-container:not(.swiper-initialized) .products-slide[data-view='4'] .swiper-slide {
          -webkit-flex: 0 0 calc((100% - (var(--sectional-grid-gap) * 3)) / 4);
          flex: 0 0 calc((100% - (var(--sectional-grid-gap) * 3)) / 4);
          max-width: calc((100% - (var(--sectional-grid-gap) * 3)) / 4); }
        .section .swiper:not(.swiper-initialized) .products-slide[data-view='2'] .swiper-slide,
        .section .swiper-container:not(.swiper-initialized) .products-slide[data-view='2'] .swiper-slide {
          -webkit-flex: 0 0 calc((100% - (var(--sectional-grid-gap) * 1)) / 2);
          flex: 0 0 calc((100% - (var(--sectional-grid-gap) * 1)) / 2);
          max-width: calc((100% - (var(--sectional-grid-gap) * 1)) / 2); } }

.product-loop {
  height: 100%; }
  .product-loop .product-loop--wrap {
    justify-content: space-between;
    display: flex;
    height: 100%;
    flex-direction: column;
    position: relative;
    border-radius: 8px;
    background: #fff;
    overflow: hidden; }
    .product-loop .product-loop--wrap .product-loop--badges span {
      display: inline-flex;
      padding: 3px 10px;
      justify-content: center;
      align-items: center;
      border-radius: 100px;
      background: #fcfcfc;
      width: max-content;
      font-size: 12px;
      font-weight: 400; }
    .product-loop .product-loop--wrap .product-loop--badges .badge-new {
      background: #000;
      color: #fff; }
    .product-loop .product-loop--wrap .product-loop--badges .badge-sale {
      background: #ef9b2c;
      color: #fff; }
    .product-loop .product-loop--wrap .product-loop--badges .badge-percent-sale {
      color: #fff;
      border-radius: 100px;
      background: #000000;
      display: inline-flex;
      width: max-content;
      justify-content: center;
      align-items: center;
      font-weight: 500;
      padding: 0px 10px;
      font-size: 10px; }
    .product-loop .product-loop--wrap .product-loop--badges .badge-soldout {
      color: #ffffff;
      background: #ff0202;
      padding: 3px 10px;
      border-radius: 0 8px 0 8px;
      display: none; }
    .product-loop .product-loop--wrap .product-loop--badges .badge-trend {
      color: #2d2a2c;
      background: #c8ff85; }
    .product-loop .product-loop--wrap .product-loop--head {
      position: relative;
      overflow: hidden; }
      .product-loop .product-loop--wrap .product-loop--head .product-loop--badges {
        display: inline-flex;
        flex-direction: column;
        gap: 12px;
        position: absolute;
        z-index: 2;
        top: 8px;
        left: 8px; }
      .product-loop .product-loop--wrap .product-loop--head .product-loop--img {
        display: block;
        padding-bottom: calc(1 / 1 * 100%);
        position: relative;
        z-index: 1;
        /*
        picture.img-second {
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          display: block;
          opacity: 0;
          visibility: hidden;
        }
        */ }
        .product-loop .product-loop--wrap .product-loop--head .product-loop--img picture {
          transition: all 0.4s; }
        .product-loop .product-loop--wrap .product-loop--head .product-loop--img:before {
          content: "";
          position: absolute;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.02);
          z-index: 2; }
        .product-loop .product-loop--wrap .product-loop--head .product-loop--img picture img {
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: auto;
          /*height: 100%;
          object-fit: cover;*/
          background-color: #ffffff;
          transform: scale(0.8); }
          .product-loop .product-loop--wrap .product-loop--head .product-loop--img picture img:first-child {
            z-index: 2; }
          .product-loop .product-loop--wrap .product-loop--head .product-loop--img picture img:last-child {
            z-index: 1; }
      .product-loop .product-loop--wrap .product-loop--head .product-loop--link {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 3; }
      .product-loop .product-loop--wrap .product-loop--head .product-loop-frame {
        position: absolute;
        bottom: 0;
        width: 100%;
        z-index: 2;
        left: 0; }
    .product-loop .product-loop--wrap .product-loop--body {
      display: flex;
      flex-direction: column;
      padding: 10px 0;
      gap: 8px; }
      .product-loop .product-loop--wrap .product-loop--body .product-loop--title {
        display: flex;
        flex-direction: column;
        gap: 8px; }
        .product-loop .product-loop--wrap .product-loop--body .product-loop--title h3 {
          font-size: 16px;
          margin-bottom: 0;
          overflow: hidden;
          font-weight: 400;
          min-height: 41px;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 2;
          align-self: stretch; }
        .product-loop .product-loop--wrap .product-loop--body .product-loop--title h3 a {
          color: #111111; }
        .product-loop .product-loop--wrap .product-loop--body .product-loop--title .product-brand {
          color: var(--skin-layout-color-brand);
          font-size: 12px;
          font-weight: 700;
          letter-spacing: 0.6px;
          text-transform: uppercase; }
        .product-loop .product-loop--wrap .product-loop--body .product-loop--title .product-sale {
          color: #035eb7;
          display: flex;
          gap: 8px; }
          .product-loop .product-loop--wrap .product-loop--body .product-loop--title .product-sale span {
            padding: 4px;
            display: inline-block;
            line-height: 18px; }
          .product-loop .product-loop--wrap .product-loop--body .product-loop--title .product-sale .promotion {
            border-radius: 4px;
            border: 1px solid #035eb7;
            color: #035eb7; }
          .product-loop .product-loop--wrap .product-loop--body .product-loop--title .product-sale .badge-new {
            border-radius: 4px;
            border: 1px solid #ff0202;
            color: #ff0202; }
      .product-loop .product-loop--wrap .product-loop--body .product-loop--prices {
        display: flex;
        gap: 2px 8px;
        align-items: center;
        flex-wrap: wrap; }
        .product-loop .product-loop--wrap .product-loop--body .product-loop--prices .price-current {
          font-weight: 600;
          color: #035eb7;
          font-size: 16px; }
        .product-loop .product-loop--wrap .product-loop--body .product-loop--prices .price-compare {
          display: inline-flex;
          align-items: center;
          gap: 4px; }
          .product-loop .product-loop--wrap .product-loop--body .product-loop--prices .price-compare del {
            color: rgba(114, 114, 114, 0.6); }
        @media (max-width: 767px) {
          .product-loop .product-loop--wrap .product-loop--body .product-loop--prices {
            flex-direction: column;
            align-items: flex-start; } }
      .product-loop .product-loop--wrap .product-loop--body .product-loop--btn .product-btn {
        border: none;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        background: none; }
      .product-loop .product-loop--wrap .product-loop--body .product-loop--btn .quick-view {
        width: 25px;
        height: 25px;
        border-radius: 100%; }
      .product-loop .product-loop--wrap .product-loop--body .product-loop--btn .add-to-cart {
        width: 28px;
        height: 28px; }
        .product-loop .product-loop--wrap .product-loop--body .product-loop--btn .add-to-cart svg:last-child {
          display: none; }
      .product-loop .product-loop--wrap .product-loop--body .product-loop--top {
        display: flex;
        gap: 12px;
        flex-direction: column; }
        .product-loop .product-loop--wrap .product-loop--body .product-loop--top .product-loop--title {
          flex: 0 0 100%;
          max-width: 100%; }
      .product-loop .product-loop--wrap .product-loop--body .product-loop--bottom {
        display: flex;
        gap: 8px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between; }
        .product-loop .product-loop--wrap .product-loop--body .product-loop--bottom .product-loop--title {
          flex: 0 0 100%;
          max-width: 100%; }
      .product-loop .product-loop--wrap .product-loop--body .product-loop--expand-panel {
        display: none; }
    .product-loop .product-loop--wrap .product-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      outline: none; }
    .product-loop .product-loop--wrap:hover .product-loop--head .product-loop--img picture img {
      transform: scale(0.9); }
    .product-loop .product-loop--wrap.soldout .product-loop--head .product-loop--img {
      filter: grayscale(0.7);
      opacity: 0.7; }
    .product-loop .product-loop--wrap.soldout .product-loop--body {
      filter: grayscale(1); }
  @media (min-width: 992px) {
    .product-loop .product-loop--wrap .product-loop--body {
      padding: 12px 12px 20px; }
      .product-loop .product-loop--wrap .product-loop--body .product-loop--swatch .swatch-list {
        gap: 6px; }
      .product-loop .product-loop--wrap .product-loop--body .product-loop--swatch .swatch-item {
        width: 20px;
        height: 20px; }
        .product-loop .product-loop--wrap .product-loop--body .product-loop--swatch .swatch-item span {
          width: 16px;
          height: 16px; }
      .product-loop .product-loop--wrap .product-loop--body .product-loop--prices .price-current {
        font-size: 16px; }
      .product-loop .product-loop--wrap .product-loop--body .product-loop--prices .price-compare del {
        font-size: 14px; }
      .product-loop .product-loop--wrap .product-loop--body .product-loop--prices .price-compare span {
        font-size: 11px; }
    .product-loop .product-loop--wrap .product-loop--head:hover .product-loop--img picture.img-first {
      opacity: 0;
      visibility: hidden; }
    .product-loop .product-loop--wrap .product-loop--head:hover .product-loop--img picture.img-second {
      opacity: 1;
      visibility: visible; } }
  @media (min-width: 768px) {
    .product-loop {
      /* Support sections that use `.section-*` instead of `.section` */ }
      .product-loop .product-loop--wrap .product-loop--expand-panel {
        display: none; }
      .product-loop .product-loop--wrap.is-atc-loading {
        opacity: 0.72;
        pointer-events: none; }
      .product-loop .product-loop--wrap.is-atc-expanded {
        position: relative;
        z-index: 50;
        background: #fdfdfd;
        border: 1px solid rgba(197, 198, 204, 0.6);
        border-radius: 8px 8px 0 0;
        overflow: visible;
        box-shadow: 0 4px 16px rgba(2, 6, 23, 0.06); }
        .product-loop .product-loop--wrap.is-atc-expanded:hover .product-loop--head .product-loop--img picture img {
          transform: none; }
        .product-loop .product-loop--wrap.is-atc-expanded .product-loop--link {
          pointer-events: none; }
        .product-loop .product-loop--wrap.is-atc-expanded .product-loop--head .product-loop--img picture {
          position: absolute;
          inset: 0;
          display: flex;
          align-items: center;
          justify-content: center; }
        .product-loop .product-loop--wrap.is-atc-expanded .product-loop--head .product-loop--img picture img {
          position: relative;
          left: auto;
          top: auto;
          width: auto;
          max-width: 100%;
          height: 100%;
          object-fit: contain;
          transform: none;
          mix-blend-mode: multiply; }
        .product-loop .product-loop--wrap.is-atc-expanded .product-loop--body {
          width: 100%;
          padding: 0 12px 12px;
          background: #fff;
          gap: 12px; }
        .product-loop .product-loop--wrap.is-atc-expanded .product-loop--top {
          width: 100%; }
        .product-loop .product-loop--wrap.is-atc-expanded .product-loop--bottom {
          width: 100%; }
        .product-loop .product-loop--wrap.is-atc-expanded .product-loop--expand-panel {
          display: flex;
          flex-direction: column;
          gap: 12px;
          position: absolute;
          top: 100%;
          left: -1px;
          right: -1px;
          width: auto;
          padding: 12px;
          margin-top: -1px;
          background: #fff;
          border: 1px solid rgba(197, 198, 204, 0.6);
          border-top: none;
          border-radius: 0 0 8px 8px;
          box-shadow: 0 8px 24px rgba(2, 6, 23, 0.12);
          z-index: 51; }
          .product-loop .product-loop--wrap.is-atc-expanded .product-loop--expand-panel:before {
            content: "";
            position: absolute;
            width: calc(100% - 24px);
            left: 12px;
            top: 0;
            height: 1px;
            background: rgba(197, 198, 204, 0.6); }
      .product-loop .product-loop.is-atc-expanded-parent,
      .product-loop .product-tile.is-atc-expanded-parent {
        position: relative;
        z-index: 50;
        overflow: visible; }
      .product-loop .section.is-atc-has-expanded,
      .product-loop .section.is-atc-has-expanded .s-content,
      .product-loop .section.is-atc-has-expanded .s-wrapper {
        overflow: visible; }
      .product-loop [class^="section-"].is-atc-has-expanded,
      .product-loop [class*=" section-"].is-atc-has-expanded,
      .product-loop [class^="section-"].is-atc-has-expanded .s-content,
      .product-loop [class*=" section-"].is-atc-has-expanded .s-content,
      .product-loop [class^="section-"].is-atc-has-expanded .s-wrapper,
      .product-loop [class*=" section-"].is-atc-has-expanded .s-wrapper {
        overflow: visible; }
      .product-loop .grid-products:has(.is-atc-expanded),
      .product-loop .render-product:has(.is-atc-expanded) {
        overflow: visible; }
      .product-loop .swiper.is-atc-has-expanded,
      .product-loop .swiper-container.is-atc-has-expanded {
        overflow: visible; }
      .product-loop .swiper.is-atc-has-expanded .swiper-wrapper,
      .product-loop .swiper-container.is-atc-has-expanded .swiper-wrapper {
        overflow: visible; }
      .product-loop .swiper-slide.is-atc-expanded-slide {
        position: relative;
        overflow: visible;
        z-index: 50; }
      .product-loop .product-loop--expand-panel.is-atc-measure-panel {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        visibility: hidden !important;
        position: absolute !important;
        left: -9999px !important;
        top: 0 !important;
        padding: 12px;
        margin-top: -1px;
        box-sizing: border-box;
        pointer-events: none; }
      .product-loop .product-loop--expand-variants {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        border-radius: 8px;
        overflow: hidden; }
      .product-loop .product-loop--expand-variant {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px;
        border-radius: 8px;
        cursor: pointer;
        margin: 0;
        transition: background 0.2s; }
        .product-loop .product-loop--expand-variant input {
          position: absolute;
          opacity: 0;
          pointer-events: none; }
        .product-loop .product-loop--expand-variant.is-active .product-loop--expand-variant-radio {
          border-color: #035eb7;
          display: inline-flex;
          justify-content: center;
          align-items: center;
          /*
          &:before {
            opacity: 1;
            transform: scale(1);
          }
          &:after {
            opacity: 1;
            transform: scale(1);
          }
          */ }
          .product-loop .product-loop--expand-variant.is-active .product-loop--expand-variant-radio span {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: var(--product-blue);
            border-radius: 50%;
            position: relative;
            z-index: 3; }
          .product-loop .product-loop--expand-variant.is-active .product-loop--expand-variant-radio:before {
            content: "";
            position: absolute;
            width: 22px;
            height: 22px;
            left: -2px;
            top: -2px;
            z-index: 1;
            border-radius: 50%;
            background: #fff;
            border: 1.5px solid #C3EDFF;
            opacity: 1;
            transform: scale(1);
            transition: all 0.2s; }
          .product-loop .product-loop--expand-variant.is-active .product-loop--expand-variant-radio:after {
            content: "";
            position: absolute;
            width: 20px;
            height: 20px;
            left: -1px;
            top: -1px;
            z-index: 2;
            border-radius: 50%;
            background: #fff;
            border: 1.25px solid var(--product-blue);
            opacity: 1;
            transform: scale(1);
            transition: all 0.2s; }
      .product-loop .product-loop--expand-variant-main {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        min-width: 0; }
      .product-loop .product-loop--expand-variant-radio {
        flex: 0 0 20px;
        width: 20px;
        height: 20px;
        border: 1.25px solid rgba(197, 198, 204, 0.6);
        border-radius: 50%;
        position: relative;
        background: #fff;
        /*
      &:before {
        content: '';
        position: absolute;
        width: 22px;
        height: 22px;
        left: -2px;
        top: -2px;
        border-radius: 50%;
        background: #fff;
        border: 1.5px solid #C3EDFF;
        opacity: 0;
        transform: scale(1);
        transition: all 0.2s;
        z-index: -1;
      }
      &:after {
        content: '';
        position: absolute;
        inset: 3px;
        border-radius: 50%;
        background: #035eb7;
        opacity: 0;
        transform: scale(0.5);
        transition: all 0.2s;
      }
      */ }
      .product-loop .product-loop--expand-variant-name {
        flex: 1;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.4;
        color: #111; }
      .product-loop .product-loop--expand-variant-price {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.4;
        color: #035eb7;
        white-space: nowrap; }
      .product-loop .product-loop--expand-qty {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        overflow: hidden;
        background: #fff; }
      .product-loop .product-loop--expand-qty-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        min-height: 40px;
        border: none;
        background: #fff;
        color: #727272;
        font-size: 18px;
        line-height: 1;
        cursor: pointer; }
      .product-loop .product-loop--expand-qty-input {
        flex: 1;
        min-width: 0;
        height: 40px;
        border: none;
        border-left: 1px solid #e5e7eb;
        border-right: 1px solid #e5e7eb;
        text-align: center;
        font-size: 14px;
        color: #333;
        background: #fff;
        -moz-appearance: textfield; }
      .product-loop .product-loop--expand-qty-input::-webkit-outer-spin-button,
      .product-loop .product-loop--expand-qty-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0; }
      .product-loop .product-loop--expand-atc {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        min-height: 46px;
        padding: 9px 40px;
        border: none;
        border-radius: 8px;
        background: #035eb7;
        color: #fff;
        font-family: inherit;
        cursor: pointer;
        transition: opacity 0.2s; }
        .product-loop .product-loop--expand-atc:disabled, .product-loop .product-loop--expand-atc.loading {
          opacity: 0.6;
          cursor: not-allowed;
          pointer-events: none; }
      .product-loop .product-loop--expand-atc-text {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.4;
        white-space: nowrap; }
      .product-loop .product-loop--expand-atc-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0; } }
  @media (max-width: 767px) {
    .product-loop .product-loop--wrap .product-loop--body .product-loop--btn .add-to-cart {
      display: flex;
      align-items: center;
      width: 42px;
      height: 42px;
      padding: 7px;
      justify-content: center;
      border-radius: 4px;
      background: rgba(232, 232, 232, 0.6); }
      .product-loop .product-loop--wrap .product-loop--body .product-loop--btn .add-to-cart svg:first-child {
        display: none; }
      .product-loop .product-loop--wrap .product-loop--body .product-loop--btn .add-to-cart svg:last-child {
        display: block; } }

.products-slide.swiper-wrapper .swiper-slide {
  height: initial; }

.product-tile .product-loop--wrap .product-loop--head .product-loop--buttons[data-view='collection'] {
  display: flex;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  padding: 0 16px 16px;
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s; }
  .product-tile .product-loop--wrap .product-loop--head .product-loop--buttons[data-view='collection'] .product-action.quick-view {
    display: flex; }

@media (min-width: 1024px) {
  .product-tile .product-loop--head:hover .product-loop--buttons[data-view='collection'] {
    opacity: 1;
    visibility: visible; } }

.grid-products {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -13px;
  margin-left: -13px;
  row-gap: 10px; }
  .grid-products .product-loop {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid-products .product-banner {
    display: none;
    padding-bottom: 40%;
    position: relative;
    overflow: hidden; }
    .grid-products .product-banner img {
      position: absolute;
      top: 0;
      left: 0;
      object-fit: cover;
      bottom: 0;
      margin: auto; }
  @media (min-width: 960px) {
    .grid-products {
      margin-right: -15px;
      margin-left: -15px;
      row-gap: 20px; }
      .grid-products .product-loop {
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%; }
      .grid-products .product-banner {
        display: block;
        padding: 0 15px;
        -ms-flex: 0 0 66.66666666%;
        flex: 0 0 66.66666666%;
        max-width: 66.66666666%; } }

.list-products .product-loop {
  padding: 0 1px; }

.menuList-links {
  margin: 0;
  padding: 0;
  list-style: none; }
  .menuList-links li {
    position: relative; }
  .menuList-links li a {
    position: relative;
    font-size: 12px;
    display: block; }
  .menuList-links > li.has-submenu > a {
    padding-right: 30px; }
  .menuList-links > li.has-submenu span.icon-plus-submenu {
    width: 25px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid transparent; }
  .menuList-links .icon-plus-submenu:after,
  .menuList-links .icon-plus-submenu:before {
    background: rgba(9, 9, 9, 0.6);
    content: '';
    display: block;
    position: absolute;
    margin-right: 7px;
    top: 50%;
    right: 0;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    -webkit-transition: all 0.25s linear;
    transition: all 0.25s linear; }
  .menuList-links .icon-plus-submenu:before {
    width: 9px;
    height: 1px;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  .menuList-links .icon-plus-submenu:after {
    width: 1px;
    height: 9px;
    right: 4px;
    transform-origin: center;
    -moz-transform: translateY(-50%) scale(1, 1);
    -ms-transform: translateY(-50%) scale(1, 1);
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1); }
  .menuList-links .has-submenu.opened > a .icon-plus-submenu:after {
    -moz-transform: translateY(-50%) scale(1, 0);
    -ms-transform: translateY(-50%) scale(1, 0);
    -webkit-transform: translateY(-50%) scale(1, 0);
    transform: translateY(-50%) scale(1, 0); }
  .menuList-links > li.has-submenu .icon-plus-submenu:hover {
    border: 1px solid #f4f5f7; }
  .menuList-links li ul.submenu-links {
    display: none;
    padding-left: 30px; }
  .menuList-links ul.submenu-links li a {
    padding: 8px 0 8px 0px; }
  .menuList-links li.has-submenu.level0 > ul.submenu-links {
    border-top: 1px dashed #f4f5f7; }
  .menuList-links li.has-submenu.level0 > ul.submenu-links li a {
    padding-left: 12px; }
  .menuList-links li.has-submenu.level1 > ul.submenu-links li a:hover {
    text-decoration: underline; }

.hero-wrapper {
  height: 100%;
  background-color: #efefef;
  background-size: cover;
  background-position: 0;
  background-repeat: no-repeat;
  position: relative; }
  .hero-wrapper .hero-banner {
    margin: 0 -15px; }
  .hero-wrapper .hero-content-backing {
    position: relative;
    width: 100%; }
  .hero-wrapper .hero-content {
    background-color: transparent;
    color: #27251f;
    max-height: 100%;
    padding: 20px 0;
    position: relative; }
  .hero-wrapper .hero-title {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 26px; }
  .hero-wrapper .hero-desc {
    font-size: 12px;
    overflow: hidden;
    position: relative; }
  .hero-wrapper .text-white {
    color: var(--skin-text-color) !important; }
  @media (min-width: 768px) {
    .hero-wrapper .hero-title {
      font-size: 30px; } }
  @media (min-width: 1025px) {
    .hero-wrapper {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
      align-items: center;
      height: 40vh;
      min-height: 340px;
      overflow: hidden; }
      .hero-wrapper .hero-banner {
        margin: 0; }
      .hero-wrapper .hero-content-backing::before {
        background-color: transparent;
        content: '';
        height: 100%;
        position: absolute;
        width: 40vw; }
      .hero-wrapper .hero-content {
        width: 500px;
        padding: 30px 60px 30px 0; }
      .hero-wrapper .hero-title {
        font-size: 30px; }
      .hero-wrapper .hero-desc {
        max-height: 220px; }
      .hero-wrapper .text-white {
        color: #fff !important; } }
  @media (max-width: 1024px) {
    .hero-wrapper {
      background-color: #f5f5f5 !important;
      background-image: none !important;
      text-align: center; } }

/*----- Modal -----*/
.modal .modal-content {
  border-radius: 0;
  padding: 0 30px; }
  .modal .modal-content .modal-header {
    border-radius: 0;
    border-bottom: 1px solid #d0d1d2;
    padding: 20px 0;
    align-items: center; }
    .modal .modal-content .modal-header h4 {
      font-size: 18px;
      text-transform: uppercase;
      margin-bottom: 0; }
    .modal .modal-content .modal-header .close {
      margin: 0;
      opacity: 1;
      padding: 4px 0;
      outline: none; }
    .modal .modal-content .modal-header svg {
      width: 20px;
      height: 20px; }
  .modal .modal-content .modal-body {
    padding: 20px 0;
    font-size: 12px; }
  .modal .modal-content .modal-footer {
    padding: 0 0 20px;
    gap: 20px;
    border-top: none; }
    .modal .modal-content .modal-footer button {
      margin: 0; }

.modal#removeProductModal .product-to-remove {
  font-weight: bold;
  margin-top: 10px; }

@media (min-width: 544px) {
  .modal .modal-dialog {
    max-width: 730px; }
  .modal .modal-sm {
    max-width: 300px; } }

@media (min-width: 1025px) {
  .modal .modal-lg,
  .modal .modal-xl {
    max-width: 800px; }
  .modal .modal-content .modal-body {
    font-size: 14px; } }

@media (min-width: 1200px) {
  .modal .modal-xl {
    max-width: 1140px; }
  .modal .modal-content .modal-header h4 {
    font-size: 20px; } }

/* Thông báo cookie — bắt buộc chọn, sessionStorage */
.cookies-alert {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10050;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  font-family: var(--skin-text-font, "Arial", sans-serif);
  box-sizing: border-box; }
  .cookies-alert--open {
    display: flex; }
  .cookies-alert__backdrop {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); }
  .cookies-alert__panel {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden; }
    @media (max-width: 767px) {
      .cookies-alert__panel {
        flex-wrap: wrap;
        border-radius: 6px 6px 0 0; } }
  .cookies-alert__body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 24px 24px 16px;
    -webkit-overflow-scrolling: touch; }
    @media (min-width: 768px) {
      .cookies-alert__body {
        max-width: 70%; } }
  .cookies-alert__title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--skin-title-color); }
  .cookies-alert__p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #333; }
    .cookies-alert__p--footer {
      margin-bottom: 0; }
  .cookies-alert__brand {
    font-weight: 700;
    color: #000; }
  .cookies-alert__list {
    margin: 0 0 16px;
    padding: 0 0 0 1.1em;
    color: #333;
    font-size: 14px;
    line-height: 1.5; }
    .cookies-alert__list li {
      margin: 0 0 6px;
      list-style: disc; }
  .cookies-alert__link {
    text-decoration: underline;
    color: #000;
    font-weight: 600; }
    .cookies-alert__link:hover {
      color: #333; }
  .cookies-alert__actions {
    flex: 1 0 auto;
    display: flex;
    gap: 10px;
    padding: 16px 24px; }
  .cookies-alert__btn {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit; }
    .cookies-alert__btn--primary {
      background: var(--skin-title-color);
      color: #fff; }
      .cookies-alert__btn--primary:hover {
        background: var(--blue-600); }

html.cookies-alert--body-lock,
body.cookies-alert--body-lock {
  overflow: hidden; }

/*-----------------------------------------------*/
/* Flash Sale */
/*-----------------------------------------------*/
/*-----------------------------------------------*/
/* Flash Sale */
/*-----------------------------------------------*/
.section-flash-sale {
  padding-bottom: calc(var(--space-unit) * 2); }
  .section-flash-sale .container {
    display: flex;
    flex-direction: column;
    gap: 0; }
  .section-flash-sale .flash-sale-slots {
    background: #f2f9ff;
    border-radius: 8px 8px 0 0;
    padding: 24px 0 0;
    overflow: hidden; }
    .section-flash-sale .flash-sale-slots__inner {
      display: flex;
      gap: 2px;
      align-items: stretch; }
  .section-flash-sale .flash-sale-slot {
    flex: 1 1 0;
    min-width: 0;
    border: none;
    background: #fff;
    padding: 6px 12px;
    text-align: center;
    cursor: pointer;
    font-family: var(--skin-header-font);
    color: #929292;
    transition: background 0.2s ease, color 0.2s ease;
    /* Thứ tự DOM do JS sort theo state; is-active chỉ highlight */ }
    .section-flash-sale .flash-sale-slot__status {
      display: block;
      font-size: 14px;
      font-weight: 300;
      line-height: 1.4; }
    .section-flash-sale .flash-sale-slot__time {
      display: block;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.4;
      color: inherit; }
    .section-flash-sale .flash-sale-slot__date {
      display: block;
      font-size: 14px;
      font-weight: 300;
      line-height: 1.4; }
    .section-flash-sale .flash-sale-slot:first-child {
      border-radius: 8px 0 0 0; }
    .section-flash-sale .flash-sale-slot:last-child {
      border-radius: 0 8px 0 0; }
    .section-flash-sale .flash-sale-slot.is-active {
      background: #035eb7;
      color: #fff; }
      .section-flash-sale .flash-sale-slot.is-active .flash-sale-slot__time {
        color: #fff; }
    .section-flash-sale .flash-sale-slot.is-upcoming:not(.is-active) {
      color: #929292; }
    .section-flash-sale .flash-sale-slot.is-ended:not(.is-active) {
      opacity: 0.65;
      display: none; }
  .section-flash-sale .flash-sale-background {
    background: linear-gradient(180deg, #ffe566 0%, #fff4c2 50%, #f2f9ff 100%); }
    .section-flash-sale .flash-sale-background .flash-sale-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-height: 98px;
      padding: 20px 24px; }
      .section-flash-sale .flash-sale-background .flash-sale-bar__left {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px 16px; }
      .section-flash-sale .flash-sale-background .flash-sale-bar__title {
        margin: 0;
        font-size: 24px;
        font-weight: 600;
        line-height: 1.2;
        color: #272727; }
      .section-flash-sale .flash-sale-background .flash-sale-bar__link {
        font-size: 14px;
        font-weight: 500;
        color: #035eb7;
        text-decoration: none;
        white-space: nowrap; }
        .section-flash-sale .flash-sale-background .flash-sale-bar__link:hover {
          text-decoration: underline; }
        .section-flash-sale .flash-sale-background .flash-sale-bar__link .icon {
          margin-left: 10px; }
    .section-flash-sale .flash-sale-background .flash-sale-countdown {
      display: inline-flex;
      align-items: center;
      gap: 8px; }
      .section-flash-sale .flash-sale-background .flash-sale-countdown__label {
        font-size: 14px;
        font-weight: 500;
        color: #272727; }
        .section-flash-sale .flash-sale-background .flash-sale-countdown__label:empty {
          display: none; }
      .section-flash-sale .flash-sale-background .flash-sale-countdown__timer {
        display: inline-flex;
        align-items: center;
        gap: 4px; }
      .section-flash-sale .flash-sale-background .flash-sale-countdown__box {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 36px;
        height: 36px;
        padding: 0 6px;
        border-radius: 6px;
        background: #ff0202;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        line-height: 1;
        font-variant-numeric: tabular-nums; }
      .section-flash-sale .flash-sale-background .flash-sale-countdown__sep {
        color: #ff0202;
        font-size: 16px;
        font-weight: 600;
        line-height: 1; }
    .section-flash-sale .flash-sale-background .flash-sale-content {
      position: relative;
      padding: 16px 16px 24px; }
      .section-flash-sale .flash-sale-background .flash-sale-content .flash-sale-panel {
        display: none; }
        .section-flash-sale .flash-sale-background .flash-sale-content .flash-sale-panel.is-active {
          display: block; }
      .section-flash-sale .flash-sale-background .flash-sale-content .swiper-navcontrol .swiper-button-prev,
      .section-flash-sale .flash-sale-background .flash-sale-content .swiper-navcontrol .swiper-button-next {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #e8e8e8; }
        .section-flash-sale .flash-sale-background .flash-sale-content .swiper-navcontrol .swiper-button-prev::after,
        .section-flash-sale .flash-sale-background .flash-sale-content .swiper-navcontrol .swiper-button-next::after {
          display: none; }
    .section-flash-sale .flash-sale-background .product-loop .product-loop--prices .price {
      color: #035eb7;
      font-weight: 700; }
    .section-flash-sale .flash-sale-background .product-loop .product-loop--prices .price-compare {
      color: #929292;
      text-decoration: line-through; }
  @media (max-width: 991px) {
    .section-flash-sale .flash-sale-slots {
      padding-top: 16px; }
      .section-flash-sale .flash-sale-slots__inner {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; }
        .section-flash-sale .flash-sale-slots__inner::-webkit-scrollbar {
          display: none; }
    .section-flash-sale .flash-sale-slot {
      flex: 0 0 auto;
      min-width: 120px; }
    .section-flash-sale .flash-sale-bar {
      min-height: auto;
      padding: 24px 16px 24px 20px !important;
      align-items: center; }
      .section-flash-sale .flash-sale-bar__title {
        font-size: 20px; }
    .section-flash-sale .flash-sale-countdown__box {
      min-width: 32px;
      height: 32px;
      font-size: 14px; } }
  @media (min-width: 992px) {
    .section-flash-sale {
      padding-bottom: calc(var(--space-unit) * 2.5); }
      .section-flash-sale .flash-sale-bar__title {
        font-size: 28px; } }

/* Search overlay — Figma 1040:139085 */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.25); }
  .search-overlay.is-open {
    display: block; }
  .search-overlay__panel {
    background: #fff;
    border: 0.5px solid rgba(197, 198, 204, 0.6);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 9.62px 24.051px -12.025px rgba(0, 0, 0, 0.1);
    max-height: 100vh;
    overflow-y: auto; }
  .search-overlay__head {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 34px 16px 24px; }
  .search-overlay__logo {
    flex: 0 0 160px; }
    .search-overlay__logo a {
      display: block; }
    .search-overlay__logo img {
      display: block;
      max-width: 160px;
      height: auto; }
  .search-overlay__form {
    flex: 1;
    min-width: 0; }
  .search-overlay__input-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #f3f3f4;
    border-radius: 8px;
    padding: 12px 20px; }
  .search-overlay__input-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center; }
  .search-overlay__input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    font-size: 16px;
    line-height: 1.3;
    color: #111;
    padding: 0; }
    .search-overlay__input::placeholder {
      color: #929292; }
    .search-overlay__input:focus {
      outline: none; }
  .search-overlay__submit {
    flex-shrink: 0;
    border: none;
    background: transparent;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #035eb7;
    cursor: pointer; }
  .search-overlay__close {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer; }
  .search-overlay__divider {
    height: 1px;
    background: rgba(197, 198, 204, 0.6); }
  .search-overlay__body {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px 40px; }
  .search-overlay__col-divider {
    flex-shrink: 0;
    width: 1px;
    align-self: stretch;
    background: rgba(197, 198, 204, 0.6); }
  .search-overlay--no-history .search-history,
  .search-overlay--no-history .search-overlay__col-divider {
    display: none; }
  .search-overlay--no-history .search-suggest {
    flex: 1;
    width: 100%;
    max-width: 100%; }
  .search-overlay--no-history .search-suggest__tags {
    max-width: 100%; }

.search-history {
  flex: 0 0 calc(50% - 20px);
  max-width: 564px;
  min-width: 0; }
  .search-history__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 5px 16px 0; }
  .search-history__title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #035eb7;
    line-height: normal; }
  .search-history__clear-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: none;
    background: transparent;
    padding: 0;
    font-size: 14px;
    color: #727272;
    cursor: pointer; }
  .search-history__clear-icon {
    display: flex;
    align-items: center; }
  .search-history__list {
    list-style: none;
    margin: 0;
    padding: 0; }
  .search-history__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 20px 8px;
    border-radius: 8px;
    transition: background 0.2s ease; }
    .search-history__item:hover {
      background: #e6f5fb; }
  .search-history__link {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    text-decoration: none;
    color: #111; }
  .search-history__clock {
    flex-shrink: 0;
    display: flex;
    align-items: center; }
  .search-history__text {
    font-size: 16px;
    line-height: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .search-history__remove {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    opacity: 0.7; }
    .search-history__remove:hover {
      opacity: 1; }

.search-suggest {
  flex: 1;
  min-width: 0;
  max-width: 556px; }
  .search-suggest__title {
    margin: 0;
    padding: 16px 0;
    font-size: 20px;
    font-weight: 600;
    color: #035eb7;
    line-height: normal; }
  .search-suggest__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center; }
  .search-suggest__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 16px;
    background: #f3f3f4;
    border-radius: 8px;
    font-size: 16px;
    line-height: normal;
    color: #111;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease; }
    .search-suggest__tag:hover {
      background: #e6f5fb;
      color: #111; }

@media (max-width: 991px) {
  .search-overlay__head {
    flex-wrap: wrap;
    padding-top: 20px; }
  .search-overlay__logo {
    flex: 0 0 auto; }
  .search-overlay__form {
    flex: 1 1 100%;
    order: 3; }
  .search-overlay__close {
    margin-left: auto; }
  .search-overlay__body {
    flex-direction: column;
    gap: 24px; }
  .search-overlay__col-divider {
    display: none; }
  .search-history {
    flex: none;
    max-width: 100%;
    width: 100%; }
  .search-suggest {
    max-width: 100%;
    width: 100%; } }

body.search-overlay-open {
  overflow: hidden; }

/* —— Trang tìm kiếm: không có kết quả (Figma 1040:146287) —— */
#empty_result.empty-result {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 48px 16px 64px;
  font-family: var(--skin-header-font); }
  #empty_result.empty-result.d-none {
    display: none !important; }
  #empty_result.empty-result .empty-result__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 100%;
    text-align: center; }
  #empty_result.empty-result .empty-result__icon {
    flex-shrink: 0;
    width: 144px;
    height: 144px; }
    #empty_result.empty-result .empty-result__icon img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain; }
  #empty_result.empty-result .empty-result__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; }
  #empty_result.empty-result .empty-result__title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #111; }
  #empty_result.empty-result .empty-result__desc {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #929292; }
  #empty_result.empty-result .empty-result__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border-radius: 8px;
    background: #035eb7;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition: background 0.2s ease; }
    #empty_result.empty-result .empty-result__btn:hover {
      background: #003d79;
      color: #fff;
      text-decoration: none; }

.temp-search .section-category {
  padding-bottom: 0; }

/* —— Account (https://project.larksuite.com/enterprise_team/story/detail/12222366) —— */
.customer-account-cards .customer-account-card {
  background: linear-gradient(90deg, #cfe5fb 0%, #d9e9ef 52.4%, #f5fcff 97.12%);
  border-radius: 8px; }
  .customer-account-cards .customer-account-card .btn-main {
    background: transparent; }
    .customer-account-cards .customer-account-card .btn-main:hover {
      background: var(--main-color); }

.customer-account-loyalty__tier--end {
  transform: unset !important;
  align-items: flex-end !important; }
  .customer-account-loyalty__tier--end .customer-account-loyalty__tier-dot {
    margin-right: 0 !important; }

.customer-member-id-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  box-sizing: border-box; }
  .customer-member-id-modal.is-open {
    display: flex; }
  .customer-member-id-modal:not(.is-open)[hidden] {
    display: none; }

.customer-member-id-modal__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(2, 6, 23, 0.45);
  box-sizing: border-box; }

.customer-member-id-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 498px;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden; }
  .customer-member-id-modal__dialog .modal-member-top {
    padding: 20px 24px 0;
    background: #fff; }
  .customer-member-id-modal__dialog .modal-member-bottom {
    background: #fff;
    padding: 20px 24px 0; }
  .customer-member-id-modal__dialog .modal-member-middle {
    padding: 20px 24px 0;
    background: url(https://cdn.hstatic.net/files/200001144887/file/bg_modal_member.png) no-repeat;
    background-size: 100% 100%;
    height: 30px;
    position: relative;
    overflow: hidden; }
    .customer-member-id-modal__dialog .modal-member-middle img {
      position: absolute;
      left: 24px;
      top: 14px;
      width: calc(100% - 48px);
      height: auto; }
    @media (max-width: 767px) {
      .customer-member-id-modal__dialog .modal-member-middle {
        height: 22px; }
        .customer-member-id-modal__dialog .modal-member-middle img {
          top: 3px; } }

.customer-member-id-modal__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0; }

.customer-member-id-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none; }
  .customer-member-id-modal__close:hover {
    color: #111827;
    background: rgba(0, 0, 0, 0.04); }

.customer-member-id-modal__tabs {
  display: flex;
  justify-content: center;
  gap: 0 28px;
  padding: 4px 0 0 0;
  margin-bottom: 12px; }

.customer-member-id-modal__tab {
  position: relative;
  padding: 8px 0 12px;
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 500;
  color: #929292;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none; }
  .customer-member-id-modal__tab::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: transparent;
    border-radius: 1px; }
  .customer-member-id-modal__tab.is-active {
    font-weight: 700;
    color: #003d79; }
    .customer-member-id-modal__tab.is-active::after {
      background: #003d79; }
  .customer-member-id-modal__tab:focus {
    outline: none; }

.customer-member-id-modal__panel {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px; }
  .customer-member-id-modal__panel.is-active {
    display: flex; }

.customer-member-id-modal__code-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74%;
  position: relative;
  padding-top: 74%;
  margin: 20px 0 8px; }
  .customer-member-id-modal__code-wrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }

.customer-member-id-modal__code-wrap--barcode {
  min-height: 140px;
  padding-top: 0; }
  .customer-member-id-modal__code-wrap--barcode img {
    position: relative;
    width: 100%;
    height: 100%; }

.customer-member-id-modal__qr {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: contain; }

.customer-member-id-modal__barcode {
  display: block;
  max-width: 100%;
  height: auto; }

.customer-member-id-modal__code-label {
  margin: 0;
  font-size: 15px;
  font-weight: normal;
  color: #414141;
  letter-spacing: 0.04em; }

.customer-member-id-modal__divider {
  margin: 4px 0 12px;
  border: none;
  border-top: 1px dashed #d1d5db; }

.customer-member-id-modal__member {
  padding: 0 8px 16px;
  text-align: center; }

.customer-member-id-modal__names {
  margin-bottom: 8px; }

.customer-member-id-modal__name-line {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35; }
  .customer-member-id-modal__name-line + .customer-member-id-modal__name-line {
    margin-top: 2px; }

.customer-member-id-modal__rank {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #99820d; }

.customer-member-id-modal__accent {
  height: 40px;
  margin: 0 -24px;
  border-radius: 0 0 8px 8px;
  border-bottom: 3px solid #99820d;
  background: #e3d79a; }

.breadcrumb {
  background: transparent;
  padding: 24px 0;
  gap: 8px; }
  .breadcrumb a {
    color: #999999; }
    @media (max-width: 992px) {
      .breadcrumb a {
        font-size: 12px; } }
  .breadcrumb svg {
    margin-right: 6px;
    width: 7px; }
    @media (max-width: 992px) {
      .breadcrumb svg {
        width: 6px; } }

.aspect-ratio {
  position: relative;
  overflow: hidden;
  padding-bottom: calc(var(--img-height) / var(--img-width) * 100%);
  display: block; }
  .aspect-ratio img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .aspect-ratio picture {
    display: block;
    width: 100%;
    height: 100%; }

/*-------------------------*/
/*----------HOME----------*/
/*-------------------------*/
.section-mainslider {
  --img-height: 540px;
  --img-width: 1440px;
  --img-width-banner-mobile: 390px;
  --img-height-banner-mobile: 487px;
  margin-bottom: calc(var(--space-unit) * 2.5);
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden; }
  .section-mainslider .swiper-container {
    height: 100%;
    width: 100%; }
  .section-mainslider .swiper-slide {
    height: 100%;
    width: 100%;
    position: relative; }
    .section-mainslider .swiper-slide .swiper-slide--inner {
      height: 100%;
      width: 100%;
      position: relative; }
  .section-mainslider .swiper-button-prev {
    background: transparent !important;
    border: none !important; }
  .section-mainslider .swiper-button-next {
    background: transparent !important;
    border: none !important; }
  .section-mainslider .media {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: calc(100% * 3 / 8);
    display: block; }
    .section-mainslider .media img, .section-mainslider .media video {
      -o-object-fit: cover;
      object-fit: cover;
      transform: scale(1);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  @media (min-width: 992px) {
    .section-mainslider {
      margin-bottom: calc(var(--space-unit) * 2.5); } }

.section-userdashboard .box-dashboard {
  border-radius: 8px;
  background: var(--mu-header, #e6f5fb);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px 0; }
  .section-userdashboard .box-dashboard > div {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }

.section-userdashboard .box-dashboard--info {
  display: inline-flex;
  gap: 20px;
  flex-direction: column; }
  .section-userdashboard .box-dashboard--info .box-info {
    display: inline-flex;
    align-items: center;
    gap: 12px; }
    .section-userdashboard .box-dashboard--info .box-info span.icon {
      width: 40px; }
    .section-userdashboard .box-dashboard--info .box-info div.text {
      width: calc(100% - 40px - 12px);
      display: flex;
      flex-direction: column; }
    .section-userdashboard .box-dashboard--info .box-info.info-left {
      position: relative; }
      .section-userdashboard .box-dashboard--info .box-info.info-left:before {
        content: none;
        position: absolute;
        height: 32px;
        width: 1px;
        background: rgba(194, 198, 212, 0.3);
        top: 0;
        bottom: 0;
        left: auto;
        right: -33px;
        margin: auto; }
      .section-userdashboard .box-dashboard--info .box-info.info-left span.title {
        color: #003d79;
        font-weight: 600;
        text-transform: uppercase; }
      .section-userdashboard .box-dashboard--info .box-info.info-left span.number {
        color: #035eb7;
        font-weight: 600; }
    .section-userdashboard .box-dashboard--info .box-info.info-right span.number {
      color: #003d79;
      font-weight: 600;
      text-transform: uppercase; }
    .section-userdashboard .box-dashboard--info .box-info.info-right span.rank {
      font-weight: 500;
      background: linear-gradient(270deg, #d4c57a 0%, #99820d 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
      .section-userdashboard .box-dashboard--info .box-info.info-right span.rank.text {
        background: unset;
        -webkit-text-fill-color: unset;
        color: #414141; }
    .section-userdashboard .box-dashboard--info .box-info.info-error {
      font-weight: 400;
      font-size: 16px;
      color: var(--blue-500);
      gap: 5px; }
      .section-userdashboard .box-dashboard--info .box-info.info-error a {
        color: var(--blue-500); }
        .section-userdashboard .box-dashboard--info .box-info.info-error a:last-child {
          background: var(--blue-500);
          color: #fff;
          border-radius: 8px;
          padding: 12px;
          margin-left: 24px; }
  @media (max-width: 767px) {
    .section-userdashboard .box-dashboard--info {
      gap: 16px; }
      .section-userdashboard .box-dashboard--info .box-info.info-left {
        padding-bottom: 16px; }
        .section-userdashboard .box-dashboard--info .box-info.info-left:before {
          content: none;
          height: 1px;
          width: 100%;
          left: 0;
          bottom: 0;
          top: unset;
          right: unset; }
      .section-userdashboard .box-dashboard--info .box-info.info-error {
        flex-wrap: wrap;
        justify-content: center; }
        .section-userdashboard .box-dashboard--info .box-info.info-error a:last-child {
          width: 50%;
          margin-left: 0;
          text-align: center; } }

.section-userdashboard .box-dashboard--action .box-action {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  border: 1px solid rgba(194, 198, 212, 0.1);
  background: #fff;
  padding: 12px 24px; }
  .section-userdashboard .box-dashboard--action .box-action .btn-click {
    display: inline-flex;
    gap: 16px;
    align-items: center;
    color: #272727;
    font-weight: 600; }
    .section-userdashboard .box-dashboard--action .box-action .btn-click span {
      display: inline-flex; }
    .section-userdashboard .box-dashboard--action .box-action .btn-click strong {
      color: #035eb7;
      display: inline-block;
      margin-left: 4px; }
  @media (max-width: 767px) {
    .section-userdashboard .box-dashboard--action .box-action {
      width: 100%; }
      .section-userdashboard .box-dashboard--action .box-action .btn-click {
        width: calc(100% - 38px);
        justify-content: space-between; } }

@media (min-width: 568px) {
  .section-userdashboard .box-dashboard {
    padding: 32px 24px; }
  .section-userdashboard .box-dashboard--info {
    gap: 20px 64px;
    align-items: center;
    flex-direction: row; }
    .section-userdashboard .box-dashboard--info .box-info.info-left {
      max-width: 33%; }
      .section-userdashboard .box-dashboard--info .box-info.info-left:before {
        content: ''; }
      .section-userdashboard .box-dashboard--info .box-info.info-left span.title {
        font-size: 16px; }
      .section-userdashboard .box-dashboard--info .box-info.info-left span.number {
        font-size: 18px; }
        .section-userdashboard .box-dashboard--info .box-info.info-left span.number.text {
          font-size: 15px; }
    .section-userdashboard .box-dashboard--info .box-info.info-right {
      max-width: 55%; }
      .section-userdashboard .box-dashboard--info .box-info.info-right span.number {
        font-size: 18px; }
        .section-userdashboard .box-dashboard--info .box-info.info-right span.number.text {
          font-size: 16px; }
      .section-userdashboard .box-dashboard--info .box-info.info-right span.rank {
        font-size: 16px; }
        .section-userdashboard .box-dashboard--info .box-info.info-right span.rank.text {
          font-size: 14px; }
  .section-userdashboard .box-dashboard--action .box-action .btn-click {
    font-size: 18px; } }

@media (min-width: 768px) {
  .section-userdashboard .box-dashboard {
    padding: 24px; } }

@media (min-width: 992px) {
  .section-userdashboard .box-dashboard {
    justify-content: space-between;
    align-items: center;
    flex-direction: row; }
    .section-userdashboard .box-dashboard .box-dashboard--info {
      -ms-flex: 0 0 59%;
      flex: 0 0 59%;
      max-width: 59%; }
    .section-userdashboard .box-dashboard .box-dashboard--action {
      /*
        -ms-flex: 0 0 27%;
        flex: 0 0 27%;
        max-width: 27%;
        */
      flex: 1 1 auto; }
  .section-userdashboard .box-dashboard--action {
    text-align: right; } }

.section-category .box-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #eff0f0;
  border-radius: 8px; }
  .section-category .box-card h3 {
    margin-bottom: 0;
    color: #003d79;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    height: 32px; }
    .section-category .box-card h3 a {
      color: #003d79; }
  .section-category .box-card .box-card--media {
    aspect-ratio: 1/1;
    height: 94px;
    width: auto;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    display: block; }
    .section-category .box-card .box-card--media img {
      /*
        -o-object-fit: cover;
        object-fit: cover;
        */
      object-position: top;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  @media (min-width: 992px) {
    .section-category .box-card h3 {
      font-size: 20px;
      height: 53px; } }

.section-category .s-content {
  position: relative;
  padding-top: 20px; }

.section-category .swiper:not(.swiper-initialized) {
  padding-left: 16px;
  margin: 0 -16px; }
  .section-category .swiper:not(.swiper-initialized) .slider-category {
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    overflow-x: scroll;
    padding-left: 16px;
    margin: 0 -16px; }
    .section-category .swiper:not(.swiper-initialized) .slider-category::-webkit-scrollbar {
      display: none; }
    .section-category .swiper:not(.swiper-initialized) .slider-category .swiper-slide {
      -webkit-flex: 0 0 40%;
      flex: 0 0 40%;
      max-width: 40%; }
  @media (min-width: 568px) {
    .section-category .swiper:not(.swiper-initialized) .slider-category .swiper-slide {
      -webkit-flex: 0 0 65%;
      flex: 0 0 65%;
      max-width: 65%; } }
  @media (min-width: 768px) {
    .section-category .swiper:not(.swiper-initialized) .slider-category .swiper-slide {
      -webkit-flex: 0 0 45%;
      flex: 0 0 45%;
      max-width: 45%; } }
  @media (min-width: 992px) {
    .section-category .swiper:not(.swiper-initialized) {
      padding-left: 0px;
      margin: 0; }
      .section-category .swiper:not(.swiper-initialized) .slider-category {
        flex-wrap: nowrap;
        overflow: hidden;
        padding-left: 0px;
        margin: 0;
        gap: 16px; }
        .section-category .swiper:not(.swiper-initialized) .slider-category .swiper-slide {
          -webkit-flex: 0 0 calc((100% - (16px * 3.5)) / 4.5);
          flex: 0 0 calc((100% - (16px * 3.5)) / 4.5);
          max-width: calc((100% - (16px * 3.5)) / 4.5); } }
  @media (min-width: 1170px) {
    .section-category .swiper:not(.swiper-initialized) .slider-category .swiper-slide {
      -webkit-flex: 0 0 calc((100% - (16px * 5.5)) / 6.5);
      flex: 0 0 calc((100% - (16px * 5.5)) / 6.5);
      max-width: calc((100% - (16px * 5.5)) / 6.5); } }

@media (min-width: 992px) {
  .section-category .swiper-button-prev {
    left: -42px; }
  .section-category .swiper-button-next {
    right: -42px; } }

.section-newsletters {
  padding: 0;
  margin: 0 0 40px; }
  .section-newsletters .box-newsletters {
    border-radius: 10px;
    background: #eff0f0;
    display: flex;
    flex-direction: column;
    gap: 20px 40px;
    padding: 28px 20px; }
    .section-newsletters .box-newsletters > div {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
  .section-newsletters .box-text h2 {
    color: #292929;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px; }
  .section-newsletters .box-text p {
    color: #525252;
    margin-bottom: 0; }
  .section-newsletters .box-form .newsletter-form .input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 32px;
    align-items: flex-start; }
    .section-newsletters .box-form .newsletter-form .input-group label {
      margin: 0;
      color: #989897;
      font-size: 14px;
      font-weight: 400; }
      .section-newsletters .box-form .newsletter-form .input-group label i {
        color: #a62c2a;
        font-size: 14px; }
    .section-newsletters .box-form .newsletter-form .input-group input {
      border-radius: 8px;
      padding: 16px 12px;
      background: #fff;
      color: #000;
      font-size: 16px;
      border: none; }
      .section-newsletters .box-form .newsletter-form .input-group input[placeholder] {
        color: #989897; }
  .section-newsletters .box-form .newsletter-form .newsletter-btn {
    display: inline-flex;
    height: 48px;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #035eb7;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none; }
  @media (min-width: 992px) {
    .section-newsletters {
      margin: 30px 0 100px; }
      .section-newsletters .box-newsletters {
        flex-direction: row;
        padding: 48px 40px;
        border-radius: 20px; }
        .section-newsletters .box-newsletters > div {
          -ms-flex: 0 0 calc((100% - 40px) / 2);
          flex: 0 0 calc((100% - 40px) / 2);
          max-width: calc((100% - 40px) / 2); }
      .section-newsletters .box-text h2 {
        font-size: 40px; }
      .section-newsletters .box-text p {
        font-size: 16px; } }

.search-results .grid-products .product-loop,
.search-results .grid-products .product-tile,
.collection-default .grid-products .product-loop,
.collection-default .grid-products .product-tile {
  -ms-flex: 0 0 calc((100% - (16px * 3)) / var(--view));
  flex: 0 0 calc((100% - (16px * 3)) / var(--view));
  max-width: calc((100% - (16px * 3)) / var(--view)); }

/*-----------------------------------------------*/
/* COLLECTION TEMPLATE */
/*-----------------------------------------------*/
.collection-categories {
  background: #eff0f0;
  padding: 16px 0; }
  .collection-categories__card {
    background: #eff0f0;
    border-radius: 8px;
    color: #003d79;
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 6px 12px;
    text-decoration: none;
    transition: background-color 0.25s ease;
    flex-wrap: wrap;
    height: 100%; }
    .collection-categories__card--active {
      background: #e8f8ff; }
  .collection-categories__image {
    align-items: center;
    display: inline-flex;
    height: 66px;
    justify-content: center;
    width: 70px; }
    .collection-categories__image img {
      display: block;
      height: auto;
      max-height: 66px;
      max-width: 70px;
      mix-blend-mode: darken;
      width: 100%; }
  .collection-categories__label {
    color: #003d79;
    display: flex;
    flex-direction: column;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    width: 100%; }
  @media (max-width: 991px) {
    .collection-categories {
      padding: 12px 0; }
      .collection-categories__card {
        min-width: 110px;
        padding: 6px 10px; }
      .collection-categories__label {
        font-size: 14px; } }

.collection-layout .banner-wrapper {
  height: 100%;
  width: 100%; }
  .collection-layout .banner-wrapper .banner-effect {
    position: relative;
    overflow: hidden;
    padding-bottom: calc(1000 / 800 * 100%); }
    .collection-layout .banner-wrapper .banner-effect:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
      background: linear-gradient(0deg, #000102 0%, rgba(0, 1, 2, 0) 50%); }
    .collection-layout .banner-wrapper .banner-effect img {
      -o-object-fit: cover;
      object-fit: cover;
      object-position: top;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .collection-layout .banner-wrapper .banner-effect .title {
      display: flex;
      align-items: center;
      width: 100%;
      font-weight: 600;
      position: absolute;
      bottom: 20%;
      left: 0;
      z-index: 2;
      color: #fff; }
      .collection-layout .banner-wrapper .banner-effect .title h2 {
        font-size: 20px;
        margin-bottom: 16px;
        color: #fff; }
    @media (min-width: 992px) {
      .collection-layout .banner-wrapper .banner-effect {
        height: 100vh;
        padding: 0; }
        .collection-layout .banner-wrapper .banner-effect .title {
          font-size: 18px; }
          .collection-layout .banner-wrapper .banner-effect .title h2 {
            font-size: 40px; } }

.collection-layout .cate-wrapper {
  padding: 16px 0 0;
  overflow: hidden;
  position: relative;
  background: #fff; }
  .collection-layout .cate-wrapper .cate-menu {
    overflow-x: scroll;
    margin: 0 -16px; }
    .collection-layout .cate-wrapper .cate-menu::-webkit-scrollbar {
      display: none; }
    .collection-layout .cate-wrapper .cate-menu:not(.swiper-initialized) .cate-menu--list {
      display: flex;
      gap: 10px 4px;
      padding: 0 0 0 16px; }
      .collection-layout .cate-wrapper .cate-menu:not(.swiper-initialized) .cate-menu--list .catemenu {
        height: 100%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%; }
  .collection-layout .cate-wrapper .cate-menu--list .catemenu a {
    padding-bottom: 158%;
    overflow: hidden;
    position: relative;
    display: block;
    color: #fff; }
    .collection-layout .cate-wrapper .cate-menu--list .catemenu a:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
      background: linear-gradient(0deg, #000102 0%, rgba(0, 1, 2, 0) 50%); }
    .collection-layout .cate-wrapper .cate-menu--list .catemenu a img {
      -o-object-fit: cover;
      object-fit: cover;
      object-position: top;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .collection-layout .cate-wrapper .cate-menu--list .catemenu a > span {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 10px;
      font-size: 12px;
      width: 100%;
      font-weight: 600;
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 2; }
      .collection-layout .cate-wrapper .cate-menu--list .catemenu a > span span {
        color: #fff; }
      .collection-layout .cate-wrapper .cate-menu--list .catemenu a > span span.btn-link {
        font-size: 10px; }
  @media (min-width: 992px) {
    .collection-layout .cate-wrapper {
      padding: 24px 0 0; }
      .collection-layout .cate-wrapper .cate-menu {
        margin: 0; }
      .collection-layout .cate-wrapper .cate-menu--list {
        padding: 0; }
      .collection-layout .cate-wrapper .cate-menu--list .catemenu a > span {
        padding: 16px;
        font-size: 24px; }
      .collection-layout .cate-wrapper .cate-menu--list .catemenu a > span span.btn-link {
        font-size: 13px; } }

.collection-layout .sidebar-box {
  --filter-blue: #035eb7;
  --filter-blue-light: #d6f3ff;
  --filter-blue-ring: #c3edff;
  --filter-stroke: rgba(197, 198, 204, 0.6);
  --filter-text: #111111;
  --filter-chip-bg: #f3f3f4;
  /*
      .filter-color .checkbox-list {
        display: flex;
        flex-wrap: wrap;
        flex-direction: unset;
        gap: 0;
        li {
          width: 20%; 
          label { 
            align-items: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 100%; height: 100%;
            padding: 12px;
            row-gap: 10px;
            span.bg {
              display: inline-block;
              height: 24px;
              min-width: 24px;
              width: 24px;
              border: 1px solid rgba(204, 204, 204, 1);
            }
            span:not(.bg){
              text-transform: uppercase; 
              display: block;
              text-align: center;
              line-height: 1.4;
              font-size: 12px;
            }
          }
          label[data-value="Nhiều màu"] {
            background-repeat: repeat-y, repeat;
            background-size: 50% 100%, 100% 100%;
            transform: rotate(35deg);
          }
          input[type="checkbox"] {
            display: none;
            &:checked {
              &	+ label {
                span.bg{border: 1px solid #020617;}
                span:not(.bg){font-weight: 600;}
                &:before {
                  content: none;
                  position: absolute;
                  top: 8px;
                  left: 8px;
                  height: 6px;
                  width: 12px;
                  z-index: 99;
                  border: 2px solid #222;
                  border-top-style: none;
                  border-right-style: none;
                  -webkit-transform: rotate(-45deg);
                  transform: rotate(-45deg);
                }
              }
            }
          }
        }
      }
      .filter-size .checkbox-list {
        display: flex; flex-wrap: wrap;
        flex-direction: unset; gap: 0;	
        li {
          width: 12.5%;
          label { 
            border: none;
            height: 40px; width: 100%; padding: 10px;
            text-transform: uppercase;
            -ms-flex-align: center;
            align-items: center;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-pack: center;
            justify-content: center;
            border-radius: 0;
            &:before {content: none;}
          }
          input[type="checkbox"] {
            display: none;
            &:checked + label {background-color: #020617; color: #fff;}
          }
          &:hover label {background-color: #020617;color: #fff;}
        }
      }
      .filter-price {
        .box-range {padding: 30px 20px 30px 22px;}
        .number-group {
          display: flex; 
          align-items: center; 
          justify-content: space-between;
          font-size: 16px;
          font-weight: 500;
          margin: 0 0 20px -8px;
        }
        .rangeslider-group {
          width:100%; padding: 0;
          .range-value {
            margin: 0 0 -2px; border-bottom: 2px solid #d0d1d2;
            input {
              width: 100%;
              background:none;
              color: #3D3D3D;
              font-size: 16px;
              font-weight: 500;
              box-shadow: none;
              border: none;
              text-align: center;
              margin: 0 0 20px 0;
              display: none;
            }
          }
          .range-bar {
            border: none;
            background: #d0d1d2;
            height: 2px;	
            width: 100%;
            margin-left: 0;
            border-radius: 0;
            .ui-slider-range {background: #020617;}
            .ui-slider-handle {
              border: none;
              border-radius: 50%;
              background: #020617;
              height: 10px;
              width: 10px;
              top: -4px;
              cursor:pointer;
              outline: none;
            }
          }
        }
      }
		*/ }
  @media (max-width: 991px) {
    .collection-layout .sidebar-box {
      width: 100%; } }
  .collection-layout .sidebar-box .sidebar-box--block {
    position: relative; }
  .collection-layout .sidebar-box .sidebar-box--badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 12px;
    background: #035eb7;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1; }
  .collection-layout .sidebar-box .sidebar-box--subtitle {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--filter-text); }
    .collection-layout .sidebar-box .sidebar-box--subtitle span.icon-control {
      width: 20px;
      height: 20px;
      line-height: 20px;
      flex-shrink: 0; }
      @media (max-width: 991px) {
        .collection-layout .sidebar-box .sidebar-box--subtitle span.icon-control {
          display: none; } }
      .collection-layout .sidebar-box .sidebar-box--subtitle span.icon-control svg {
        -webkit-transition: transform 0.3s;
        -moz-transition: transform 0.3s;
        -o-transition: transform 0.3s;
        transition: transform 0.3s; }
        .collection-layout .sidebar-box .sidebar-box--subtitle span.icon-control svg path {
          stroke: var(--filter-text);
          transition: stroke 0.2s; }
  @media (max-width: 991px) {
    .collection-layout .sidebar-box .sidebar-box--content {
      position: relative;
      width: 100%;
      overflow: visible;
      display: block;
      padding: 12px 0 20px;
      margin: 0 0 4px;
      border-bottom: 1px solid var(--filter-stroke); }
      .collection-layout .sidebar-box .sidebar-box--content#filter-price {
        border-bottom: none; }
      .collection-layout .sidebar-box .sidebar-box--content#filter-sort {
        padding: 0;
        margin: 0;
        border: none; } }
  .collection-layout .sidebar-box .content-list {
    display: flex;
    flex-direction: column;
    width: 100%; }
    .collection-layout .sidebar-box .content-list .action-list {
      border-top: 0.5px solid #020617;
      display: flex;
      justify-content: flex-end; }
      .collection-layout .sidebar-box .content-list .action-list a {
        width: 50%;
        padding: 0 10px;
        height: 40px;
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        text-align: center; }
        .collection-layout .sidebar-box .content-list .action-list a.btn-close-box {
          border-right: 0.5px solid #020617; }
        .collection-layout .sidebar-box .content-list .action-list a.btn-clear.disabled {
          cursor: not-allowed;
          pointer-events: none;
          color: #d0d1d2; }
  .collection-layout .sidebar-box .checkbox-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px; }
    .collection-layout .sidebar-box .checkbox-list li {
      position: relative;
      display: flex;
      align-items: center; }
      .collection-layout .sidebar-box .checkbox-list li.group-title {
        width: 100%;
        flex: 0 0 100%;
        font-size: 13px;
        font-weight: 600;
        color: #727272;
        padding: 4px 0 2px; }
      .collection-layout .sidebar-box .checkbox-list li input[type='checkbox'] {
        position: absolute;
        opacity: 0;
        width: 1px;
        height: 1px;
        margin: 0; }
        .collection-layout .sidebar-box .checkbox-list li input[type='checkbox']:after, .collection-layout .sidebar-box .checkbox-list li input[type='checkbox']:before {
          display: none; }
      .collection-layout .sidebar-box .checkbox-list li label {
        cursor: pointer;
        margin: 0;
        display: inline-flex;
        align-items: center;
        padding: 6px 10px;
        border-radius: 6px;
        background: var(--filter-chip-bg);
        color: var(--filter-text);
        font-size: 15px;
        font-weight: 400;
        line-height: 1.4;
        border: 1px solid transparent;
        transition: background 0.2s, border-color 0.2s, color 0.2s; }
      .collection-layout .sidebar-box .checkbox-list li input[type='checkbox']:checked + label {
        background: var(--filter-blue-light);
        border-color: var(--filter-blue);
        color: var(--filter-blue); }
      .collection-layout .sidebar-box .checkbox-list li:hover label {
        border-color: rgba(3, 94, 183, 0.35); }
    .collection-layout .sidebar-box .checkbox-list.checkbox-list-flex1 li:not(.group-title) {
      flex: 1 1 calc((100% - 16px) / 3);
      max-width: calc((100% - 16px) / 3);
      min-width: 0; }
      .collection-layout .sidebar-box .checkbox-list.checkbox-list-flex1 li:not(.group-title) label {
        width: 100%;
        justify-content: center; }
  .collection-layout .sidebar-box .filter-price .content-list {
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .collection-layout .sidebar-box .filter-price .checkbox-list--price {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0; }
    .collection-layout .sidebar-box .filter-price .checkbox-list--price li {
      width: 100%;
      padding: 12px 0; }
      .collection-layout .sidebar-box .filter-price .checkbox-list--price li:not(.d-none) label {
        position: relative;
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.4;
        color: var(--filter-text); }
        .collection-layout .sidebar-box .filter-price .checkbox-list--price li:not(.d-none) label:before {
          content: '';
          flex-shrink: 0;
          width: 20px;
          height: 20px;
          border-radius: 50%;
          border: 1.25px solid var(--filter-stroke);
          background: #fff;
          box-sizing: border-box;
          transition: border-color 0.2s, box-shadow 0.2s; }
        .collection-layout .sidebar-box .filter-price .checkbox-list--price li:not(.d-none) label:after {
          content: '';
          position: absolute;
          left: 6px;
          top: 50%;
          width: 8px;
          height: 8px;
          margin-top: -4px;
          border-radius: 50%;
          background: var(--filter-blue);
          transform: scale(0);
          transition: transform 0.2s; }
      .collection-layout .sidebar-box .filter-price .checkbox-list--price li input[type='checkbox']:checked + label {
        background: transparent;
        border: none;
        color: var(--filter-text); }
        .collection-layout .sidebar-box .filter-price .checkbox-list--price li input[type='checkbox']:checked + label:before {
          border: 1.5px solid var(--filter-blue);
          box-shadow: 0 0 0 3px var(--filter-blue-ring); }
        .collection-layout .sidebar-box .filter-price .checkbox-list--price li input[type='checkbox']:checked + label:after {
          transform: scale(1); }
      .collection-layout .sidebar-box .filter-price .checkbox-list--price li:hover label:before {
        border-color: rgba(3, 94, 183, 0.45); }
  .collection-layout .sidebar-box .filter-price .filter-price--custom {
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .collection-layout .sidebar-box .filter-price .filter-price--inputs {
    display: flex;
    align-items: center;
    gap: 8px; }
    @media (max-width: 991px) {
      .collection-layout .sidebar-box .filter-price .filter-price--inputs {
        flex-direction: column; } }
  .collection-layout .sidebar-box .filter-price .filter-price--field {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--filter-stroke);
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.2s; }
    @media (max-width: 991px) {
      .collection-layout .sidebar-box .filter-price .filter-price--field {
        width: 100%; } }
    .collection-layout .sidebar-box .filter-price .filter-price--field:focus-within {
      border-color: var(--filter-blue); }
    .collection-layout .sidebar-box .filter-price .filter-price--field input {
      flex: 1 1 auto;
      min-width: 0;
      border: none;
      outline: none;
      background: transparent;
      padding: 0;
      margin: 0;
      font-size: 15px;
      font-weight: 400;
      line-height: 1.4;
      color: var(--filter-text); }
      .collection-layout .sidebar-box .filter-price .filter-price--field input::placeholder {
        color: #b5b5b5; }
  .collection-layout .sidebar-box .filter-price .filter-price--currency {
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--filter-blue); }
  .collection-layout .sidebar-box .filter-price .filter-price--error {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: #e53935; }
  .collection-layout .sidebar-box .filter-price .filter-price--apply {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    background: var(--filter-blue);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    transition: background 0.2s; }
    .collection-layout .sidebar-box .filter-price .filter-price--apply:hover {
      background: #024a92; }
  .collection-layout .sidebar-box .radio-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 4px; }
    .collection-layout .sidebar-box .radio-list li {
      position: relative;
      display: flex;
      gap: 12px;
      align-items: center;
      padding: 6px 8px;
      border-radius: 8px; }
      .collection-layout .sidebar-box .radio-list li:hover {
        background: #f9fafb; }
      .collection-layout .sidebar-box .radio-list li input[type='radio'] {
        position: relative;
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        outline: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        cursor: pointer; }
        .collection-layout .sidebar-box .radio-list li input[type='radio']:after {
          content: '';
          position: absolute;
          left: 0;
          top: 0;
          width: 20px;
          height: 20px;
          border-radius: 50%;
          background: #fff;
          border: 1.25px solid var(--filter-stroke);
          transition: border-color 0.2s, box-shadow 0.2s; }
        .collection-layout .sidebar-box .radio-list li input[type='radio']:before {
          content: '';
          position: absolute;
          left: 6px;
          top: 6px;
          z-index: 1;
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background: var(--filter-blue);
          transform: scale(0);
          transition: transform 0.2s; }
        .collection-layout .sidebar-box .radio-list li input[type='radio']:checked:after {
          border: 1.5px solid var(--filter-blue);
          box-shadow: 0 0 0 3px var(--filter-blue-ring); }
        .collection-layout .sidebar-box .radio-list li input[type='radio']:checked:before {
          transform: scale(1); }
      .collection-layout .sidebar-box .radio-list li label {
        cursor: pointer;
        margin: 0;
        display: block;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.4;
        color: var(--filter-text); }
      .collection-layout .sidebar-box .radio-list li input[type='radio']:checked + label {
        color: var(--filter-text);
        font-weight: 400; }
  .collection-layout .sidebar-box .filter-color .checkbox-list {
    flex-direction: initial;
    flex-wrap: wrap; }
    .collection-layout .sidebar-box .filter-color .checkbox-list li label {
      display: flex;
      align-items: center;
      gap: 8px;
      width: 100%; }
      .collection-layout .sidebar-box .filter-color .checkbox-list li label:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        margin: auto;
        background-image: url("data:image/svg+xml,%3Csvg width='9' height='8' viewBox='0 0 9 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.96967 0.968522C7.11054 0.834411 7.298 0.760269 7.49249 0.76174C7.68698 0.763212 7.87329 0.840182 8.01212 0.976409C8.15094 1.11264 8.23141 1.29747 8.23655 1.4919C8.24169 1.68633 8.1711 1.87515 8.03967 2.01852L4.04967 7.00852C3.98106 7.08242 3.89825 7.14172 3.8062 7.18289C3.71415 7.22405 3.61474 7.24623 3.51392 7.2481C3.4131 7.24997 3.31294 7.23148 3.21943 7.19375C3.12591 7.15603 3.04097 7.09983 2.96967 7.02852L0.323669 4.38252C0.249983 4.31386 0.19088 4.23106 0.149888 4.13906C0.108896 4.04706 0.0868544 3.94775 0.0850777 3.84704C0.0833009 3.74634 0.101826 3.64631 0.139547 3.55292C0.177268 3.45954 0.233412 3.3747 0.304631 3.30348C0.37585 3.23226 0.460684 3.17612 0.554072 3.1384C0.64746 3.10068 0.747489 3.08215 0.848192 3.08393C0.948895 3.08571 1.04821 3.10775 1.14021 3.14874C1.23221 3.18973 1.31501 3.24883 1.38367 3.32252L3.47767 5.41552L6.95067 0.990522C6.95692 0.982823 6.9636 0.975478 6.97067 0.968522H6.96967Z' fill='%2394a3b8'/%3E%3C/svg%3E%0A");
        background-repeat: no-repeat;
        background-size: 10px;
        background-position: center;
        display: none;
        opacity: 0;
        visibility: hidden;
        width: 12px;
        height: 12px; }
      .collection-layout .sidebar-box .filter-color .checkbox-list li label span.bg {
        display: inline-block;
        height: 24px;
        min-width: 24px;
        width: 24px;
        border: 1px solid #cccccc; }
      .collection-layout .sidebar-box .filter-color .checkbox-list li label span:not(.bg) {
        text-transform: uppercase;
        display: block;
        text-align: center;
        line-height: 1.4;
        font-size: 12px;
        display: none; }
      .collection-layout .sidebar-box .filter-color .checkbox-list li label[data-value='Nhiều màu'] {
        background-repeat: repeat-y, repeat;
        background-size: 50% 100%, 100% 100%;
        transform: rotate(35deg); }
    .collection-layout .sidebar-box .filter-color .checkbox-list li input[type='checkbox'] {
      display: none; }
      .collection-layout .sidebar-box .filter-color .checkbox-list li input[type='checkbox']:checked + label span.bg {
        border: 1px solid #020617; }
      .collection-layout .sidebar-box .filter-color .checkbox-list li input[type='checkbox']:checked + label span:not(.bg) {
        font-weight: 600; }
      .collection-layout .sidebar-box .filter-color .checkbox-list li input[type='checkbox']:checked + label:before {
        content: none;
        position: absolute;
        top: 8px;
        left: 8px;
        height: 6px;
        width: 12px;
        z-index: 99;
        border: 2px solid #222;
        border-top-style: none;
        border-right-style: none;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg); }
  .collection-layout .sidebar-box .filter-size .checkbox-list {
    flex-direction: initial;
    flex-wrap: wrap; }
    .collection-layout .sidebar-box .filter-size .checkbox-list li {
      border-radius: 4px;
      border: 1px solid #e5e7eb;
      padding: 4px 8px;
      height: 30px; }
      .collection-layout .sidebar-box .filter-size .checkbox-list li input[type='checkbox'] {
        display: none; }
      .collection-layout .sidebar-box .filter-size .checkbox-list li.active {
        border: 1px solid #000000;
        background: #000;
        color: #fff; }
  .collection-layout .sidebar-box.sidebar-box--show .sidebar-box--subtitle, .collection-layout .sidebar-box:has(input:checked) .sidebar-box--subtitle {
    color: var(--filter-blue);
    border-color: var(--filter-blue) !important; }
    .collection-layout .sidebar-box.sidebar-box--show .sidebar-box--subtitle span.icon-control svg path, .collection-layout .sidebar-box:has(input:checked) .sidebar-box--subtitle span.icon-control svg path {
      stroke: var(--filter-blue); }
  .collection-layout .sidebar-box.sidebar-box--show .sidebar-box--subtitle span.icon-control {
    transform: rotate(180deg); }
  .collection-layout .sidebar-box.sidebar-box--show .sidebar-box--content {
    display: block;
    transform: none !important; }

.collection-layout .description-wrapper {
  margin-bottom: 32px;
  position: relative;
  overflow: hidden; }
  .collection-layout .description-wrapper .description-content .expandable-detail {
    max-width: 80%;
    margin: auto; }
  .collection-layout .description-wrapper .description-content .expandable-action {
    position: relative; }
    .collection-layout .description-wrapper .description-content .expandable-action .expandable-action_toggle-icon {
      position: relative;
      width: 24px;
      height: 24px; }
      .collection-layout .description-wrapper .description-content .expandable-action .expandable-action_toggle-icon svg {
        -webkit-transition: transform 0.2s ease-in-out;
        transition: transform 0.2s ease-in-out;
        width: 24px;
        height: 24px; }
    .collection-layout .description-wrapper .description-content .expandable-action .expandable-action_toggle {
      outline: none;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center;
      gap: 8px;
      border: 1px solid #000102;
      padding: 8px 24px;
      position: relative;
      margin: 0 auto;
      border-radius: 2px;
      text-align: center;
      font-weight: 600;
      background: #fff; }
      .collection-layout .description-wrapper .description-content .expandable-action .expandable-action_toggle.btn-closemore .expandable-action_toggle-icon svg {
        transform: rotate(180deg); }
  .collection-layout .description-wrapper .description-content:not(.opened) .expandable-action_toggle {
    margin-top: 30px; }
  .collection-layout .description-wrapper .description-content.expandable-toggle.opened .expandable-detail {
    max-height: 445px;
    overflow: hidden; }
  .collection-layout .description-wrapper .description-content.expandable-toggle.opened .expandable-action:before {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 400px;
    pointer-events: none;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4) 15%, #f9fafb); }
  @media (min-width: 992px) {
    .collection-layout .description-wrapper {
      margin-bottom: 64px; } }

.collection-layout .layered-filter--tags-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px; }
  .collection-layout .layered-filter--tags-wrapper .layered-filter--applied-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px; }
  .collection-layout .layered-filter--tags-wrapper .layered-filter--applied-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #d6f3ff;
    border-radius: 6px;
    color: #035eb7;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4; }
    .collection-layout .layered-filter--tags-wrapper .layered-filter--applied-tag .layered-filter--applied-remove {
      display: inline-flex;
      padding: 0;
      border: 0;
      background: none;
      color: #035eb7;
      cursor: pointer;
      line-height: 0; }
  .collection-layout .layered-filter--tags-wrapper .layered-filter--clear-all,
  .collection-layout .layered-filter--tags-wrapper .filter-tag--remove-all {
    border: 0;
    background: none;
    padding: 0;
    color: #035eb7;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    outline: none; }
    .collection-layout .layered-filter--tags-wrapper .layered-filter--clear-all:hover,
    .collection-layout .layered-filter--tags-wrapper .filter-tag--remove-all:hover {
      text-decoration: underline; }
    .collection-layout .layered-filter--tags-wrapper .layered-filter--clear-all:focus, .collection-layout .layered-filter--tags-wrapper .layered-filter--clear-all:active, .collection-layout .layered-filter--tags-wrapper .layered-filter--clear-all:focus-visible,
    .collection-layout .layered-filter--tags-wrapper .filter-tag--remove-all:focus,
    .collection-layout .layered-filter--tags-wrapper .filter-tag--remove-all:active,
    .collection-layout .layered-filter--tags-wrapper .filter-tag--remove-all:focus-visible {
      outline: none; }

.collection-layout .collection-title {
  padding: 24px 0; }
  .collection-layout .collection-title h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0; }
  @media (min-width: 992px) {
    .collection-layout .collection-title {
      display: none; } }

.collection-layout .collection-wrapper {
  display: flex;
  flex-direction: column; }

.collection-layout .collection-head {
  padding: 0 0 16px;
  background: #fff; }
  .collection-layout .collection-head .action-wrapper {
    display: flex;
    gap: 16px;
    flex-direction: column;
    margin: 0 -16px; }
    .collection-layout .collection-head .action-wrapper .action-wrapper__title {
      display: none;
      margin: 0;
      font-size: 24px;
      font-weight: 500;
      line-height: 1.4;
      color: #035eb7;
      text-transform: capitalize; }
    .collection-layout .collection-head .action-wrapper .button-wrapper {
      display: flex;
      width: 100%;
      background: #f2f2f2;
      border-top: 1px solid #ddd;
      border-bottom: 1px solid #ddd; }
      .collection-layout .collection-head .action-wrapper .button-wrapper .btn-sortmb,
      .collection-layout .collection-head .action-wrapper .button-wrapper .btn-filtermb {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 48px;
        margin: 0;
        padding: 0;
        border: 0;
        background: transparent;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.4;
        color: #000;
        cursor: pointer; }
      .collection-layout .collection-head .action-wrapper .button-wrapper .btn-sortmb {
        border-right: 1px solid #ddd; }
    .collection-layout .collection-head .action-wrapper .sidebar-box-sort .sidebar-tabnav-mb {
      display: none; }
      @media (max-width: 991px) {
        .collection-layout .collection-head .action-wrapper .sidebar-box-sort .sidebar-tabnav-mb {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 12px;
          padding: 16px 20px;
          border-bottom: 1px solid var(--filter-stroke);
          margin-bottom: 12px; }
          .collection-layout .collection-head .action-wrapper .sidebar-box-sort .sidebar-tabnav-mb h4 {
            flex: 1 1 auto;
            font-size: 18px;
            line-height: 1.4;
            font-weight: 700;
            margin: 0;
            color: var(--filter-blue); }
          .collection-layout .collection-head .action-wrapper .sidebar-box-sort .sidebar-tabnav-mb button {
            flex-shrink: 0;
            border: none;
            background: transparent;
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            margin: 0;
            cursor: pointer;
            outline: none; }
            .collection-layout .collection-head .action-wrapper .sidebar-box-sort .sidebar-tabnav-mb button path {
              stroke: var(--filter-text); } }
    .collection-layout .collection-head .action-wrapper .sidebar-box-sort .sort-overlay-mb {
      display: none; }
      @media (max-width: 991px) {
        .collection-layout .collection-head .action-wrapper .sidebar-box-sort .sort-overlay-mb {
          position: absolute;
          inset: 0;
          z-index: 1;
          display: block;
          background: rgba(2, 6, 23, 0.35);
          opacity: 0;
          transition: opacity 0.3s ease; }
          body.open-sort-mb .collection-layout .collection-head .action-wrapper .sidebar-box-sort .sort-overlay-mb {
            opacity: 1;
            visibility: visible;
            pointer-events: auto; } }
    @media (max-width: 991px) {
      .collection-layout .collection-head .action-wrapper .sidebar-box-sort {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 16;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease; }
        .collection-layout .collection-head .action-wrapper .sidebar-box-sort .sidebar-box--block {
          background: #fff;
          position: absolute;
          z-index: 2;
          left: 0;
          right: 0;
          bottom: 0;
          width: 100%;
          height: 70vh;
          max-height: 70vh;
          border-radius: 16px 16px 0 0;
          box-shadow: 0 -8px 32px rgba(16, 24, 40, 0.12);
          overflow: hidden;
          transform: translate3d(0, 100%, 0);
          transition: transform 0.3s ease; }
          .collection-layout .collection-head .action-wrapper .sidebar-box-sort .sidebar-box--block .sidebar-box--subtitle {
            display: none; }
          body.open-sort-mb .collection-layout .collection-head .action-wrapper .sidebar-box-sort .sidebar-box--block {
            transform: translate3d(0, 0, 0); }
        body.open-sort-mb .collection-layout .collection-head .action-wrapper .sidebar-box-sort {
          opacity: 1;
          visibility: visible;
          pointer-events: auto; } }
    @media (min-width: 992px) {
      .collection-layout .collection-head .action-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        margin: 0;
        padding: 20px 0;
        border-top: 1px solid #035eb7;
        padding-bottom: 0; }
        .collection-layout .collection-head .action-wrapper .action-wrapper__title {
          display: block;
          flex: 1 1 auto;
          font-size: 40px;
          font-weight: 500; }
        .collection-layout .collection-head .action-wrapper .button-wrapper {
          display: none; }
        .collection-layout .collection-head .action-wrapper .sidebar-box-sort {
          display: block;
          flex: 0 0 auto;
          max-width: none; } }
    @media (max-width: 991px) {
      .collection-layout .collection-head .action-wrapper .button-wrapper {
        padding: 0 20px;
        background: transparent;
        border: none;
        justify-content: space-between; }
        .collection-layout .collection-head .action-wrapper .button-wrapper button {
          background: transparent !important;
          flex: 0 0 auto !important; }
          .collection-layout .collection-head .action-wrapper .button-wrapper button.btn-sortmb {
            height: 36px;
            min-width: 131px;
            padding: 12px;
            align-items: center;
            gap: 6px;
            border-radius: 8px;
            border: 0.5px solid rgba(197, 198, 204, 0.6);
            color: #606060;
            font-family: Inter;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 140%;
            /* 19.6px */
            letter-spacing: 0.14px; }
            .collection-layout .collection-head .action-wrapper .button-wrapper button.btn-sortmb svg {
              width: 12px;
              height: 12px; }
          .collection-layout .collection-head .action-wrapper .button-wrapper button.btn-filtermb {
            height: 36px;
            min-width: 101px;
            padding: 12px;
            align-items: center;
            gap: 6px;
            border-radius: 8px;
            border: 0.5px solid #035EB7;
            color: #035EB7;
            font-family: Inter;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 140%;
            /* 19.6px */
            letter-spacing: 0.14px; }
            .collection-layout .collection-head .action-wrapper .button-wrapper button.btn-filtermb svg {
              width: 12px;
              height: 12px; } }
  .collection-layout .collection-head .collection-sticky-zone {
    position: relative; }
  .collection-layout .collection-head .refinement-pin-spacer {
    display: block;
    height: 0; }
  .collection-layout .collection-head .refinement-pin-sentinel {
    display: block;
    height: 1px;
    margin: 0;
    padding: 0;
    pointer-events: none;
    visibility: hidden; }
  @media (min-width: 992px) {
    .collection-layout .collection-head .refinement-fixed-shell.is-refinement-fixed {
      position: fixed;
      top: var(--height-header, 72px);
      left: 0;
      right: 0;
      z-index: 9;
      background: #fff;
      box-shadow: 0 24px 48px -12px rgba(16, 24, 40, 0.18); }
      .collection-layout .collection-head .refinement-fixed-shell.is-refinement-fixed.is-refinement-fixed--enter {
        animation: refinementFixedIn 0.32s ease forwards; } }
  @media (max-width: 991px) {
    .collection-layout .collection-head .refinement-fixed-shell {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 16;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.3s ease, visibility 0.3s ease; }
      body.open-filter-mb .collection-layout .collection-head .refinement-fixed-shell {
        opacity: 1;
        visibility: visible;
        pointer-events: auto; } }
  @media (max-width: 991px) {
    .collection-layout .collection-head .refinement-fixed-shell .refinemnt-overlay-mb {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: block;
      background: rgba(2, 6, 23, 0.35);
      opacity: 0;
      transition: opacity 0.3s ease; }
      body.open-filter-mb .collection-layout .collection-head .refinement-fixed-shell .refinemnt-overlay-mb {
        opacity: 1;
        visibility: visible;
        pointer-events: auto; } }
  .collection-layout .collection-head .refinement-wrapper {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    display: none;
    flex-direction: column; }
    .collection-layout .collection-head .refinement-wrapper .sidebar-tabnav-mb {
      display: none; }
      @media (max-width: 991px) {
        .collection-layout .collection-head .refinement-wrapper .sidebar-tabnav-mb {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 12px;
          padding: 16px 20px;
          border-bottom: 1px solid var(--filter-stroke);
          margin-bottom: 12px; }
          .collection-layout .collection-head .refinement-wrapper .sidebar-tabnav-mb h4 {
            flex: 1 1 auto;
            font-size: 18px;
            line-height: 1.4;
            font-weight: 700;
            margin: 0;
            color: var(--filter-blue); }
          .collection-layout .collection-head .refinement-wrapper .sidebar-tabnav-mb button {
            flex-shrink: 0;
            border: none;
            background: transparent;
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            margin: 0;
            cursor: pointer;
            outline: none; }
            .collection-layout .collection-head .refinement-wrapper .sidebar-tabnav-mb button path {
              stroke: var(--filter-text); } }
    .collection-layout .collection-head .refinement-wrapper .layered-filter--tags-wrapper {
      order: 1; }
    .collection-layout .collection-head .refinement-wrapper .layered-filter--filters-wrapper {
      order: 2; }
      @media (max-width: 991px) {
        .collection-layout .collection-head .refinement-wrapper .layered-filter--filters-wrapper {
          padding: 0 10px 24px;
          overflow: auto; } }
    .collection-layout .collection-head .refinement-wrapper .layered-filter--group {
      display: flex;
      gap: 10px;
      flex-wrap: wrap; }
      .collection-layout .collection-head .refinement-wrapper .layered-filter--group .boxscroll {
        display: flex;
        overflow-x: scroll; }
        .collection-layout .collection-head .refinement-wrapper .layered-filter--group .boxscroll::-webkit-scrollbar {
          display: none; }
    @media (min-width: 992px) {
      .collection-layout .collection-head .refinement-wrapper {
        display: flex; }
        .collection-layout .collection-head .refinement-wrapper .layered-filter--group {
          gap: 20px; }
          .collection-layout .collection-head .refinement-wrapper .layered-filter--group .boxscroll {
            display: block;
            overflow: initial; } }
    @media (max-width: 991px) {
      .collection-layout .collection-head .refinement-wrapper {
        display: flex;
        background: #fff;
        position: absolute;
        z-index: 2;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 70vh;
        max-height: 70vh;
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -8px 32px rgba(16, 24, 40, 0.12);
        overflow: hidden;
        transform: translate3d(0, 100%, 0);
        transition: transform 0.3s ease; }
        body.open-filter-mb .collection-layout .collection-head .refinement-wrapper {
          transform: translate3d(0, 0, 0); } }

@keyframes refinementFixedIn {
  from {
    opacity: 0.88;
    transform: translateY(-10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
  @media (min-width: 992px) {
    .collection-layout .collection-head {
      padding: 10px 0 24px; } }

.collection-layout .collection-body {
  margin: 24px 0 32px; }
  .collection-layout .collection-body .gridcount-section {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
    .collection-layout .collection-body .gridcount-section .show-more {
      padding: 10px 0 30px;
      display: flex;
      justify-content: center; }
      .collection-layout .collection-body .gridcount-section .show-more .btn-more {
        width: 160px; }
    .collection-layout .collection-body .gridcount-section .grid-empty {
      padding: 10px 12px;
      color: #000;
      background: #f5f5f5;
      border-color: #f5f5f5;
      font-size: 14px;
      margin-bottom: 0;
      width: 100%; }
  .collection-layout .collection-body .grid-products {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 2px; }
    .collection-layout .collection-body .grid-products .product-tile {
      -ms-flex: 0 0 calc((100% - (2px * 1)) / 2);
      flex: 0 0 calc((100% - (2px * 1)) / 2);
      max-width: calc((100% - (2px * 1)) / 2); }
  @media (min-width: 1024px) {
    .collection-layout .collection-body {
      margin: 24px 0 64px; }
      .collection-layout .collection-body .gridcount-section .show-more {
        padding: 30px 0 60px; }
      .collection-layout .collection-body .grid-products {
        gap: 18px 10px; }
      .collection-layout .collection-body .grid-products .product-tile {
        -ms-flex: 0 0 calc((100% - (10px * 2)) / 3);
        flex: 0 0 calc((100% - (10px * 2)) / 3);
        max-width: calc((100% - (10px * 2)) / 3); } }
  @media (min-width: 1400px) {
    .collection-layout .collection-body.js-body-grid-4 .grid-products .product-tile {
      -ms-flex: 0 0 calc((100% - (10px * 3)) / 4);
      flex: 0 0 calc((100% - (10px * 3)) / 4);
      max-width: calc((100% - (10px * 3)) / 4); }
    .collection-layout .collection-body.js-body-grid-6 .grid-products .product-loop {
      -ms-flex: 0 0 calc((100% - (10px * 5)) / 6);
      flex: 0 0 calc((100% - (10px * 5)) / 6);
      max-width: calc((100% - (10px * 5)) / 6); } }
  @media (max-width: 767px) {
    .collection-layout .collection-body .grid-products {
      padding: 0 15.5px;
      gap: 20px 2px; } }

.collection-layout .collection-filter--mb {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 16;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease; }
  .collection-layout .collection-filter--mb .overlay-filter-mb {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    background: rgba(2, 6, 23, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease; }
  .collection-layout .collection-filter--mb.filter--mb-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; }
    .collection-layout .collection-filter--mb.filter--mb-show .overlay-filter-mb {
      opacity: 1; }
    .collection-layout .collection-filter--mb.filter--mb-show .sidebar-tab {
      transform: translate3d(0, 0, 0); }
  .collection-layout .collection-filter--mb .sidebar-tab {
    background: #fff;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 70vh;
    max-height: 70vh;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 32px rgba(16, 24, 40, 0.12);
    overflow: hidden;
    transform: translate3d(0, 100%, 0);
    transition: transform 0.3s ease; }
    .collection-layout .collection-filter--mb .sidebar-tab .sidebar-tabnav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 20px;
      border-bottom: 1px solid var(--filter-stroke); }
      .collection-layout .collection-filter--mb .sidebar-tab .sidebar-tabnav h4 {
        flex: 1 1 auto;
        font-size: 18px;
        line-height: 1.4;
        font-weight: 700;
        margin: 0;
        display: none;
        color: var(--filter-blue); }
        .collection-layout .collection-filter--mb .sidebar-tab .sidebar-tabnav h4.active {
          display: block; }
      .collection-layout .collection-filter--mb .sidebar-tab .sidebar-tabnav .close-sidebar {
        flex-shrink: 0;
        border: none;
        background: transparent;
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        cursor: pointer;
        outline: none; }
        .collection-layout .collection-filter--mb .sidebar-tab .sidebar-tabnav .close-sidebar svg path {
          stroke: var(--filter-text); }
    .collection-layout .collection-filter--mb .sidebar-tab .sidebar-tablist {
      height: calc(100% - 73px);
      width: 100%; }
      .collection-layout .collection-filter--mb .sidebar-tab .sidebar-tablist .sidebar-boxscrol {
        padding: 0 20px 24px;
        height: 100%;
        -webkit-overflow-scrolling: touch;
        overflow-y: auto;
        scroll-behavior: smooth;
        display: none; }
        .collection-layout .collection-filter--mb .sidebar-tab .sidebar-tablist .sidebar-boxscrol.active {
          display: block; }
    .collection-layout .collection-filter--mb .sidebar-tab .sidebar-box .sidebar-box--subtitle {
      font-size: 16px;
      font-weight: 600;
      text-transform: none;
      padding: 20px 0 0;
      margin: 0;
      color: var(--filter-text);
      border-bottom: none;
      pointer-events: none; }
      .collection-layout .collection-filter--mb .sidebar-tab .sidebar-box .sidebar-box--subtitle .icon-control {
        display: none; }
    .collection-layout .collection-filter--mb .sidebar-tab .sidebar-box .sidebar-box--content {
      position: relative;
      width: 100%;
      overflow: visible;
      display: block;
      padding: 12px 0 20px;
      margin: 0 0 4px;
      border-bottom: 1px solid var(--filter-stroke); }
    .collection-layout .collection-filter--mb .sidebar-tab .sidebar-box:last-child .sidebar-box--content {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0; }
  .collection-layout .collection-filter--mb .sidebar-boxscrol[data-filtermb='filtermb'] .checkbox-list {
    gap: 8px; }
    .collection-layout .collection-filter--mb .sidebar-boxscrol[data-filtermb='filtermb'] .checkbox-list li label {
      padding: 6px 10px;
      border-radius: 6px;
      background: var(--filter-chip-bg);
      color: var(--filter-text);
      font-size: 15px;
      font-weight: 400;
      border: 1px solid transparent; }
    .collection-layout .collection-filter--mb .sidebar-boxscrol[data-filtermb='filtermb'] .checkbox-list input[type='checkbox']:checked + label {
      background: var(--filter-blue-light);
      border-color: var(--filter-blue);
      color: var(--filter-blue); }
  .collection-layout .collection-filter--mb .sidebar-boxscrol[data-filtermb='filtermb'] .filter-price .checkbox-list--price li:not(.d-none) label {
    padding: 0;
    background: transparent;
    border: none; }
  .collection-layout .collection-filter--mb .sidebar-boxscrol[data-filtermb='sortmb'] {
    padding-top: 12px; }
    .collection-layout .collection-filter--mb .sidebar-boxscrol[data-filtermb='sortmb'] .sidebar-box--subtitle {
      display: none; }
    .collection-layout .collection-filter--mb .sidebar-boxscrol[data-filtermb='sortmb'] .sidebar-box--content {
      padding: 0 0 16px;
      border-bottom: none; }
    .collection-layout .collection-filter--mb .sidebar-boxscrol[data-filtermb='sortmb'] .radio-list {
      gap: 4px; }
      .collection-layout .collection-filter--mb .sidebar-boxscrol[data-filtermb='sortmb'] .radio-list li {
        padding: 8px 8px;
        border-radius: 8px; }
        .collection-layout .collection-filter--mb .sidebar-boxscrol[data-filtermb='sortmb'] .radio-list li:hover {
          background: #f9fafb; }
        .collection-layout .collection-filter--mb .sidebar-boxscrol[data-filtermb='sortmb'] .radio-list li label {
          font-size: 15px;
          font-weight: 400;
          color: var(--filter-text); }
        .collection-layout .collection-filter--mb .sidebar-boxscrol[data-filtermb='sortmb'] .radio-list li input[type='radio']:after {
          border: 1.25px solid var(--filter-stroke); }
        .collection-layout .collection-filter--mb .sidebar-boxscrol[data-filtermb='sortmb'] .radio-list li input[type='radio']:checked:after {
          border: 1.5px solid var(--filter-blue);
          box-shadow: 0 0 0 3px var(--filter-blue-ring); }
        .collection-layout .collection-filter--mb .sidebar-boxscrol[data-filtermb='sortmb'] .radio-list li input[type='radio']:checked:before {
          background: var(--filter-blue); }
  @media (min-width: 992px) {
    .collection-layout .collection-filter--mb {
      display: none; } }

/*----- Default -----*/
.collection-default .collection-filter {
  padding-top: 0; }

.collection-default .layered-filter--label {
  display: none; }

@media (min-width: 992px) {
  .collection-default .collection-title {
    display: none; } }

@media (min-width: 992px) {
  .collection-default .layered-filter--group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 16px 0 20px;
    background: #fff;
    border-radius: 8px; }
  .collection-default .layered-filter--label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    flex-shrink: 0; }
    .collection-default .layered-filter--label .layered-filter--label-text {
      font-size: 16px;
      font-weight: 600;
      line-height: 1;
      color: #727272; }
    .collection-default .layered-filter--label .layered-filter--label-icon {
      display: inline-flex;
      align-items: center;
      line-height: 0; }
  .collection-default .sidebar-box-sort {
    position: relative;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: none; }
    .collection-default .sidebar-box-sort .sidebar-box--subtitle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      min-width: 0;
      min-height: 36px;
      height: 36px;
      padding: 12px;
      background: #fff;
      border: 1px solid #035eb7;
      border-radius: 8px;
      color: #035eb7;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.01em;
      white-space: nowrap; }
      .collection-default .sidebar-box-sort .sidebar-box--subtitle .icon-sort {
        display: inline-flex;
        align-items: center;
        line-height: 0;
        color: #035eb7; }
      .collection-default .sidebar-box-sort .sidebar-box--subtitle .icon-control {
        display: none; }
    .collection-default .sidebar-box-sort.sidebar-box--show .sidebar-box--subtitle,
    .collection-default .sidebar-box-sort:has(input:checked) .sidebar-box--subtitle {
      color: #035eb7;
      border-color: #035eb7; }
    .collection-default .sidebar-box-sort .sidebar-box--content.filter-sort {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      left: auto;
      min-width: 250px;
      width: max-content;
      z-index: 10;
      padding: 12px;
      display: none;
      background: #fff;
      border: 1px solid rgba(197, 198, 204, 0.6);
      border-radius: 8px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1); }
    .collection-default .sidebar-box-sort.sidebar-box--show .sidebar-box--content.filter-sort {
      display: block; }
  .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: none; }
    .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) .sidebar-box--subtitle {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 16px;
      white-space: nowrap;
      min-height: 0;
      height: auto;
      background: #fff;
      border: 1px solid rgba(197, 198, 204, 0.6);
      border-radius: 8px;
      min-width: 0;
      font-size: 16px;
      font-weight: 600;
      color: #111;
      transition: border-color 0.2s, color 0.2s; }
      .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) .sidebar-box--subtitle .sidebar-box--subtitle-text {
        flex: 0 0 auto; }
      .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) .sidebar-box--subtitle .sidebar-box--badge {
        flex-shrink: 0; }
      .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) .sidebar-box--subtitle span.icon-control {
        display: inline-block;
        margin-left: auto; }
    .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort).has-filter-selected .sidebar-box--subtitle,
    .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort).sidebar-box--show .sidebar-box--subtitle {
      border-color: #035eb7;
      color: #035eb7; }
      .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort).has-filter-selected .sidebar-box--subtitle .sidebar-box--subtitle-text,
      .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort).sidebar-box--show .sidebar-box--subtitle .sidebar-box--subtitle-text {
        color: #035eb7; }
      .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort).has-filter-selected .sidebar-box--subtitle span.icon-control svg path,
      .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort).sidebar-box--show .sidebar-box--subtitle span.icon-control svg path {
        stroke: #035eb7; }
    .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) .sidebar-box--content {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      min-width: 206.33px;
      width: 100%;
      z-index: 9;
      padding: 12px;
      display: none;
      transition: none !important;
      transform: none !important;
      background: #fff;
      border: 1px solid rgba(197, 198, 204, 0.6);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
      border-radius: 8px; }
    .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort).sidebar-box--show .sidebar-box--content {
      display: block; }
    .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) .sidebar-box--content.has-data {
      height: 241px; }
      .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) .sidebar-box--content.has-data .content-list {
        overflow-y: scroll;
        height: 100%; }
        .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) .sidebar-box--content.has-data .content-list::-webkit-scrollbar {
          width: 2px;
          height: 3px; }
        .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) .sidebar-box--content.has-data .content-list::-webkit-scrollbar-track {
          -webkit-border-radius: 2px;
          border-radius: 2px;
          background: #f8fafc; }
        .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) .sidebar-box--content.has-data .content-list::-webkit-scrollbar-thumb {
          -webkit-border-radius: 2px;
          border-radius: 2px;
          background: #e5e7eb;
          -webkit-box-shadow: inset 0 0 6px #e5e7eb; }
    .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) .content-list {
      padding: 0; }
    .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) .sidebar-box--content.filter-taste,
    .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) .sidebar-box--content.filter-vol {
      min-width: 300px; }
    .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) .filter-price {
      height: auto;
      min-width: 324px;
      padding: 16px 20px !important; }
    .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) .filter-color,
    .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) .filter-size {
      height: auto !important; }
      .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) .filter-color .content-list,
      .collection-default .collection-filter .sidebar-box:not(.sidebar-box-sort) .filter-size .content-list {
        overflow-y: hidden; }
  .collection-default .cate-wrapper .cate-menu {
    overflow: hidden;
    transition: all 0.2s; }
    .collection-default .cate-wrapper .cate-menu:not(.swiper-initialized) .cate-menu--list .catemenu {
      height: 100%;
      -ms-flex: 0 0 calc((100% - (10px * 5)) / 6);
      flex: 0 0 calc((100% - (10px * 5)) / 6);
      max-width: calc((100% - (10px * 5)) / 6); }
  .collection-default .collection-pagi {
    display: flex;
    justify-content: center;
    width: 100%; } }

.temp-collection .section.section-category {
  padding-bottom: 15px; }

.temp-collection .pagination-wrapper {
  margin-top: 12px; }

@media (max-width: 992px) {
  .collection-layout .collection-title {
    padding: 12px 0 18px; }
  .collection-layout .collection-filter--mb .sidebar-tab .sidebar-tablist .sidebar-boxscrol {
    padding: 0 10px 24px; }
  .collection-layout .collection-filter--mb .sidebar-boxscrol[data-filtermb='sortmb'] .radio-list {
    gap: 10px; }
  .collection-layout .collection-filter--mb .sidebar-boxscrol[data-filtermb='sortmb'] .radio-list li {
    padding: 0; }
  .collection-layout .collection-filter--mb .sidebar-tab .sidebar-box:last-child .sidebar-box--content {
    padding-top: 15px; }
  .collection-layout .collection-filter--mb .sidebar-tab .sidebar-tabnav .close-sidebar {
    width: 30px;
    height: 30px;
    padding: 3px;
    border-radius: 50%;
    border: 1px solid #ececec; }
  .collection-layout .collection-filter--mb .sidebar-tab .sidebar-tabnav .close-sidebar {
    width: 28px;
    height: 28px; }
  .collection-layout .sidebar-box .filter-price .checkbox-list--price li {
    padding: 2px 0; } }

/*-----------------------------------------------*/
/* CART TEMPLATE — WF_TH-True-Milk */
/*-----------------------------------------------*/
button:focus,
button:focus-visible {
  outline: none; }

body.temp-cart .main-header {
  box-shadow: 0px 9.62px 24.05px -12.03px rgba(0, 0, 0, 0.1); }

.cart-layout {
  background: var(--cart-bg);
  padding: 0 0 40px;
  min-height: 60vh;
  position: relative;
  z-index: 4;
  /* Cart promo — Figma 1570:32443 (tag CT tổng đơn, logged-in AJAX) */
  /* CT tổng đơn đã thỏa — giống product-promo-scheme-line + chevron */
  /* Banner CT theo SP — Figma 1715:89674 */ }
  .cart-layout .cart-header-card {
    background: var(--cart-white);
    box-shadow: var(--cart-shadow);
    margin-bottom: 40.5px; }
  .cart-layout .cart-header-card__inner {
    display: flex;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px; }
  .cart-layout .cart-title {
    margin: 0;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--cart-text); }
  .cart-layout .cart-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    width: 66%; }
  .cart-layout .cart-toolbar__delete {
    border: none;
    background: none;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--cart-blue-dark);
    cursor: pointer;
    white-space: nowrap; }
  .cart-layout .cart-check {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    cursor: pointer;
    user-select: none; }
    .cart-layout .cart-check--toolbar {
      gap: 16px; }
    .cart-layout .cart-check--item {
      flex: 0 0 auto;
      align-self: flex-start;
      margin-top: 26px; }
  .cart-layout .cart-check__input {
    position: absolute;
    inset: 0 auto auto 0;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    pointer-events: none; }
  .cart-layout .cart-check__box {
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--cart-text-light);
    border-radius: 6px;
    background: var(--cart-white);
    flex: 0 0 20px;
    position: relative;
    display: block;
    transition: border-color 0.2s, background 0.2s; }
    .cart-layout .cart-check__box::after {
      content: '';
      position: absolute;
      left: 50%;
      top: 46%;
      width: 4px;
      height: 8px;
      border: solid var(--cart-white);
      border-width: 0 2px 2px 0;
      transform: translate(-50%, -50%) rotate(45deg);
      opacity: 0; }
  .cart-layout .cart-check__input:checked + .cart-check__box {
    border-radius: 4.4px;
    border-bottom: 1.1px solid var(--Blue-blue---400, #137CE3);
    background: var(--Blue-blue---400, #137CE3);
    box-shadow: 0 0 0 0.846px rgba(206, 241, 228, 0.3), 0 -2.115px 2.538px 0 #62EAB8 inset;
    border: none; }
    .cart-layout .cart-check__input:checked + .cart-check__box::after {
      opacity: 1; }
  .cart-layout .cart-check__label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--cart-text-muted); }
  .cart-layout .cart-check--toolbar {
    min-height: 22px; }
    .cart-layout .cart-check--toolbar .cart-check__label {
      line-height: 22px; }
  .cart-layout .cart-check--toolbar .cart-check__box {
    width: 22px;
    height: 22px;
    flex: 0 0 22px; }
    .cart-layout .cart-check--toolbar .cart-check__box::after {
      width: 5px;
      height: 9px; }
  .cart-layout .cart-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 14px;
    align-items: start; }
  .cart-layout .cart-items-card {
    background: var(--cart-white);
    border-radius: 8px;
    overflow: visible;
    padding: 12px; }
  .cart-layout .cart-order-promo-tags {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 16px;
    width: 100%;
    padding: 16px;
    background: #fff;
    border-radius: 8px; }
  .cart-layout .js-cart-promo-banner:not(.is-clickable) {
    border: none;
    border-radius: 8px;
    background: #e6f5fb;
    padding: 8px 12px; }
  .cart-layout .cart-order-promo-scheme-line {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 16px 12px;
    border: none;
    border-radius: 8px;
    background: #f3f3f4;
    color: #606060;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left; }
    .cart-layout .cart-order-promo-scheme-line.is-clickable {
      cursor: pointer;
      transition: background 0.2s; }
      .cart-layout .cart-order-promo-scheme-line.is-clickable:hover {
        background: #e8e8ea; }
    .cart-layout .cart-order-promo-scheme-line__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 20px;
      height: 19px; }
      .cart-layout .cart-order-promo-scheme-line__icon svg {
        display: block;
        width: 20px;
        height: 19px; }
    .cart-layout .cart-order-promo-scheme-line__text {
      flex: 1;
      min-width: 0;
      word-break: break-word; }
    .cart-layout .cart-order-promo-scheme-line__chevron {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-left: auto;
      background: var(--cart-blue);
      color: var(--cart-white);
      border-radius: 6px;
      padding: 4px 10px; }
  .cart-layout .cart-order-promo-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #e6f5fb;
    color: var(--cart-blue);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    border-radius: 8px; }
  .cart-layout .cart-order-promo-tag__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 18px;
    height: 18px; }
    .cart-layout .cart-order-promo-tag__icon svg {
      display: block;
      width: 18px;
      height: 18px; }
  .cart-layout .cart-order-promo-tag__text {
    flex: 1;
    min-width: 0;
    word-break: break-word; }
  .cart-layout .cart-item__body {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex: 0 0 auto;
    width: calc(100% - 84px);
    flex-wrap: wrap; }
  .cart-layout .cart-item--ajax .cart-item__product {
    align-items: flex-start !important; }
  .cart-layout .cart-item-promo-banners {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%; }
  .cart-layout .cart-item-promo-banner {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background: #e6f5fb;
    color: var(--cart-blue);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left; }
    .cart-layout .cart-item-promo-banner.is-clickable {
      cursor: pointer;
      transition: background 0.2s;
      background: #f3f3f4; }
      .cart-layout .cart-item-promo-banner.is-clickable:hover {
        background: #d6eef8; }
      .cart-layout .cart-item-promo-banner.is-clickable .cart-item-promo-banner__fake_btn {
        background: var(--cart-blue);
        color: var(--cart-white);
        border-radius: 6px;
        padding: 4px 10px; }
  .cart-layout .cart-item-promo-banner__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 16px;
    height: 16px; }
    .cart-layout .cart-item-promo-banner__icon svg {
      display: block;
      width: 16px;
      height: 16px; }
  .cart-layout .cart-item-promo-banner__text {
    flex: 1;
    min-width: 0;
    word-break: break-word; }
  .cart-layout .cart-item-promo-banner__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto; }
  .cart-layout .cart-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 12px 16px;
    border-bottom: 0.5px solid var(--cart-stroke);
    margin-bottom: 24px; }
    .cart-layout .cart-item:last-child {
      border-bottom: none; }
  .cart-layout .cart-item__product {
    gap: 12px;
    flex: 0 0 auto;
    width: calc(100% - 28px);
    display: flex;
    justify-content: space-between; }
    @media (max-width: 767px) {
      .cart-layout .cart-item__product {
        display: flex !important;
        align-items: flex-start;
        flex: 1; } }
    @media (max-width: 767px) {
      .cart-layout .cart-item__product {
        width: calc(100% - 28px) !important; } }
  .cart-layout .cart-item:not(.cart-item--gift):not(.cart-item--has-gift) .cart-item__product {
    align-items: center; }
  .cart-layout .cart-item--has-gift .cart-item__product {
    align-items: flex-start;
    flex-wrap: wrap; }
  .cart-layout .cart-item--has-gift .cart-item__gift:not(.cart-item__gift--order) {
    flex: 1 1 100%;
    width: 100%;
    box-sizing: border-box; }
  @media (min-width: 1200px) {
    .cart-layout .cart-item--has-gift .cart-item__gift:not(.cart-item__gift--order) {
      width: calc(100% - 84px);
      margin-left: 84px; } }
  .cart-layout .cart-item__thumb {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    border-radius: 3.5px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.04); }
    .cart-layout .cart-item__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
  .cart-layout .cart-item__with-gift {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    flex: 1;
    min-width: 0; }
  .cart-layout .cart-item__main {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex: 0 0 auto;
    width: calc(100% - 96px); }
  .cart-layout .cart-item__info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0; }
  .cart-layout .cart-item__name {
    display: block;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--cart-text-body);
    text-decoration: none;
    margin: 0 0 6px;
    overflow-wrap: anywhere; }
    .cart-layout .cart-item__name:hover {
      color: var(--cart-blue); }
  .cart-layout .cart-item__select {
    position: relative;
    display: inline-flex;
    max-width: 100%; }
    @media (max-width: 767px) {
      .cart-layout .cart-item__select {
        width: fit-content !important;
        max-width: 100% !important; } }
  .cart-layout .cart-variant-select {
    position: relative;
    display: inline-flex;
    max-width: 100%; }
    .cart-layout .cart-variant-select.is-open {
      z-index: 1; }
      .cart-layout .cart-variant-select.is-open .cart-variant-select__trigger {
        background: var(--cart-white); }
      .cart-layout .cart-variant-select.is-open .cart-variant-select__arrow svg {
        transform: rotate(180deg); }
    .cart-layout .cart-variant-select__trigger {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 6px 34px 6px 8px;
      border: none;
      border-radius: 4px;
      background: var(--cart-chip-bg);
      font-family: inherit;
      font-size: 15px;
      font-weight: 500;
      line-height: 1.4;
      color: var(--cart-text-body);
      cursor: pointer;
      max-width: 100%;
      position: relative; }
      .cart-layout .cart-variant-select__trigger:active, .cart-layout .cart-variant-select__trigger:focus, .cart-layout .cart-variant-select__trigger:focus-visible {
        outline: none; }
    .cart-layout .cart-variant-select__label {
      text-align: left; }
    .cart-layout .cart-variant-select__arrow {
      display: inline-flex;
      flex: 0 0 12px;
      align-items: center;
      justify-content: center;
      position: absolute;
      right: 0;
      top: 6px;
      width: 34px;
      height: 22px; }
      .cart-layout .cart-variant-select__arrow svg {
        display: block;
        transition: transform 0.2s; }
    .cart-layout .cart-variant-select__panel {
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      z-index: 30;
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 100%;
      min-width: 260px;
      max-width: calc(100vw - 32px);
      padding: 12px;
      border: 1px solid var(--cart-stroke);
      border-radius: 8px;
      background: var(--cart-white);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08); }
      .cart-layout .cart-variant-select__panel[hidden] {
        display: none; }
    .cart-layout .cart-variant-select__option {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px;
      border-radius: 8px;
      cursor: pointer;
      margin: 0; }
      .cart-layout .cart-variant-select__option.is-active .cart-variant-select__radio, .cart-layout .cart-variant-select__option:has(input:checked) .cart-variant-select__radio {
        border-color: var(--cart-blue);
        border-width: 1.5px; }
        .cart-layout .cart-variant-select__option.is-active .cart-variant-select__radio::after, .cart-layout .cart-variant-select__option:has(input:checked) .cart-variant-select__radio::after {
          opacity: 1;
          transform: scale(1); }
    .cart-layout .cart-variant-select__option-main {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 1;
      min-width: 0; }
    .cart-layout .cart-variant-select__input {
      position: absolute;
      opacity: 0;
      pointer-events: none; }
    .cart-layout .cart-variant-select__radio {
      flex: 0 0 20px;
      width: 20px;
      height: 20px;
      border: 1.25px solid var(--cart-stroke);
      border-radius: 50%;
      position: relative;
      background: var(--cart-white); }
      .cart-layout .cart-variant-select__radio::after {
        content: '';
        position: absolute;
        inset: 4px;
        border-radius: 50%;
        background: var(--cart-blue);
        opacity: 0;
        transform: scale(0.5);
        transition: all 0.2s; }
    .cart-layout .cart-variant-select__name {
      flex: 1;
      min-width: 0;
      font-size: 15px;
      font-weight: 400;
      line-height: 1.4;
      color: var(--cart-text); }
    .cart-layout .cart-variant-select__price {
      flex: 0 0 auto;
      font-size: 15px;
      font-weight: 500;
      line-height: 1.4;
      color: var(--cart-blue);
      white-space: nowrap; }
    .cart-layout .cart-variant-select__actions {
      display: flex;
      align-items: stretch;
      gap: 12px; }
    .cart-layout .cart-variant-select__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 12px 0;
      border-radius: 8px;
      font-family: inherit;
      font-size: 16px;
      line-height: 1.4;
      cursor: pointer;
      white-space: nowrap; }
      .cart-layout .cart-variant-select__btn--primary {
        flex: 1 1 auto;
        border: none;
        background: var(--cart-blue);
        color: var(--cart-white);
        font-weight: 700; }
      .cart-layout .cart-variant-select__btn--outline {
        flex: 1;
        border: 1px solid #004494;
        background: var(--cart-white);
        color: #004494;
        font-weight: 500; }
      .cart-layout .cart-variant-select__btn:active, .cart-layout .cart-variant-select__btn:focus, .cart-layout .cart-variant-select__btn:focus-visible {
        outline: none; }
  .cart-layout .cart-item__aside {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
    flex: 0 0 auto;
    min-width: 0; }
  .cart-layout .cart-item__price {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 4px;
    flex: 0 0 auto; }
  .cart-layout .cart-item__price-sale {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--cart-blue);
    white-space: nowrap; }
  .cart-layout .cart-item__price-compare {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--cart-text-compare);
    text-decoration: line-through;
    white-space: nowrap; }
  .cart-layout .cart-item__actions-col {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    flex: 0 0 auto;
    min-width: 0; }
  .cart-layout .cart-qty {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    width: 100%;
    height: 40px;
    border: 1px solid var(--cart-stroke);
    border-radius: 8px;
    overflow: hidden;
    background: var(--cart-white); }
  .cart-layout .cart-qty__btn {
    flex: 0 0 40px;
    border: none;
    background: var(--cart-white);
    color: var(--cart-text-muted);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0; }
    .cart-layout .cart-qty__btn:first-child {
      border-right: 1px solid var(--cart-stroke); }
    .cart-layout .cart-qty__btn:last-child {
      border-left: 1px solid var(--cart-stroke); }
  .cart-layout .cart-qty__value {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    outline: none;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    color: var(--cart-text-muted);
    -moz-appearance: textfield;
    appearance: textfield; }
    .cart-layout .cart-qty__value::-webkit-outer-spin-button, .cart-layout .cart-qty__value::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0; }
  .cart-layout .cart-item__remove {
    border: none;
    background: none;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--cart-blue-dark);
    cursor: pointer;
    white-space: nowrap; }
  .cart-layout .cart-item--order-gift .cart-check--placeholder {
    visibility: hidden;
    pointer-events: none; }
  .cart-layout .cart-item--order-gift .cart-item__name--gift {
    margin: 0 0 6px;
    color: var(--cart-text-body); }
  .cart-layout .cart-item--order-gift .cart-item__gift-meta--order {
    margin-top: 0; }
  .cart-layout .cart-item--order-gift .cart-item__aside--gift {
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center; }
  .cart-layout .cart-item--order-gift .cart-item__actions-col--gift {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
  .cart-layout .cart-item--order-gift .cart-order-gift-qty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--cart-stroke);
    border-radius: 8px;
    background: var(--cart-white); }
  .cart-layout .cart-item--order-gift .cart-order-gift-qty__value {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--cart-text-body);
    text-align: center; }
  .cart-layout .cart-item__gift {
    padding: 8px 12px;
    background: var(--cart-chip-bg);
    border-radius: 8px; }
  .cart-layout .cart-item__gift-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%; }
  .cart-layout .cart-item__gift-change {
    flex-shrink: 0;
    margin-left: auto;
    border: none;
    background: none;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--cart-blue-dark);
    cursor: pointer;
    white-space: nowrap; }
  .cart-layout .cart-order-gifts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 12px 12px; }
  .cart-layout .cart-item__gift--order {
    margin: 0; }
  .cart-layout .cart-item__gift-thumb {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 2.4px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.04); }
    .cart-layout .cart-item__gift-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
  .cart-layout .cart-item__gift-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    flex: 1;
    min-width: 0; }
  .cart-layout .cart-item__gift-name {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--cart-text); }
    .cart-layout .cart-item__gift-name .gift_qty {
      font-size: 13px;
      color: #929292; }
  .cart-layout .cart-item__gift-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap; }
  .cart-layout .cart-item__gift-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--cart-blue); }
    .cart-layout .cart-item__gift-tag svg {
      flex: 0 0 20px;
      width: 20px;
      height: 18px; }
  .cart-layout .cart-item__gift-free {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--cart-green); }
  .cart-layout .cart_right {
    position: sticky;
    top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px; }
  .cart-layout .cart-summary-card {
    background: var(--cart-white);
    border-radius: 12px;
    box-shadow: var(--cart-shadow);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px; }
  .cart-layout .cart-summary-card__title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--cart-text); }
  .cart-layout .cart-summary-card__rows {
    display: flex;
    flex-direction: column;
    border-bottom: 0.5px solid var(--cart-stroke); }
  .cart-layout .cart-summary-card__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.3; }
    .cart-layout .cart-summary-card__row span:first-child {
      color: var(--cart-text-light); }
    .cart-layout .cart-summary-card__row span:last-child {
      color: var(--cart-text-body); }
  .cart-layout .cart-summary-card__total {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px; }
  .cart-layout .cart-summary-card__total-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--cart-text-body); }
  .cart-layout .cart-summary-card__total-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--cart-blue); }
  .cart-layout .cart-summary-card__btn {
    width: 100%;
    border: none;
    border-radius: 8px;
    background: var(--cart-blue);
    color: var(--cart-white);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    padding: 14px 20px;
    cursor: pointer;
    transition: background 0.2s; }
    .cart-layout .cart-summary-card__btn:hover {
      background: #004494; }
    .cart-layout .cart-summary-card__btn.disabled {
      opacity: 0.5;
      pointer-events: none;
      cursor: not-allowed; }
  .cart-layout .cart-checkout-limit-alert {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #e53935;
    text-align: center; }
    .cart-layout .cart-checkout-limit-alert--mobile {
      text-align: left;
      padding: 10px 12px;
      background: #fff5f5;
      border-radius: 8px; }
  .cart-layout .cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 48px 16px; }
    .cart-layout .cart-empty__img {
      width: 214px;
      height: 214px;
      object-fit: contain; }
    .cart-layout .cart-empty__title {
      margin: 0;
      font-weight: 600;
      font-size: 18px;
      line-height: 140%;
      color: #111111; }
    .cart-layout .cart-empty__desc {
      margin: 0;
      font-weight: 400;
      font-size: 14px;
      line-height: 100%;
      color: #929292; }
    .cart-layout .cart-empty__btn {
      width: 290px;
      margin-top: 8px;
      border-radius: 8px;
      background: var(--cart-blue);
      color: var(--cart-white);
      font-size: 16px;
      font-weight: 600;
      line-height: 1.3;
      text-align: center;
      padding: 14px 20px;
      transition: background 0.2s; }
      .cart-layout .cart-empty__btn:hover {
        color: var(--cart-white);
        background: #004494; }
  @media (min-width: 992px) {
    .cart-layout {
      padding-bottom: 48px; }
      .cart-layout .cart-title {
        font-size: 40px; } }
  @media (max-width: 1199px) {
    .cart-layout .cart-item__product {
      display: grid;
      grid-template-columns: 72px minmax(0, 1fr);
      column-gap: 12px;
      row-gap: 12px;
      align-items: start;
      grid-template-areas: 'thumb name' 'thumb price' 'select select' 'actions actions' 'promo promo' 'gift gift'; }
    .cart-layout .cart-item__body {
      display: contents; }
    .cart-layout .cart-item__thumb {
      grid-area: thumb;
      align-self: center; }
    .cart-layout .cart-item__with-gift,
    .cart-layout .cart-item__main,
    .cart-layout .cart-item__info,
    .cart-layout .cart-item__aside {
      display: contents; }
    .cart-layout .cart-item__name {
      grid-area: name;
      margin-bottom: 0; }
    .cart-layout .cart-item__select,
    .cart-layout .cart-variant-select {
      grid-area: select;
      display: flex;
      width: 100%;
      min-width: 0; }
    .cart-layout .cart-variant-select__trigger {
      justify-content: space-between;
      width: 100%; }
    .cart-layout .cart-item__price {
      grid-area: price;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      gap: 8px; }
    .cart-layout .cart-item__actions-col {
      grid-area: actions;
      width: 100%;
      justify-self: stretch; }
    .cart-layout .cart-item-promo-banners {
      grid-area: promo;
      width: 100%; }
    .cart-layout .cart-item__gift {
      grid-area: gift; } }
  .cart-layout .cart-mobile-bar {
    display: none; }
  @media (max-width: 991px) {
    .cart-layout {
      padding-bottom: 150px; }
      .cart-layout.cart-layout--limit-alert {
        padding-bottom: 210px; }
      .cart-layout .cart-toolbar {
        display: none; }
      .cart-layout .cart-main {
        grid-template-columns: 1fr; }
      .cart-layout .cart_right--desktop {
        display: none; }
      .cart-layout .cart-mobile-bar {
        display: flex;
        flex-direction: column;
        gap: 12px;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10050;
        padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
        background: #fff;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08); }
      .cart-layout .cart-mobile-bar__voucher {
        margin: 0; }
      .cart-layout .cart-mobile-bar__action {
        display: flex;
        align-items: center;
        gap: 8px; }
      .cart-layout .cart-mobile-bar__check {
        flex-shrink: 0; }
        .cart-layout .cart-mobile-bar__check .cart-check__label {
          font-size: 14px; }
      .cart-layout .cart-mobile-bar__price {
        flex: 1;
        min-width: 0;
        font-size: 18px;
        font-weight: 600;
        color: var(--cart-blue);
        text-align: right;
        white-space: nowrap; }
      .cart-layout .cart-mobile-bar__btn {
        flex-shrink: 0;
        border: none;
        border-radius: 8px;
        background: var(--cart-blue);
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.3;
        padding: 12px;
        text-align: center;
        text-decoration: none;
        white-space: nowrap;
        cursor: pointer; }
        .cart-layout .cart-mobile-bar__btn.disabled {
          opacity: 0.5;
          pointer-events: none;
          cursor: not-allowed; }
      .cart-layout .cart-checkout-limit-alert--mobile {
        display: none; }
        .cart-layout .cart-checkout-limit-alert--mobile:not(.d-none) {
          display: block; }
      .cart-layout .cart-item__actions-col {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px; }
      .cart-layout .cart-qty {
        width: fit-content;
        flex: 0 1 auto; }
      .cart-layout .cart-item__remove {
        align-self: center; } }
  @media (max-width: 767px) {
    .cart-layout .cart-main {
      display: block; } }

.cart-remove-confirm {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: 'Inter', sans-serif; }
  .cart-remove-confirm.is-open {
    display: flex; }
  .cart-remove-confirm__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.48); }
  .cart-remove-confirm__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 340px;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18); }
  .cart-remove-confirm__close {
    position: absolute;
    top: -12px;
    right: -12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #555e67;
    cursor: pointer; }
    .cart-remove-confirm__close:active, .cart-remove-confirm__close:focus, .cart-remove-confirm__close:focus-visible {
      outline: none; }
  .cart-remove-confirm__title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #272727; }
  .cart-remove-confirm__actions {
    display: flex;
    align-items: stretch;
    gap: 16px; }
  .cart-remove-confirm__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 40px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
    white-space: nowrap; }
    .cart-remove-confirm__btn--primary {
      flex: 1;
      border: none;
      background: #035eb7;
      color: #fff;
      font-weight: 700; }
    .cart-remove-confirm__btn--outline {
      border: 1px solid #004494;
      background: #fff;
      color: #004494;
      font-weight: 500; }
    .cart-remove-confirm__btn:active, .cart-remove-confirm__btn:focus, .cart-remove-confirm__btn:focus-visible {
      outline: none; }
  @media (max-width: 575px) {
    .cart-remove-confirm__actions {
      flex-direction: column; }
    .cart-remove-confirm__btn {
      width: 100%; } }

body.is-cart-remove-modal-open {
  overflow: hidden; }

.cart-remove-success {
  position: fixed;
  top: 10%;
  left: 50%;
  z-index: 10070;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100vw - 32px);
  padding: 12px 16px;
  border-radius: 8px;
  background: #aadea6;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  font-family: 'Inter', sans-serif;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none; }
  .cart-remove-success.is-open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto; }
  .cart-remove-success__icon {
    display: inline-flex;
    flex: 0 0 18px;
    align-items: center;
    justify-content: center; }
    .cart-remove-success__icon svg {
      display: block;
      width: 18px;
      height: 18px; }
  .cart-remove-success__text {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #272727; }

.checkout-address-modal {
  --cart-blue: #035eb7;
  --cart-blue-dark: #003d79;
  --cart-blue-light: #137ce3;
  --cart-text: #272727;
  --cart-text-body: #414141;
  --cart-text-muted: #727272;
  --cart-text-light: #929292;
  --cart-stroke: rgba(197, 198, 204, 0.6);
  --cart-green: #4aaa42;
  --cart-white: #fff;
  position: fixed;
  inset: 0;
  z-index: 10080;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: 'Inter', sans-serif; }
  .checkout-address-modal.is-open {
    display: flex; }
  .checkout-address-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.48); }
  .checkout-address-modal__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    overflow: visible;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column; }
    .checkout-address-modal__panel.is-form-step {
      max-width: 540px;
      min-height: 602px;
      overflow: visible; }
  .checkout-address-modal__step {
    display: none;
    flex-direction: column;
    min-height: 0;
    flex: 1; }
    .checkout-address-modal__step.is-active {
      display: flex; }
    .checkout-address-modal__step--form {
      position: relative;
      min-height: 602px;
      overflow: visible;
      border-radius: 12px;
      background: #fff; }
  .checkout-address-modal__head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px 16px;
    border-bottom: 0.5px solid var(--cart-stroke);
    flex-shrink: 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04); }
    .checkout-address-modal__head--form {
      min-height: 68px;
      align-items: center;
      padding: 12px 48px 16px 20px;
      border-bottom: none;
      box-shadow: none; }
  .checkout-address-modal__back {
    display: inline-flex;
    align-items: center;
    width: 25px;
    height: 32px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    flex-shrink: 0; }
  .checkout-address-modal__title {
    flex: 1;
    min-width: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--cart-text-body); }
  .checkout-address-modal__add {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--cart-blue);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0; }
    .checkout-address-modal__add svg {
      display: block;
      flex-shrink: 0;
      width: 16px;
      height: 16px; }
  .checkout-address-modal__close-fab {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 5;
    display: none;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #555e67;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12); }
    .checkout-address-modal__close-fab svg {
      display: block;
      flex-shrink: 0; }
  .checkout-address-modal__panel.is-form-step .checkout-address-modal__close-fab--form {
    display: inline-flex; }
  .checkout-address-modal__body {
    flex: 1;
    min-height: 0;
    overflow-y: auto; }
  .checkout-address-modal__step--list .checkout-address-modal__body {
    padding: 0 0 24px;
    max-height: 516px; }
  .checkout-address-modal__list {
    display: flex;
    flex-direction: column;
    gap: 12px; }
  .checkout-address-modal__footer {
    padding: 0 12px 12px; }
    .checkout-address-modal__footer button.btn_final_address {
      width: 100%;
      border: none;
      border-radius: 8px;
      background: var(--cart-blue);
      color: var(--cart-white);
      font-size: 16px;
      font-weight: 600;
      line-height: 1.3;
      padding: 14px 20px;
      cursor: pointer;
      transition: background 0.2s; }

.checkout-address-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px;
  background: #fff;
  cursor: pointer;
  margin: 0; }
  .checkout-address-item__input {
    position: absolute;
    opacity: 0;
    pointer-events: none; }
  .checkout-address-item__radio {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 1.25px solid var(--cart-stroke);
    border-radius: 50%;
    position: relative;
    background: #fff; }
    .checkout-address-item__radio::after {
      content: '';
      position: absolute;
      inset: 4px;
      border-radius: 50%;
      background: var(--cart-blue);
      opacity: 0;
      transform: scale(0.5);
      transition: opacity 0.2s, transform 0.2s; }
  .checkout-address-item__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .checkout-address-item__badge {
    align-self: flex-start;
    padding: 4px 8px; }
  .checkout-address-item__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0; }
  .checkout-address-item__meta {
    display: flex;
    flex-direction: column;
    gap: 4px; }
  .checkout-address-item__name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #111111; }
  .checkout-address-item__phone {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #414141; }
  .checkout-address-item__text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #929292; }
  .checkout-address-item__actions {
    display: flex;
    align-items: center;
    gap: 16px; }
  .checkout-address-item__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    cursor: pointer; }
    .checkout-address-item__action svg {
      flex-shrink: 0; }
    .checkout-address-item__action--edit {
      color: var(--cart-blue); }
    .checkout-address-item__action--delete {
      color: #ff0202; }
  .checkout-address-item:has(input:checked) .checkout-address-item__radio {
    border-color: var(--cart-blue);
    border-width: 1.5px; }
    .checkout-address-item:has(input:checked) .checkout-address-item__radio::after {
      opacity: 1;
      transform: scale(1); }

.checkout-addr-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0; }
  .checkout-addr-form__scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 24px 12px 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--cart-blue) transparent; }
    .checkout-addr-form__scroll::-webkit-scrollbar {
      width: 4px; }
    .checkout-addr-form__scroll::-webkit-scrollbar-track {
      background: transparent; }
    .checkout-addr-form__scroll::-webkit-scrollbar-thumb {
      background: var(--cart-blue);
      border-radius: 4px; }
  .checkout-addr-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .checkout-addr-form__alert {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #e53935; }
    .checkout-addr-form__alert svg {
      flex-shrink: 0; }
    .checkout-addr-form__alert[hidden] {
      display: none; }
  .checkout-addr-form__box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-height: 72px;
    padding: 8px 20px;
    border: 0.5px solid var(--cart-stroke);
    border-radius: 8px;
    background: #fff;
    margin: 0;
    cursor: text; }
    .checkout-addr-form__box--detail .checkout-addr-form__label {
      display: none; }
    .checkout-addr-form__box--detail.is-filled .checkout-addr-form__label {
      display: block; }
  .checkout-addr-form__label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4; }
    .checkout-addr-form__label--blue {
      color: var(--cart-blue); }
  .checkout-addr-form__input {
    width: 100%;
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.4;
    color: #414141;
    outline: none; }
    .checkout-addr-form__input::placeholder {
      color: #c5c6cc;
      font-size: 14px; }
    .checkout-addr-form__input--phone {
      font-size: 15px; }
      .checkout-addr-form__input--phone::placeholder {
        font-size: 15px;
        color: #c5c6cc; }
  .checkout-addr-form__phone-row {
    display: flex;
    align-items: center;
    gap: 8px; }
  .checkout-addr-form__flag {
    width: 20px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .checkout-addr-form__prefix {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: #414141;
    flex-shrink: 0; }
  .checkout-addr-form__divider {
    width: 1px;
    height: 16px;
    background: var(--cart-stroke);
    flex-shrink: 0; }
  .checkout-addr-form__field {
    position: relative;
    width: 100%; }
    .checkout-addr-form__field--select::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 20px;
      width: 18px;
      height: 18px;
      transform: translateY(-50%);
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 7.125L9 11.625L13.5 7.125' stroke='%23727272' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center; }
  .checkout-addr-form__native-select {
    display: block;
    width: 100%;
    height: 72px;
    padding: 8px 44px 8px 20px;
    border: 1px solid var(--cart-stroke);
    border-radius: 8px;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    color: #414141;
    cursor: pointer;
    appearance: none;
    outline: none; }
    .checkout-addr-form__native-select:invalid, .checkout-addr-form__native-select:disabled {
      color: #c5c6cc; }
    .checkout-addr-form__native-select:focus {
      border-color: var(--cart-blue); }
    .checkout-addr-form__native-select option {
      color: #414141; }
    .checkout-addr-form__native-select option[disabled] {
      color: #c5c6cc; }
  .checkout-addr-form__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer; }
  .checkout-addr-form__toggle-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #272727; }
  .checkout-addr-form__toggle-input {
    position: absolute;
    opacity: 0;
    pointer-events: none; }
  .checkout-addr-form__toggle-track {
    position: relative;
    width: 44px;
    height: 24px;
    border-radius: 200px;
    background: #c5c6cc;
    transition: background 0.2s;
    flex-shrink: 0; }
    .checkout-addr-form__toggle-track::after {
      content: '';
      position: absolute;
      top: 2px;
      left: 2px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #fff;
      transition: transform 0.2s; }
  .checkout-addr-form__toggle-input:checked + .checkout-addr-form__toggle-track {
    background: #4a9fe8; }
    .checkout-addr-form__toggle-input:checked + .checkout-addr-form__toggle-track::after {
      transform: translateX(20px); }
  .checkout-addr-form__foot {
    flex-shrink: 0;
    padding: 16px; }
  .checkout-addr-form__submit {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 8px;
    background: var(--blue-500);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    cursor: pointer; }

body.is-checkout-address-modal-open,
body.is-checkout-store-modal-open,
body.is-checkout-vat-modal-open,
body.is-checkout-coupon-sidebar-open,
body.is-checkout-coupon-detail-open {
  overflow: hidden; }

.checkout-coupon-detail {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10100;
  display: none;
  font-family: var(--skin-header-font); }
  .checkout-coupon-detail.is-open {
    display: block; }
  .checkout-coupon-detail__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(10, 10, 10, 0.48); }
  .checkout-coupon-detail__panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 85vh;
    background: #fff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden; }
  .checkout-coupon-detail__head {
    position: relative;
    flex-shrink: 0;
    padding: 16px 44px 16px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center; }
  .checkout-coupon-detail__title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #252a2b; }
  .checkout-coupon-detail__close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #555e67;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12); }
  .checkout-coupon-detail__close svg {
    display: block; }
  .checkout-coupon-detail__body {
    flex: 1;
    min-height: 0;
    padding: 16px;
    overflow-y: auto; }
  .checkout-coupon-detail__summary {
    margin-bottom: 16px;
    text-align: center; }
  .checkout-coupon-detail__name {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #252a2b;
    word-break: break-word; }
  .checkout-coupon-detail__expiry {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 40px;
    background: #e6f5fb;
    font-size: 13px;
    line-height: 1.4;
    color: #272727;
    text-transform: uppercase; }
  .checkout-coupon-detail__expiry[hidden] {
    display: none; }
  .checkout-coupon-detail__list {
    margin: 0;
    padding: 0 0 0 21px;
    list-style: disc;
    font-size: 14px;
    line-height: 1.4;
    color: #929292; }
  .checkout-coupon-detail__footer {
    flex-shrink: 0;
    padding: 20px 16px 40px;
    background: #fff;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.06); }
  .checkout-coupon-detail__apply {
    display: block;
    width: 100%;
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    background: var(--cart-blue, #035eb7);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    cursor: pointer; }
  .checkout-coupon-detail__apply[hidden] {
    display: none; }
  .checkout-coupon-detail__apply:disabled {
    opacity: 0.5;
    cursor: not-allowed; }
  .checkout-coupon-detail__apply:hover {
    background: var(--blue-600, #024a92); }

@media (min-width: 768px) {
  .checkout-coupon-detail.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px; }
  .checkout-coupon-detail__panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 420px;
    max-height: 80vh;
    border-radius: 12px;
    overflow: visible; }
  .checkout-coupon-detail__head {
    padding: 24px 48px 16px 24px;
    border-bottom: none; }
  .checkout-coupon-detail__close {
    top: -12px;
    right: -12px; }
  .checkout-coupon-detail__body {
    padding: 0 24px 8px; }
  .checkout-coupon-detail__footer {
    padding: 16px 24px 24px;
    box-shadow: none;
    border-radius: 0 0 24px 24px; } }

.checkout-vat-modal {
  position: fixed;
  inset: 0;
  z-index: 10080;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: 'Inter', sans-serif; }
  .checkout-vat-modal.is-open {
    display: flex; }
  .checkout-vat-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.48); }
  .checkout-vat-modal__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 540px;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    overflow: visible;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column; }
  .checkout-vat-modal__head {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 12px 48px 16px 20px;
    flex-shrink: 0; }
  .checkout-vat-modal__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    flex-shrink: 0; }
  .checkout-vat-modal__title {
    flex: 1;
    min-width: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #111; }
  .checkout-vat-modal__close-fab {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #555e67;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12); }
    .checkout-vat-modal__close-fab svg {
      display: block;
      flex-shrink: 0; }

.checkout-vat-tabs {
  display: flex;
  gap: 6px;
  padding: 2px;
  border-radius: 8px;
  background: #f3f3f4; }
  .checkout-vat-tabs__btn {
    flex: 1;
    min-width: 0;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    background: #eff0f0;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #929292;
    cursor: pointer;
    transition: background 0.2s, color 0.2s; }
    .checkout-vat-tabs__btn.is-active {
      background: #035eb7;
      color: #fff; }

.checkout-vat-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0; }
  .checkout-vat-form__scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 0 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px; }
  .checkout-vat-form__panel {
    display: none;
    flex-direction: column;
    gap: 16px; }
    .checkout-vat-form__panel.is-active {
      display: flex; }
  .checkout-vat-form__group {
    display: flex;
    flex-direction: column;
    gap: 0; }
  .checkout-vat-form__error {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 16px 0px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #ff0202; }
    .checkout-vat-form__error.d-none {
      display: none; }
    .checkout-vat-form__error svg {
      flex-shrink: 0;
      width: 14px;
      height: 14px;
      margin-top: 3px; }
  .checkout-vat-form__foot {
    flex-shrink: 0;
    padding: 16px; }
  .checkout-vat-form__submit {
    width: 100%;
    min-height: 46px;
    border: none;
    border-radius: 8px;
    background: var(--blue-500);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    cursor: pointer; }

.checkout-vat-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-height: 72px;
  padding: 8px 20px;
  border: 1px solid rgba(197, 198, 204, 0.6);
  border-radius: 8px;
  background: #fff;
  margin: 0;
  cursor: text; }
  .checkout-vat-field__label {
    display: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #003d79; }
  .checkout-vat-field__input {
    width: 100%;
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #414141;
    outline: none; }
    .checkout-vat-field__input::placeholder {
      color: #b5b5b5;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.4; }
  .checkout-vat-field.is-filled .checkout-vat-field__label, .checkout-vat-field:focus-within .checkout-vat-field__label {
    display: block; }
  .checkout-vat-field.is-filled .checkout-vat-field__input::placeholder, .checkout-vat-field:focus-within .checkout-vat-field__input::placeholder {
    color: transparent; }

.checkout-coupon-sidebar {
  position: fixed;
  inset: 0;
  z-index: 10090;
  display: none;
  font-family: var(--skin-header-font); }
  .checkout-coupon-sidebar.is-open {
    display: block; }
    .checkout-coupon-sidebar.is-open .checkout-coupon-sidebar__panel {
      transform: translateX(0); }
  .checkout-coupon-sidebar__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.48); }
  .checkout-coupon-sidebar__panel {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 409px;
    height: 100%;
    padding: 24px 24px 12px;
    background: #fff;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12); }
    @media (max-width: 767px) {
      .checkout-coupon-sidebar__panel {
        max-width: 100%; } }
  .checkout-coupon-sidebar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
    padding: 8px 0; }
  .checkout-coupon-sidebar__title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #272727; }
  .checkout-coupon-sidebar__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 80px;
    background: #555e67;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12); }
    .checkout-coupon-sidebar__close svg {
      display: block; }
  .checkout-coupon-sidebar__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
    flex: 1; }
  .checkout-coupon-sidebar__search {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: #e8e8e8;
    flex-shrink: 0; }
  .checkout-coupon-sidebar__search-icon {
    flex-shrink: 0; }
  .checkout-coupon-sidebar__search-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #414141;
    outline: none; }
    .checkout-coupon-sidebar__search-input::placeholder {
      color: #929292; }
  .checkout-coupon-sidebar__search-apply {
    flex-shrink: 0;
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--skin-primary-color, #003d79);
    cursor: pointer;
    white-space: nowrap; }
  .checkout-coupon-sidebar__tabs {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
    flex-shrink: 0; }
  .checkout-coupon-sidebar__tab {
    padding: 10px 0;
    border: none;
    border-bottom: 3px solid transparent;
    background: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(65, 65, 65, 0.6);
    cursor: pointer; }
    .checkout-coupon-sidebar__tab.is-active {
      color: var(--skin-primary-color, #003d79);
      border-bottom-color: #035eb7; }
  .checkout-coupon-sidebar__list-wrap {
    min-height: 0;
    flex: 1;
    overflow: hidden; }
  .checkout-coupon-sidebar__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    overflow-y: auto;
    padding-right: 2px; }
    .checkout-coupon-sidebar__list::-webkit-scrollbar {
      width: 4px; }
    .checkout-coupon-sidebar__list::-webkit-scrollbar-thumb {
      border-radius: 4px;
      background: #c5c6cc; }
    .checkout-coupon-sidebar__list-footer {
      padding-top: 12px; }
      .checkout-coupon-sidebar__list-footer button.checkout-coupon-sidebar__button {
        width: 100%;
        border: none;
        border-radius: 8px;
        background: var(--blue-500);
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.3;
        padding: 14px 20px;
        cursor: pointer;
        transition: background 0.2s; }
        .checkout-coupon-sidebar__list-footer button.checkout-coupon-sidebar__button:hover {
          background: var(--blue-600); }
  .checkout-coupon-sidebar__empty {
    padding: 24px 0;
    font-size: 15px;
    line-height: 1.4;
    color: #929292;
    text-align: center; }

.checkout-coupon-card {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 104px;
  border-radius: 8px;
  overflow: hidden;
  background: #eef7fc; }
  .checkout-coupon-card__brand {
    position: relative;
    flex: 0 0 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: #003d79;*/
    background: url(https://cdn.hstatic.net/files/200001144887/file/bg_coupon_left.png) no-repeat;
    background-size: 100%; }
    .checkout-coupon-card__brand img {
      width: 77%;
      height: auto;
      object-fit: contain; }
  .checkout-coupon-card__main {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 12px 14px 16px;
    position: relative; }
    .checkout-coupon-card__main::after {
      content: '';
      position: absolute;
      top: 0;
      right: -4px;
      bottom: 0;
      width: 8px;
      background: radial-gradient(circle at 100% 8px, transparent 4px, #eef7fc 4px) center/8px 16px repeat-y; }
  .checkout-coupon-card__content {
    flex: 1;
    min-width: 0; }
  .checkout-coupon-card__title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--skin-primary-color, #003d79);
    word-break: break-word; }
  .checkout-coupon-card__expiry {
    margin: 0 0 4px;
    font-size: 13px;
    line-height: 1.4;
    color: #727272; }
  .checkout-coupon-card__rules {
    display: inline-block;
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--skin-primary-color, #003d79);
    text-decoration: underline;
    cursor: pointer; }
  .checkout-coupon-card__check {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 1px solid #c5c6cc;
    border-radius: 4px;
    background: #fff;
    cursor: pointer; }
    .checkout-coupon-card__check svg {
      display: none; }
  .checkout-coupon-card.is-pending .checkout-coupon-card__check, .checkout-coupon-card.is-applied .checkout-coupon-card__check {
    border-color: var(--skin-primary-color, #003d79);
    background: var(--skin-primary-color, #003d79); }
    .checkout-coupon-card.is-pending .checkout-coupon-card__check svg, .checkout-coupon-card.is-applied .checkout-coupon-card__check svg {
      display: block; }
  .checkout-coupon-card.is-disabled {
    opacity: 0.5;
    pointer-events: none; }
    .checkout-coupon-card.is-disabled .checkout-coupon-card__title,
    .checkout-coupon-card.is-disabled .checkout-coupon-card__rules {
      color: #414141; }
    .checkout-coupon-card.is-disabled .checkout-coupon-card__rules {
      pointer-events: auto; }
    .checkout-coupon-card.is-disabled .checkout-coupon-card__brand {
      background: #727272; }
  .checkout-coupon-card:not(.is-disabled) {
    cursor: pointer; }

.checkout-store-pick {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  padding: 12px;
  border: 0.5px solid var(--cart-stroke);
  border-radius: 8px;
  background: #fff; }
  .checkout-store-pick[hidden] {
    display: none; }
  .checkout-store-pick__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px; }
  .checkout-store-pick__label {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #111111; }
    .checkout-store-pick__label span {
      color: #FF0202; }
  .checkout-store-pick__change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--cart-blue);
    cursor: pointer;
    white-space: nowrap; }

.checkout-store-display {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 8px;
  background: #e6f3f9; }
  .checkout-store-display__top {
    display: flex;
    flex-direction: column;
    gap: 4px; }
  .checkout-store-display__badge {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--cart-green); }
    .checkout-store-display__badge[hidden] {
      display: none; }
  .checkout-store-display__name {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--cart-blue); }
  .checkout-store-display__details {
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .checkout-store-display__hours-row, .checkout-store-display__meta-row {
    display: flex;
    align-items: flex-start;
    gap: 8px; }
  .checkout-store-display__icon {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 1px; }
  .checkout-store-display__hours-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0; }
  .checkout-store-display__status {
    display: inline-flex;
    align-self: flex-start;
    padding: 2px 8px;
    border-radius: 12px;
    background: var(--cart-green);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #fff; }
  .checkout-store-display__hours, .checkout-store-display__meta-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: #929292; }
  .checkout-store-display__route {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
    font-size: 13px;
    line-height: 1.3; }
  .checkout-store-display__distance {
    color: #929292; }
  .checkout-store-display__route-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c5c6cc;
    flex-shrink: 0; }
  .checkout-store-display__route-link {
    color: var(--cart-blue);
    text-decoration: none; }
    .checkout-store-display__route-link:hover {
      text-decoration: underline; }

.checkout-store-modal {
  position: fixed;
  inset: 0;
  z-index: 10080;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: 'Inter', sans-serif; }
  .checkout-store-modal.is-open {
    display: flex; }
  .checkout-store-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.48); }
  .checkout-store-modal__panel {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    max-width: 814px;
    height: 667px;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    padding: 12px 16px;
    gap: 12px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
    overflow: visible; }
  .checkout-store-modal__close-fab {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #555e67;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12); }
    .checkout-store-modal__close-fab svg {
      display: block; }
  .checkout-store-modal__region {
    flex: 0 0 350px;
    min-width: 0;
    border-radius: 12px;
    background: #fff;
    overflow: hidden; }
  .checkout-store-modal__region-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px 16px 0; }
  .checkout-store-modal__title {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--cart-text-body); }
  .checkout-store-modal__search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: #f5f5f5;
    cursor: text; }
    .checkout-store-modal__search svg {
      flex-shrink: 0; }
  .checkout-store-modal__search-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    color: #414141;
    outline: none; }
    .checkout-store-modal__search-input::placeholder {
      color: #c5c6cc; }
  .checkout-store-modal__crumbs {
    margin-bottom: 16px; }
  .checkout-store-modal__crumbs-track {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: fit-content;
    max-width: 100%; }
  .checkout-store-modal__crumb-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 18px;
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
    text-align: left;
    cursor: pointer; }
    .checkout-store-modal__crumb-step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 7.5px;
      top: calc(100% + 2px);
      width: 1px;
      height: 24px;
      background: var(--cart-stroke); }
    .checkout-store-modal__crumb-step.is-current {
      cursor: default; }
    .checkout-store-modal__crumb-step.is-placeholder {
      cursor: default;
      pointer-events: none; }
    .checkout-store-modal__crumb-step.is-filled .checkout-store-modal__crumb-point::before {
      border-color: var(--cart-blue);
      background: var(--cart-blue); }
    .checkout-store-modal__crumb-step.is-filled .checkout-store-modal__crumb-label {
      color: #414141; }
  .checkout-store-modal__crumb-point {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 3px; }
    .checkout-store-modal__crumb-point::before {
      content: '';
      display: block;
      width: 10px;
      height: 10px;
      border: 0.625px solid var(--cart-stroke);
      border-radius: 50%;
      background: transparent;
      box-sizing: border-box; }
  .checkout-store-modal__crumb-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #929292; }
  .checkout-store-modal__region-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding-bottom: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--cart-blue) transparent; }
    .checkout-store-modal__region-scroll::-webkit-scrollbar {
      width: 4px; }
    .checkout-store-modal__region-scroll::-webkit-scrollbar-thumb {
      background: var(--cart-blue);
      border-radius: 4px; }
  .checkout-store-modal__group {
    display: flex;
    flex-direction: column; }
  .checkout-store-modal__group-letter {
    padding: 4px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #929292; }
  .checkout-store-modal__region-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 12px 0;
    border: none;
    border-top: 0.5px solid #f0f0f0;
    background: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #929292;
    text-align: left;
    cursor: pointer; }
    .checkout-store-modal__region-item:first-child {
      border-top: none; }
    .checkout-store-modal__region-item.is-selected {
      color: #414141; }
    .checkout-store-modal__region-item svg {
      flex-shrink: 0; }
  .checkout-store-modal__stores {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    background: #fff; }
  .checkout-store-modal__stores-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0; }
  .checkout-store-modal__stores-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #272727; }
  .checkout-store-modal__stores-count {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #929292;
    white-space: nowrap; }
  .checkout-store-modal__stores-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: thin;
    scrollbar-color: var(--cart-blue) transparent; }
    .checkout-store-modal__stores-scroll::-webkit-scrollbar {
      width: 4px; }
    .checkout-store-modal__stores-scroll::-webkit-scrollbar-thumb {
      background: var(--cart-blue);
      border-radius: 4px; }
  .checkout-store-modal__empty {
    margin: 0;
    padding: 12px 0;
    font-size: 14px;
    line-height: 1.4;
    color: #929292; }
  .checkout-store-modal__stores-foot {
    flex-shrink: 0;
    padding-top: 8px; }
  .checkout-store-modal__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    background: var(--blue-500);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    cursor: pointer; }
    .checkout-store-modal__submit:disabled, .checkout-store-modal__submit.is-disabled {
      opacity: 0.45;
      cursor: not-allowed;
      pointer-events: none; }

.checkout-store-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border: 0.5px solid var(--cart-stroke);
  border-radius: 8px;
  background: rgba(239, 240, 240, 0.5);
  cursor: pointer;
  margin: 0; }
  .checkout-store-item__input {
    position: absolute;
    opacity: 0;
    pointer-events: none; }
  .checkout-store-item__radio {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 1.25px solid var(--cart-stroke);
    border-radius: 50%;
    position: relative;
    background: #fff;
    box-sizing: border-box; }
    .checkout-store-item__radio::after {
      content: '';
      position: absolute;
      inset: 4px;
      border-radius: 50%;
      background: var(--cart-blue);
      opacity: 0;
      transform: scale(0.5);
      transition: opacity 0.2s, transform 0.2s; }
  .checkout-store-item__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px; }
  .checkout-store-item__top {
    display: flex;
    flex-direction: column;
    gap: 4px; }
  .checkout-store-item__badge {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--cart-green); }
  .checkout-store-item__name {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--blue-500); }
  .checkout-store-item__details {
    display: flex;
    flex-direction: column;
    gap: 12px; }
  .checkout-store-item__hours-row, .checkout-store-item__meta-row {
    display: flex;
    align-items: flex-start;
    gap: 8px; }
  .checkout-store-item__icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px; }
  .checkout-store-item__hours-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0; }
  .checkout-store-item__status {
    display: inline-flex;
    align-self: flex-start;
    padding: 2px 8px;
    border-radius: 12px;
    background: var(--cart-green);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #fff; }
  .checkout-store-item__hours, .checkout-store-item__meta-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: #929292; }
  .checkout-store-item__route {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
    font-size: 13px;
    line-height: 1.3; }
  .checkout-store-item__distance {
    color: #929292; }
  .checkout-store-item__route-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c5c6cc;
    flex-shrink: 0; }
  .checkout-store-item__route-link {
    color: var(--cart-blue);
    text-decoration: none; }
    .checkout-store-item__route-link:hover {
      text-decoration: underline; }
  .checkout-store-item.is-checked, .checkout-store-item:has(input:checked) {
    background: #e6f3f9; }
    .checkout-store-item.is-checked .checkout-store-item__radio, .checkout-store-item:has(input:checked) .checkout-store-item__radio {
      border-color: var(--cart-blue);
      border-width: 1.5px; }
      .checkout-store-item.is-checked .checkout-store-item__radio::after, .checkout-store-item:has(input:checked) .checkout-store-item__radio::after {
        opacity: 1;
        transform: scale(1); }

/*-----------------------------------------------*/
/* CHECKOUT STEP 1 — WF node 1715:98505 */
/*-----------------------------------------------*/
.checkout-voucher {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background: #d6f3ff;
  cursor: pointer;
  font-family: inherit;
  text-align: left; }

.checkout-voucher__left, .checkout-voucher__right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.4; }

.checkout-voucher__left {
  font-weight: 500;
  color: var(--cart-blue); }

.checkout-voucher__right {
  font-weight: 400;
  color: #929292; }
  .checkout-voucher__right.has_applied {
    color: #4AAA42;
    font-weight: 600; }

.cart-layout.checkout-layout {
  padding-top: 16px; }
  .cart-layout.checkout-layout .checkout-title {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--cart-text); }
  .cart-layout.checkout-layout .checkout-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
    gap: 16px;
    align-items: start; }
  .cart-layout.checkout-layout .checkout-main__left, .cart-layout.checkout-layout .checkout-main__right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0; }
  .cart-layout.checkout-layout .checkout-main__right {
    position: sticky;
    top: 16px; }
  .cart-layout.checkout-layout .checkout-card {
    background: var(--cart-white);
    border-radius: 8px;
    padding: 16px 20px; }
  .cart-layout.checkout-layout .checkout-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px; }
    .cart-layout.checkout-layout .checkout-card__head .checkout-card__title {
      margin-bottom: 0; }
  .cart-layout.checkout-layout .checkout-card__title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--cart-text); }
    .cart-layout.checkout-layout .checkout-card__title--sm {
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 12px; }
  .cart-layout.checkout-layout .checkout-card__link {
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--cart-blue);
    cursor: pointer;
    text-align: right;
    white-space: nowrap; }
    .cart-layout.checkout-layout .checkout-card__link--block {
      display: block;
      width: 100%;
      text-align: left; }
  .cart-layout.checkout-layout .checkout-address {
    position: relative;
    padding: 12px;
    border: 0.5px solid var(--cart-stroke);
    border-radius: 8px;
    background: var(--cart-white); }
    .cart-layout.checkout-layout .checkout-address.js-checkout-address-display-empty {
      padding: 0;
      border: none;
      color: #929292; }
  .cart-layout.checkout-layout .checkout-address__name {
    margin: 8px 0 8px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--cart-text-body); }
  .cart-layout.checkout-layout .checkout-address__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 88px; }
  .cart-layout.checkout-layout .checkout-address__phone {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: #414141; }
  .cart-layout.checkout-layout .checkout-address__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #929292; }
  .cart-layout.checkout-layout .checkout-address__edit {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #b0b0b0;
    cursor: pointer; }
  .cart-layout.checkout-layout .checkout-options {
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .cart-layout.checkout-layout .checkout-options--delivery {
    gap: 0; }
  .cart-layout.checkout-layout .checkout-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 0.5px solid var(--cart-stroke);
    border-radius: 8px;
    background: var(--cart-white);
    cursor: pointer;
    margin: 0; }
    .cart-layout.checkout-layout .checkout-option.checkout-option-delivery-option {
      padding: 16px;
      border: none; }
      .cart-layout.checkout-layout .checkout-option.checkout-option-delivery-option .checkout-option__label {
        flex: initial; }
    .cart-layout.checkout-layout .checkout-option input {
      position: absolute;
      opacity: 0;
      pointer-events: none; }
    .cart-layout.checkout-layout .checkout-option__radio {
      flex: 0 0 20px;
      width: 20px;
      height: 20px;
      border: 1.25px solid var(--cart-stroke);
      border-radius: 50%;
      position: relative;
      background: var(--cart-white); }
      .cart-layout.checkout-layout .checkout-option__radio::after {
        content: '';
        position: absolute;
        inset: 4px;
        border-radius: 50%;
        background: var(--cart-blue);
        opacity: 0;
        transform: scale(0.5);
        transition: all 0.2s; }
    .cart-layout.checkout-layout .checkout-option__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 20px;
      min-width: 32px;
      height: 24px; }
      .cart-layout.checkout-layout .checkout-option__icon--square {
        width: 32px;
        height: 24px;
        padding: 5px 4px;
        border: 0.5px solid var(--cart-stroke);
        border-radius: 4px;
        font-size: 11px;
        font-weight: 600;
        color: var(--cart-text-muted); }
    .cart-layout.checkout-layout .checkout-option__label {
      flex: 1;
      min-width: 0;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.4;
      color: var(--cart-text-body); }
    .cart-layout.checkout-layout .checkout-option:has(input:checked) {
      background: #e6f5fb;
      border-color: rgba(3, 94, 183, 0.2); }
      .cart-layout.checkout-layout .checkout-option:has(input:checked) .checkout-option__radio {
        border-color: var(--cart-blue);
        border-width: 1.5px; }
        .cart-layout.checkout-layout .checkout-option:has(input:checked) .checkout-option__radio:before {
          content: "";
          width: 23px;
          height: 23px;
          border: 2px solid #C3EDFF;
          border-radius: 50%;
          display: inline-block;
          background: transparent;
          position: absolute;
          left: -3px;
          top: -3px; }
        .cart-layout.checkout-layout .checkout-option:has(input:checked) .checkout-option__radio::after {
          opacity: 1;
          transform: scale(1); }
    .cart-layout.checkout-layout .checkout-option--plain {
      margin-bottom: 8px; }
      .cart-layout.checkout-layout .checkout-option--plain:last-child {
        margin-bottom: 0; }
  .cart-layout.checkout-layout .checkout-shipping-list {
    display: flex;
    flex-direction: column;
    gap: 0; }
  .cart-layout.checkout-layout .checkout-shipping {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: none;
    border-radius: 8px;
    background: var(--cart-white);
    cursor: pointer;
    margin: 0; }
    .cart-layout.checkout-layout .checkout-shipping input {
      position: absolute;
      opacity: 0;
      pointer-events: none; }
    .cart-layout.checkout-layout .checkout-shipping__body {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 4px; }
    .cart-layout.checkout-layout .checkout-shipping__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px; }
    .cart-layout.checkout-layout .checkout-shipping__name {
      font-size: 16px;
      font-weight: 500;
      line-height: 1.4;
      color: var(--cart-text-body); }
    .cart-layout.checkout-layout .checkout-shipping__price {
      font-size: 16px;
      font-weight: 500;
      line-height: 1.4;
      color: #414141;
      white-space: nowrap; }
    .cart-layout.checkout-layout .checkout-shipping__note {
      font-size: 14px;
      line-height: 1.4;
      color: #606060; }
      .cart-layout.checkout-layout .checkout-shipping__note strong {
        font-weight: 600;
        color: #000; }
    .cart-layout.checkout-layout .checkout-shipping:has(input:checked) {
      background: #e6f5fb;
      border-color: rgba(3, 94, 183, 0.2); }
      .cart-layout.checkout-layout .checkout-shipping:has(input:checked) .checkout-option__radio {
        border-color: var(--cart-blue);
        border-width: 1.5px; }
        .cart-layout.checkout-layout .checkout-shipping:has(input:checked) .checkout-option__radio:before {
          content: "";
          width: 23px;
          height: 23px;
          border: 2px solid #C3EDFF;
          border-radius: 50%;
          display: inline-block;
          background: transparent;
          position: absolute;
          left: -3px;
          top: -3px; }
        .cart-layout.checkout-layout .checkout-shipping:has(input:checked) .checkout-option__radio::after {
          opacity: 1;
          transform: scale(1); }
  .cart-layout.checkout-layout .checkout-payment-list {
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .cart-layout.checkout-layout .checkout-payment--expanded {
    border: 0.5px solid var(--cart-stroke);
    border-radius: 8px;
    overflow: hidden; }
    .cart-layout.checkout-layout .checkout-payment--expanded .checkout-option--plain {
      margin: 0;
      border: none;
      border-radius: 0; }
  .cart-layout.checkout-layout .checkout-payment__detail {
    padding: 0 12px 12px; }
  .cart-layout.checkout-layout .checkout-payment-tabs {
    display: flex;
    align-items: stretch;
    gap: 24px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--cart-stroke); }
  .cart-layout.checkout-layout .checkout-payment-tabs__item {
    border: none;
    background: none;
    padding: 8px 0;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #929292;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px; }
    .cart-layout.checkout-layout .checkout-payment-tabs__item.is-active {
      color: var(--cart-blue-dark);
      border-bottom-color: var(--cart-blue); }
  .cart-layout.checkout-layout .checkout-payment-gateways {
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .cart-layout.checkout-layout .checkout-payment-gateway {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px;
    border: 0.5px solid var(--cart-stroke);
    border-radius: 8px;
    background: var(--cart-white);
    cursor: pointer;
    font-family: inherit; }
    .cart-layout.checkout-layout .checkout-payment-gateway__logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 48px;
      height: 28px;
      padding: 0 8px;
      border: 0.5px solid var(--cart-stroke);
      border-radius: 4px;
      font-size: 11px;
      font-weight: 700;
      color: var(--cart-text-body);
      background: #f8f8f8; }
    .cart-layout.checkout-layout .checkout-payment-gateway__name {
      flex: 1;
      text-align: left;
      font-size: 15px;
      font-weight: 500;
      color: var(--cart-text-body); }
    .cart-layout.checkout-layout .checkout-payment-gateway.is-active {
      border-color: var(--cart-blue);
      background: rgba(3, 94, 183, 0.04); }
  .cart-layout.checkout-layout .checkout-product-card {
    padding: 0;
    overflow: hidden; }
  .cart-layout.checkout-layout .checkout-product {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 20px;
    border-bottom: 0.5px solid var(--cart-stroke); }
    .cart-layout.checkout-layout .checkout-product:last-child {
      border-bottom: none; }
  .cart-layout.checkout-layout .checkout-product__thumb {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.02); }
    .cart-layout.checkout-layout .checkout-product__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
  .cart-layout.checkout-layout .checkout-product__body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex: 1;
    min-width: 0; }
  .cart-layout.checkout-layout .checkout-product__info {
    flex: 1;
    max-width: 65%; }
  .cart-layout.checkout-layout .checkout-product__name {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--cart-text-body); }
  .cart-layout.checkout-layout .checkout-product__variant {
    display: inline-flex;
    padding: 6px 8px;
    border-radius: 4px;
    background: var(--cart-chip-bg);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--cart-text-body); }
  .cart-layout.checkout-layout .checkout-product__aside {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc(30% - 16px); }
  .cart-layout.checkout-layout .checkout-product__qty {
    font-size: 14px;
    line-height: 1.4;
    color: #929292; }
  .cart-layout.checkout-layout .checkout-product__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px; }
  .cart-layout.checkout-layout .checkout-product__price-sale {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--cart-blue);
    white-space: nowrap; }
  .cart-layout.checkout-layout .checkout-product__price-compare {
    font-size: 13px;
    line-height: 1.3;
    color: var(--cart-text-compare);
    text-decoration: line-through;
    white-space: nowrap; }
  .cart-layout.checkout-layout .checkout-sk {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 20px;
    border-bottom: 0.5px solid var(--cart-stroke); }
    .cart-layout.checkout-layout .checkout-sk:last-child {
      border-bottom: none; }
    .cart-layout.checkout-layout .checkout-sk__img {
      flex: 0 0 80px;
      width: 80px;
      height: 80px;
      border-radius: 6px;
      background: #f3f3f4; }
    .cart-layout.checkout-layout .checkout-sk__body {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      flex: 1;
      min-width: 0; }
    .cart-layout.checkout-layout .checkout-sk__info {
      display: flex;
      flex-direction: column;
      gap: 6px;
      flex: 1;
      min-width: 0; }
    .cart-layout.checkout-layout .checkout-sk__side {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 8px;
      flex: 0 0 auto; }
    .cart-layout.checkout-layout .checkout-sk__bar {
      display: block;
      border-radius: 4px;
      background: #f3f3f4; }
      .cart-layout.checkout-layout .checkout-sk__bar--title {
        width: 90%;
        height: 16px; }
      .cart-layout.checkout-layout .checkout-sk__bar--title2 {
        width: 55%;
        height: 16px; }
      .cart-layout.checkout-layout .checkout-sk__bar--chip {
        width: 130px;
        height: 28px; }
      .cart-layout.checkout-layout .checkout-sk__bar--qty {
        width: 24px;
        height: 14px; }
      .cart-layout.checkout-layout .checkout-sk__bar--price {
        width: 90px;
        height: 16px; }
      .cart-layout.checkout-layout .checkout-sk__bar--old {
        width: 70px;
        height: 13px; }
  .cart-layout.checkout-layout .checkout-note {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 20px; }
    .cart-layout.checkout-layout .checkout-note__title {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.3;
      color: var(--cart-text); }
    .cart-layout.checkout-layout .checkout-note__field {
      display: flex;
      align-items: center;
      gap: 8px;
      padding-bottom: 24px;
      margin: 0;
      cursor: text; }
    .cart-layout.checkout-layout .checkout-note__icon {
      flex: 0 0 20px;
      width: 20px;
      height: 20px;
      color: #989897;
      opacity: 0.5; }
      .cart-layout.checkout-layout .checkout-note__icon svg {
        display: block;
        width: 100%;
        height: 100%; }
    .cart-layout.checkout-layout .checkout-note__input {
      flex: 1;
      min-width: 0;
      border: none;
      padding: 0;
      background: transparent;
      font-family: inherit;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.4;
      color: var(--cart-text-body); }
      .cart-layout.checkout-layout .checkout-note__input::placeholder {
        color: #989897; }
      .cart-layout.checkout-layout .checkout-note__input:focus {
        outline: none; }
  .cart-layout.checkout-layout .checkout-vat-card {
    display: flex;
    justify-content: space-between;
    gap: 8px; }
    .cart-layout.checkout-layout .checkout-vat-card .checkout-card__title {
      margin-bottom: 0; }
    .cart-layout.checkout-layout .checkout-vat-card__summary {
      font-size: 14px;
      line-height: 1.4;
      color: #414141; }
      .cart-layout.checkout-layout .checkout-vat-card__summary p {
        margin: 0 0 4px; }
      .cart-layout.checkout-layout .checkout-vat-card__summary strong {
        font-weight: 500;
        color: #111; }
    .cart-layout.checkout-layout .checkout-vat-card .checkout-card__link {
      width: auto; }
  .cart-layout.checkout-layout .checkout-field-card {
    padding-top: 12px;
    padding-bottom: 12px; }
  .cart-layout.checkout-layout .checkout-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0; }
  .cart-layout.checkout-layout .checkout-field__label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--cart-text-body); }
  .cart-layout.checkout-layout .checkout-field__input {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border: 0.5px solid var(--cart-stroke);
    border-radius: 8px;
    background: var(--cart-white);
    font-family: inherit;
    font-size: 16px;
    line-height: 1.4;
    color: var(--cart-text-body); }
    .cart-layout.checkout-layout .checkout-field__input::placeholder {
      color: #c5c6cc; }
  .cart-layout.checkout-layout .checkout-bill-card {
    position: static;
    box-shadow: none;
    border-radius: 8px; }
  .cart-layout.checkout-layout .checkout-bill-card__save {
    margin: -8px 0 0;
    font-size: 14px;
    line-height: 1.4;
    color: #929292;
    text-align: right; }
    .cart-layout.checkout-layout .checkout-bill-card__save strong {
      font-weight: 600;
      color: #727272; }
  .cart-layout.checkout-layout .checkout-action-card {
    display: flex;
    flex-direction: column;
    gap: 12px; }
  .cart-layout.checkout-layout .checkout-terms {
    align-items: flex-start;
    gap: 12px; }
    .cart-layout.checkout-layout .checkout-terms .cart-check__box {
      margin-top: 2px; }
  .cart-layout.checkout-layout .checkout-terms__text {
    font-size: 14px;
    line-height: 1.4;
    color: #929292; }
    .cart-layout.checkout-layout .checkout-terms__text a {
      color: var(--cart-blue);
      text-decoration: none; }
  .cart-layout.checkout-layout .checkout-submit-btn {
    font-weight: 700; }
  @media (min-width: 992px) {
    .cart-layout.checkout-layout {
      padding-top: 24px; }
      .cart-layout.checkout-layout .checkout-title {
        font-size: 28px;
        margin-bottom: 20px; } }
  @media (max-width: 991px) {
    .cart-layout.checkout-layout .checkout-main {
      grid-template-columns: 1fr; }
    .cart-layout.checkout-layout .checkout-main__right {
      position: static; }
    .cart-layout.checkout-layout .checkout-address__meta {
      padding-right: 0; }
    .cart-layout.checkout-layout .checkout-address__edit {
      position: static;
      margin-top: 12px; }
    .cart-layout.checkout-layout .checkout-product__body {
      flex-direction: column;
      gap: 8px; }
    .cart-layout.checkout-layout .checkout-product__aside {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      width: 100%; }
    .cart-layout.checkout-layout .checkout-product__price {
      align-items: flex-end; }
    .cart-layout.checkout-layout .checkout-sk__body {
      flex-direction: column;
      gap: 8px; }
    .cart-layout.checkout-layout .checkout-sk__side {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      width: 100%; } }

@media (max-width: 860px) {
  .checkout-store-modal {
    padding: 8px; }
    .checkout-store-modal__panel {
      flex-direction: column;
      height: auto;
      max-height: calc(100dvh - 16px);
      padding: 12px; }
    .checkout-store-modal__region {
      flex: 0 0 auto;
      max-height: 42vh; }
    .checkout-store-modal__stores {
      flex: 1;
      min-height: 240px;
      padding: 12px 0 0; } }

/*-----------------------------------------------*/
/* CHECKOUT STEP 2 — WF node 1715:93787 */
/*-----------------------------------------------*/
.cart-layout.checkout-success-layout {
  background: #fff;
  padding: 24px 0 40px;
  min-height: 60vh; }
  .cart-layout.checkout-success-layout .checkout-success-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px; }
  .cart-layout.checkout-success-layout .checkout-success {
    border-radius: 12px;
    background: #e6f5fb;
    overflow: hidden; }
  .cart-layout.checkout-success-layout .checkout-success__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 16px 24px; }
  .cart-layout.checkout-success-layout .checkout-success__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0; }
  .cart-layout.checkout-success-layout .checkout-success__headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center; }
  .cart-layout.checkout-success-layout .checkout-success__title {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    color: #111111; }
  .cart-layout.checkout-success-layout .checkout-success__subtitle {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #606060; }
  .cart-layout.checkout-success-layout .checkout-success__order-wrap {
    margin: 0 16px; }
    .cart-layout.checkout-success-layout .checkout-success__order-wrap.is-meta-collapsed .checkout-success__collapse svg {
      transform: rotate(180deg); }
  .cart-layout.checkout-success-layout .checkout-success__state {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border-radius: 8px 8px 0 0;
    background: #e3f0e1; }
  .cart-layout.checkout-success-layout .checkout-success__order-code {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #606060; }
    .cart-layout.checkout-success-layout .checkout-success__order-code strong {
      font-weight: 700; }
  .cart-layout.checkout-success-layout .checkout-success__status {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 12px;
    background: #137ce3;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
    white-space: nowrap; }
  .cart-layout.checkout-success-layout .checkout-success__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 12px 0;
    background: #fff;
    overflow: hidden; }
  .cart-layout.checkout-success-layout .checkout-success__meta-foot {
    display: flex;
    justify-content: center;
    padding: 12px 12px 12px;
    border-radius: 0 0 8px 8px;
    background: #fff; }
  .cart-layout.checkout-success-layout .checkout-success__meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 8px 0; }
    .cart-layout.checkout-success-layout .checkout-success__meta-row--border {
      border-bottom: 0.5px solid var(--cart-stroke); }
  .cart-layout.checkout-success-layout .checkout-success__meta-group {
    display: flex;
    flex-direction: column;
    width: 100%; }
  .cart-layout.checkout-success-layout .checkout-success__meta-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #414141; }
  .cart-layout.checkout-success-layout .checkout-success__meta-value {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #929292;
    text-align: right; }
    .cart-layout.checkout-success-layout .checkout-success__meta-value--multiline {
      font-size: 15px;
      line-height: 1.4; }
  .cart-layout.checkout-success-layout .checkout-success__collapse {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #606060;
    cursor: pointer; }
    .cart-layout.checkout-success-layout .checkout-success__collapse svg {
      flex-shrink: 0;
      transition: transform 0.2s; }
  .cart-layout.checkout-success-layout .checkout-success__shipping {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px;
    padding: 20px 12px;
    border-radius: 8px;
    background: #fff; }
  .cart-layout.checkout-success-layout .checkout-success__shipping-top {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 16px;
    border-bottom: 0.5px solid var(--cart-stroke); }
  .cart-layout.checkout-success-layout .checkout-success__shipping-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px; }
  .cart-layout.checkout-success-layout .checkout-success__shipping-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #111111; }
  .cart-layout.checkout-success-layout .checkout-success__shipping-link {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--cart-blue);
    text-decoration: none;
    white-space: nowrap; }
  .cart-layout.checkout-success-layout .checkout-success__tracking {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #929292; }
  .cart-layout.checkout-success-layout .checkout-success__delivery-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--cart-green); }
    .cart-layout.checkout-success-layout .checkout-success__delivery-status svg {
      flex-shrink: 0; }
  .cart-layout.checkout-success-layout .checkout-success__address {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 12px; }
  .cart-layout.checkout-success-layout .checkout-success__address-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #111111; }
  .cart-layout.checkout-success-layout .checkout-success__address-row {
    display: flex;
    align-items: flex-start;
    gap: 8px; }
  .cart-layout.checkout-success-layout .checkout-success__address-icon {
    flex: 0 0 18px;
    margin-top: 2px; }
  .cart-layout.checkout-success-layout .checkout-success__address-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0; }
  .cart-layout.checkout-success-layout .checkout-success__address-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #111111; }
  .cart-layout.checkout-success-layout .checkout-success__address-phone {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #414141; }
  .cart-layout.checkout-success-layout .checkout-success__address-text {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #929292; }
  .cart-layout.checkout-success-layout .checkout-success__bill {
    margin: 0 16px 16px;
    border-radius: 8px;
    overflow: visible;
    position: relative;
    z-index: 1;
    padding-bottom: 10px; }
  .cart-layout.checkout-success-layout .checkout-success__products {
    display: flex;
    flex-direction: column;
    overflow: visible; }
  .cart-layout.checkout-success-layout .checkout-success-product {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 16px;
    border-bottom: 0.5px solid var(--cart-stroke); }
    .cart-layout.checkout-success-layout .checkout-success-product:has(.cart-variant-select.is-open) {
      z-index: 20; }
    .cart-layout.checkout-success-layout .checkout-success-product:last-child {
      border-bottom: none; }
    .cart-layout.checkout-success-layout .checkout-success-product__thumb {
      flex: 0 0 80px;
      width: 80px;
      height: 80px;
      border-radius: 5.8px;
      overflow: hidden;
      background: rgba(0, 0, 0, 0.02); }
      .cart-layout.checkout-success-layout .checkout-success-product__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block; }
    .cart-layout.checkout-success-layout .checkout-success-product__body {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      flex: 1;
      min-width: 0; }
    .cart-layout.checkout-success-layout .checkout-success-product__info {
      flex: 1;
      min-width: 0; }
      .cart-layout.checkout-success-layout .checkout-success-product__info .cart-item__select,
      .cart-layout.checkout-success-layout .checkout-success-product__info .cart-variant-select {
        max-width: 100%; }
    .cart-layout.checkout-success-layout .checkout-success-product__name {
      margin: 0 0 6px;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.4;
      color: #414141; }
    .cart-layout.checkout-success-layout .checkout-success-product__aside {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: space-between;
      gap: 12px;
      flex: 0 0 auto;
      min-height: 80px; }
    .cart-layout.checkout-success-layout .checkout-success-product__qty {
      font-size: 14px;
      line-height: 1.4;
      color: rgba(114, 114, 114, 0.6); }
    .cart-layout.checkout-success-layout .checkout-success-product__price {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 2px; }
    .cart-layout.checkout-success-layout .checkout-success-product__price-sale {
      font-size: 15px;
      font-weight: 600;
      line-height: 1.4;
      color: var(--cart-blue);
      white-space: nowrap; }
    .cart-layout.checkout-success-layout .checkout-success-product__price-compare {
      font-size: 13px;
      line-height: 1.4;
      color: rgba(114, 114, 114, 0.6);
      text-decoration: line-through;
      white-space: nowrap; }
  .cart-layout.checkout-success-layout .checkout-success__summary {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border-top: 0.5px solid var(--cart-stroke);
    border-bottom: 0.5px solid var(--cart-stroke);
    background: #fff; }
  .cart-layout.checkout-success-layout .checkout-success__summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    font-size: 14px;
    line-height: 1.4; }
    .cart-layout.checkout-success-layout .checkout-success__summary-row span:first-child {
      color: #929292; }
    .cart-layout.checkout-success-layout .checkout-success__summary-row span:last-child {
      color: #414141;
      font-size: 16px; }
  .cart-layout.checkout-success-layout .checkout-success__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 12px; }
  .cart-layout.checkout-success-layout .checkout-success__total-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #929292; }
  .cart-layout.checkout-success-layout .checkout-success__total-price {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #111111; }
    .cart-layout.checkout-success-layout .checkout-success__total-price svg {
      flex-shrink: 0; }
  .cart-layout.checkout-success-layout .checkout-success__actions {
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin-top: 16px; }
  .cart-layout.checkout-success-layout .checkout-success__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 12px 40px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    cursor: pointer;
    text-align: center; }
    .cart-layout.checkout-success-layout .checkout-success__btn--outline {
      border: 1px solid var(--cart-blue-dark);
      background: #fff;
      color: var(--cart-blue-dark); }
    .cart-layout.checkout-success-layout .checkout-success__btn--primary {
      border: none;
      background: var(--cart-blue);
      color: #fff;
      font-weight: 700; }
  @media (max-width: 640px) {
    .cart-layout.checkout-success-layout {
      padding-top: 16px; }
      .cart-layout.checkout-success-layout .checkout-success__title {
        font-size: 24px; }
      .cart-layout.checkout-success-layout .checkout-success__actions {
        flex-direction: column; }
      .cart-layout.checkout-success-layout .checkout-success-product__body {
        flex-direction: column;
        gap: 8px; }
      .cart-layout.checkout-success-layout .checkout-success-product__aside {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 0; } }

/*-----------------------------------------------*/
/* CHECKOUT ĐANG XỬ LÝ — WF node 1715:94208 */
/*-----------------------------------------------*/
.cart-layout.checkout-processing-layout .checkout-processing__hero {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 36px 16px 0; }

.cart-layout.checkout-processing-layout .checkout-processing__hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center; }

.cart-layout.checkout-processing-layout .checkout-processing__title {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  color: #111111; }

.cart-layout.checkout-processing-layout .checkout-processing__deadline {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--cart-blue); }

.cart-layout.checkout-processing-layout .checkout-processing__notice {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #606060; }

.cart-layout.checkout-processing-layout .checkout-processing__hero-actions {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%; }

.cart-layout.checkout-processing-layout .checkout-processing__hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 12px 20px;
  border: 1px solid var(--cart-blue-dark);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--cart-blue-dark);
  text-decoration: none;
  text-align: center;
  white-space: nowrap; }

.cart-layout.checkout-processing-layout .checkout-success__order-wrap {
  margin-top: 16px; }

.cart-layout.checkout-processing-layout .checkout-processing__notes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding: 20px 16px;
  border-radius: 12px;
  background: #fff; }

.cart-layout.checkout-processing-layout .checkout-processing__notes-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #111111; }

.cart-layout.checkout-processing-layout .checkout-processing__notes-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden; }
  .cart-layout.checkout-processing-layout .checkout-processing__notes-body p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #929292;
    white-space: pre-line; }

.cart-layout.checkout-processing-layout .checkout-processing__notes-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  background: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--cart-blue-dark);
  cursor: pointer; }
  .cart-layout.checkout-processing-layout .checkout-processing__notes-more svg {
    flex-shrink: 0;
    transition: transform 0.3s; }

.cart-layout.checkout-processing-layout .checkout-processing__notes.is-expanded .checkout-processing__notes-more svg {
  transform: rotate(180deg); }

@media (max-width: 640px) {
  .cart-layout.checkout-processing-layout .checkout-processing__title {
    font-size: 24px; }
  .cart-layout.checkout-processing-layout .checkout-processing__hero-actions {
    flex-direction: column; } }

/*-----------------------------------------------*/
/* CHECKOUT THẤT BẠI — WF node 1715:93966 */
/*-----------------------------------------------*/
.cart-layout.checkout-fail-layout .checkout-fail__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 16px 0; }

.cart-layout.checkout-fail-layout .checkout-fail__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0; }

.cart-layout.checkout-fail-layout .checkout-fail__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center; }

.cart-layout.checkout-fail-layout .checkout-fail__title {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  color: #111111; }

.cart-layout.checkout-fail-layout .checkout-fail__subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #606060; }

.cart-layout.checkout-fail-layout .checkout-success__order-wrap {
  margin-top: 16px; }

.cart-layout.checkout-fail-layout .checkout-success__status--cancelled {
  background: #ff0202; }

.cart-layout.checkout-fail-layout .checkout-processing__notes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding: 20px 16px;
  border-radius: 12px;
  background: #fff; }

.cart-layout.checkout-fail-layout .checkout-processing__notes-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #111111; }

.cart-layout.checkout-fail-layout .checkout-processing__notes-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden; }
  .cart-layout.checkout-fail-layout .checkout-processing__notes-body p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #929292;
    white-space: pre-line; }

.cart-layout.checkout-fail-layout .checkout-processing__notes-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  background: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--cart-blue-dark);
  cursor: pointer; }
  .cart-layout.checkout-fail-layout .checkout-processing__notes-more svg {
    flex-shrink: 0;
    transition: transform 0.3s; }

.cart-layout.checkout-fail-layout .checkout-processing__notes.is-expanded .checkout-processing__notes-more svg {
  transform: rotate(180deg); }

@media (max-width: 640px) {
  .cart-layout.checkout-fail-layout .checkout-fail__title {
    font-size: 24px; } }

/*-----------------------------------------------*/
/* CHECKOUT BIÊN NHẬN — WF node 1715:91168 */
/*-----------------------------------------------*/
.cart-layout.checkout-receipt-layout {
  padding: 24px 0 40px;
  min-height: 60vh; }
  .cart-layout.checkout-receipt-layout .checkout-receipt-container {
    width: 100%;
    max-width: 549px;
    margin: 0 auto;
    padding: 0 16px; }
  .cart-layout.checkout-receipt-layout .checkout-receipt {
    border-radius: 12px;
    background: transparent;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    z-index: 1; }
    .cart-layout.checkout-receipt-layout .checkout-receipt:before {
      left: 0;
      content: '';
      background-image: url(https://cdn.hstatic.net/files/200001144887/file/union.png);
      background-size: cover;
      background-repeat: no-repeat;
      padding-top: 10px;
      width: 100%;
      z-index: -1;
      height: 100%;
      position: absolute;
      top: 0;
      width: 100%; }
  .cart-layout.checkout-receipt-layout .checkout-receipt__logo {
    padding: 32px 12px 0; }
    .cart-layout.checkout-receipt-layout .checkout-receipt__logo img {
      display: block;
      width: 100%;
      height: 80px;
      object-fit: contain;
      object-position: center; }
      @media (max-width: 992px) {
        .cart-layout.checkout-receipt-layout .checkout-receipt__logo img {
          height: 55px; } }
  .cart-layout.checkout-receipt-layout .checkout-receipt__header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin: 0 12px 8px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #e6f5fb; }
  .cart-layout.checkout-receipt-layout .checkout-receipt__header-text {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 6px;
    min-width: 0; }
  .cart-layout.checkout-receipt-layout .checkout-receipt__code {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(114, 114, 114, 0.6); }
  .cart-layout.checkout-receipt-layout .checkout-receipt__title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #272727; }
  .cart-layout.checkout-receipt-layout .checkout-receipt__icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px; }
    @media (max-width: 992px) {
      .cart-layout.checkout-receipt-layout .checkout-receipt__icon {
        flex: 0 0 30px;
        width: 30px;
        height: 30px; } }
    .cart-layout.checkout-receipt-layout .checkout-receipt__icon svg {
      display: block; }
      @media (max-width: 992px) {
        .cart-layout.checkout-receipt-layout .checkout-receipt__icon svg {
          width: 30px;
          height: 30px; } }
  .cart-layout.checkout-receipt-layout .checkout-receipt__section {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 12px 0;
    border-top: 0.5px solid var(--cart-stroke); }
    .cart-layout.checkout-receipt-layout .checkout-receipt__section:last-child {
      padding-bottom: 12px; }
    .cart-layout.checkout-receipt-layout .checkout-receipt__section--products {
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      padding-top: 8px;
      padding-bottom: 8px;
      border-top: none; }
  .cart-layout.checkout-receipt-layout .checkout-receipt__section-label {
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: #929292; }
  .cart-layout.checkout-receipt-layout .checkout-receipt__products {
    display: flex;
    flex: 0 0 243px;
    flex-direction: column;
    gap: 4px;
    max-width: 243px; }
    .cart-layout.checkout-receipt-layout .checkout-receipt__products p {
      margin: 0;
      font-size: 13px;
      font-weight: 400;
      line-height: 1.4;
      letter-spacing: 0.01em;
      color: #111111;
      text-align: right; }
  .cart-layout.checkout-receipt-layout .checkout-receipt__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 6px 0; }
    .cart-layout.checkout-receipt-layout .checkout-receipt__row span:first-child {
      flex: 0 0 auto;
      font-size: 13px;
      font-weight: 400;
      line-height: 1.4;
      color: #929292; }
    .cart-layout.checkout-receipt-layout .checkout-receipt__row span:last-child {
      font-size: 13px;
      font-weight: 400;
      line-height: 1.4;
      color: #111111;
      text-align: right; }
    .cart-layout.checkout-receipt-layout .checkout-receipt__row--multiline span:last-child {
      flex: 0 0 200px;
      max-width: 200px; }
  .cart-layout.checkout-receipt-layout .checkout-receipt__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
    padding: 12px 40px;
    border-radius: 8px;
    background: var(--cart-blue);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-decoration: none; }
  @media (max-width: 640px) {
    .cart-layout.checkout-receipt-layout {
      padding-top: 16px; }
      .cart-layout.checkout-receipt-layout .checkout-receipt__section--products {
        flex-direction: column;
        align-items: stretch; }
      .cart-layout.checkout-receipt-layout .checkout-receipt__products {
        flex: 1;
        max-width: none; }
        .cart-layout.checkout-receipt-layout .checkout-receipt__products p {
          text-align: left; }
      .cart-layout.checkout-receipt-layout .checkout-receipt__row--multiline span:last-child {
        flex: 1;
        max-width: none; } }

.checkout-success__shake {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(https://cdn.hstatic.net/files/200001144887/file/checkout-shake.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom; }

/*-----------------------------------------------*/
/* PRODUCT TEMPLATE — WF_TH-True-Milk */
/*-----------------------------------------------*/
button:focus, button:focus-visible {
  outline: none; }

.product-layout {
  --product-blue: #035eb7;
  --product-blue-600: #004494;
  --product-text: #111111;
  --product-text-body: #272727;
  --product-text-muted: #727272;
  --product-text-light: rgba(114, 114, 114, 0.6);
  --product-promo-bg: #fdb913;
  --product-promo-text: #fff8ea;
  --product-variant-bg: #e8f8ff;
  --product-card-bg: rgba(255, 255, 255, 0.88);
  --product-nutrition-bg: rgba(229, 231, 235, 0.5);
  --product-stroke: rgba(197, 198, 204, 0.6);
  --product-white-600: #f3f3f4;
  --product-text-stock: #414141;
  position: relative; }
  .product-layout .product-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    pointer-events: none;
    z-index: 0;
    height: 100%; }
    .product-layout .product-hero-bg:after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 46%); }
    @media (max-width: 991px) {
      .product-layout .product-hero-bg {
        background-position: center left; }
        .product-layout .product-hero-bg + .container {
          position: relative;
          z-index: 1; } }
  .product-layout .product-wrapper {
    position: relative;
    z-index: 1; }
  .product-layout .breadcrumb-wrapper {
    background: transparent;
    position: relative;
    z-index: 3; }
  .product-layout .product-main-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px;
    border-radius: 12px;
    background: var(--product-card-bg);
    backdrop-filter: blur(6px);
    margin-bottom: 24px; }
  .product-layout .product-gallery-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%; }
  .product-layout .product-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%; }
  .product-layout .product-gallery--main {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #fff; }
    .product-layout .product-gallery--main .swiper-slide {
      height: auto; }
  .product-layout .product-gallery--link {
    display: block;
    position: relative;
    padding-bottom: calc(400 / 520 * 100%);
    border-radius: 12px;
    overflow: hidden;
    background: #fff; }
  .product-layout .product-gallery--img {
    position: absolute;
    inset: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 100%;
    background: #fff; }
  .product-layout .product-gallery--play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    line-height: 0;
    pointer-events: none; }
    .product-layout .product-gallery--play svg {
      display: block;
      filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2)); }
  .product-layout .product-gallery--thumbs-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    padding: 0 32px; }
  .product-layout .product-gallery--thumbs {
    width: 100%;
    overflow: hidden; }
    .product-layout .product-gallery--thumbs:not(.swiper-initialized) .swiper-wrapper {
      gap: 24px; }
    .product-layout .product-gallery--thumbs .swiper-wrapper {
      align-items: center; }
    .product-layout .product-gallery--thumbs .swiper-slide {
      width: 60px;
      height: 60px;
      flex-shrink: 0;
      cursor: pointer; }
    .product-layout .product-gallery--thumbs .swiper-slide.is-active .product-gallery--thumb,
    .product-layout .product-gallery--thumbs .swiper-slide-thumb-active .product-gallery--thumb {
      border-color: var(--product-blue); }
  .product-layout .product-gallery--nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: none;
    padding: 0;
    background: transparent;
    color: #b5b5b5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2; }
    .product-layout .product-gallery--nav.swiper-button-disabled {
      opacity: 0.3;
      pointer-events: none; }
    .product-layout .product-gallery--nav.product-gallery--nav-prev {
      left: 0; }
    .product-layout .product-gallery--nav.product-gallery--nav-next {
      right: 0; }
  .product-layout .product-gallery--thumb {
    display: block;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(197, 198, 204, 0.6);
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s;
    position: relative;
    box-sizing: border-box; }
    .product-layout .product-gallery--thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
  .product-layout .product-gallery--thumb-video .product-gallery--thumb-play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none; }
  .product-layout .product-gallery-extra {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%; }
  .product-layout .product-promo-detail {
    display: none; }
  .product-layout .product-promo-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--product-promo-bg);
    width: 100%; }
    @media (max-width: 991px) {
      .product-layout .product-promo-tags {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 7px 10px; } }
  .product-layout .product-promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    color: var(--product-promo-text);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4; }
    @media (max-width: 991px) {
      .product-layout .product-promo-tag {
        font-size: 14px; } }
  @media (min-width: 992px) {
    .product-layout .product-promo-tag--gift-label {
      flex: 1 0 0;
      min-width: 0; } }
  .product-layout .js-product-promo-yellow.is-api-active .product-promo-tag--order {
    display: none !important; }
  @media (min-width: 992px) {
    .product-layout .js-product-promo-yellow.is-api-active .product-promo-tag--gift-label {
      flex: 1 1 auto;
      width: auto; } }
  .product-layout .product-promo-scheme-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%; }
  .product-layout .product-promo-scheme-line {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    border-radius: 8px;
    background: var(--product-white-600);
    color: #606060;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4; }
    @media (max-width: 991px) {
      .product-layout .product-promo-scheme-line {
        padding: 7px 10px;
        font-size: 14px; } }
    .product-layout .product-promo-scheme-line__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 20px;
      height: 19px; }
      .product-layout .product-promo-scheme-line__icon svg {
        display: block;
        width: 20px;
        height: 19px; }
    .product-layout .product-promo-scheme-line__text {
      min-width: 0;
      word-break: break-word; }
  .product-layout .product-promo-schemes {
    display: none; }
  .product-layout .product-promo-scheme-item {
    display: none; }
  .product-layout .product-promo-tag--icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 18px;
    height: 18px; }
    .product-layout .product-promo-tag--icon svg {
      display: block;
      width: 18px;
      height: 18px; }
  .product-layout .product-gift-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 12px;
    border: none;
    border-radius: 8px;
    background: var(--product-white-600);
    cursor: pointer;
    color: #606060;
    font-size: 15px;
    font-weight: 500; }
    .product-layout .product-gift-toggle--label {
      display: inline-flex;
      align-items: center;
      gap: 8px; }
    .product-layout .product-gift-toggle--arrow {
      transition: transform 0.2s; }
    .product-layout .product-gift-toggle:active, .product-layout .product-gift-toggle:focus, .product-layout .product-gift-toggle:focus-visible {
      outline: none; }
  .product-layout .product-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    min-width: 0; }
  .product-layout .product-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--product-text);
    margin: 0; }
  .product-layout .product-price-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 0.8px solid var(--product-stroke); }
  .product-layout .product-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px; }
  .product-layout .product-price-current {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--product-blue); }
    .product-layout .product-price-current .up_unit {
      font-size: 14px;
      vertical-align: text-top; }
  .product-layout .product-price-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap; }
  .product-layout .product-price-compare {
    font-size: 14px;
    font-weight: 500;
    color: var(--product-text-light);
    text-decoration: line-through; }
  .product-layout .product-price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 43px;
    height: 19px;
    padding: 0 6px;
    border-radius: 2px;
    background: #c5e3f6;
    color: var(--product-blue);
    font-size: 12px;
    font-weight: 600;
    line-height: 1; }
  .product-layout .product-stock {
    margin: 0;
    font-size: 14px;
    color: var(--product-text-stock);
    line-height: 1.4; }
  .product-layout .product-meta-list {
    display: flex;
    flex-direction: column; }
    @media (max-width: 991px) {
      .product-layout .product-meta-list {
        gap: 10px; } }
  .product-layout .product-meta-item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 44px;
    padding: 6px 0; }
    @media (max-width: 991px) {
      .product-layout .product-meta-item {
        padding: 0;
        min-height: unset;
        gap: 10px; } }
  .product-layout .product-meta-label {
    flex: 0 0 140px;
    font-size: 15px;
    font-weight: 500;
    color: var(--product-text);
    line-height: 1.4; }
  .product-layout .product-meta-value {
    flex: 1;
    font-size: 15px;
    color: var(--product-text-muted);
    line-height: 1.4; }
  .product-layout .pr-infos--options .select-swatch {
    display: block; }
  .product-layout .pr-infos--options .swatch-header .title {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--product-text-muted);
    line-height: 1.4; }
  .product-layout .product-variant-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--product-variant-bg); }
  .product-layout .product-variant-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(15, 40, 80, 0.08); }
  .product-layout .product-variant-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    margin: 0;
    transition: background 0.2s; }
    .product-layout .product-variant-option input {
      position: absolute;
      opacity: 0;
      pointer-events: none; }
    .product-layout .product-variant-option--radio {
      flex: 0 0 20px;
      width: 20px;
      height: 20px;
      border: 2px solid var(--product-stroke);
      border-radius: 50%;
      position: relative;
      background: #fff;
      /*
        &:before {
          content: '';
          position: absolute;
          width: 22px; height: 22px;
          left: -2px; top: -2px;
          border-radius: 50%;
          background: #fff;
          border: 1.5px solid #C3EDFF;
          opacity: 0;
          transform: scale(1);
          transition: all 0.2s;
          z-index: -1;
        }
        &:after {
          content: '';
          position: absolute;
          inset: 4px;
          border-radius: 50%;
          background: var(--product-blue);
          opacity: 0;
          transform: scale(0.5);
          transition: all 0.2s;
        }
      */ }
    .product-layout .product-variant-option--name {
      flex: 1;
      font-size: 16px;
      font-weight: 400;
      color: var(--product-text);
      line-height: 1.4; }
    .product-layout .product-variant-option--price {
      font-size: 16px;
      font-weight: 500;
      color: var(--product-blue);
      white-space: nowrap; }
    .product-layout .product-variant-option.is-active .product-variant-option--radio, .product-layout .product-variant-option:has(input:checked) .product-variant-option--radio {
      border-color: var(--product-blue);
      display: inline-flex;
      justify-content: center;
      align-items: center;
      border: none; }
      .product-layout .product-variant-option.is-active .product-variant-option--radio span, .product-layout .product-variant-option:has(input:checked) .product-variant-option--radio span {
        display: inline-block;
        width: 11px;
        height: 11px;
        background: var(--product-blue);
        border-radius: 50%;
        position: relative;
        z-index: 3; }
      .product-layout .product-variant-option.is-active .product-variant-option--radio:before, .product-layout .product-variant-option:has(input:checked) .product-variant-option--radio:before {
        content: "";
        position: absolute;
        width: 22px;
        height: 22px;
        left: -1px;
        top: -1px;
        z-index: 1;
        border-radius: 50%;
        background: #fff;
        border: 2px solid #C3EDFF;
        opacity: 1;
        transform: scale(1);
        transition: all 0.2s; }
      .product-layout .product-variant-option.is-active .product-variant-option--radio:after, .product-layout .product-variant-option:has(input:checked) .product-variant-option--radio:after {
        content: "";
        position: absolute;
        width: 19px;
        height: 19px;
        left: 0.5px;
        top: 0.5px;
        z-index: 2;
        border-radius: 50%;
        background: #fff;
        border: 1.5px solid var(--product-blue);
        opacity: 1;
        transform: scale(1);
        transition: all 0.2s; }
    .product-layout .product-variant-option.is-disabled {
      opacity: 0.45;
      cursor: not-allowed; }
  .product-layout .product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px; }
  .product-layout .product-actions--row {
    display: flex;
    align-items: stretch;
    gap: 12px;
    flex-wrap: wrap; }
  .product-layout .product-qty {
    display: flex;
    align-items: stretch;
    flex: auto 0 1;
    max-width: 153px;
    border: 1px solid var(--product-stroke);
    border-radius: 8px;
    overflow: hidden;
    background: #fff; }
  .product-layout .product-qty--btn {
    flex: 0 0 50px;
    min-height: 50px;
    border: none;
    background: #fff;
    color: var(--product-text-muted);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0; }
    .product-layout .product-qty--btn:first-child {
      border-right: 1px solid var(--product-stroke); }
    .product-layout .product-qty--btn:last-child {
      border-left: 1px solid var(--product-stroke); }
    @media (max-width: 991px) {
      .product-layout .product-qty--btn {
        flex: 0 0 40px;
        min-height: 40px; } }
  .product-layout .input-quantity {
    flex: 1;
    width: 50px;
    min-width: 0;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--product-text-muted);
    background: #fff;
    -moz-appearance: textfield; }
    .product-layout .input-quantity::-webkit-outer-spin-button, .product-layout .input-quantity::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0; }
  .product-layout .product-btn-atc {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 16px;
    border: none;
    border-radius: 8px;
    background: var(--product-blue);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s; }
    @media (max-width: 991px) {
      .product-layout .product-btn-atc {
        min-height: 45px; } }
    .product-layout .product-btn-atc:hover:not(:disabled) {
      background: var(--product-blue-600); }
    .product-layout .product-btn-atc:disabled {
      opacity: 0.55;
      cursor: not-allowed; }
    .product-layout .product-btn-atc.loading {
      opacity: 0.7;
      pointer-events: none; }
    .product-layout .product-btn-atc--price {
      white-space: nowrap; }
    .product-layout .product-btn-atc--divider {
      width: 1px;
      height: 20px;
      background: rgba(255, 255, 255, 0.35);
      flex-shrink: 0; }
    .product-layout .product-btn-atc--text {
      white-space: nowrap; }
      @media (max-width: 991px) {
        .product-layout .product-btn-atc--text {
          display: none; } }
    .product-layout .product-btn-atc--icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0; }
  .product-layout .product-btn-buynow {
    width: 100%;
    min-height: 48px;
    padding: 12px 24px;
    border: 1px solid var(--product-blue-600);
    border-radius: 8px;
    background: #fff;
    color: var(--product-blue-600);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s; }
    @media (max-width: 991px) {
      .product-layout .product-btn-buynow {
        min-height: 45px; } }
    .product-layout .product-btn-buynow:hover:not(:disabled) {
      background: rgba(3, 94, 183, 0.06); }
    .product-layout .product-btn-buynow:disabled {
      opacity: 0.55;
      cursor: not-allowed; }
    .product-layout .product-btn-buynow.loading {
      opacity: 0.7;
      pointer-events: none; }
  .product-layout .product-detail-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px; }
  .product-layout .product-detail-tabs {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-radius: 4px;
    font-family: 'Inter', sans-serif; }
    .product-layout .product-detail-tabs__nav {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      padding: 0 0 24px; }
    .product-layout .product-detail-tabs__btn {
      display: inline-flex;
      align-items: center;
      margin: 0;
      padding: 0 0 8px;
      border: none;
      border-bottom: 3px solid transparent;
      border-radius: 0;
      background: transparent;
      color: rgba(65, 65, 65, 0.6);
      font-family: inherit;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.4;
      white-space: nowrap;
      cursor: pointer;
      outline: none;
      box-shadow: none;
      transition: color 0.2s, border-color 0.2s; }
      .product-layout .product-detail-tabs__btn.is-active {
        color: #003d79;
        border-bottom-color: var(--product-blue); }
    .product-layout .product-detail-tabs__content {
      display: flex;
      flex-direction: column; }
  .product-layout .product-detail-section {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 0 0 24px; }
    .product-layout .product-detail-section.is-active {
      display: flex; }
    .product-layout .product-detail-section h3 {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.3;
      color: #1e1e1e; }
    .product-layout .product-detail-section ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.4;
      color: #272727;
      text-align: justify; }
      .product-layout .product-detail-section ul li {
        position: relative;
        padding-left: 14px; }
        .product-layout .product-detail-section ul li:before {
          content: '-';
          position: absolute;
          left: 0;
          top: 0; }
  .product-layout .product-nutrition {
    padding: 24px 24px 40px;
    border-radius: 12px;
    background: var(--product-nutrition-bg);
    font-family: 'Inter', sans-serif; }
    .product-layout .product-nutrition--title {
      margin: 0 0 24px !important;
      font-size: 20px !important;
      font-weight: 600;
      color: #292d32;
      text-align: center;
      line-height: 1.4 !important; }
    .product-layout .product-nutrition--table {
      width: 100%;
      padding: 0; }
      .product-layout .product-nutrition--table th {
        padding: 20px 0 16px !important;
        font-size: 20px !important;
        font-weight: 500 !important;
        line-height: 1.4 !important;
        text-align: center !important; }
      .product-layout .product-nutrition--table td {
        padding: 16px 0 !important;
        border: none !important;
        font-size: 18px !important;
        font-weight: 300 !important;
        line-height: 1.4 !important;
        text-align: center !important; }
    .product-layout .product-nutrition--grid {
      width: 100%;
      border-collapse: collapse;
      table-layout: fixed; }
      .product-layout .product-nutrition--grid thead th {
        padding: 0 8px 0 0;
        font-size: 20px;
        font-weight: 500;
        color: #003d79;
        line-height: 1.4;
        text-align: left;
        vertical-align: top;
        border: none; }
      .product-layout .product-nutrition--grid tbody td {
        padding: 32px 8px 0 0;
        font-size: 18px;
        font-weight: 300;
        color: #1e1e1e;
        line-height: 1.4;
        text-align: left;
        vertical-align: top;
        border: none; }
      .product-layout .product-nutrition--grid th:nth-child(1),
      .product-layout .product-nutrition--grid td:nth-child(1) {
        width: 42%; }
      .product-layout .product-nutrition--grid th:nth-child(2),
      .product-layout .product-nutrition--grid td:nth-child(2) {
        width: 22%; }
      .product-layout .product-nutrition--grid th:nth-child(3),
      .product-layout .product-nutrition--grid td:nth-child(3) {
        width: 36%; }
  .product-layout .section.section-similar {
    overflow: visible;
    padding-bottom: 24px;
    margin-bottom: 0; }
    .product-layout .section.section-similar .s-wrapper {
      gap: 0; }
  .product-layout .section .s-heading.product-section-heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: none;
    border-bottom: 0.7px solid var(--product-blue);
    padding: 20px 0;
    margin: 0; }
    @media (max-width: 991px) {
      .product-layout .section .s-heading.product-section-heading {
        padding: 10px 0; } }
    .product-layout .section .s-heading.product-section-heading .s-heading--left,
    .product-layout .section .s-heading.product-section-heading .s-heading--right {
      flex: 0 0 auto;
      max-width: none;
      display: flex; }
    .product-layout .section .s-heading.product-section-heading .s-heading--right {
      justify-content: flex-end; }
      @media (max-width: 991px) {
        .product-layout .section .s-heading.product-section-heading .s-heading--right {
          display: none; } }
    .product-layout .section .s-heading.product-section-heading h2 {
      font-family: 'Inter', sans-serif;
      font-size: 24px;
      font-weight: 400;
      line-height: 1.4;
      color: var(--product-blue);
      text-transform: capitalize;
      margin: 0; }
  .product-layout .product-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 8px 20px;
    border-radius: 8px;
    background: #fff;
    color: var(--product-blue);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap; }
    .product-layout .product-view-all:hover {
      color: var(--product-blue-600); }
  .product-layout .section-similar .s-content {
    position: relative; }
  .product-layout .section-similar .swiper-navcontrol {
    display: none; }
  .product-layout .section-similar .product-loop .product-loop--wrap {
    border-radius: 8px; }
  @media (min-width: 992px) {
    .product-layout .product-main-card {
      flex-direction: row;
      align-items: flex-start;
      gap: 40px;
      padding: 24px 40px;
      margin-bottom: 40px; }
    .product-layout .product-gallery-col {
      /*
      flex: 0 0 52%;
      max-width: 652px;
      */
      flex: 0 0 auto;
      width: calc(57% - 40px); }
    .product-layout .product-info-col {
      flex: 1;
      gap: 20px; }
    .product-layout .product-title {
      font-size: 28px; }
    .product-layout .product-price-current {
      font-size: 32px; }
    .product-layout .product-gallery {
      gap: 12px; }
    .product-layout .product-meta-label {
      flex-basis: 160px; }
    .product-layout .product-detail-row {
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px; }
    .product-layout .product-detail-tabs {
      flex: 1;
      min-width: 0;
      order: 1;
      padding-left: 40px;
      max-width: calc(57% - 40px); }
    .product-layout .product-nutrition {
      flex: 0 0 43%;
      order: 2; }
    .product-layout .product-section-heading h2 {
      font-size: 32px; }
    .product-layout .section-similar {
      padding-bottom: 40px; }
      .product-layout .section-similar .swiper-navcontrol {
        display: block; } }
  @media (max-width: 767px) {
    .product-layout .product-btn-atc {
      flex: 0 0 auto;
      width: calc(100% - 166px); }
    .product-layout .product-qty button, .product-layout .product-qty input {
      flex: 0 0 auto; }
    .product-layout .product-qty input {
      width: 70px; }
    .product-layout .product-qty button {
      width: 40px; } }

.product-detail {
  position: relative; }

.product-gift-modal {
  --gift-blue: #035eb7;
  --gift-blue-light: rgba(3, 94, 183, 0.12);
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: 'Inter', sans-serif; }
  .product-gift-modal.is-open {
    display: flex; }
  .product-gift-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 43, 43, 0.5); }
  .product-gift-modal__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 390px;
    max-height: min(703px, calc(100vh - 32px));
    border-radius: 12px;
    background: #e6f5fb;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); }
  .product-gift-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 12px 12px 0 0;
    flex-shrink: 0; }
  .product-gift-modal__header-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0; }
  .product-gift-modal__header-icon {
    display: inline-flex;
    flex-shrink: 0; }
  .product-gift-modal__title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #272727; }
  .product-gift-modal__header-right {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0; }
  .product-gift-modal__count {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #272727; }
    .product-gift-modal__count strong {
      font-weight: 600;
      color: var(--gift-blue); }
  .product-gift-modal__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    cursor: pointer; }
    .product-gift-modal__close:active, .product-gift-modal__close:focus, .product-gift-modal__close:focus-visible {
      outline: none; }
    .product-gift-modal__close:hover {
      color: var(--gift-blue); }
  .product-gift-modal__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 4px 0 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; }
    .product-gift-modal__body::-webkit-scrollbar {
      width: 4px; }
    .product-gift-modal__body::-webkit-scrollbar-track {
      margin: 4px 0;
      border-radius: 99px; }
    .product-gift-modal__body::-webkit-scrollbar-thumb {
      border-radius: 99px; }
  .product-gift-modal__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px; }
  .product-gift-modal__notice {
    margin: 0;
    padding: 10px 16px 12px 28px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: #606060; }
    .product-gift-modal__notice strong {
      font-weight: 500; }
  .product-gift-modal__footer {
    flex: 0 0 auto;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.05); }
  .product-gift-modal__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    background: var(--gift-blue);
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    transition: opacity 0.2s; }
    .product-gift-modal__submit.is-disabled, .product-gift-modal__submit:disabled {
      opacity: 0.5;
      cursor: not-allowed; }
    .product-gift-modal__submit:active, .product-gift-modal__submit:focus, .product-gift-modal__submit:focus-visible {
      outline: none; }

.product-gift-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  padding: 0 12px 12px; }
  .product-gift-item.unavailable {
    opacity: 0.7;
    pointer-events: none; }
  .product-gift-item .product-gift-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: calc(100% - 30px); }
  .product-gift-item__hint {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
    padding: 0 0 0 30px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: #414141; }
    .product-gift-item__hint strong {
      font-weight: 500;
      color: var(--gift-blue); }
  .product-gift-item.is-selected .product-gift-item__checkmark {
    background: var(--gift-blue);
    border-color: var(--gift-blue); }
    .product-gift-item.is-selected .product-gift-item__checkmark .product-gift-item__check-icon {
      opacity: 1; }
  .product-gift-item.is-locked {
    opacity: 0.7;
    pointer-events: none; }
  .product-gift-item__check {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
    margin-top: 12px;
    cursor: pointer; }
  .product-gift-item__checkbox {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0; }
    .product-gift-item__checkbox:checked + .product-gift-item__checkmark {
      border-radius: 4.4px;
      border-bottom: 1.1px solid var(--Blue-blue---400, #137CE3);
      background: var(--Blue-blue---400, #137CE3);
      box-shadow: 0 0 0 0.846px rgba(206, 241, 228, 0.3), 0 -2.115px 2.538px 0 #62EAB8 inset;
      border: none; }
      .product-gift-item__checkbox:checked + .product-gift-item__checkmark .product-gift-item__check-icon {
        opacity: 1; }
    .product-gift-item__checkbox:disabled + .product-gift-item__checkmark {
      background: #f3f3f4;
      border-color: #d9d9d9; }
  .product-gift-item__checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1.5px solid #c2c6d4;
    border-radius: 4px;
    background: #fff;
    transition: background 0.2s, border-color 0.2s; }
  .product-gift-item__check-icon {
    display: block;
    width: 14px;
    height: 11px;
    opacity: 0;
    transition: opacity 0.2s; }
  .product-gift-item__card {
    flex: 0 0 auto;
    width: calc(100% - 30px);
    padding: 0 12px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08); }
    .product-gift-item__card + .product-gift-item__card {
      margin-left: 30px; }
  .product-gift-item__main {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0 4px; }
  .product-gift-item__thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 4px;
    overflow: hidden;
    background: #f3f3f4; }
    .product-gift-item__thumb img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .product-gift-item__info {
    flex: 1;
    min-width: 0; }
  .product-gift-item__name {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: #272727; }
    .product-gift-item__name strong {
      font-weight: 600; }
  .product-gift-item__expiry {
    margin: 0;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4;
    color: #272727; }
  .product-gift-item__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0; }
  .product-gift-item__variant {
    flex: 1;
    min-width: 0;
    padding: 8px 12px;
    border-radius: 6px;
    background: #f3f3f4;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #606060;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .product-gift-item__qty {
    display: inline-flex;
    align-items: stretch;
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    background: #fff; }
  .product-gift-item__qty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    min-height: 32px;
    padding: 0;
    border: none;
    background: #fff;
    color: #272727;
    font-size: 16px;
    line-height: 1;
    cursor: pointer; }
    .product-gift-item__qty-btn:not(:last-child) {
      border-right: 1px solid #e5e7eb; }
    .product-gift-item__qty-btn:disabled {
      opacity: 0.4;
      cursor: not-allowed; }
    .product-gift-item__qty-btn:active, .product-gift-item__qty-btn:focus, .product-gift-item__qty-btn:focus-visible {
      outline: none; }
  .product-gift-item__qty-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    padding: 0 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #272727;
    border-right: 1px solid #e5e7eb; }

.product-gift-confirm {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: 'Inter', sans-serif; }
  .product-gift-confirm.is-open {
    display: flex; }
  .product-gift-confirm__overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 43, 43, 0.5); }
  .product-gift-confirm__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 350px;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18); }
  .product-gift-confirm__close {
    position: absolute;
    top: -12px;
    right: -12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #555e67;
    cursor: pointer; }
    .product-gift-confirm__close:active, .product-gift-confirm__close:focus, .product-gift-confirm__close:focus-visible {
      outline: none; }
  .product-gift-confirm__title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #272727; }
    .product-gift-confirm__title strong {
      font-weight: 600; }
  .product-gift-confirm__desc {
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #929292; }
  .product-gift-confirm__actions {
    display: flex;
    flex-direction: column;
    gap: 12px; }
  .product-gift-confirm__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 40px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer; }
    .product-gift-confirm__btn--outline {
      border: 1px solid #004494;
      background: #fff;
      color: #004494; }
    .product-gift-confirm__btn--primary {
      border: none;
      background: #035eb7;
      color: #fff; }
    .product-gift-confirm__btn:active, .product-gift-confirm__btn:focus, .product-gift-confirm__btn:focus-visible {
      outline: none; }

body.is-product-gift-modal-open {
  overflow: hidden; }

/* Quickview */
.add-cart-loop-modal {
  --acl-blue: #035eb7;
  --acl-chip-bg: #f3f3f4;
  --acl-text-muted: #606060;
  --acl-label: #929292;
  --acl-qty-text: #727272;
  --acl-stroke: rgba(197, 198, 204, 0.6);
  --acl-cart-bg: #e8e8e8;
  position: fixed;
  inset: 0;
  z-index: 10055;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  font-family: 'Inter', sans-serif; }
  .add-cart-loop-modal.is-open {
    display: flex; }
  .add-cart-loop-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.48);
    opacity: 0;
    transition: opacity 0.3s ease; }
  .add-cart-loop-modal.is-open .add-cart-loop-modal__overlay {
    opacity: 1; }
  .add-cart-loop-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 24px);
    padding: 20px 20px 32px;
    border-radius: 8px 8px 0 0;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1); }
  .add-cart-loop-modal.is-open .add-cart-loop-modal__dialog {
    transform: translateY(0); }
  .add-cart-loop-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #272727;
    cursor: pointer; }
    .add-cart-loop-modal__close:active, .add-cart-loop-modal__close:focus, .add-cart-loop-modal__close:focus-visible {
      outline: none; }
  .add-cart-loop-modal__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px; }
  .add-cart-loop-modal__spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(3, 94, 183, 0.15);
    border-top-color: var(--acl-blue);
    border-radius: 50%;
    animation: add-cart-loop-spin 0.8s linear infinite; }
  .add-cart-loop-modal__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch; }
  .add-cart-loop-modal__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0; }
  .add-cart-loop-modal__product {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 28px; }
  .add-cart-loop-modal__thumb {
    position: relative;
    flex: 0 0 140px;
    width: 140px;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc; }
    .add-cart-loop-modal__thumb:after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 8px;
      background: rgba(0, 0, 0, 0.04);
      pointer-events: none; }
    .add-cart-loop-modal__thumb img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px; }
  .add-cart-loop-modal__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .add-cart-loop-modal__price-block {
    display: flex;
    flex-direction: column;
    gap: 4px; }
  .add-cart-loop-modal__promo {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--acl-blue); }
  .add-cart-loop-modal__price-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start; }
  .add-cart-loop-modal__price {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--acl-blue);
    white-space: nowrap; }
  .add-cart-loop-modal__compare {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(114, 114, 114, 0.6);
    text-decoration: line-through; }
  .add-cart-loop-modal__stock {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--acl-text-muted);
    text-align: right;
    display: none; }
  .add-cart-loop-modal__variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 8px 0;
    border-radius: 8px; }
  .add-cart-loop-modal__variant-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: var(--acl-chip-bg);
    cursor: pointer;
    margin: 0;
    transition: border-color 0.2s, background 0.2s; }
    .add-cart-loop-modal__variant-chip input {
      position: absolute;
      opacity: 0;
      pointer-events: none; }
    .add-cart-loop-modal__variant-chip span {
      font-size: 14px;
      font-weight: 400;
      line-height: 1.4;
      color: var(--acl-text-muted);
      white-space: nowrap; }
    .add-cart-loop-modal__variant-chip.is-active {
      border-color: var(--acl-blue);
      background: #fff; }
      .add-cart-loop-modal__variant-chip.is-active span {
        color: var(--acl-blue);
        font-weight: 500; }
  .add-cart-loop-modal__qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%; }
  .add-cart-loop-modal__qty-label {
    flex: 0 0 64px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--acl-label); }
  .add-cart-loop-modal__qty {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--acl-stroke);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    padding: 1px; }
  .add-cart-loop-modal__qty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
    background: #fff;
    cursor: pointer; }
    .add-cart-loop-modal__qty-btn:last-child {
      border-left: 1px solid rgba(204, 204, 204, 0.5);
      border-radius: 0 4px 4px 0; }
    .add-cart-loop-modal__qty-btn:first-child {
      border-radius: 4px 0 0 4px; }
    .add-cart-loop-modal__qty-btn:active, .add-cart-loop-modal__qty-btn:focus, .add-cart-loop-modal__qty-btn:focus-visible {
      outline: none; }
  .add-cart-loop-modal__qty-minus {
    display: block;
    width: 12px;
    height: 2px;
    border-radius: 4px;
    background: var(--acl-qty-text); }
  .add-cart-loop-modal__qty-input {
    width: 45px;
    min-width: 45px;
    height: 30px;
    padding: 4px 6px;
    border: none;
    border-left: 1px solid rgba(204, 204, 204, 0.5);
    border-right: 1px solid rgba(204, 204, 204, 0.5);
    text-align: center;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--acl-qty-text);
    background: #fff;
    -moz-appearance: textfield; }
    .add-cart-loop-modal__qty-input::-webkit-outer-spin-button, .add-cart-loop-modal__qty-input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0; }
  .add-cart-loop-modal__footer {
    display: flex;
    align-items: stretch;
    gap: 18px;
    width: 100%; }
  .add-cart-loop-modal__cart {
    flex: 0 0 76px;
    width: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    background: var(--acl-cart-bg);
    cursor: pointer;
    transition: opacity 0.2s; }
    .add-cart-loop-modal__cart:disabled, .add-cart-loop-modal__cart.loading {
      opacity: 0.6;
      cursor: not-allowed;
      pointer-events: none; }
    .add-cart-loop-modal__cart:active, .add-cart-loop-modal__cart:focus, .add-cart-loop-modal__cart:focus-visible {
      outline: none; }
    @media (max-width: 767px) {
      .add-cart-loop-modal__cart {
        background: #fff;
        border: 1px solid var(--acl-blue);
        flex: 0 0 auto;
        width: fit-content;
        flex-wrap: wrap;
        padding: 5.5px 21px; }
        .add-cart-loop-modal__cart:after {
          content: attr(aria-label);
          width: 100%;
          color: var(--acl-blue);
          font-size: 10px; }
        .add-cart-loop-modal__cart svg * {
          fill: var(--acl-blue) !important; } }
  .add-cart-loop-modal__buynow {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    height: 48px;
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    background: var(--acl-blue);
    color: #fff;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.2s; }
    .add-cart-loop-modal__buynow:disabled, .add-cart-loop-modal__buynow.loading {
      opacity: 0.6;
      cursor: not-allowed;
      pointer-events: none; }
    .add-cart-loop-modal__buynow:active, .add-cart-loop-modal__buynow:focus, .add-cart-loop-modal__buynow:focus-visible {
      outline: none; }
    @media (max-width: 767px) {
      .add-cart-loop-modal__buynow {
        height: auto;
        font-size: 16px;
        font-weight: 700; } }
  .add-cart-loop-modal__buynow-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap; }
  .add-cart-loop-modal__buynow-dot {
    flex: 0 0 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff; }
  .add-cart-loop-modal__buynow-price {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap; }
  @media (min-width: 768px) {
    .add-cart-loop-modal {
      align-items: center;
      padding: 16px; }
      .add-cart-loop-modal__dialog {
        width: 100%;
        max-width: 390px;
        max-height: calc(100vh - 32px);
        padding: 20px 20px 32px;
        border-radius: 8px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
        transform: translateY(24px) scale(0.98);
        opacity: 0;
        transition: transform 0.28s ease, opacity 0.28s ease; }
      .add-cart-loop-modal.is-open .add-cart-loop-modal__dialog {
        transform: translateY(0) scale(1);
        opacity: 1; } }

@keyframes add-cart-loop-spin {
  to {
    transform: rotate(360deg); } }

body.is-add-cart-loop-modal-open {
  overflow: hidden; }

/* End Quickview */
.pagi-ajax {
  margin-top: 32px; }
  .pagi-ajax .pagination-custom-ajax {
    gap: 4px; }
    .pagi-ajax .pagination-custom-ajax .titlePagi {
      display: none; }
    .pagi-ajax .pagination-custom-ajax .pagi-item {
      display: flex;
      align-items: center;
      justify-content: center; }
      .pagi-ajax .pagination-custom-ajax .pagi-item .prev-pagi {
        margin-right: 8px; }
      .pagi-ajax .pagination-custom-ajax .pagi-item .next-pagi {
        margin-left: 8px; }
      .pagi-ajax .pagination-custom-ajax .pagi-item span {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        line-height: 1;
        color: #6b7280;
        transition: all 0.25s ease; }
      .pagi-ajax .pagination-custom-ajax .pagi-item.pagiItem span:hover {
        color: #035eb7; }
      .pagi-ajax .pagination-custom-ajax .pagi-item.pagiItem span.active {
        background: #035eb7;
        color: #fff;
        font-weight: 600; }
      .pagi-ajax .pagination-custom-ajax .pagi-item .prev-pagi,
      .pagi-ajax .pagination-custom-ajax .pagi-item .next-pagi {
        border: 1px solid #d1d5db;
        background: #fff; }
        .pagi-ajax .pagination-custom-ajax .pagi-item .prev-pagi svg,
        .pagi-ajax .pagination-custom-ajax .pagi-item .next-pagi svg {
          width: 8px;
          height: 14px; }
          .pagi-ajax .pagination-custom-ajax .pagi-item .prev-pagi svg path,
          .pagi-ajax .pagination-custom-ajax .pagi-item .next-pagi svg path {
            transition: stroke 0.25s ease; }
        .pagi-ajax .pagination-custom-ajax .pagi-item .prev-pagi:hover:not(.disabled, .disabled),
        .pagi-ajax .pagination-custom-ajax .pagi-item .next-pagi:hover:not(.disabled, .disabled) {
          border-color: #035eb7; }
          .pagi-ajax .pagination-custom-ajax .pagi-item .prev-pagi:hover:not(.disabled, .disabled) svg path,
          .pagi-ajax .pagination-custom-ajax .pagi-item .next-pagi:hover:not(.disabled, .disabled) svg path {
            stroke: #035eb7; }
        .pagi-ajax .pagination-custom-ajax .pagi-item .prev-pagi.disabled,
        .pagi-ajax .pagination-custom-ajax .pagi-item .next-pagi.disabled {
          cursor: not-allowed;
          opacity: 0.5; }
      .pagi-ajax .pagination-custom-ajax .pagi-item.disabled .prev-pagi,
      .pagi-ajax .pagination-custom-ajax .pagi-item.disabled .next-pagi {
        cursor: not-allowed;
        opacity: 0.5; }
    @media (max-width: 767px) {
      .pagi-ajax .pagination-custom-ajax {
        gap: 12px; }
        .pagi-ajax .pagination-custom-ajax .pagi-item span {
          width: 28px;
          height: 28px;
          font-size: 14px; } }

body.is-checkout-vat-modal-open {
  overflow: hidden; }

.checkout-vat-modal {
  position: fixed;
  inset: 0;
  z-index: 10080;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: var(--skin-header-font); }
  .checkout-vat-modal.is-open {
    display: flex; }
  .checkout-vat-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.48); }
  .checkout-vat-modal__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 540px;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    overflow: visible;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column; }
  .checkout-vat-modal__head {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 12px 48px 16px 20px;
    flex-shrink: 0; }
  .checkout-vat-modal__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    flex-shrink: 0; }
  .checkout-vat-modal__title {
    flex: 1;
    min-width: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #111; }
  .checkout-vat-modal__close-fab {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #555e67;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12); }
    .checkout-vat-modal__close-fab svg {
      display: block;
      flex-shrink: 0; }

.checkout-vat-tabs {
  display: flex;
  gap: 6px;
  padding: 2px;
  border-radius: 8px;
  background: #f3f3f4; }
  .checkout-vat-tabs__btn {
    flex: 1;
    min-width: 0;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    background: #eff0f0;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #929292;
    cursor: pointer;
    transition: background 0.2s, color 0.2s; }
    .checkout-vat-tabs__btn.is-active {
      background: #035eb7;
      color: #fff; }

.checkout-vat-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0; }
  .checkout-vat-form__scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 0 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px; }
  .checkout-vat-form__panel {
    display: none;
    flex-direction: column;
    gap: 16px; }
    .checkout-vat-form__panel.is-active {
      display: flex; }
  .checkout-vat-form__group {
    display: flex;
    flex-direction: column;
    gap: 0; }
  .checkout-vat-form__error {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 16px 0 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #ff0202; }
    .checkout-vat-form__error.d-none {
      display: none; }
    .checkout-vat-form__error svg {
      flex-shrink: 0;
      width: 14px;
      height: 14px;
      margin-top: 3px; }
  .checkout-vat-form__foot {
    flex-shrink: 0;
    padding: 16px; }
  .checkout-vat-form__submit {
    width: 100%;
    min-height: 46px;
    border: none;
    border-radius: 8px;
    background: var(--skin-primary-color);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    cursor: pointer; }

.checkout-vat-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-height: 72px;
  padding: 8px 20px;
  border: 1px solid rgba(197, 198, 204, 0.6);
  border-radius: 8px;
  background: #fff;
  margin: 0;
  cursor: text; }
  .checkout-vat-field__label {
    display: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #003d79; }
  .checkout-vat-field__input {
    width: 100%;
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #414141;
    outline: none; }
    .checkout-vat-field__input::placeholder {
      color: #b5b5b5;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.4; }
  .checkout-vat-field.is-filled .checkout-vat-field__label, .checkout-vat-field:focus-within .checkout-vat-field__label {
    display: block; }
  .checkout-vat-field.is-filled .checkout-vat-field__input::placeholder, .checkout-vat-field:focus-within .checkout-vat-field__input::placeholder {
    color: transparent; }

.checkout-layout .checkout-vat-card__summary {
  font-size: 14px;
  line-height: 1.4;
  color: #414141; }
  .checkout-layout .checkout-vat-card__summary p {
    margin: 0 0 4px; }
  .checkout-layout .checkout-vat-card__summary strong {
    font-weight: 500;
    color: #111; }

/*-----------------------------------------------*/
/* RESPONSIVE */
/*-----------------------------------------------*/
@media (min-width: 992px) {
  .main-footer {
    padding: 40px 0;
    position: relative;
    z-index: 3; }
    .main-footer .footer-inner {
      flex-direction: row;
      gap: 30px; }
      .main-footer .footer-inner .footer-coll {
        -ms-flex: 0 0 calc((100% - 30px) / 2);
        flex: 0 0 calc((100% - 30px) / 2);
        max-width: calc((100% - 30px) / 2); } }

@media (min-width: 1024px) {
  .main-footer .main-footer--grid {
    flex-direction: row; }
    .main-footer .main-footer--grid .footer-coll.coll-left {
      -ms-flex: 0 0 178px;
      flex: 0 0 178px;
      max-width: 178px; }
    .main-footer .main-footer--grid .footer-coll.coll-right {
      -ms-flex: 0 0 calc(100% - 178px - 40px);
      flex: 0 0 calc(100% - 178px - 40px);
      max-width: calc(100% - 178px - 40px); }
  .main-footer .slogan {
    font-size: 40px; }
  .main-footer .footer-inner .footer-title h4 {
    font-size: 24px; }
  .main-footer .footer-inner .footer-content div.list {
    gap: 26px; }
    .main-footer .footer-inner .footer-content div.list .item {
      gap: 19px; }
      .main-footer .footer-inner .footer-content div.list .item .icon {
        font-size: 20px; }
      .main-footer .footer-inner .footer-content div.list .item .detail {
        font-size: 16px; }
  .main-footer .footer-inner .footer-content ul.list li a {
    font-size: 17px; }
  .main-footer .footer-inner .footer-block {
    gap: 35px; }
  .main-footer .footer-inner .footer-coll {
    gap: 37px; }
  .main-footer .footer-inner .footer-info .footer-content {
    gap: 32px; }
  .main-footer .footer-inner .footer-info .text {
    font-size: 17px; } }

@media (min-width: 1170px) {
  .main-footer .main-footer--grid {
    column-gap: 40px; }
    .main-footer .main-footer--grid .footer-coll.coll-right {
      -ms-flex: 0 0 calc(100% - 180px - 82px);
      flex: 0 0 calc(100% - 180px - 82px);
      max-width: calc(100% - 180px - 82px); }
  .main-footer .footer-inner {
    gap: 30px;
    justify-content: space-between; }
    .main-footer .footer-inner .footer-coll {
      /*
        -ms-flex: 0 0 calc((100% - 58px) / 2);
        flex: 0 0 calc((100% - 58px) / 2);
        max-width: calc((100% - 58px) / 2);
        */ }
      .main-footer .footer-inner .footer-coll:first-child {
        flex: 0 0 auto;
        width: 41%; }
      .main-footer .footer-inner .footer-coll:nth-child(2) {
        flex: 0 0 auto;
        width: 26.1%; }
      .main-footer .footer-inner .footer-coll:nth-child(3) {
        flex: 0 0 auto;
        width: 21%; }
    .main-footer .footer-inner .footer-content ul.list {
      gap: 30px; }
      .main-footer .footer-inner .footer-content ul.list li {
        width: 100%; } }

@media (max-width: 767px) {
  .main-header .main-header--grid {
    padding: 8px 4px; }
    .main-header .main-header--grid .main-header--logo {
      width: 140px; }
  .main-header .main-header--action {
    width: auto; }
    .main-header .main-header--action .main-header--action-list .main-header--icon > a {
      width: 44px;
      height: 44px; }
      .main-header .main-header--action .main-header--action-list .main-header--icon > a svg {
        width: 28px;
        height: 28px; }
      .main-header .main-header--action .main-header--action-list .main-header--icon > a#js-click-menumobile {
        background: transparent; }
  .main-footer .footer-inner {
    gap: 24px; }
    .main-footer .footer-inner.footer-menu .footer-title .arrow {
      display: none; }
  .main-footer .main-footer--grid .footer-coll.coll-left {
    display: flex;
    gap: 12px;
    align-items: center; }
    .main-footer .main-footer--grid .footer-coll.coll-left .footer-logo {
      width: 99px; }
    .main-footer .main-footer--grid .footer-coll.coll-left .slogan-mb {
      display: block; }
  .main-footer .main-footer--grid .footer-coll.coll-right .slogan {
    display: none; }
  .main-footer .main-footer--grid .footer-coll.coll-right .footer-coll {
    padding: 0 8px; }
  .main-footer .main-footer--grid .footer-coll.coll-right .footer-block.footer-menu .footer-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    cursor: pointer; }
    .main-footer .main-footer--grid .footer-coll.coll-right .footer-block.footer-menu .footer-title .arrow {
      display: block;
      transition: all 0.5s ease-in-out; }
    .main-footer .main-footer--grid .footer-coll.coll-right .footer-block.footer-menu .footer-title.close .arrow {
      transform: rotate(180deg); }
  .section-userdashboard .box-dashboard--info .box-info.info-left:before {
    content: "" !important; }
  .section .custom-content:before {
    display: none; }
  .section .custom-content:after {
    display: none; }
  .section .swiper:not(.swiper-initialized), .section .swiper-container:not(.swiper-initialized) {
    padding-left: 0;
    margin: 0; }
    .section .swiper:not(.swiper-initialized) .products-slide, .section .swiper-container:not(.swiper-initialized) .products-slide {
      gap: 2px; }
      .section .swiper:not(.swiper-initialized) .products-slide .swiper-slide, .section .swiper-container:not(.swiper-initialized) .products-slide .swiper-slide {
        -webkit-flex: 0 0 42%;
        flex: 0 0 42%;
        max-width: 42%; }
  .section.section-collection.swiper-style:not(.section-flash-sale) {
    padding: 0 4px; }
    .section.section-collection.swiper-style:not(.section-flash-sale) .s-heading {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      border-top: none;
      border-bottom: 1px solid #035eb7;
      padding-top: 24px;
      padding-bottom: 12px; }
      .section.section-collection.swiper-style:not(.section-flash-sale) .s-heading.has-tab .s-heading--right {
        display: none; }
      .section.section-collection.swiper-style:not(.section-flash-sale) .s-heading:not(.has-tab) .s-heading--left {
        flex: 0 0 auto; }
      .section.section-collection.swiper-style:not(.section-flash-sale) .s-heading:not(.has-tab) .s-heading--right {
        flex: 0 0 auto;
        width: 37px;
        height: 37px;
        justify-content: center;
        align-items: center; }
        .section.section-collection.swiper-style:not(.section-flash-sale) .s-heading:not(.has-tab) .s-heading--right .text {
          display: none; }
  #flash-sale-products-slider .container {
    padding: 0; }
  .section-flash-sale .flash-sale-slot {
    width: calc(100% / var(--count-tab-flash)); }
  .section-flash-sale .flash-sale-background .flash-sale-content {
    padding: 0 0 24px 0;
    margin-left: 20px; }
  .product-loop .product-loop--wrap .product-loop--body {
    padding: 12px 8px 20px; }
    .product-loop .product-loop--wrap .product-loop--body .product-loop--title h3 {
      font-size: 13px;
      min-height: 34px; }
    .product-loop .product-loop--wrap .product-loop--body .product-loop--prices .price-current {
      font-size: 15px; }
    .product-loop .product-loop--wrap .product-loop--body .product-loop--prices .price-compare del {
      font-size: 11px; } }

/* ============================================================
   Start Page FAQ / Hỗ trợ - templates/page.faq.liquid
   ============================================================ */
.page-support {
  background: linear-gradient(182deg, rgba(247, 247, 247, 0) 50%, #fff 87%);
  padding-bottom: 48px; }
  .page-support__container {
    padding-top: 8px; }
  .page-support__layout {
    display: flex;
    align-items: flex-start;
    gap: 32px; }
  .page-support__sidebar {
    flex: 0 0 342px;
    max-width: 342px;
    padding: 8px 0; }
  .page-support__sidebar-title {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #272727;
    text-transform: uppercase; }
  .page-support__nav {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: support-nav; }
  .page-support__nav-item {
    counter-increment: support-nav;
    margin-bottom: 12px; }
    .page-support__nav-item.is-active .page-support__nav-link {
      background: #e5e7eb; }
  .page-support__nav-link {
    display: block;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.4;
    color: #111;
    text-decoration: none; }
    .page-support__nav-link::before {
      content: counter(support-nav) ". "; }
    .page-support__nav-link:hover {
      background: #f3f4f6; }
  .page-support__main {
    flex: 1;
    min-width: 0;
    background: #fff;
    border-radius: 8px;
    padding: 12px 15px 32px; }
    .page-support__main .js-faq-tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 40px;
      gap: 20px;
      border-bottom: none; }
      .page-support__main .js-faq-tabs .nav-link {
        border: 1px solid var(--main-color-primary);
        color: var(--main-color-primary);
        background: transparent;
        border-radius: 4px;
        font-weight: 600; }
        .page-support__main .js-faq-tabs .nav-link.active {
          background: var(--main-color-primary);
          color: #fff; }
  .page-support__title {
    margin: 0 0 16px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #035eb7;
    text-align: center;
    text-transform: uppercase; }
  .page-support__subtitle {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #111;
    text-transform: uppercase; }
    .page-support__subtitle h2,
    .page-support__subtitle h3,
    .page-support__subtitle p {
      margin: 0;
      font: inherit;
      color: inherit;
      text-transform: inherit; }
  .page-support__content {
    font-size: 16px;
    line-height: 2;
    color: #222; }
    .page-support__content h2,
    .page-support__content h3,
    .page-support__content h4 {
      color: #035eb7;
      font-weight: 600;
      text-transform: uppercase; }
    .page-support__content h2 {
      font-size: 24px; }
    .page-support__content a {
      color: #479ff6;
      text-decoration: underline; }
    .page-support__content p,
    .page-support__content ul,
    .page-support__content ol {
      margin-bottom: 12px; }

.page-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px; }
  .page-faq-accordion__item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 9.62px 12.025px rgba(0, 0, 0, 0.1);
    overflow: hidden; }
    .page-faq-accordion__item[open] .page-faq-accordion__icon {
      transform: rotate(90deg); }
  .page-faq-accordion__summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    cursor: pointer;
    list-style: none; }
    .page-faq-accordion__summary::-webkit-details-marker {
      display: none; }
  .page-faq-accordion__question {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #035eb7; }
  .page-faq-accordion__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M12.5 5L7.5 10L12.5 15' stroke='%23035EB7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-90deg);
    transition: transform 0.2s ease; }
  .page-faq-accordion__body {
    padding: 0 20px 20px;
    font-size: 16px;
    line-height: 2;
    color: #222; }
    .page-faq-accordion__body p {
      margin: 0 0 12px; }
      .page-faq-accordion__body p:last-child {
        margin-bottom: 0; }
    .page-faq-accordion__body ul,
    .page-faq-accordion__body ol {
      margin: 0 0 12px;
      padding-left: 20px; }
    .page-faq-accordion__body a {
      color: #035eb7;
      text-decoration: underline; }

@media (max-width: 991px) {
  .page-support__layout {
    flex-direction: column;
    gap: 24px; }
  .page-support__sidebar {
    flex: none;
    width: 100%;
    max-width: none; } }

@media (max-width: 767px) {
  .page-support {
    padding-bottom: 32px; }
    .page-support__title {
      font-size: 24px; }
    .page-support__subtitle {
      font-size: 18px; }
    .page-support__content {
      font-size: 15px;
      line-height: 1.8; }
  .page-faq-accordion {
    gap: 12px; }
    .page-faq-accordion__summary {
      padding: 16px; }
    .page-faq-accordion__question {
      font-size: 16px; }
    .page-faq-accordion__body {
      padding: 0 16px 16px;
      font-size: 15px;
      line-height: 1.8; } }

/* End Page FAQ */
/* ============================================================
   Start Page Flash Sale - templates/page.flash-sale.liquid
   ============================================================ */
.layout-flash-sale-page {
  padding: 0 0 48px; }
  .layout-flash-sale-page .flash-sale-page__banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: #fdb913; }
  .layout-flash-sale-page .flash-sale-page__banner-icon {
    display: inline-flex;
    flex-shrink: 0;
    width: 40px;
    height: 40px; }
    .layout-flash-sale-page .flash-sale-page__banner-icon svg {
      display: block;
      width: 100%;
      height: 100%; }
  .layout-flash-sale-page .flash-sale-page__banner-title {
    margin: 0;
    font-size: 40px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff8ea;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px; }
  .layout-flash-sale-page .flash-sale-page__slots {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px; }
  .layout-flash-sale-page .flash-sale-page__slots-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 120px;
    padding: 24px 10px; }
  .layout-flash-sale-page .flash-sale-page__slot {
    flex: 0 0 auto;
    min-width: 0;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    padding: 0 0 10px;
    text-align: center;
    cursor: pointer;
    font-family: var(--skin-header-font);
    transition: color 0.2s ease, border-color 0.2s ease; }
    .layout-flash-sale-page .flash-sale-page__slot .flash-sale-page__slot-time {
      display: block;
      font-size: 32px;
      line-height: 1.3;
      font-weight: 600;
      color: #111;
      text-decoration: underline;
      text-underline-offset: 4px;
      margin-bottom: 5px; }
    .layout-flash-sale-page .flash-sale-page__slot .flash-sale-page__slot-status {
      display: block;
      font-size: 20px;
      line-height: 1.2;
      font-weight: 400;
      color: rgba(114, 114, 114, 0.6);
      /*
      text-decoration: underline;
      text-underline-offset: 3px;
      */ }
    .layout-flash-sale-page .flash-sale-page__slot.is-active .flash-sale-page__slot-time, .layout-flash-sale-page .flash-sale-page__slot.is-active .flash-sale-page__slot-status {
      color: #137ce3; }
    .layout-flash-sale-page .flash-sale-page__slot.is-ended:not(.is-active) {
      opacity: 0.5;
      display: none; }
  .layout-flash-sale-page .flash-sale-page__toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 0; }
  .layout-flash-sale-page .flash-sale-page__countdown {
    display: inline-flex;
    align-items: center;
    gap: 10px; }
    .layout-flash-sale-page .flash-sale-page__countdown .flash-sale-countdown__label {
      font-size: 14px;
      line-height: 1.2;
      font-weight: 500;
      color: #111;
      text-transform: uppercase;
      text-decoration: underline;
      text-underline-offset: 3px; }
      .layout-flash-sale-page .flash-sale-page__countdown .flash-sale-countdown__label:empty {
        display: none; }
    .layout-flash-sale-page .flash-sale-page__countdown .flash-sale-countdown__timer {
      display: inline-flex;
      align-items: center;
      gap: 4px; }
    .layout-flash-sale-page .flash-sale-page__countdown .flash-sale-countdown__box {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 32px;
      height: auto;
      padding: 2px 6px;
      border-radius: 4px;
      background: linear-gradient(90deg, #ff2701 0%, #ff0202 100%);
      color: #fff;
      font-size: 16px;
      line-height: 1.2;
      font-weight: 500;
      line-height: 1.4;
      font-variant-numeric: tabular-nums; }
    .layout-flash-sale-page .flash-sale-page__countdown .flash-sale-countdown__sep {
      color: #111;
      font-size: 14px;
      line-height: 1.2;
      font-weight: 600;
      letter-spacing: 0.7px;
      text-transform: uppercase; }
  .layout-flash-sale-page .flash-sale-page__products {
    margin-bottom: 12px; }
  .layout-flash-sale-page .flash-sale-page__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 12px;
    margin: 0; }
    .layout-flash-sale-page .flash-sale-page__grid .product-tile, .layout-flash-sale-page .flash-sale-page__grid .product-loop {
      flex: 0 0 calc((100% - 12px) / 2);
      max-width: calc((100% - 12px) / 2);
      padding: 0; }
    .layout-flash-sale-page .flash-sale-page__grid .product-loop--wrap {
      background: #fff;
      border-radius: 8px; }
    .layout-flash-sale-page .flash-sale-page__grid .product-loop--prices .price {
      color: #035eb7;
      font-weight: 600; }
    .layout-flash-sale-page .flash-sale-page__grid .product-loop--prices .price-compare {
      color: rgba(114, 114, 114, 0.6);
      text-decoration: line-through; }
  .layout-flash-sale-page .flash-sale-page__pagination {
    padding-top: 12px; }
    .layout-flash-sale-page .flash-sale-page__pagination .page-node.is-disabled {
      opacity: 0.4;
      pointer-events: none; }
  @media (min-width: 768px) {
    .layout-flash-sale-page .flash-sale-page__grid .product-tile,
    .layout-flash-sale-page .flash-sale-page__grid .product-loop {
      flex: 0 0 calc((100% - (12px * 2)) / 3);
      max-width: calc((100% - (12px * 2)) / 3); } }
  @media (min-width: 1200px) {
    .layout-flash-sale-page {
      padding-bottom: 64px; }
      .layout-flash-sale-page .flash-sale-page__grid .product-tile,
      .layout-flash-sale-page .flash-sale-page__grid .product-loop {
        flex: 0 0 calc((100% - (12px * 3)) / 4);
        max-width: calc((100% - (12px * 3)) / 4); } }
  @media (max-width: 767px) {
    .layout-flash-sale-page {
      padding: 0 0 32px; }
      .layout-flash-sale-page .flash-sale-page__banner {
        padding: 16px;
        margin-bottom: 16px; }
      .layout-flash-sale-page .flash-sale-page__banner-title {
        font-size: 24px;
        line-height: 1.2; }
      .layout-flash-sale-page .flash-sale-page__slots-inner {
        gap: 16px 24px;
        padding: 16px 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap; }
        .layout-flash-sale-page .flash-sale-page__slots-inner::-webkit-scrollbar {
          display: none; }
      .layout-flash-sale-page .flash-sale-page__slot {
        flex: 0 0 auto; }
        .layout-flash-sale-page .flash-sale-page__slot .flash-sale-page__slot-time {
          font-size: 24px;
          line-height: 1.2;
          font-size: 16px; }
        .layout-flash-sale-page .flash-sale-page__slot .flash-sale-page__slot-status {
          font-size: 14px;
          line-height: 1.2; }
      .layout-flash-sale-page .flash-sale-page__toolbar {
        justify-content: center;
        padding: 12px 0; }
      .layout-flash-sale-page .flash-sale-page__grid {
        gap: 8px; }
        .layout-flash-sale-page .flash-sale-page__grid .product-loop {
          flex: 0 0 auto;
          width: 100%;
          max-width: unset;
          padding: 12px 4px 0; }
          .layout-flash-sale-page .flash-sale-page__grid .product-loop .product-loop--wrap {
            flex-direction: row;
            gap: 16px; }
            .layout-flash-sale-page .flash-sale-page__grid .product-loop .product-loop--wrap .product-loop--head {
              flex: 0 0 auto;
              width: 124px; }
            .layout-flash-sale-page .flash-sale-page__grid .product-loop .product-loop--wrap .product-loop--body {
              flex: 0 0 auto;
              width: calc(100% - 140px); }
              .layout-flash-sale-page .flash-sale-page__grid .product-loop .product-loop--wrap .product-loop--body .product-loop--prices {
                flex-direction: column;
                align-items: flex-start; } }

/* End Page Flash Sale */
/* ============================================================
   Cart add success toast - Figma 1715:94598
   ============================================================ */
.cart-add-success {
  position: fixed;
  top: 96px;
  left: 50%;
  z-index: 10050;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px;
  border-radius: 12px;
  background: #dff7dc;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease; }
  .cart-add-success.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0); }
  .cart-add-success__message {
    display: inline-flex;
    align-items: center;
    gap: 12px; }
  .cart-add-success__icon {
    display: inline-flex;
    flex-shrink: 0;
    width: 18px;
    height: 18px; }
    .cart-add-success__icon svg {
      display: block;
      width: 100%;
      height: 100%; }
  .cart-add-success__text {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    color: #111;
    line-height: 1.3;
    white-space: nowrap; }
  .cart-add-success__link {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    color: #035eb7;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap; }
    .cart-add-success__link:hover {
      text-decoration: underline; }
  @media (max-width: 767px) {
    .cart-add-success {
      top: 68px;
      bottom: auto;
      left: 16px;
      right: 16px;
      width: auto;
      max-width: none;
      transform: translateY(-12px);
      gap: 16px;
      justify-content: space-between;
      padding: 14px 16px; }
      .cart-add-success.is-show {
        transform: translateY(0); } }

.threwards-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
  text-align: center;
  margin-bottom: 15px; }
  .threwards-table th, .threwards-table td {
    padding: 8px;
    border: 1px solid #000; }
    .threwards-table th:first-child, .threwards-table td:first-child {
      padding-left: 8px !important; }
  .threwards-table th {
    background-color: #f2f2f2; }
  .threwards-table .text-center {
    text-align: center; }

.threwards-container ul {
  list-style: disc;
  padding-left: 15px;
  margin-bottom: 15px; }

.threwards-container ol {
  list-style: revert;
  padding-left: 15px;
  margin-bottom: 15px; }

.checkout-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap; }
  .checkout-badge--green {
    border: 1px solid var(--cart-green);
    color: var(--cart-green); }

@media (max-width: 767px) {
  .js-cart-main {
    padding: 0; }
  .cart-layout .cart-item {
    padding: 12px 4px; }
  .cart-layout .cart-item--has-gift .cart-item__product {
    display: flex;
    flex-wrap: wrap; }
  .cart-layout .cart-item__thumb {
    align-self: flex-start; }
  .cart-layout .cart-item__body {
    flex: 0 0 auto;
    width: calc(100% - 84px);
    display: flex; }
    .cart-layout .cart-item__body .cart-item__main {
      display: flex;
      flex-wrap: wrap; }
      .cart-layout .cart-item__body .cart-item__main .cart-item__info {
        display: block;
        flex: 0 0 auto;
        width: 100%; }
      .cart-layout .cart-item__body .cart-item__main .cart-item__aside {
        display: flex;
        flex: 0 0 auto;
        width: 100%;
        flex-wrap: nowrap;
        justify-content: space-between; }
        .cart-layout .cart-item__body .cart-item__main .cart-item__aside .cart-item__actions-col {
          flex-direction: column;
          flex: 0 0 auto;
          width: 166px;
          justify-content: flex-end; }
          .cart-layout .cart-item__body .cart-item__main .cart-item__aside .cart-item__actions-col .cart-qty {
            width: 154px;
            flex: 0 0 auto; }
            .cart-layout .cart-item__body .cart-item__main .cart-item__aside .cart-item__actions-col .cart-qty input {
              width: 70px; }
      .cart-layout .cart-item__body .cart-item__main .cart-item__price {
        margin-top: 10px;
        flex-direction: column;
        align-items: flex-start; }
  .cart-layout .cart-item--has-gift .cart-item__gift:not(.cart-item__gift--order) {
    flex: 0 0 auto;
    box-sizing: border-box;
    width: calc(100% + 28px);
    margin-left: -28px; } }

/* ============================================================
   Start Page CTKM - templates/page.ctkm.liquid
   ============================================================ */
.ctkm-page {
  padding: 0 0 48px; }
  .ctkm-page .breadcrumb-wrapper {
    margin-bottom: 0; }
  .ctkm-page .ctkm-title {
    margin: 0;
    padding: 20px 0;
    border-top: 1px solid #035eb7;
    font-size: 40px;
    line-height: 1.3;
    font-weight: 500;
    line-height: 1.4;
    color: #035eb7;
    text-transform: capitalize; }
  .ctkm-page .ctkm-banners {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 32px 0 48px; }
  .ctkm-page .ctkm-banner-row {
    display: flex;
    align-items: stretch;
    gap: 34px; }
  .ctkm-page .ctkm-banner {
    overflow: hidden;
    border-radius: 8px; }
    .ctkm-page .ctkm-banner img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .ctkm-page .ctkm-banner--lg {
    flex: 782 1 0;
    min-width: 0;
    aspect-ratio: 782 / 464; }
  .ctkm-page .ctkm-banner--sm {
    flex: 464 1 0;
    min-width: 0;
    aspect-ratio: 1 / 1; }
  .ctkm-page .ctkm-group {
    margin-bottom: 48px; }
    .ctkm-page .ctkm-group:last-child {
      margin-bottom: 0; }
  .ctkm-page .ctkm-group__title {
    margin: 0 0 16px;
    padding: 8px 0;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
    line-height: 1.4;
    color: #111; }
  .ctkm-page .ctkm-group__slider.section-collection {
    overflow: initial; }
    .ctkm-page .ctkm-group__slider.section-collection .s-wrapper,
    .ctkm-page .ctkm-group__slider.section-collection .s-content {
      padding: 0; }
    .ctkm-page .ctkm-group__slider.section-collection .swiper-navcontrol {
      margin-top: 16px; }

@media (max-width: 991px) {
  .ctkm-page .ctkm-banners {
    gap: 16px;
    margin: 24px 0 32px; }
  .ctkm-page .ctkm-banner-row,
  .ctkm-page .ctkm-banner-row--reverse {
    flex-direction: column;
    gap: 16px; }
  .ctkm-page .ctkm-banner--lg,
  .ctkm-page .ctkm-banner--sm {
    flex: 1 1 auto;
    width: 100%; }
  .ctkm-page .ctkm-group {
    margin-bottom: 32px; }
  .ctkm-page .ctkm-group__title {
    font-size: 24px;
    line-height: 1.2; } }

/* End Page CTKM */
