@charset "UTF-8";
/* ==================== CART PAGE STYLES ==================== */
button {
  outline: none !important; }
  button:focus {
    outline: none !important; }

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

body {
  font-family: "Roboto", sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fafafa; }

.cart-page {
  padding: 48px 40px 72px; }
  .cart-page__container {
    display: flex;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto; }
  .cart-page__left {
    flex: 1;
    max-width: 883px; }
  .cart-page__right {
    width: 585px;
    flex-shrink: 0;
    position: relative; }

.cart-header {
  margin-bottom: 48px; }
  .cart-header__breadcrumb {
    margin-bottom: 20px; }
  .cart-header__title {
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: normal;
    letter-spacing: -1.2px;
    color: #0a0a0a;
    margin: 0; }

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px; }

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

.breadcrumb-link {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #737373;
  text-decoration: none; }
  .breadcrumb-link:hover {
    color: #D70000; }

.breadcrumb-separator {
  display: flex;
  align-items: center;
  color: #737373; }
  .breadcrumb-separator svg {
    width: 16px;
    height: 16px; }

.breadcrumb-current {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #0a0a0a; }

.cart-progress {
  margin-bottom: 48px; }
  .cart-progress__steps {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px; }
  .cart-progress__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative; }
    .cart-progress__step:not(:last-child) .cart-progress__line {
      display: block; }
    .cart-progress__step.is-completed .cart-progress__icon {
      background: #0a0a0a;
      border-color: #0a0a0a;
      color: #fff; }
    .cart-progress__step.is-completed .cart-progress__line {
      background: #0a0a0a; }
    .cart-progress__step.is-active .cart-progress__icon {
      background: #0a0a0a;
      border-color: #0a0a0a;
      color: #fff; }
  .cart-progress__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #737373;
    position: relative;
    z-index: 2; }
    .cart-progress__icon svg {
      width: 20px;
      height: 20px; }
  .cart-progress__line {
    display: none;
    position: absolute;
    top: 20px;
    left: 40px;
    right: 0;
    height: 2px;
    background: #e5e5e5;
    z-index: 1; }
  .cart-progress__info {
    margin-top: 8px;
    padding-right: 16px; }
  .cart-progress__label {
    display: block;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #0a0a0a; }
  .cart-progress__sublabel {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    line-height: 18px;
    color: #737373; }

.cart-promo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap; }
  .cart-promo__text {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #0a0a0a;
    margin: 0; }
    .cart-promo__text strong {
      font-weight: 600; }
  .cart-promo__btn {
    padding: 8px 24px;
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.1px;
    text-transform: uppercase;
    color: #0a0a0a;
    background: #fff;
    border: 1px solid #0a0a0a;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease; }
    .cart-promo__btn:hover {
      background: #0a0a0a;
      color: #fff; }

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px; }

.cart-item {
  display: flex;
  align-items: stretch;
  background: #fafafa;
  border: 1px solid #f5f5f5;
  border-radius: 2px;
  overflow: hidden; }
  .cart-item__image {
    width: 200px;
    flex-shrink: 0;
    padding: 12px 0 44px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5; }
    .cart-item__image img {
      max-width: 100%;
      max-height: 160px;
      object-fit: contain; }
  .cart-item__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px 20px 12px; }
  .cart-item__info {
    display: flex;
    flex-direction: column;
    gap: 2px; }
  .cart-item__name {
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: -0.2px;
    color: #0a0a0a;
    margin: 0; }
  .cart-item__prices {
    display: flex;
    align-items: flex-end;
    gap: 12px; }
  .cart-item__price {
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.2px;
    color: #D70000; }
    .cart-item__price--free {
      color: #D70000; }
  .cart-item__price-old {
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #737373;
    text-decoration: line-through; }
  .cart-item__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px; }
  .cart-item__variant {
    flex-shrink: 0; }
  .cart-item__variant-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 20px;
    min-height: 40px;
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -0.1px;
    text-transform: uppercase;
    color: #0a0a0a;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease; }
    .cart-item__variant-btn svg {
      width: 24px;
      height: 24px; }
    .cart-item__variant-btn:hover {
      border-color: #0a0a0a; }
  .cart-item__quantity {
    display: flex;
    align-items: center;
    border: 1px solid #0a0a0a;
    border-radius: 2px;
    overflow: hidden; }
  .cart-item__qty-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease; }
    .cart-item__qty-btn svg {
      width: 24px;
      height: 24px;
      color: #0a0a0a; }
    .cart-item__qty-btn:hover {
      background: #f5f5f5; }
  .cart-item__qty-input {
    width: 32px;
    height: 40px;
    text-align: center;
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #0a0a0a;
    border: none;
    background: transparent;
    -moz-appearance: textfield; }
    .cart-item__qty-input::-webkit-inner-spin-button, .cart-item__qty-input::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0; }
  .cart-item__delete {
    margin-left: auto;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease; }
    .cart-item__delete svg {
      width: 24px;
      height: 24px;
      color: #0a0a0a; }
    .cart-item__delete:hover {
      background: rgba(215, 0, 0, 0.1); }
      .cart-item__delete:hover svg {
        color: #D70000; }
  .cart-item--gift .cart-item__image {
    background: #ffebee; }

.cart-summary {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid #ff919c;
  border-radius: 2px;
  padding: 32px;
  box-shadow: 0px 24px 48px -12px rgba(16, 24, 40, 0.18); }
  .cart-summary__terms {
    margin-bottom: 12px; }
  .cart-summary__title {
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: normal;
    letter-spacing: -1.2px;
    color: #0a0a0a;
    margin: 0 0 16px 0; }
  .cart-summary__details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px; }
  .cart-summary__row {
    display: flex;
    align-items: flex-end;
    gap: 8px; }
  .cart-summary__label {
    flex: 1;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.1px;
    color: #0a0a0a; }
  .cart-summary__value {
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.2px;
    color: #0a0a0a; }
    .cart-summary__value u {
      text-decoration: underline; }
  .cart-summary__divider {
    height: 1px;
    background: #e5e5e5;
    margin: 12px 0; }
  .cart-summary__total {
    margin-bottom: 16px; }
  .cart-summary__total-row {
    display: flex;
    align-items: flex-start;
    gap: 8px; }
  .cart-summary__total-label {
    flex: 1;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.1px;
    color: #0a0a0a; }
  .cart-summary__total-value {
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: normal;
    letter-spacing: -1px;
    color: #D70000; }
    .cart-summary__total-value u {
      text-decoration: underline; }
  .cart-summary__saved {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.1px;
    color: #404040;
    text-align: right;
    margin: 4px 0 0 0; }
  .cart-summary__notes {
    list-style: disc;
    padding-left: 24px;
    margin: 16px 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.1px;
    color: #0a0a0a; }
    .cart-summary__notes li {
      margin-bottom: 8px; }
      .cart-summary__notes li:last-child {
        margin-bottom: 0; }
  .cart-summary__checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    background: #0a0a0a;
    border-radius: 2px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease; }
    .cart-summary__checkout-btn:hover {
      background: #242424;
      text-decoration: none; }
  .cart-summary__checkout-text {
    flex: 1;
    padding: 16px 24px;
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: -0.1px;
    text-transform: uppercase;
    color: #fff;
    text-align: center; }
  .cart-summary__checkout-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #D70000;
    align-self: stretch;
    position: relative; }
    .cart-summary__checkout-icon::before {
      content: '';
      position: absolute;
      left: -8px;
      top: 0;
      bottom: 0;
      width: 8px;
      background: #D70000;
      clip-path: polygon(100% 0, 100% 100%, 0 100%); }
    .cart-summary__checkout-icon svg {
      width: 24px;
      height: 24px;
      color: #fff; }

.cart-vat {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  margin-bottom: 16px; }
  .cart-vat__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.2px;
    color: #0a0a0a;
    text-align: left; }
  .cart-vat__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease; }
  .cart-vat__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 12px 16px; }
  .cart-vat__input {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #0a0a0a;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 2px; }
    .cart-vat__input::placeholder {
      color: #737373; }
    .cart-vat__input:focus {
      outline: none;
      border-color: #0a0a0a; }

@media (max-width: 1199px) {
  .cart-page__container {
    flex-direction: column; }
  .cart-page__left {
    max-width: none; }
  .cart-page__right {
    width: 100%; }
  .cart-summary {
    position: static; } }

@media (max-width: 991px) {
  .cart-page {
    padding: 32px 24px 48px; }
  .cart-header__title {
    font-size: 36px;
    line-height: 44px; }
  .cart-summary__title {
    font-size: 36px;
    line-height: 44px; }
  .cart-progress__steps {
    flex-wrap: wrap;
    gap: 16px; }
  .cart-progress__step {
    flex: 1 1 45%; }
    .cart-progress__step .cart-progress__line {
      display: none !important; } }

@media (max-width: 767px) {
  .cart-page {
    padding: 16px 16px 24px; }
    .cart-page__container {
      gap: 24px; }
  .cart-header {
    margin-bottom: 16px; }
    .cart-header__breadcrumb {
      margin-bottom: 12px; }
  .breadcrumb-link,
  .breadcrumb-current {
    font-size: 12px; }
  .cart-header__title {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.5px; }
  .cart-progress {
    margin-bottom: 16px; }
    .cart-progress__steps {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      gap: 4px;
      overflow-x: auto;
      padding-bottom: 8px; }
      .cart-progress__steps::-webkit-scrollbar {
        display: none; }
    .cart-progress__step {
      flex: 0 0 auto;
      min-width: 60px;
      flex-direction: column;
      align-items: center;
      text-align: center; }
      .cart-progress__step .cart-progress__line {
        display: none !important; }
      .cart-progress__step .cart-progress__info {
        margin-top: 6px;
        padding-right: 0; }
    .cart-progress__icon {
      width: 32px;
      height: 32px; }
      .cart-progress__icon svg {
        width: 16px;
        height: 16px; }
    .cart-progress__label {
      font-size: 10px;
      line-height: 14px;
      white-space: nowrap; }
    .cart-progress__sublabel {
      display: none; }
  .cart-promo {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px;
    background: #fafafa;
    border-radius: 2px;
    margin-bottom: 16px; }
    .cart-promo__text {
      font-size: 13px;
      line-height: 18px;
      flex: 1; }
    .cart-promo__btn {
      padding: 8px 16px;
      font-size: 12px;
      line-height: 16px;
      white-space: nowrap; }
  .cart-items {
    gap: 12px; }
  .cart-item {
    flex-direction: row;
    align-items: flex-start;
    padding: 12px;
    gap: 12px; }
    .cart-item__image {
      width: 80px;
      height: 80px;
      min-width: 80px;
      padding: 8px;
      border-radius: 2px; }
      .cart-item__image img {
        max-width: 100%;
        max-height: 100%; }
    .cart-item__content {
      flex: 1;
      padding: 0;
      gap: 8px;
      min-width: 0; }
    .cart-item__info {
      gap: 4px; }
    .cart-item__name {
      font-size: 14px;
      line-height: 20px; }
      .cart-item__name a {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden; }
    .cart-item__variant-title {
      font-size: 12px;
      color: #737373;
      margin: 0; }
    .cart-item__prices {
      gap: 8px;
      flex-wrap: wrap; }
    .cart-item__price {
      font-size: 16px;
      line-height: 22px; }
    .cart-item__price-old {
      font-size: 13px;
      line-height: 18px; }
    .cart-item__actions {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-top: 4px; }
    .cart-item__variant {
      display: none; }
    .cart-item__quantity {
      align-self: auto; }
      .cart-item__quantity .cart-item__qty-btn {
        width: 32px;
        height: 32px; }
        .cart-item__quantity .cart-item__qty-btn svg {
          width: 18px;
          height: 18px; }
      .cart-item__quantity .cart-item__qty-input {
        width: 28px;
        height: 32px;
        font-size: 14px; }
    .cart-item__line-price .line-item-total {
      font-size: 14px;
      font-weight: 600;
      color: #0a0a0a; }
    .cart-item__delete {
      margin-left: 0;
      margin-top: 0;
      padding: 6px; }
      .cart-item__delete svg {
        width: 20px;
        height: 20px; }
  .cart-summary {
    padding: 20px 16px;
    border-color: #e5e5e5;
    box-shadow: none; }
    .cart-summary__title {
      font-size: 20px;
      line-height: 28px;
      margin-bottom: 12px; }
    .cart-summary__details {
      gap: 8px;
      margin-bottom: 12px; }
    .cart-summary__row {
      justify-content: space-between; }
    .cart-summary__label {
      font-size: 14px;
      line-height: 20px; }
    .cart-summary__value {
      font-size: 16px;
      line-height: 22px; }
    .cart-summary__total-row {
      justify-content: space-between;
      align-items: center; }
    .cart-summary__total-label {
      font-size: 14px; }
    .cart-summary__total-value {
      font-size: 24px;
      line-height: 32px; }
    .cart-summary__saved {
      font-size: 13px;
      text-align: right; }
    .cart-summary__notes {
      font-size: 13px;
      line-height: 20px;
      padding-left: 20px;
      margin: 12px 0; }
      .cart-summary__notes li {
        margin-bottom: 4px; }
    .cart-summary__terms {
      margin-bottom: 12px; }
    .cart-summary__checkout-btn {
      min-height: 44px; }
    .cart-summary__checkout-text {
      font-size: 14px;
      padding: 12px 16px; }
    .cart-summary__checkout-icon {
      padding: 8px; }
      .cart-summary__checkout-icon svg {
        width: 20px;
        height: 20px; }
  .cart-vat {
    margin-bottom: 12px; }
    .cart-vat__toggle {
      padding: 12px;
      font-size: 16px;
      line-height: 22px; }
    .cart-vat__form {
      padding: 0 12px 12px;
      gap: 8px; }
    .cart-vat__input {
      min-height: 40px;
      padding: 8px 12px;
      font-size: 14px; }
  .cart-terms-label {
    font-size: 13px;
    line-height: 18px;
    display: flex;
    align-items: flex-start;
    gap: 8px; }
    .cart-terms-label .cart-terms-checkbox {
      margin-top: 2px;
      flex-shrink: 0; }
    .cart-terms-label .cart-terms-text {
      flex: 1; }
  .cart-empty {
    padding: 48px 16px; }
    .cart-empty__icon {
      width: 80px;
      height: 80px;
      margin-bottom: 16px; }
    .cart-empty__title {
      font-size: 20px;
      line-height: 28px; }
    .cart-empty__text {
      font-size: 14px;
      margin-bottom: 20px; }
    .cart-empty__btn {
      padding: 12px 24px;
      font-size: 14px;
      width: 100%; } }

.cart-empty {
  text-align: center;
  padding: 80px 24px; }
  .cart-empty__icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    color: #737373; }
    .cart-empty__icon svg {
      width: 100%;
      height: 100%; }
  .cart-empty__title {
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: #0a0a0a;
    margin-bottom: 12px; }
  .cart-empty__text {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #737373;
    margin-bottom: 24px; }
  .cart-empty__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    background: #0a0a0a;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease; }
    .cart-empty__btn:hover {
      background: #242424;
      color: #fff;
      text-decoration: none; }

.cart-ajloading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center; }
  .cart-ajloading__inner {
    font-size: 32px;
    color: #D70000; }

.cart-recommendations,
.cart-recently-viewed {
  padding: 42px 0px; }
  .cart-recommendations__wrapper,
  .cart-recently-viewed__wrapper {
    max-width: 100%;
    margin: 0 auto;
    position: relative; }
  .cart-recommendations__header,
  .cart-recently-viewed__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px; }
    @media (max-width: 767px) {
      .cart-recommendations__header,
      .cart-recently-viewed__header {
        margin-bottom: 0px; } }
  .cart-recommendations__title,
  .cart-recently-viewed__title {
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: normal;
    letter-spacing: -1.2px;
    margin: 0; }
  .cart-recommendations__slider,
  .cart-recently-viewed__slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px; }
  .cart-recommendations__swiper,
  .cart-recently-viewed__swiper {
    overflow: hidden;
    flex: 1; }
    .cart-recommendations__swiper .swiper-wrapper,
    .cart-recently-viewed__swiper .swiper-wrapper {
      display: flex; }
    .cart-recommendations__swiper .swiper-slide,
    .cart-recently-viewed__swiper .swiper-slide {
      flex-shrink: 0; }
      .cart-recommendations__swiper .swiper-slide .product-card,
      .cart-recently-viewed__swiper .swiper-slide .product-card {
        height: 100%; }
  .cart-recommendations__scrollbar-wrapper,
  .cart-recently-viewed__scrollbar-wrapper {
    padding: 40px 50px 0; }
  .cart-recommendations__scrollbar,
  .cart-recently-viewed__scrollbar {
    height: 4px;
    background: #fff;
    border-radius: 100px; }
    .cart-recommendations__scrollbar .swiper-scrollbar-drag,
    .cart-recently-viewed__scrollbar .swiper-scrollbar-drag {
      background: #404040;
      border-radius: 100px; }
  .cart-recommendations__nav,
  .cart-recently-viewed__nav {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    z-index: 99999999;
    transform: translateY(-50%);
    outline: none; }
    .cart-recommendations__nav svg,
    .cart-recently-viewed__nav svg {
      width: 24px;
      height: 24px;
      color: #0a0a0a; }
    .cart-recommendations__nav:focus,
    .cart-recently-viewed__nav:focus {
      outline: none; }
    .cart-recommendations__nav:hover,
    .cart-recently-viewed__nav:hover {
      background: #f5f5f5; }
    .cart-recommendations__nav.cart-recommendations__nav--prev,
    .cart-recently-viewed__nav.cart-recommendations__nav--prev {
      left: 0; }
    .cart-recommendations__nav.cart-recommendations__nav--next,
    .cart-recently-viewed__nav.cart-recommendations__nav--next {
      right: 0; }
    .cart-recommendations__nav.cart-recently-viewed__nav--prev,
    .cart-recently-viewed__nav.cart-recently-viewed__nav--prev {
      left: 0; }
    .cart-recommendations__nav.cart-recently-viewed__nav--next,
    .cart-recently-viewed__nav.cart-recently-viewed__nav--next {
      right: 0; }
    .cart-recommendations__nav.swiper-button-disabled,
    .cart-recently-viewed__nav.swiper-button-disabled {
      opacity: 0.5;
      cursor: not-allowed; }
  .cart-recommendations__scrollbar,
  .cart-recently-viewed__scrollbar {
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px; }
    .cart-recommendations__scrollbar .swiper-scrollbar-drag,
    .cart-recently-viewed__scrollbar .swiper-scrollbar-drag {
      background: #0a0a0a;
      border-radius: 2px; }

@media (max-width: 991px) {
  .cart-recommendations,
  .cart-recently-viewed {
    padding: 30px 0; }
    .cart-recommendations__nav,
    .cart-recently-viewed__nav {
      display: none; }
    .cart-recommendations__slider,
    .cart-recently-viewed__slider {
      gap: 0; } }

@media (max-width: 767px) {
  .cart-recommendations,
  .cart-recently-viewed {
    padding: 24px 0; }
    .cart-recommendations__title,
    .cart-recently-viewed__title {
      font-size: 16px; } }

.mini-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease; }
  .mini-cart-overlay.is-visible {
    opacity: 1;
    visibility: visible; }

body.mini-cart-open {
  overflow: hidden; }

.mini-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease; }
  .mini-cart.is-open {
    transform: translateX(0); }
  .mini-cart__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e5e5;
    flex-shrink: 0; }
  .mini-cart__title {
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.5px;
    color: #0a0a0a;
    margin: 0; }
  .mini-cart__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s ease; }
    .mini-cart__close svg {
      width: 24px;
      height: 24px;
      color: #0a0a0a; }
    .mini-cart__close:hover {
      background: #f5f5f5; }
  .mini-cart__progress {
    padding: 16px 20px;
    border-bottom: 1px solid #e5e5e5;
    flex-shrink: 0; }
  .mini-cart__progress-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px; }
  .mini-cart__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative; }
    .mini-cart__step:not(:last-child) .mini-cart__step-line {
      display: block; }
    .mini-cart__step.is-completed .mini-cart__step-icon {
      background: #0a0a0a;
      border-color: #0a0a0a;
      color: #fff; }
    .mini-cart__step.is-completed .mini-cart__step-line {
      background: #0a0a0a; }
    .mini-cart__step.is-current .mini-cart__step-icon {
      border-color: #0a0a0a; }
  .mini-cart__step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #737373;
    position: relative;
    z-index: 2; }
    .mini-cart__step-icon svg {
      width: 16px;
      height: 16px; }
  .mini-cart__step-line {
    display: none;
    position: absolute;
    top: 16px;
    left: calc(50% + 16px);
    right: calc(-50% + 16px);
    height: 2px;
    background: #e5e5e5;
    z-index: 1; }
  .mini-cart__step-label {
    display: block;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: 16px;
    color: #0a0a0a;
    margin-top: 6px;
    white-space: nowrap; }
  .mini-cart__step-sublabel {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 10px;
    line-height: 14px;
    color: #737373; }
  .mini-cart__promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    background: #fafafa;
    border-radius: 2px; }
  .mini-cart__promo-text {
    flex: 1;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    line-height: 18px;
    color: #0a0a0a;
    margin: 0; }
    .mini-cart__promo-text strong {
      font-weight: 600; }
  .mini-cart__promo-btn {
    padding: 8px 16px;
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    color: #0a0a0a;
    background: #fff;
    border: 1px solid #0a0a0a;
    border-radius: 2px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease; }
    .mini-cart__promo-btn:hover {
      background: #0a0a0a;
      color: #fff; }
  .mini-cart__items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px; }
    .mini-cart__items.is-loading {
      opacity: 0.5;
      pointer-events: none; }
  .mini-cart__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    font-size: 24px;
    color: #737373; }
  .mini-cart__item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: opacity 0.3s ease; }
    .mini-cart__item:first-child {
      padding-top: 0; }
    .mini-cart__item:last-child {
      border-bottom: none; }
    .mini-cart__item.is-removing {
      opacity: 0.3; }
    .mini-cart__item--gift .mini-cart__item-image {
      background: #ffebee; }
  .mini-cart__item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: #f5f5f5;
    border-radius: 2px;
    overflow: hidden; }
    .mini-cart__item-image img {
      width: 100%;
      height: 100%;
      object-fit: contain; }
  .mini-cart__item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0; }
  .mini-cart__item-info {
    display: flex;
    flex-direction: column;
    gap: 4px; }
  .mini-cart__item-name {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #0a0a0a;
    margin: 0; }
    .mini-cart__item-name a {
      color: inherit;
      text-decoration: none;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden; }
      .mini-cart__item-name a:hover {
        color: #D70000; }
  .mini-cart__item-prices {
    display: flex;
    align-items: center;
    gap: 8px; }
  .mini-cart__item-price {
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #D70000; }
  .mini-cart__item-price-old {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    line-height: 18px;
    color: #737373;
    text-decoration: line-through; }
  .mini-cart__item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap; }
  .mini-cart__item-variant {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    color: #0a0a0a;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    cursor: pointer;
    transition: border-color 0.2s ease; }
    .mini-cart__item-variant svg {
      width: 16px;
      height: 16px; }
    .mini-cart__item-variant:hover {
      border-color: #0a0a0a; }
  .mini-cart__item-qty {
    display: flex;
    align-items: center;
    border: 1px solid #0a0a0a;
    border-radius: 2px; }
    .mini-cart__item-qty--static {
      border: none;
      background: #f5f5f5;
      padding: 6px 12px; }
      .mini-cart__item-qty--static .mini-cart__item-qty-value {
        font-size: 14px; }
  .mini-cart__item-qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease; }
    .mini-cart__item-qty-btn svg {
      width: 16px;
      height: 16px;
      color: #0a0a0a; }
    .mini-cart__item-qty-btn:hover {
      background: #f5f5f5; }
  .mini-cart__item-qty-value {
    min-width: 24px;
    text-align: center;
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #0a0a0a; }
  .mini-cart__item-delete {
    margin-left: auto;
    padding: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s ease; }
    .mini-cart__item-delete svg {
      width: 20px;
      height: 20px;
      color: #0a0a0a; }
    .mini-cart__item-delete:hover {
      background: rgba(215, 0, 0, 0.1); }
      .mini-cart__item-delete:hover svg {
        color: #D70000; }
  .mini-cart__footer {
    padding: 16px 20px;
    border-top: 1px solid #e5e5e5;
    background: #fff;
    flex-shrink: 0; }
  .mini-cart__summary {
    margin-bottom: 16px; }
  .mini-cart__summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px; }
  .mini-cart__summary-label {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #0a0a0a; }
  .mini-cart__summary-value {
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #0a0a0a; }
  .mini-cart__summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid #e5e5e5;
    margin-top: 8px; }
  .mini-cart__summary-total-label {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #0a0a0a; }
  .mini-cart__summary-total-value {
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #D70000; }
  .mini-cart__actions {
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .mini-cart__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    padding: 12px 16px;
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease; }
    .mini-cart__btn svg {
      width: 20px;
      height: 20px; }
    .mini-cart__btn--continue {
      color: #0a0a0a;
      background: transparent;
      border: none; }
      .mini-cart__btn--continue:hover {
        color: #D70000; }
    .mini-cart__btn--cart {
      color: #0a0a0a;
      background: #fff;
      border: 1px solid #0a0a0a; }
      .mini-cart__btn--cart:hover {
        background: #0a0a0a;
        color: #fff;
        text-decoration: none; }
    .mini-cart__btn--checkout {
      color: #fff;
      background: #0a0a0a;
      border: 1px solid #0a0a0a; }
      .mini-cart__btn--checkout:hover {
        background: #242424;
        text-decoration: none; }
  .mini-cart__empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center; }
  .mini-cart__empty-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    color: #737373; }
    .mini-cart__empty-icon svg {
      width: 100%;
      height: 100%; }
  .mini-cart__empty-text {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #737373;
    margin: 0 0 24px; }

@media (max-width: 480px) {
  .mini-cart {
    max-width: 100%; }
    .mini-cart__header {
      padding: 12px 16px; }
    .mini-cart__title {
      font-size: 20px;
      line-height: 28px; }
    .mini-cart__progress {
      padding: 12px 16px; }
    .mini-cart__step-label {
      font-size: 10px; }
    .mini-cart__step-sublabel {
      display: none; }
    .mini-cart__promo {
      flex-direction: column;
      gap: 8px; }
      .mini-cart__promo-btn {
        width: 100%; }
    .mini-cart__items {
      padding: 12px 16px; }
    .mini-cart__footer {
      padding: 12px 16px; }
    .mini-cart__summary-total-value {
      font-size: 20px;
      line-height: 28px; } }

@media (min-width: 992px) {
  .mini-cart {
    max-width: 480px; }
    .mini-cart__header {
      padding: 20px 24px; }
    .mini-cart__title {
      font-size: 28px;
      line-height: 36px; }
    .mini-cart__progress {
      padding: 20px 24px; }
    .mini-cart__step-icon {
      width: 36px;
      height: 36px; }
      .mini-cart__step-icon svg {
        width: 18px;
        height: 18px; }
    .mini-cart__step-label {
      font-size: 12px; }
    .mini-cart__step-sublabel {
      display: block;
      font-size: 11px; }
    .mini-cart__promo {
      padding: 14px 16px; }
    .mini-cart__promo-text {
      font-size: 14px;
      line-height: 20px; }
    .mini-cart__promo-btn {
      padding: 10px 20px;
      font-size: 13px; }
    .mini-cart__items {
      padding: 20px 24px; }
    .mini-cart__item {
      padding: 20px 0; }
    .mini-cart__item-image {
      width: 100px;
      height: 100px; }
    .mini-cart__item-name {
      font-size: 15px;
      line-height: 22px; }
    .mini-cart__item-price {
      font-size: 18px;
      line-height: 24px; }
    .mini-cart__item-price-old {
      font-size: 14px; }
    .mini-cart__item-variant {
      padding: 8px 16px;
      font-size: 13px; }
    .mini-cart__item-qty-btn {
      width: 36px;
      height: 36px; }
      .mini-cart__item-qty-btn svg {
        width: 18px;
        height: 18px; }
    .mini-cart__item-qty-value {
      min-width: 28px;
      font-size: 15px; }
    .mini-cart__footer {
      padding: 20px 24px; }
    .mini-cart__summary-label {
      font-size: 15px; }
    .mini-cart__summary-value {
      font-size: 18px; }
    .mini-cart__summary-total-label {
      font-size: 15px; }
    .mini-cart__summary-total-value {
      font-size: 28px;
      line-height: 36px; }
    .mini-cart__btn {
      min-height: 48px;
      font-size: 15px; }
      .mini-cart__btn--checkout {
        min-height: 52px;
        font-size: 16px; } }

@media (max-width: 767px) {
  .cart-progress__step.is-completed .cart-progress__line {
    left: 35px;
    background: #0a0a0a; }
  .cart-progress__steps {
    display: flex;
    flex-direction: initial;
    justify-content: flex-start;
    gap: 4px;
    overflow-x: initial;
    padding-bottom: 0; }
  .cart-progress__step:not(:last-child) .cart-progress__line {
    display: block !important; } }

@media (max-width: 767px) {
  .cart-progress__steps {
    justify-content: space-between; }
  .cart-progress__step.is-completed .cart-progress__line {
    left: 38px !important; }
  .cart-progress__steps {
    display: flex;
    align-items: center; }
  .cart-progress__step {
    min-width: initial; }
  .cart-progress__step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .cart-progress__line {
    position: absolute;
    top: 18px;
    left: calc(100% + 6px);
    width: calc(100vw - 160px);
    /* sẽ bị override bằng JS */
    height: 2px;
    background: #0a0a0a; }
  .cart-progress__step:last-child .cart-progress__line {
    display: none; } }
