/*
 * Sensory TheraPLAY Box - Enhanced Checkout UX
 * Professional checkout experience with modern styling
 */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --primary: #8bc34a;
  --primary-dark: #7ab236;
  --primary-light: #e8f5e9;
  --accent: #9c27b0;
  --accent-dark: #7b1fa2;
  --accent-light: #f3e5f6;
  --text-primary: #1a1a2e;
  --text-secondary: #555770;
  --text-muted: #8e8ea0;
  --border: #e2e4e9;
  --border-focus: #9c27b0;
  --bg-page: #f5f6fa;
  --bg-card: #ffffff;
  --bg-input: #fafbfc;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-focus: 0 0 0 3px rgba(156, 39, 176, 0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   BASE & TYPOGRAPHY
   ============================================================ */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

/* ============================================================
   HIDE NATIVE CRATEJOY ELEMENTS
   ============================================================ */
.inner_banner,
.top-section .col-sm-10.col-xs-8,
.footer,
.ftr_btm {
  display: none !important;
}

.top-section .row > .col-sm-4,
.top-section .row > .col-sm-3,
.top-section .row > .checkout-steps,
.top-section .row > .progress-indicator:not(.stpb-progress-bar) {
  display: none !important;
}

.top-section .row > .secure-checkout-native,
.top-section .row > h3:not([data-barley]) {
  display: none !important;
}

footer:not(.checkout-footer) {
  display: none !important;
}

/* ============================================================
   HEADER & TOP SECTION
   ============================================================ */
.top-section {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.top-section::after {
  display: none;
}

.top-section .row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-logo {
  width: 70px;
  margin-left: 1em;
  transition: transform var(--transition);
}

.top-logo:hover {
  transform: scale(1.05);
}

/* ============================================================
   PROGRESS BAR - Enhanced
   ============================================================ */
.stpb-progress-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  width: 50%;
}

.stpb-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 33.33%;
}

.stpb-progress-step::after {
  content: '';
  position: absolute;
  top: 15px;
  right: -50%;
  width: 100%;
  height: 3px;
  background-color: var(--border);
  z-index: 1;
  border-radius: 2px;
  transition: background-color 0.4s ease;
}

.stpb-progress-step:last-child::after {
  display: none;
}

.stpb-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--border);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}

.stpb-step-name {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s ease;
}

.stpb-progress-step.stpb-active .stpb-step-number {
  background-color: var(--primary);
  box-shadow: 0 2px 8px rgba(139, 195, 74, 0.35);
}

.stpb-progress-step.stpb-active .stpb-step-name {
  color: var(--text-primary);
  font-weight: 600;
}

.stpb-progress-step.stpb-active::after {
  background-color: var(--primary);
}

.stpb-progress-step.stpb-current .stpb-step-number {
  background-color: var(--accent);
  box-shadow: 0 2px 10px rgba(156, 39, 176, 0.35);
  transform: scale(1.1);
}

/* ============================================================
   SECURE CHECKOUT BADGE
   ============================================================ */
.stpb-secure-checkout {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px;
  color: #2e7d32;
  background: var(--primary-light);
  border-radius: 20px;
  margin-left: 10px;
  white-space: nowrap;
}

.stpb-lock-icon {
  margin-right: 5px;
  font-size: 14px;
}

/* ============================================================
   COUPON BANNER
   ============================================================ */
.top-banner-phk {
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff9c4 100%) !important;
  border: 1px dashed var(--primary-dark);
  border-radius: var(--radius-md);
  padding: 14px 20px !important;
  text-align: center;
  margin: 20px auto;
  font-weight: 600;
  font-size: 15px;
  max-width: 500px;
  width: auto;
  animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139,195,74,0); }
  50% { box-shadow: 0 0 0 4px rgba(139,195,74,0.15); }
}

.white-text-phk {
  margin: 0;
}

.white-text-phk strong {
  color: var(--accent);
}

/* ============================================================
   COUPON INPUT
   ============================================================ */
.coupon_section {
  display: flex;
  gap: 8px;
  margin: 0 auto;
  max-width: 500px;
}

.coupon_section .col-xs-8 {
  width: 100%;
}

.coupon_section .input-group input,
.coupon_section input {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: 14px;
  width: 310px;
  max-width: 100%;
  background: var(--bg-card);
  transition: all var(--transition);
}

