/* Cart Page - Shopify Style Design */

/* Global box-sizing fix */
* {
  box-sizing: border-box;
}

/* Remove Astra's padding completely */
.woocommerce-checkout .ast-container,
.woocommerce-cart .ast-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
}

/* Wrapper */
.ethnoskin-cart-wrapper,
.ethnoskin-checkout-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 1024px) {
  .ethnoskin-cart-wrapper,
  .ethnoskin-checkout-wrapper {
    padding: 3rem 2rem;
  }
}

/* Tighter padding on mobile to prevent overflow */
@media (max-width: 767px) {
  .ethnoskin-checkout-wrapper,
  .ethnoskin-cart-wrapper {
    padding: 1rem 0.75rem !important; /* More breathing room */
  }
  
  .checkout-card-content {
    padding: 1rem !important; /* More internal padding */
  }
  
  .cart-item {
    padding: 1rem !important;
  }
  
  /* Add gap between cards */
  .checkout-form-section,
  .cart-items-section {
    gap: 1rem !important;
  }
  /* Force buttons to never overflow */
  .checkout-btn,
  #place_order,
  .mobile-checkout-btn {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Constrain payment privacy text */
  .woocommerce-privacy-policy-text,
  .woocommerce-terms-and-conditions-wrapper {
    font-size: 0.75rem !important;
    word-wrap: break-word !important;
  }
}

/* Top Bar */
.cart-top-bar,
.checkout-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  width: 100%;
}

@media (max-width: 767px) {
  .checkout-top-bar,
  .cart-top-bar {
    justify-content: flex-start;
  }
  
  .progress-steps {
    display: none !important;
  }
}

.continue-shopping,
.back-to-cart {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #78716c;
  text-decoration: none;
  transition: color 0.2s;
}

.continue-shopping:hover,
.back-to-cart:hover {
  color: #1a1a1a;
}

.progress-steps {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .progress-steps {
    display: flex;
  }
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-circle {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #e7e5e4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #78716c;
}

.step-circle.active {
  background-color: #735536;
  border-color: #735536;
  color: #ffffff;
}

.step-label {
  color: #78716c;
}

.step-label.active {
  color: #1a1a1a;
  font-weight: 500;
}

.step-divider {
  width: 2rem;
  height: 1px;
  background-color: #e7e5e4;
}

/* Page Title */
.cart-page-title,
.checkout-page-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .cart-page-title,
  .checkout-page-title {
    font-size: 2.25rem;
  }
}

.cart-page-subtitle,
.checkout-page-subtitle {
  color: #78716c;
  margin-bottom: 2rem;
}

/* Cart Items Section */
.cart-items-section,
.checkout-form-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Cart Card */
.cart-card,
.checkout-card {
  background-color: #ffffff;
  border: 1px solid #e7e5e4;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  max-width: 100%;
}

.cart-item {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e7e5e4;
}

.cart-item:last-child {
  border-bottom: none;
}

@media (max-width: 767px) {
  .summary-section {
   margin-top: 2rem !important;
  }
  
}
@media (min-width: 640px) {
  .cart-item {
    padding: 1.5rem;
  }
}

.item-content {
  display: flex;
  gap: 1rem;
}

@media (min-width: 640px) {
  .item-content {
    gap: 1.5rem;
  }
}

/* Product Image */
.product-image {
  width: 7rem;
  height: 7rem;
  flex-shrink: 0;
  border: 1px solid #e7e5e4;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 640px) {
  .product-image {
    width: 8rem;
    height: 8rem;
  }
}

@media (max-width: 480px) {
  .product-image {
    width: 5rem;
    height: 5rem;
  }
  
  .item-content {
    gap: 0.75rem;
  }
}

