.carrito {
  background: #0f0f12;
  min-height: 80vh;
  padding: 20px 0 70px;
}

.cart-back-wrap {
  margin: 0 0 26px;
}

.cart-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.cart-back-link:hover {
  color: #fff;
  border-color: rgba(255, 162, 0, 0.4);
  background: rgba(255, 162, 0, 0.1);
  transform: translateY(-1px);
}

.carrito-title {
  color: #fff;
  font-size: 2.4rem;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.cart-empty {
  text-align: center;
  padding: 72px 24px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 24px;
}

.cart-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: rgba(255, 162, 0, 0.55);
}

.cart-empty-title {
  color: #fff;
  font-size: 1.4rem;
  margin: 0 0 8px;
  font-family: var(--font-display, inherit);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cart-empty-text {
  margin: 0 auto 24px;
  max-width: 360px;
  line-height: 1.5;
}

.cart-empty-actions {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  min-width: min(100%, 280px);
}

.cart-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cart-empty-btn--secondary {
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
}

.cart-empty-btn--secondary:hover {
  border-color: rgba(255, 162, 0, 0.45);
  color: #fff;
  background: rgba(255, 162, 0, 0.08);
  transform: translateY(-1px);
}

.cart-empty-btn--primary {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #1a1208;
  background: linear-gradient(135deg, #ffd24d 0%, #ffa200 45%, #f86842 100%);
  box-shadow:
    0 0 0 1px rgba(255, 162, 0, 0.35),
    0 10px 28px rgba(255, 162, 0, 0.32),
    0 4px 0 #c44a28;
}

.cart-empty-btn--primary:hover {
  background: linear-gradient(135deg, #ffe08a 0%, #ffb020 40%, #ff7a4a 100%);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 210, 77, 0.45),
    0 14px 34px rgba(255, 162, 0, 0.4),
    0 5px 0 #c44a28;
}

.cart-empty p {
  margin-bottom: 20px;
}

.cart-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.cart-list-wrap {
  min-width: 0;
}

.cart-list-head,
.cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1.35fr) minmax(120px, 1fr) 118px 40px;
  gap: 14px;
  align-items: center;
}

.cart-list-head {
  padding: 0 16px 12px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cl-col {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cl-col--qty {
  text-align: center;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item {
  background: #141417;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px 16px;
}

.ci-cell--info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ci-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.ci-pricing .ci-unit {
  margin-top: 1px;
}

.ci-name {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.ci-price {
  color: var(--orange);
  font-weight: 900;
  font-size: 0.95rem;
}

.ci-unit {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
}

.ci-price-base {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: line-through;
}

.ci-discount {
  color: #86efac;
  font-size: 0.74rem;
  font-weight: 700;
}

.cart-row-discount {
  color: rgba(255, 255, 255, 0.72);
}

.cart-discount-amt {
  color: #86efac;
  font-weight: 800;
}

.cart-coupon {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.cart-coupon__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.cart-coupon__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cart-coupon__input {
  flex: 1 1 120px;
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0a0c;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.cart-coupon__btn {
  height: 40px;
  padding: 0 14px;
  border: none;
  border-radius: 10px;
  background: var(--orange);
  color: #111;
  font-weight: 800;
  cursor: pointer;
}

.cart-coupon__btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
}

.cart-coupon__msg {
  margin: 8px 0 0;
  font-size: 0.78rem;
  font-weight: 600;
}

.cart-coupon__msg--ok { color: #86efac; }
.cart-coupon__msg--err { color: #f87171; }

.cart-row-coupon strong {
  color: #fff;
  font-weight: 800;
}

.ci-cell--spec {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.ci-spec-chip,
.ci-spec-line {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ci-spec-k {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ci-spec-v {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  word-break: break-word;
}

.ci-thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1f;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ci-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ci-cell--qty {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.ci-qty-label {
  display: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ci-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ci-qty button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.ci-qty button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.ci-qty-min {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

.ci-qty span {
  color: #fff;
  min-width: 20px;
  text-align: center;
  font-weight: 700;
}

.ci-qty--readonly {
  gap: 0;
}

.ci-qty--readonly button {
  display: none;
}

.ci-qty--readonly span {
  min-width: 44px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.cart-item--sticker-multi .ci-edit__label {
  white-space: normal;
  text-align: left;
  line-height: 1.25;
}

.ci-cell--actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item--custom .ci-cell--info {
  gap: 8px;
}

.ci-edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  min-height: 36px;
  padding: 0 14px;
  margin-top: 2px;
  border-radius: 999px;
  background: rgba(255, 162, 0, 0.08);
  border: 1px solid rgba(255, 162, 0, 0.28);
  color: #ffb833;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.ci-edit__icon {
  flex: none;
  opacity: 0.92;
}

.ci-edit__label {
  line-height: 1;
}

.ci-edit:hover {
  background: rgba(255, 162, 0, 0.16);
  border-color: rgba(255, 162, 0, 0.5);
  color: #ffd35c;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 162, 0, 0.18);
}

.ci-edit:active {
  transform: translateY(0);
  box-shadow: none;
}

.ci-edit:focus-visible {
  outline: 2px solid rgba(255, 162, 0, 0.75);
  outline-offset: 2px;
}

.cart-item__designs-wrap {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ci-sticker-designs {
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.ci-sticker-designs__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.ci-sticker-designs__toggle::-webkit-details-marker {
  display: none;
}

.ci-sticker-designs__toggle:hover {
  background: rgba(255, 162, 0, 0.08);
}

.ci-sticker-designs[open] .ci-sticker-designs__toggle {
  background: rgba(255, 162, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ci-sticker-designs__label {
  color: #ffd35c;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ci-sticker-designs__chevron {
  flex-shrink: 0;
  color: rgba(255, 211, 92, 0.85);
  transition: transform 0.2s ease;
}

.ci-sticker-designs[open] .ci-sticker-designs__chevron {
  transform: rotate(180deg);
}

.ci-sticker-designs__panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
}

.ci-sticker-design {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-sizing: border-box;
}

.ci-sticker-design__thumb {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  background: #101012;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ci-sticker-design__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ci-sticker-design__ph {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
}

.ci-sticker-design__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ci-sticker-design__title {
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  min-width: 0;
}

.ci-sticker-design__meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  width: 100%;
}

.ci-sticker-design__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.ci-sticker-design__meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.ci-sticker-design__meta--price {
  margin-top: auto;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 162, 0, 0.1);
  border: 1px solid rgba(255, 162, 0, 0.22);
}

.ci-sticker-design__meta--price .ci-sticker-design__k {
  color: rgba(255, 211, 92, 0.72);
}

.ci-sticker-design__meta--price .ci-sticker-design__v {
  color: #ffd35c;
  font-weight: 800;
}

.ci-sticker-design__meta--price-total .ci-sticker-design__v {
  font-size: 0.86rem;
  font-weight: 900;
}

.ci-sticker-design__k {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ci-sticker-design__v {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  word-break: break-word;
}

.ci-del {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: none;
  border: 1px solid transparent;
  color: #fb7185;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ci-del svg {
  display: block;
}

.ci-del:hover {
  background: rgba(225, 29, 72, 0.12);
  border-color: rgba(225, 29, 72, 0.35);
  color: #f43f5e;
  transform: translateY(-1px);
}

.cart-summary {
  position: sticky;
  top: 110px;
  background: rgba(20, 20, 23, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 26px;
  height: fit-content;
}

.cart-summary h3 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 1.15rem;
}

.cart-summary .row {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.cart-summary .ck-line {
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  margin: 18px 0;
}

.cart-summary .total {
  color: #fff;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.cart-summary .total span:last-child {
  color: var(--orange);
}

.cart-summary .ck-confirm {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ffd35c, #ffa200);
  color: #141414;
  border: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1rem;
  padding: 16px;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 5px 0 #b87400, 0 10px 22px rgba(255, 162, 0, 0.4);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  text-decoration: none;
}

.cart-summary .ck-confirm__icon,
.cart-summary .ck-confirm__label {
  position: relative;
  z-index: 1;
}

.cart-summary .ck-confirm__icon {
  display: block;
  flex: none;
}

.cart-summary .ck-confirm__label {
  line-height: 1;
}

/* Reflejo animado al hover */
.cart-summary .ck-confirm::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 36%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 65%,
    transparent 100%
  );
  transform: skewX(-18deg) translateX(0);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.cart-summary .ck-confirm:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #b87400, 0 14px 26px rgba(255, 162, 0, 0.5);
}

.cart-summary .ck-confirm:hover::after {
  opacity: 1;
  animation: cart-pay-shine 0.85s ease-out;
}

.cart-summary .ck-confirm:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #b87400;
}

@keyframes cart-pay-shine {
  0% {
    transform: skewX(-18deg) translateX(0);
  }
  100% {
    transform: skewX(-18deg) translateX(420%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-summary .ck-confirm:hover::after {
    animation: none;
    opacity: 0;
  }
}

.cart-summary-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.cart-summary-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.cart-summary-link:hover {
  border-color: rgba(255, 162, 0, 0.42);
  background: rgba(255, 162, 0, 0.08);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .cart-list-head {
    display: none;
  }

  .cart-item {
    grid-template-columns: 76px minmax(0, 1fr) 40px;
    grid-template-areas:
      'preview info del'
      'spec spec spec'
      'qty qty qty'
      'designs designs designs';
    gap: 12px 14px;
    align-items: start;
    padding: 16px;
  }

  .cart-item__designs-wrap {
    grid-area: designs;
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .cart-item--sticker-multi .ci-cell--qty {
    margin-bottom: 0;
    padding-top: 12px;
    margin-top: 0;
  }

  .cart-item--sticker-multi .cart-item__designs-wrap {
    margin-top: 2px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ci-sticker-designs {
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.18) 100%);
    border-color: rgba(255, 162, 0, 0.22);
  }

  .ci-sticker-designs__toggle {
    min-height: 44px;
    padding: 12px 16px;
  }

  .ci-sticker-designs__toggle:active {
    background: rgba(255, 162, 0, 0.14);
  }

  .ci-sticker-designs__label {
    font-size: 0.88rem;
  }

  .ci-sticker-designs__panel {
    padding: 8px;
    gap: 10px;
    max-height: min(50vh, 380px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .ci-sticker-design {
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.26);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .ci-sticker-design__thumb {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border-radius: 12px;
  }

  .ci-sticker-design__title {
    font-size: 0.88rem;
  }

  .ci-sticker-design__meta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .ci-sticker-design__col {
    gap: 8px;
  }

  .ci-sticker-design__meta--price {
    padding: 9px 10px;
    border-radius: 10px;
  }

  .ci-sticker-design__v {
    font-size: 0.8rem;
  }

  .ci-cell--preview {
    grid-area: preview;
  }

  .ci-cell--info {
    grid-area: info;
    gap: 8px;
    min-width: 0;
  }

  .cart-item--custom .ci-edit {
    align-self: stretch;
    width: 100%;
    min-height: 40px;
    margin-top: 4px;
    padding: 0 16px;
    font-size: 0.84rem;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 162, 0, 0.14) 0%, rgba(255, 162, 0, 0.08) 100%);
    border-color: rgba(255, 162, 0, 0.34);
  }

  .ci-cell--spec {
    grid-area: spec;
    flex-direction: row;
    gap: 10px;
  }

  .ci-spec-chip {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
  }

  .ci-cell--qty {
    grid-area: qty;
    justify-content: space-between;
    padding-top: 14px;
    margin-top: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ci-qty-label {
    display: block;
  }

  .ci-cell--actions {
    grid-area: del;
    justify-content: flex-end;
    align-self: start;
  }

  .ci-thumb {
    width: 76px;
    height: 76px;
    border-radius: 14px;
  }

  .ci-name {
    font-size: 1rem;
    line-height: 1.25;
    padding-right: 4px;
  }

  .ci-price {
    font-size: 1.08rem;
  }
}

@media (max-width: 640px) {
  .carrito {
    padding: 14px 0 48px;
  }

  .cart-back-wrap {
    margin-bottom: 22px;
  }

  .carrito-title {
    font-size: 1.85rem;
    margin-bottom: 20px;
  }

  .cart-list {
    gap: 14px;
  }

  .cart-item {
    grid-template-columns: 88px minmax(0, 1fr) 40px;
    gap: 14px 12px;
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.015) 100%), #141417;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .ci-cell--info {
    padding-right: 2px;
  }

  .cart-item--custom .ci-edit {
    min-height: 44px;
    font-size: 0.88rem;
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .cart-item--custom .ci-edit__icon {
    width: 18px;
    height: 18px;
  }

  .ci-thumb {
    width: 88px;
    height: 88px;
    border-radius: 16px;
  }

  .ci-name {
    font-size: 0.98rem;
  }

  .ci-price {
    font-size: 1.12rem;
  }

  .ci-cell--spec {
    flex-direction: column;
    gap: 8px;
  }

  .ci-spec-chip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
  }

  .ci-spec-k {
    flex: 0 0 auto;
    font-size: 0.68rem;
  }

  .ci-spec-v {
    text-align: right;
    font-size: 0.86rem;
  }

  .ci-qty {
    gap: 12px;
  }

  .ci-qty button {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
  }

  .ci-qty span {
    min-width: 24px;
    font-size: 1rem;
  }

  .ci-del {
    width: 34px;
    height: 34px;
  }

  .cart-item--sticker-multi .ci-cell--qty {
    padding-top: 10px;
  }

  .cart-item--sticker-multi .cart-item__designs-wrap {
    margin-top: 0;
    padding-top: 12px;
    grid-column: 1 / -1;
    width: 100%;
  }

  .ci-sticker-designs {
    width: 100%;
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .ci-sticker-designs__toggle {
    min-height: 48px;
    padding: 14px 16px;
    background: linear-gradient(180deg, rgba(255, 162, 0, 0.12) 0%, rgba(255, 162, 0, 0.05) 100%);
  }

  .ci-sticker-designs[open] .ci-sticker-designs__toggle {
    border-bottom-color: rgba(255, 162, 0, 0.18);
  }

  .ci-sticker-designs__label {
    font-size: 0.9rem;
  }

  .ci-sticker-designs__chevron {
    width: 18px;
    height: 18px;
  }

  .ci-sticker-designs__panel {
    padding: 10px;
    gap: 10px;
    max-height: min(58vh, 460px);
  }

  .ci-sticker-design {
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    width: 100%;
  }

  .ci-sticker-design__thumb {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    max-width: none;
    align-self: flex-start;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
  }

  .ci-sticker-design__body {
    flex: 1;
    min-width: 0;
    gap: 8px;
  }

  .ci-sticker-design__title {
    font-size: 0.9rem;
  }

  .ci-sticker-design__meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }

  .ci-sticker-design__col {
    gap: 8px;
  }

  .ci-sticker-design__meta {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
  }

  .ci-sticker-design__meta--price {
    margin-top: auto;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 162, 0, 0.1);
    border-color: rgba(255, 162, 0, 0.22);
  }

  .ci-sticker-design__meta--price-total .ci-sticker-design__v {
    font-size: 0.92rem;
  }

  .ci-sticker-design__k {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.45);
  }

  .ci-sticker-design__v {
    font-size: 0.84rem;
    text-align: left;
    flex: none;
    width: 100%;
  }

  .cart-summary {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .cart-summary .total {
    font-size: 1.35rem;
  }
}

@media (max-width: 820px) {
  .cart-grid {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }
}