.coupon_section .input-group input:focus,
.coupon_section input:focus {
  border-color: var(--accent);
  box-shadow: var(--shadow-focus);
  outline: none;
}

.coupon_section .btn,
.coupon_section button {
  background-color: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
}

.coupon_section .btn:hover,
.coupon_section button:hover {
  background-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   ALERTS
   ============================================================ */
.alert.alert-block {
  max-width: 500px;
  margin: 10px auto;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.alert.alert-block.alert-info {
  margin-bottom: 15px;
  background: #e3f2fd;
  border: 1px solid #90caf9;
  color: #1565c0;
}

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
.checkout_content {
  display: flex;
  margin-top: 24px;
  gap: 24px;
}

.right-col {
  flex: 1 1 60%;
  padding: 28px 32px;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  order: 1;
  margin-right: 0;
  border: 1px solid var(--border);
}

.left-col {
  flex: 1 1 35%;
  padding: 24px;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  order: 2;
  max-height: fit-content;
  border: 1px solid var(--border);
  position: sticky;
  top: 20px;
}

/* ============================================================
   PAYPAL BUTTON - Enhanced
   ============================================================ */
#paypal-checkout-section {
  margin-bottom: 0;
  text-align: center;
}

#paypal-checkout-section > div:nth-child(1) > div > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid #0070ba;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  background-color: #fff;
  color: #0070ba;
  min-width: 240px;
}

#paypal-checkout-section > div:nth-child(1) > div > a img {
  display: none;
}

#paypal-checkout-section > div:nth-child(1) > div > a:hover {
  background-color: #f0f7ff;
  border-color: #005ea6;
  color: #005ea6;
  box-shadow: 0 4px 12px rgba(0, 112, 186, 0.2);
  transform: translateY(-1px);
}

#paypal-checkout-section > div:nth-child(1) > div > a:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 112, 186, 0.15);
}

/* OR Divider - Enhanced */
p.divider {
  position: relative;
  text-align: center;
  margin: 24px 0;
}

p.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

p.divider span {
  display: inline-block;
  padding: 0 16px;
  background-color: var(--bg-card);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FORM STYLING - Major UX Improvement
   ============================================================ */
#checkout_form section h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

/* Form inputs */
#checkout_form input[type="text"],
#checkout_form input[type="email"],
#checkout_form input[type="tel"],
#checkout_form input[type="password"],
#checkout_form input[type="number"],
#checkout_form select,
#checkout_form textarea,
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-input);
  transition: all var(--transition);
  -webkit-appearance: none;
}

#checkout_form input:focus,
#checkout_form select:focus,
#checkout_form textarea:focus,
.form-control:focus {
  border-color: var(--accent);
  box-shadow: var(--shadow-focus);
  outline: none;
  background: var(--bg-card);
}

#checkout_form input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

/* Labels */
label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
  display: block;
}

/* Select dropdown enhancement - remove ALL duplicate arrows */
/* 1. Hide browser native arrow */
#checkout_form select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* 2. Our custom arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* 3. Hide Cratejoy's label.select wrapper arrow (::after pseudo-element) */
label.select::after,
label.select::before {
  display: none !important;
  content: none !important;
}

label.select {
  overflow: visible;
  background: none !important;
}

/* Also target the <i> arrow icon Cratejoy sometimes uses */
label.select i,
label.select .arrow,
label.select .caret {
  display: none !important;
}

/* Fix Apt/Unit field - placeholder too long */
input[placeholder*="Apt"],
input[placeholder*="apt"],
input[name*="address_2"],
input[name*="apt"] {
  font-size: 13px;
}

/* Ensure address row fields fit properly */
#checkout_form .form-group,
#checkout_form .col-xs-4,
#checkout_form .col-xs-3 {
  overflow: hidden;
}

/* Gift checkbox */
.gift-choice {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.gift-section,
#is_gift {
  cursor: pointer;
}

#is_gift + label,
label[for="is_gift"] {
  cursor: pointer;
  font-weight: 500;
}

/* ============================================================
   ORDER SUMMARY - Right Sidebar
   ============================================================ */
.cart_listing header h3,
h3[data-barley="checkout_header_title"] {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--text-primary);
  margin-bottom: 16px;
}

