/* ==========================================================================
   1. VARIÁVEIS GLOBAIS (DESIGN TOKENS)
   ========================================================================== */
:root {
  /* Cores Principais */
  --sp-color-primary: var(--e-global-color-primary, #2a4fda);
  --sp-color-primary-hover: #1e3bbf;
  --sp-color-danger: #f4455a;
  --sp-color-success: #28a745;
  --sp-color-thematic: #9285f9;

  /* Textos e Backgrounds */
  --sp-text-main: var(--e-global-color-text, #121921);
  --sp-text-muted: #57687a;
  --sp-bg-light: #fafcfe;
  --sp-bg-white: #ffffff;

  /* Fontes */
  --sp-font-title: "Campuni", sans-serif;
  --sp-font-body: "Figtree", sans-serif;

  /* Sombras e Bordas */
  --sp-shadow-hover:
    0 4px 12px var(--sp-color-primary), 0 0 3px var(--sp-color-primary);
  --sp-shadow-default:
    0 4px 8px rgba(0, 0, 0, 0.06), 0 0 4px rgba(0, 0, 0, 0.04);
  --sp-border-radius: 8px;
  --sp-border-label: 1px solid #0000001a;
  --sp-border-button: 1px solid #000000;
  --sp-transition: all 0.3s ease;
}

/* --- Estados de Visibilidade Genéricos --- */
.is-hidden {
  display: none !important;
}

.is-visible-block {
  display: block !important;
}

.is-visible-flex {
  display: flex !important;
}

.is-locked {
  background-color: #f8f9fa !important;
  cursor: not-allowed;
  pointer-events: none;
  user-select: none;
  border-color: #dee2e6 !important;
}

/* --- MODIFICADORES GLOBAIS DE ESTADO (Erro / Sucesso) --- */

.is-invalid {
  border-color: #D93025 !important;
  box-shadow: 0 0 0 1px #D93025 !important;
}

.is-valid {
  border-color: #188038 !important;
  box-shadow: 0 0 0 1px #188038 !important;
}

/* ==========================================================================
   2. COMPONENTE BASE: CART ITEM (Botão, Gaveta e Checkout)
   ========================================================================== */
.smart-product-add-to-cart-btn {
  position: relative;
  width: 100%;
  height: 40px;
  background: var(--e-global-color-primary, #2a4fda);
  border: none;
  border-radius: 8px;
  font-family: "Figtree", sans-serif !important;
  font-size: 14px !important;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s ease !important;
}

.smart-product-add-to-cart-btn.is-enrolled {
  background: #2A4FDA !important;
  opacity: 0.3 !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 8px !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  box-shadow: none !important;
}

.smart-product-add-to-cart-btn .btn-text-default,
.smart-product-add-to-cart-btn .btn-text-enrolled {
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.smart-product-add-to-cart-btn .btn-text-enrolled {
  position: absolute;
  opacity: 0;
  transform: translateY(10px);
  color: var(--sp-bg-white) !important;
}

.smart-product-add-to-cart-btn.is-enrolled .btn-text-default {
  opacity: 0;
  transform: translateY(-10px);
}

.smart-product-add-to-cart-btn.is-enrolled .btn-text-enrolled {
  opacity: 1;
  transform: translateY(0);
}

.smart-product-add-to-cart-btn svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.smart-product-add-to-cart-btn:not(.is-enrolled):hover {
  box-shadow: 0 1px 4px var(--sp-color-primary), 0 0 3px var(--sp-color-primary);
  transform: translateY(-1px);
}

.smart-product-add-to-cart-btn:not(.is-enrolled):focus {
  border-color: #3b4aff !important;
}

.smart-product-add-to-cart-btn .btn-text-added {
  position: absolute;
  opacity: 0;
  transform: translateY(10px);
  color: #fff !important;
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.smart-product-add-to-cart-btn.is-added {
  background: #28a745 !important;
  border-color: #28a745 !important;
  cursor: default !important;
  pointer-events: none !important;
}

.smart-product-add-to-cart-btn.is-added .btn-text-default,
.smart-product-add-to-cart-btn.is-added .btn-text-loading {
  opacity: 0;
  transform: translateY(-10px);
}

.smart-product-add-to-cart-btn.is-added .btn-text-added {
  opacity: 1;
  transform: translateY(0);
}

.smart-product-add-to-cart-btn .btn-text-added svg {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  fill: #fff;
}

.smart-product-add-to-cart-btn .btn-text-loading {
  position: absolute;
  opacity: 0;
  transform: translateY(10px);
  color: #fff !important;
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.smart-product-add-to-cart-btn.is-loading {
  background: #3b5bdb !important;
  cursor: wait !important;
  pointer-events: none !important;
}

.smart-product-add-to-cart-btn.is-loading .btn-text-default {
  opacity: 0;
  transform: translateY(-10px);
}

.smart-product-add-to-cart-btn.is-loading .btn-text-loading {
  opacity: 1;
  transform: translateY(0);
}

.smart-product-add-to-cart-btn .sp-spinner {
  animation: sp-rotate 2s linear infinite;
  width: 18px;
  height: 18px;
  margin-left: 8px;
}

.smart-product-add-to-cart-btn.is-added .sp-spinner {
  animation: none;
}

.smart-product-add-to-cart-btn .sp-spinner .path {
  stroke: #fff;
  stroke-linecap: round;
  animation: sp-dash 1.5s ease-in-out infinite;
}

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

@keyframes sp-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

.smart-product-add-to-cart-btn:hover {
  box-shadow: 0 1px 4px var(--sp-color-primary), 0 0 3px var(--sp-color-primary);
  transform: translateY(-1px);
}

.smart-product-add-to-cart-btn:focus {
  border-color: #3b4aff !important;
}

.cart-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: var(--sp-border-radius);
  background-color: var(--sp-bg-white);
  margin-bottom: 20px;
  box-shadow: var(--sp-shadow-default);
  transition: var(--sp-transition);
  max-height: 460px;
  overflow: hidden;
}

.cart-item.removing {
  transition: transform 0.4s ease-out, opacity 0.4s ease-out, max-height 0.4s ease-in-out 0.4s, margin 0.4s ease-in-out 0.4s, padding 0.4s ease-in-out 0.4s;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  max-height: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border: none;
}

.cart-item:hover {
  box-shadow: var(--sp-shadow-hover);
  transform: translateY(-2px);
}

.cart-item__media {
  flex-shrink: 0;
  width: 100%;
  height: 150px;
  border-radius: var(--sp-border-radius);
  position: relative;
  overflow: hidden;
  display: block;
}

.cart-item__thumb {
  width: 100%;
  height: 100% !important;
  max-height: 230px;
  border-radius: var(--sp-border-radius) !important;
  object-fit: cover;
  display: block;
  object-position: center;
}

.cart-item__badge {
  display: none;
  position: absolute;
  bottom: 8px;
  z-index: 5;
  font-family: var(--sp-font-title);
  color: var(--sp-bg-white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}

.cart-item__badge--thematic {
  left: 8px;
  background-color: var(--sp-color-thematic);
}

.cart-item__badge--indicated {
  right: 8px;
  background-color: var(--sp-color-success);
}

/* --- Corpo e Textos --- */
.cart-item__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  gap: 6px;
}

.cart-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item__titles {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 2px;
}

.cart-item__format {
  font-family: var(--sp-font-title);
  font-weight: 700;
  font-size: 12px;
  color: var(--sp-color-primary);
}

.cart-item__title {
  overflow-wrap: break-word;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--sp-text-main);
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.cart-item__meta-list {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-item__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--sp-text-muted);
  font-family: var(--sp-font-title);
  text-transform: uppercase;
  font-weight: 500;
}

.cart-item__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.cart-item__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.cart-item__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item__row--controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.cart-item__price {
  font-size: 18px;
  font-weight: 700;
  color: var(--sp-color-primary);
}

.cart-item__qty-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.cart-item__btn--qty {
  width: 32px;
  height: 32px;
  background: var(--sp-bg-white) !important;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--sp-transition);
}

.cart-item__btn--qty .cart-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px !important;
  min-width: 22px !important;
  height: 22px !important;
  flex-shrink: 0 !important;
}

.cart-item__btn--qty .cart-item__icon svg {
  display: block;
  width: 22px !important;
  height: 22px !important;
  fill: currentColor !important;
}

.cart-item__btn--decrease {
  border-color: var(--sp-color-danger) !important;
  color: var(--sp-color-danger) !important;
}

.cart-item__btn--decrease:hover {
  box-shadow: 0 1px 4px var(--sp-color-danger), 0 0 3px var(--sp-color-danger);
  transform: translateY(-1px);
}

.cart-item__btn--decrease:focus {
  border-color: var(--sp-color-danger) !important;
}

.cart-item__btn--increase {
  border-color: var(--sp-color-primary) !important;
  color: var(--sp-color-primary) !important;
}

.cart-item__btn--increase:hover {
  box-shadow: 0 1px 4px var(--sp-color-primary), 0 0 3px var(--sp-color-primary);
  transform: translateY(-1px);
}

.cart-item__btn--increase:focus {
  border-color: var(--sp-color-primary) !important;
}

.cart-item__btn.cart-item__btn--increase.is-loading[disabled],
.cart-item__btn.cart-item__btn--decrease.is-loading[disabled] {
  opacity: 0.3 !important;
  background-color: transparent !important;
  pointer-events: none !important;
}

.cart-item__btn.cart-item__btn--increase.is-loading[disabled] svg path,
.cart-item__btn.cart-item__btn--decrease.is-loading[disabled] svg path {
  fill: #ccc !important;
}

.cart-item__qty-value {
  font-family: var(--sp-font-body);
  font-size: 16px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--sp-border-radius);
  width: 75px;
  height: 30px;
  background-color: var(--sp-bg-light);
  border: var(--sp-border-label);
}

.cart-item.is-single-quantity .cart-item__icon--minus {
  display: none !important;
}

.cart-item.is-single-quantity .cart-item__icon--remove {
  display: block !important;
  color: var(--sp-color-danger);
}

/* CART PANEL (Gaveta) e AÇÕES (Quantidade) */

body.cart-open {
  overflow: hidden;
}

.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  backdrop-filter: blur(2px);
}