/* Product Details */
.product-details {
  flex: 1;
  min-width: 0;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.product-title-section {
  flex: 1;
  min-width: 0;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.product-title a {
  color: #1a1a1a;
  text-decoration: none;
}

.product-title a:hover {
  color: #735536;
}

@media (min-width: 640px) {
  .product-title {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .product-title {
    font-size: 0.9rem;
  }
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.75rem;
  color: #78716c;
}

@media (min-width: 640px) {
  .product-meta {
    font-size: 0.875rem;
  }
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .meta-item {
    font-size: 0.7rem;
  }
}

.remove-btn {
  background: none;
  border: none;
  color: #78716c;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
  flex-shrink: 0;
}

.remove-btn:hover {
  color: #dc2626;
}

/* Product Footer */
.product-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e7e5e4;
}

@media (min-width: 640px) {
  .product-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}

.price-section {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
}

.price-amount .woocommerce-Price-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
}

@media (min-width: 640px) {
  .price-amount {
    font-size: 1.5rem;
  }
  .price-amount .woocommerce-Price-amount {
    font-size: 1.5rem;
  }
}

/* Remove quantity section and price label */
.quantity-section,
.price-label {
  display: none !important;
}

/* Hide default WooCommerce quantity */
.quantity-section .quantity {
  display: none !important;
}

/* Trust Section */
.trust-section,
.checkout-trust-section {
  display: grid;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background-color: rgba(115, 85, 54, 0.05);
  border: 1px solid rgba(115, 85, 54, 0.1);
  border-radius: 0.75rem;
}

@media (min-width: 640px) {
  .trust-section,
  .checkout-trust-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.trust-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  background-color: rgba(115, 85, 54, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-text {
  flex: 1;
}

.trust-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.trust-subtitle {
  font-size: 0.75rem;
  color: #78716c;
}

/* Summary Section */
.summary-section,
.checkout-summary-section {
  grid-column: span 1;
}

.summary-card {
  background-color: #ffffff;
  border: 1px solid #e7e5e4;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 1rem !important;
}

.summary-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e7e5e4;
}

.summary-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.summary-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
}

.summary-label {
  color: #78716c;
}

.summary-value {
  font-weight: 600;
  color: #1a1a1a;
}

.summary-row-small {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.summary-label-small {
  color: #78716c;
}

.summary-free {
  font-weight: 500;
  color: #16a34a;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1rem;
  border-top: 1px solid #e7e5e4;
}

.total-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
}

.total-price-section {
  text-align: right;
}

.total-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.tax-note {
  font-size: 0.75rem;
  color: #78716c;
  margin-top: 0.25rem;
}

/* Summary Actions */
.summary-actions {
  padding: 1.5rem;
  padding-top: 0;
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background-color: #735536;
  color: #ffffff !important;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 0.75rem;
  text-decoration: none !important;
  display: block;
  text-align: center;
}

.checkout-btn:hover {
  background-color: #5a422a;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  color: #ffffff !important;
}

/* Summary Trust */
.summary-trust {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-top: 1rem;
  border-top: 1px solid #e7e5e4;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #1a1a1a;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.payment-icon-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  flex: 1;
  min-width: 50px;
  max-width: 70px;
  background: #fff;
  padding: 0.25rem 0.5rem;
  border: 1px solid #e7e5e4;
  border-radius: 0.375rem;
}

/* Mobile Checkout Bar */
.mobile-checkout {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e7e5e4;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 50;
}

@media (min-width: 1024px) {
  .mobile-checkout {
    display: none;
  }
}

.mobile-checkout-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .mobile-checkout-content {
    padding: 1rem;
  }
}

.mobile-total {
  display: flex;
  flex-direction: column;
}

.mobile-total-label {
  font-size: 0.75rem;
  color: #78716c;
}

.mobile-total-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
}

@media (max-width: 640px) {
  .mobile-total-price {
    font-size: 1.125rem;
  }
}

.mobile-checkout-btn {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  background-color: #735536;
  color: #ffffff !important;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none !important;
  display: inline-block;
  white-space: nowrap;
}

.mobile-checkout-btn:hover {
  background-color: #5a422a;
  color: #ffffff !important;
}

@media (max-width: 640px) {
  .mobile-checkout-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.8125rem;
  }
}