header[data-barley="checkout_cart_img"] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header[data-barley="checkout_cart_img"] img {
  display: none !important;
}

.remove_button {
  font-size: 16px !important;
  color: var(--text-muted) !important;
  cursor: pointer;
  font-weight: 400;
  transition: all var(--transition);
  padding: 2px 8px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-input);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  text-decoration: none;
  line-height: 1;
}

.remove_button:hover {
  color: #fff !important;
  background: #e53935 !important;
  border-color: #e53935 !important;
  text-decoration: none;
}

/* Position delete column: absolute top-right of each product row */
.delete_column {
  position: absolute !important;
  top: 0;
  right: 0;
  width: auto !important;
  padding: 0 !important;
}

/* Fix: Empty cart state after item removal */
.left-col h2,
.left-col .empty-cart,
.left-col [class*="empty"] {
  font-size: 20px;
  color: var(--text-muted);
  text-align: center;
  padding: 40px 20px;
}

/* Hide broken layout elements when cart is empty */
.styled_cart:empty,
.item_table:empty {
  display: none;
}

/* Fix "Item already removed" message styling */
.alert-info,
.alert[class*="removed"] {
  max-width: 500px;
  margin: 16px auto;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-align: center;
}

/* Product listing */
.cart_listing.styled_cart {
  margin-bottom: 0;
}

.product_column {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.product_column img {
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.product_column div {
  margin-left: 14px;
  min-width: 0;
}

.item_table .product-name {
  font-size: 16px !important;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

table.item_table tr {
  position: relative;
  padding-right: 36px;
}

table.item_table tr:not(:first-child) {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 8px;
}

/* X button: top-right corner of each product row */
.delete_column {
  position: absolute !important;
  top: 0;
  right: 0;
  width: auto !important;
  padding: 0 !important;
  flex: none !important;
}

/* Override Cratejoy native table td styles */
.checkout_content .styled_cart table td.delete_column,
.cart_listing table td.delete_column,
td.delete_column {
  position: absolute !important;
  top: 0;
  right: 0;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  vertical-align: top !important;
}

.subscription-plan {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.subscription-autorenew {
  font-size: 13px;
  color: var(--text-muted);
}

/* Price table */
.price_column.currency {
  display: none;
}

.price_table {
  margin-top: 20px;
}

.price_table .currency {
  font-weight: 700;
}

.checkout_content .styled_cart table #shipping_row {
  height: 40px;
  border-top: 1px solid var(--border);
}

#shipping_row td, #shipping_row td strong,
#tax_row td, #tax_row td strong {
  font-weight: 400;
  color: var(--text-secondary);
  font-size: 14px;
}

#tax_row {
  margin-top: 5px;
}

#tax_row td {
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

#total_row {
  border-top: 2px solid var(--text-primary) !important;
  margin-top: 12px;
}

#total_row th,
#total_row td {
  font-size: 20px;
  font-weight: 700;
  padding-top: 12px;
  color: var(--text-primary);
}

/* ============================================================
   CHECKOUT BUTTON - The Most Important Element!
   ============================================================ */
.right-col .cta {
  padding: 0;
  margin-top: 8px;
}

.right-col .cta button,
button[type="submit"],
.checkout-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 32px !important;
  width: 100%;
  max-width: 100%;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(139, 195, 74, 0.35);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.right-col .cta button:hover,
button[type="submit"]:hover,
.checkout-button:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #6a9f2e 100%);
  box-shadow: 0 6px 20px rgba(139, 195, 74, 0.45);
  transform: translateY(-2px);
}

.right-col .cta button:active,
button[type="submit"]:active,
.checkout-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(139, 195, 74, 0.3);
}

/* Subtle shimmer effect on checkout button */
.right-col .cta button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-25deg);
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { left: -60%; }
  50% { left: 120%; }
}

/* ============================================================
   TRUST ELEMENTS - Enhanced
   ============================================================ */
.stpb-satisfaction-guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  margin: 20px 0;
  border: 1px solid rgba(139, 195, 74, 0.2);
}

.stpb-guarantee-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
}

.stpb-guarantee-text strong {
  font-size: 14px;
  color: var(--text-primary);
}

.stpb-guarantee-text p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 2px 0 0;
}