body.cart-open .cart-overlay {
  display: block;
}

/* BOTÃO FLUTUANTE (FAB) E BADGE */
.floating-action-btn {
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) translateX(150px);
  width: 55px;
  height: 50px;
  background: var(--sp-color-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10001;
  box-shadow: 0 4px 12px rgba(42, 79, 218, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.floating-action-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.floating-action-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px !important;
  min-width: 30px !important;
  height: 30px !important;
  flex-shrink: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-action-btn__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.floating-action-btn__icon--close {
  display: none;
}

body.cart-open .floating-action-btn {
  transform: translateY(-50%) translateX(-515px);
}

body.cart-open .floating-action-btn__icon--open {
  display: none;
}

body.cart-open .floating-action-btn__icon--close {
  display: flex;
}

.cart-badge {
  position: absolute;
  top: -13px;
  right: -13px;
  background-color: var(--sp-color-danger);
  color: var(--sp-bg-white);
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  font-family: var(--sp-font-body);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: var(--sp-transition);
}

.cart-badge.show {
  opacity: 1;
  transform: scale(1);
}

/* PAINEL DO CARRINHO (A Gaveta Lateral) */
.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 500px;
  height: 100%;
  background: var(--sp-bg-light);
  box-shadow: -10px 0 20px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  ;
  z-index: 2147483649;
  display: flex;
  flex-direction: column;
}

.cart-panel.active {
  transform: translateX(0);
}

.cart-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--sp-bg-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px;
  flex-shrink: 0;
}