/* Icons */
.icon-small {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.icon-meta {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.icon-medium {
  width: 1.25rem;
  height: 1.25rem;
  color: #735536;
}

.icon-check {
  width: 1.25rem;
  height: 1.25rem;
  color: #16a34a;
  flex-shrink: 0;
}

/* Hide WooCommerce defaults */
.woocommerce-cart table.shop_table {
  display: none;
}

.woocommerce-cart .cart-collaterals {
  display: none;
}

.woocommerce-cart .actions {
  display: none;
}

/* WooCommerce Cart Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  margin: 0 auto 1.5rem auto !important;
  max-width: 1280px !important;
  border: 1px solid #d1fae5 !important;
  border-radius: 0.5rem !important;
  background-color: #f0fdf4 !important;
  color: #166534 !important;
  font-size: 0.875rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  box-sizing: border-box !important;
}

.ethnoskin-cart-wrapper .woocommerce-message,
.ethnoskin-cart-wrapper .woocommerce-info,
.ethnoskin-cart-wrapper .woocommerce-error {
  margin: 0 0 1.5rem 0 !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
  content: "✓" !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 1.25rem !important;
  height: 1.25rem !important;
  background-color: #16a34a !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
}

.woocommerce-error {
  background-color: #fef2f2 !important;
  color: #991b1b !important;
  border-color: #fecaca !important;
}

.woocommerce-error::before {
  content: "✕" !important;
  background-color: #dc2626 !important;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
  color: inherit !important;
  text-decoration: underline !important;
  font-weight: 600 !important;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
  margin-left: auto !important;
  padding: 0.5rem 1rem !important;
  background-color: #735536 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 0.375rem !important;
  font-size: 0.875rem !important;
  text-decoration: none !important;
}

/* ==========================================
   CHECKOUT PAGE SPECIFIC STYLES
   ========================================== */

/* Force proper box-sizing on all WooCommerce checkout elements */
.woocommerce-checkout * {
  box-sizing: border-box !important;
}

.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  max-width: 100% !important;
}
/* Checkout card styling */
.checkout-card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e7e5e4;
  background-color: #fafaf9;
}

.checkout-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.checkout-card-content {
  padding: 1rem 1.5rem;
}/* Form field labels and focus states */
.woocommerce-checkout .form-row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.woocommerce-checkout .form-row label .required {
  color: #dc2626;
  margin-left: 0.25rem;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  border: 1px solid #e7e5e4 !important;
  border-radius: 0.5rem !important;
  font-size: 1rem !important;
  background-color: #ffffff !important;
  padding: 0.75rem !important;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
  outline: none !important;
  border-color: #735536 !important;
  box-shadow: 0 0 0 3px rgba(115, 85, 54, 0.1) !important;
}

.woocommerce-checkout .form-row textarea {
  min-height: 100px !important;
  resize: vertical !important;
}/* Payment section styling */
#payment {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#payment .payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 1.5rem 0 !important;
  border: none !important;
}

#payment .payment_method {
  background-color: #fafaf9 !important;
  border: 2px solid #e7e5e4 !important;
  border-radius: 0.5rem !important;
  padding: 1rem !important;
  margin-bottom: 0.75rem !important;
  transition: all 0.2s !important;
}

#payment .payment_method:hover {
  border-color: #d6d3d1 !important;
}

#payment .payment_method.checked {
  border-color: #735536 !important;
  background-color: rgba(115, 85, 54, 0.05) !important;
}

#payment .payment_method label {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  cursor: pointer !important;
  font-weight: 500 !important;
  margin: 0 !important;
}

#payment .payment_box {
  background-color: #ffffff !important;
  border: 1px solid #e7e5e4 !important;
  border-radius: 0.5rem !important;
  padding: 1rem !important;
  margin: 0.75rem 0 0 0 !important;
}/* Place Order Button */
#payment #place_order {
  width: 100% !important;
  padding: 1rem 1.5rem !important;
  background-color: #735536 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 0.5rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  margin-top: 1rem !important;
}

#payment #place_order:hover {
  background-color: #5a422a !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

