/**
 * Cart Empty Page Overrides
 * 
 * Override the global .block max-width constraint for the cart empty page
 * to allow it to take full width of the viewport.
 */

/* Override the global block constraint specifically for cart page */
.path-cart .block {
  max-width: 100% !important;
  width: 100% !important;
}

/* Ensure the cart empty page container takes full width */
.cart-empty-page {
  width: 100% !important;
  max-width: none !important;
}

/* Additional specificity for the main content block on cart page */
.path-cart #block-twbase-rubik-system-main {
  max-width: 100% !important;
  width: 100% !important;
}

/* Override any container constraints that might affect the cart page */
.path-cart .region-content {
  max-width: none !important;
  width: 100% !important;
}
