/** Shopify CDN: Minification failed

Line 490:0 Expected "}" to go with "{"

**/
/* ==========================================================================
   MAXPOWER V2 - Main Cart Section (High Contrast Dark Luxury Theme)
   ========================================================================== */

.cart {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 1rem;
  color: var(--color-text-primary, #FFFFFF);
}

@media (min-width: 640px) {
  .cart { padding: 3rem 1.5rem; }
}

@media (min-width: 1024px) {
  .cart { padding: 4rem 2rem; }
}

.cart__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.cart__title {
  font-family: var(--font-family-display, sans-serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text-primary, #FFFFFF);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .cart__title { font-size: 2.8rem; }
}

.cart__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Items Container */
.cart__items {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cart__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cart__item {
    flex-direction: row;
    align-items: center;
  }
}

/* Item Image */
.cart__item-image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .cart__item-image-wrap {
    width: 8rem;
    justify-content: flex-start;
  }
}

.cart__item-image {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
  background-color: rgba(15, 23, 42, 0.8);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem;
}

@media (min-width: 640px) {
  .cart__item-image {
    width: 8rem;
    height: 8rem;
  }
}

.cart__item-image-fallback {
  width: 6rem;
  height: 6rem;
  background-color: rgba(15, 23, 42, 0.8);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary, #9CA3AF);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 640px) {
  .cart__item-image-fallback {
    width: 8rem;
    height: 8rem;
  }
}

.cart__item-image-icon {
  width: 2rem;
  height: 2rem;
}

/* Item Details */
.cart__item-details {
  flex: 1;
  width: 100%;
  text-align: center;
}

@media (min-width: 640px) {
  .cart__item-details { text-align: left; }
}

.cart__item-title {
  font-family: var(--font-family-display, sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary, #FFFFFF);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.cart__item-title:hover {
  color: var(--color-accent-gold, #EAB308);
}

.cart__item-variant {
  font-size: 0.875rem;
  color: var(--color-text-secondary, #9CA3AF);
  margin-top: 0.25rem;
}

.cart__item-price {
  font-family: var(--font-family-display, sans-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text-primary, #FFFFFF);
  margin-top: 0.5rem;
}

/* Item Actions */
.cart__item-actions {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cart__item-actions {
    width: auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
  }
}

/* Quantity Stepper */
.cart__qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.6);
  border-radius: 0.5rem;
  overflow: hidden;
  height: 2.5rem;
  width: 7rem;
}

.cart__qty-btn {
  width: 2.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #FFFFFF;
  transition: background-color 0.2s ease;
}

.cart__qty-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cart__qty-icon {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
}

.cart__qty-input {
  width: 2.5rem;
  height: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  outline: none;
  padding: 0;
  -moz-appearance: textfield;
}

.cart__qty-input::-webkit-inner-spin-button,
.cart__qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart__item-remove {
  font-size: 0.875rem;
  font-weight: 600;
  color: #EF4444;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.cart__item-remove:hover {
  color: #F87171;
}

/* Shipping Notice Banner */
.cart__notice,
.cart__shipping-notice {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #FFFFFF;
}

.cart__notice-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--color-accent-gold, #EAB308);
}

.cart__notice-text,
.cart__shipping-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
}

.cart__shipping-text strong {
  color: var(--color-accent-gold, #EAB308);
}

/* Footer */
.cart__footer {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cart__footer { padding: 2rem; }
}

@media (min-width: 768px) {
  .cart__footer {
    width: 66.666%;
    margin-left: auto;
  }
}

.cart__subtotal-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 1rem;
}

.cart__subtotal-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-secondary, #9CA3AF);
}

.cart__subtotal-value {
  font-family: var(--font-family-display, sans-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-primary, #FFFFFF);
  line-height: 1;
}

.cart__tax-note,
.cart__taxes-note {
  font-size: 0.875rem;
  color: var(--color-text-secondary, #9CA3AF);
  margin-top: -0.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .cart__tax-note,
  .cart__taxes-note { text-align: left; }
}

.cart__cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart__update-btn {
  width: 100%;
  height: 48px;
  padding: 0 1rem;
  background-color: transparent;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart__update-btn:hover {
  border-color: var(--color-accent-gold, #EAB308);
  color: var(--color-accent-gold, #EAB308);
}

/* Solid Gold DTC Checkout Button */
.cart__checkout-btn,
.cart__footer .btn-primary {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, #EAB308 0%, #CA8A04 100%);
  color: #0B1220 !important;
  font-family: var(--font-family-body, sans-serif);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(234, 179, 8, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.cart__checkout-btn:hover,
.cart__footer .btn-primary:hover {
  background: linear-gradient(135deg, #FACC15 0%, #EAB308 100%);
  box-shadow: 0 8px 25px rgba(234, 179, 8, 0.45);
  transform: translateY(-2px);
}

.cart__checkout-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Trust Badges under checkout */
.cart__trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.cart__payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0.8;
}

.cart__payment-icon {
  height: 1.5rem;
  width: auto;
}

.cart__trust-label {
  font-size: 0.75rem;
  color: var(--color-text-secondary, #9CA3AF);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* Empty Cart View */
.cart__empty {
  padding: 4rem 1rem;
  text-align: center;
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cart__empty-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
}

.cart__empty-text {
  color: #9CA3AF;
  font-size: 1.1rem;
.cart__empty-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
}

.cart__empty-text {
  color: #9CA3AF;
  font-size: 1.1rem;
}

.cart__empty-cta {
  margin-top: 1rem;
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, #EAB308 0%, #CA8A04 100%);
  color: #0B1220 !important;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(234, 179, 8, 0.3);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cart__empty-cta:hover {
  background: linear-gradient(135deg, #FACC15 0%, #EAB308 100%);
  box-shadow: 0 8px 25px rgba(234, 179, 8, 0.45);
  transform: translateY(-2px);
}