/* Order Review Wrapper */
#order_review {
  background-color: #ffffff !important;
  border: 1px solid #e7e5e4 !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  padding: 1.5rem !important;
  margin-top: 1rem !important;
}

#order_review #payment {
  padding-top: 1.5rem !important;
  border-top: 1px solid #e7e5e4 !important;
  margin-top: 1.5rem !important;
}

/* Order Review Table */
table.woocommerce-checkout-review-order-table {
  width: 100% !important;
  margin-bottom: 0 !important;
  border-collapse: collapse !important;
  border: none !important;
  background: transparent !important;
}

table.woocommerce-checkout-review-order-table th,
table.woocommerce-checkout-review-order-table td {
  padding: 0.5em 0 !important;
  border: none !important;
  line-height: 1.4 !important;
}

table.woocommerce-checkout-review-order-table tfoot {
  border-top: 1px solid #e7e5e4 !important;
}

table.woocommerce-checkout-review-order-table tfoot tr.order-total th,
table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  padding-top: 1rem !important;
}

/* Summary Section Title Fix */
.checkout-summary-section .summary-title {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 0 0.5rem 0 !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
}

/* Two Column Layout - Desktop Only */
@media (min-width: 640px) {
  .checkout-card-content .form-row-first,
  .checkout-card-content .form-row-last {
    width: 48% !important;
    float: left !important;
    clear: none !important;
  }
  
  .checkout-card-content .form-row-first {
    margin-right: 4% !important;
  }
  
  .checkout-card-content::after {
    content: "";
    display: table;
    clear: both;
  }
}

/* Mobile Order */
@media (max-width: 767px) {
  .checkout-form-section {
    order: 1;
  }
  
  .checkout-summary-section {
    order: 2;
  }
  #order_review_heading{
    padding-top: 1rem  !important;
  }
  #wc-square-digital-wallet{
    padding: 0 1rem !important;
  }
}

/* Profession Select */
.profession-select select {
  font-size: 16px;
  cursor: pointer;
}

.profession-select .description {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
  font-style: italic;
}/* Desktop two-column layout */
@media (min-width: 1024px) {
  .checkout-layout {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr !important;
    gap: 2rem !important;
    align-items: start !important;
  }
}
/* Desktop two-column layout - FORCED */
@media (min-width: 1024px) {
  .woocommerce-checkout .checkout-layout,
  form.checkout .checkout-layout {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr !important;
    gap: 2rem !important;
    align-items: start !important;
  }
}
/* Override WooCommerce default float layout */
@media (min-width: 922px) {
  .woocommerce-checkout form #order_review,
  .woocommerce-checkout form #order_review_heading,
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout .col-1,
  .woocommerce-checkout .col-2 {
    width: 100% !important;
    float: none !important;
    clear: none !important;
  }
}

/* Force grid layout on desktop */
@media (min-width: 1024px) {
  body.woocommerce-checkout .checkout-layout {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr !important;
    gap: 2rem !important;
    align-items: start !important;
  }
}
@media (min-width: 1024px) {
  .checkout-summary-section {
    position: sticky;
    top: 2rem;
  }
}
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea {
  border: 1px solid #e7e5e4 !important;
  border-radius: 0.5rem !important;
  font-size: 1rem !important;
  background-color: #ffffff !important;
  padding: 0.75rem !important;
}

.woocommerce-checkout .form-row select {
  border: 1px solid #e7e5e4 !important;
  border-radius: 0.5rem !important;
  font-size: 1rem !important;
  background-color: #ffffff !important;
  padding: 0.5rem !important; /* Less padding for selects */
}/* Cart Layout - Desktop */
@media (min-width: 1024px) {
  .cart-layout {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    gap: 2rem !important;
    align-items: start !important;
  }
}

/* Override WooCommerce float layout for cart */
@media (min-width: 922px) {
  .woocommerce-cart .cart-collaterals,
  .woocommerce-cart .cart_totals {
    width: 100% !important;
    float: none !important;
  }
}

.woocommerce-error {
    display: block !important;
}

.woocommerce-error ul {
    display: block !important;
}