/** Shopify CDN: Minification failed

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

**/
/* Table du panier */
.cart-table {
  width: 100%;
  margin-bottom: 2rem;
}

.cart-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}

.cart-header-product {
  text-align: left;
}

.cart-header-quantity {
  text-align: center;
}

.cart-header-total {
  text-align: right;
}

/* Éléments du panier */
.cart-items {
  margin-bottom: 2rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 1.5rem 0;
  border-bottom: 1px solid #f6f6f6;
  align-items: center; /* Alignement vertical centré */
}

.cart-item-product {
  display: flex;
  align-items: flex-start;
}

.cart-item-image {
  width: 120px;
  margin-right: 1.5rem;
}

.cart-item-image img {
  max-width: 100%;
  height: auto;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
}

.cart-item-name {
  font-size: 1rem;
  text-decoration: none;
  color: #000;
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cart-item-properties {
  margin-top: 0.5rem;
}

.cart-item-property {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.25rem;
}

/* Colonne de quantité */
.cart-item-quantity-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.quantity-button {
  width: 30px;
  height: 30px;
  border: 1px solid #e6e6e6;
  background: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.quantity-input {
  width: 40px;
  height: 30px;
  border: 1px solid #e6e6e6;
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 0.9rem;
}

.cart-item-remove {
  margin-top: 0.5rem;
}

.remove-button {
  font-size: 0.8rem;
  color: #666;
  text-decoration: none;
}

/* Colonne de total */
.cart-item-total-column {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

/* Pied de page du panier */
.cart-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.cart-footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 1rem;
}

.cart-total-wrapper {
  display: flex;
  justify-content: space-between;
  width: 300px;
  margin-bottom: 0.5rem;
}

.cart-total-label {
  font-size: 1rem;
}

.cart-total-price {
  font-size: 1rem;
  font-weight: bold;
}

.cart-shipping-note {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1rem;
  width: 300px;
  text-align: right;
}

.cart-restrictions {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1.5rem;
  text-align: center;
  width: 100%;
}

.cart-checkout-buttons {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.cart-checkout {
  background-color: #000;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  width: 300px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .cart-table-header {
    display: none;
  }
  
  .cart-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 0;
  }
  
  .cart-item-quantity-column {
    align-items: flex-start;
  }
  
  .cart-item-total-column {
    justify-content: flex-start;
  }
  
  .cart-footer {
    align-items: center;
  }
  
  .cart-footer-info {
    align-items: center;
  }
  
  .cart-total-wrapper,
  .cart-shipping-note {
    width: 100%;
    text-align: center;
  }
  
  .cart-checkout-buttons {
    justify-content: center;
  }
  
  .cart-checkout {
    width: 100%;
  }

  /* HCTR cart stable polish */
.cart-title {
  margin: 0 0 2rem !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
  text-align: center !important;
  color: #111111 !important;
}

.cart-table-header {
  margin-bottom: 1.75rem !important;
}

.cart-item {
  align-items: center !important;
}

.cart-item-product {
  align-items: center !important;
}