/* Trust badges row */
.stpb-trust-badges {
  display: flex;
  justify-content: space-around;
  margin: 16px 0;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stpb-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.stpb-badge-icon {
  font-size: 22px;
  filter: grayscale(0.3);
}

.stpb-badge-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
}

/* Customer review */
.stpb-customer-reviews {
  padding: 16px;
  background: #fffde7;
  border-radius: var(--radius-md);
  margin: 16px 0 0;
  border: 1px solid #fff9c4;
  border-left: 3px solid #ffc107;
}

.stpb-stars {
  color: #ffc107;
  font-size: 16px;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

.stpb-customer-reviews p {
  font-size: 13px;
  font-style: italic;
  margin: 4px 0;
  color: var(--text-secondary);
  line-height: 1.5;
}

.stpb-reviewer {
  font-size: 12px !important;
  color: var(--text-muted) !important;
  font-style: normal !important;
  font-weight: 600;
}

/* Payment icons */
.stpb-payment-icons {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.stpb-payment-icons img {
  height: 28px;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.stpb-payment-icons img:hover {
  opacity: 1;
}

/* ============================================================
   FOOTER - Clean & Professional
   ============================================================ */
.checkout-footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 30px 20px 20px;
  background: var(--bg-card);
  margin-top: 32px;
}

.checkout-footer .security-badges {
  padding-bottom: 12px;
}

.checkout-footer .security-badges img {
  height: 20px;
  opacity: 0.8;
}

.checkout-footer div {
  padding-bottom: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 0;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.copyright {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   HELPER TOOLTIP for auto-renew info
   ============================================================ */
.subscription-info-tooltip {
  cursor: help;
  position: relative;
}

/* ============================================================
   LOADING / PROCESSING STATE for checkout button
   ============================================================ */
.stpb-processing .right-col .cta button {
  pointer-events: none;
  opacity: 0.85;
}

/* ============================================================
   RESPONSIVE - Mobile First Approach
   ============================================================ */
@media (max-width: 768px) {.coupon_section .input-group input,
.coupon_section input {
  width: auto!important;
}
  /* Fix delete button on mobile: make tr behave as block so position:relative works */
  table.item_table,
  table.item_table tbody,
  table.item_table tr {
    display: block !important;
  }
  .coupon_section .input-group input,
  .coupon_section input {
  	width: auto !Important;
	}

  table.item_table tr {
    position: relative !important;
    padding-right: 36px !important;
    margin-bottom: 16px;
  }

  table.item_table td {
    display: inline-block;
  }

  table.item_table td.product_column {
    display: flex;
    width: calc(100% - 40px);
  }

  td.delete_column,
  .delete_column {
    position: absolute !important;
    top: 4px !important;
    right: 4px !important;
  }

  .checkout_content {
    flex-direction: column;
    gap: 16px;
  }

  .left-col,
  .right-col {
    width: 100%;
    margin-right: 0;
  }

  .left-col {
    order: 1;
    position: static;
    padding: 20px 16px;
  }

  .right-col {
    order: 2;
    padding: 20px 16px;
  }

  .checkout_content.container {
    display: flex;
    flex-wrap: wrap;
  }

  .stpb-trust-badges {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .top-section .row {
    display: block;
    text-align: center;
  }

  .row > .col-sm-2.col-xs-4 {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }

  .stpb-progress-bar {
    width: 100%;
    padding: 12px 10px;
  }

  .stpb-secure-checkout {
    margin: 8px auto 0;
    font-size: 13px;
  }

  #total_price {
    font-size: 20px !important;
  }

  .top-banner-phk {
    width: auto !important;
    margin: 16px 12px;
    font-size: 14px;
  }

  .coupon_section {
    padding: 0 12px;
  }

  .right-col .cta button,
  button[type="submit"] {
    font-size: 17px;
    padding: 15px 24px !important;
  }

  /* Make checkout button sticky on mobile */
  .right-col .cta {
    position: sticky;
    bottom: 0;
    background: var(--bg-card);
    padding: 12px 0 8px;
    margin: 0 -16px -20px;
    padding-left: 16px;
    padding-right: 16px;
    border-top: 1px solid var(--border);
    z-index: 100;
  }

  .footer-links {
    gap: 16px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .product_column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .product_column div {
    margin-left: 0;
    margin-top: 8px;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .checkout_content {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}