/* =============================
   CART COLLAPSIBLE VARIATIONS
============================= */

.cco-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cco-cart-toggle {
  font-size: 16px;
  cursor: pointer;
  margin-left: 8px;
  padding: 6px;
  transition: transform 0.25s ease;
}

.cco-cart-open .cco-cart-toggle {
  transform: rotate(180deg);
}

.cco-cart-content {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.2s ease;
}

.cco-cart-collapsed .cco-cart-content {
  max-height: 0 !important;
  opacity: 0;
}

.cco-cart-open .cco-cart-content {
  opacity: 1;
}

/* Summary */
.cco-cart-summary {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.cco-cart-open .cco-cart-summary {
  display: none;
}

/* Global toggle */
.cco-cart-global-toggle {
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
}

/* Edit link */
.cco-cart-edit-link {
  display: inline-block;
  font-size: 12px;
  margin-top: 6px;
  color: #0073aa;
  text-decoration: underline;
  cursor: pointer;
}

/* ✅ VERY IMPORTANT: hide RecreationURL completely */
.variation-RecreationURL {
  display: none !important;
}