.cart-panel__title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-panel__icon {
  width: 32px;
  height: 32px;
  color: var(--sp-color-primary);
}

.cart-panel__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.cart-panel__title {
  margin: 0;
  font-family: var(--sp-font-body) !important;
  font-size: 22px !important;
  font-weight: 700;
  color: var(--sp-text-main);
}

.cart-panel__close-btn {
  background: transparent;
  background-color: var(--sp-bg-white) !important;
  border: none !important;
  cursor: pointer;
  color: var(--sp-color-primary) !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: var(--sp-transition);
}

.cart-panel__close-btn:hover {
  background-color: rgba(42, 79, 218, 0.08);
  transform: scale(1.05);
}

.cart-panel__close-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}

.cart-panel__close-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.cart-panel__body {
  flex-grow: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px 20px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 20px;
}

.cart-empty__icon {
  width: 140px;
  height: 140px;
  color: var(--sp-color-primary);
  opacity: 0.15;
  margin-bottom: 24px;
}

.cart-empty__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.cart-empty__title {
  font-family: var(--sp-font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--sp-text-main);
  margin: 0 0 8px 0;
}

.cart-empty__text {
  font-family: var(--sp-font-body);
  font-size: 16px;
  color: var(--sp-text-muted);
  margin: 0;
}

.cart-panel__footer {
  background: var(--sp-bg-white);
  padding: 24px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.03);
  flex-shrink: 0;
}

.cart-panel__total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sp-font-title);
  font-size: 18px;
  font-weight: 700;
  color: var(--sp-text-main);
  margin: 0 0 20px 0;
}

.cart-total {
  font-size: 24px;
  color: var(--sp-text-main);
  font-weight: 700;
}

.cart-panel__actions {
  display: flex;
  gap: 12px;
}

.cart-panel__btn {
  height: 48px;
  border-radius: var(--sp-border-radius);
  font-family: var(--sp-font-title);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--sp-transition);
}

.cart-panel__btn--secondary {
  background-color: var(--sp-bg-white) !important;
  color: var(--sp-text-main) !important;
  border: var(--sp-border-button) !important;
  width: 275px;
  flex-shrink: 0;
  font-size: 14px;
}

.cart-panel__btn--secondary:hover {
  background-color: #f1f3f5;
}

.cart-panel__btn--primary {
  background: var(--sp-color-primary);
  color: var(--sp-bg-white);
  border: none;
  flex: 1;
  font-size: 16px;
}

.cart-panel__btn--primary:hover {
  background: var(--sp-color-primary-hover);
}

.cart-panel__btn--primary:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
}

/* ESTADOS DE ERRO DO CARRINHO (Expirado, Esgotado) */
:not(.cart-item-wrapper)>.cart-item.is-item-blocked {
  border: 1px solid var(--sp-color-danger) !important;
  box-shadow: 0 4px 12px rgba(192, 30, 49, 0.606);
}

:not(.cart-item-wrapper)>.cart-item.is-item-blocked:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 6px 16px var(--sp-color-danger),
    0 0 8px var(--sp-color-danger) !important;
}

.cart-item__price.is-tag-error,
.cart-item__price.is-tag-warning {
  color: var(--sp-color-danger) !important;
  text-transform: uppercase;
  font-size: 16px;
}

.cart-item.is-item-blocked .cart-item__media,
.cart-item.is-item-blocked .cart-item__meta-list,
.cart-item.is-item-blocked .cart-item__row--coupon-qty,
.cart-item.is-item-blocked .cart-item__options {
  filter: blur(1px);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.cart-item.is-item-blocked~.cart-item__options,
.cart-item.is-item-blocked~.cart-item__accordion {
  filter: blur(1px);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.cart-item.is-item-blocked .cart-item__btn--increase {
  opacity: 0.3;
  pointer-events: none !important;
  cursor: not-allowed;
  background-color: #e9ecef !important;
  border-color: #dee2e6 !important;
}

/* RESPONSIVIDADE (MOBILE) */
@media screen and (max-width: 768px) {

  .cart-panel {
    width: 100%;
    height: 100%;
    top: auto;
    bottom: 0;
    transform: translateY(100%);
    border-radius: 20px 20px 0 0;
  }

  .cart-panel.active {
    transform: translateY(0);
  }

  .floating-action-btn:not(.floating-action-btn--in-footer) {
    display: none !important;
  }

  .floating-action-btn--in-footer {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100% !important;
    width: 100% !important;
    margin-bottom: 2px;
  }


  .floating-action-btn--in-footer .floating-action-btn__icon {
    width: 24px !important;
    height: 24px !important;
    color: #3b4aff !important;
  }

  .floating-action-btn__icon-wrapper {
    position: relative;
    display: inline-flex; 
    align-items: center;
    justify-content: center;
  }

  .floating-action-btn--in-footer .floating-action-btn__icon--close {
    display: none !important;
  }

  .floating-action-btn__text {
    font-family: var(--sp-font-title);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #485585;
    line-height: 1;
    margin-top: 4px;
  }

  .floating-action-btn--in-footer .cart-badge {
    position: absolute;
    top: -6px;
    right: 50%;
    transform: translateX(18px) scale(1);
    min-width: 18px;
    height: 18px;
    font-size: 10px;
    border: 1px solid var(--sp-bg-white);
  }

  .floating-action-btn--in-footer .cart-badge:not(.show) {
    transform: translateX(18px) scale(0);
    opacity: 0;
  }

  .cart-panel .cart-item__body {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    flex-grow: 1 !important;
    gap: 6px !important;
  }

  .cart-panel .cart-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 16px !important;
  }

  .cart-panel .cart-item__media {
    width: 100% !important;
    height: 150px !important;
    flex-shrink: 0 !important;
  }

  .cart-panel .cart-item__body {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .cart-panel .cart-item__titles {
    gap: 2px !important;
  }

  .cart-panel .cart-item__title {
    font-size: 18px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }

  .cart-panel .cart-item__format {
    font-size: 14px !important;
  }

  .cart-panel .cart-item__meta-list {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    margin: 4px 0 !important;
  }

  .cart-panel .cart-item__meta-item {
    font-size: 16px !important;
  }

  .cart-panel .cart-item__icon {
    width: 14px !important;
    height: 14px !important;
  }

  .cart-panel .cart-item__row--controls {
    margin-top: 8px !important;
  }

  .cart-panel .cart-item__price {
    font-size: 18px !important;
  }

  .cart-panel .cart-item__btn--qty {
    width: 32px !important;
    height: 32px !important;
  }

  .cart-panel .cart-item__qty-value {
    width: 75px !important;
    height: 32px !important;
    font-size: 16px !important;
  }
}