p.return-to-shop {
  display: none !important;
}
/* ================================================
   Return to Cart – Arrow Link Style
================================================ */
.tribe-checkout-backlink {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #F2542D;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.tribe-checkout-backlink:hover {
  color: #d9411b; /* darker accent */
}
/* ==================================================
   BOM – Cart & Checkout Buttons
================================================== */
/* Primary buttons */
.woocommerce-cart .button, .woocommerce-checkout .button, .woocommerce-cart button, .woocommerce-checkout button, .woocommerce-cart input[type="submit"], .woocommerce-checkout input[type="submit"] {
  display: inline-block;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  color: #ffffff !important;
  background-color: #003E7E !important;
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
/* Hover */
.woocommerce-cart .button:hover, .woocommerce-checkout .button:hover, .woocommerce-cart button:hover, .woocommerce-checkout button:hover, .woocommerce-cart input[type="submit"]:hover, .woocommerce-checkout input[type="submit"]:hover {
  background-color: #0053A0 !important;
  color: #ffffff !important;
}
/* Disabled */
.woocommerce-cart .button:disabled, .woocommerce-checkout .button:disabled {
  background-color: #cccccc;
  color: #ffffff !important;
  cursor: not-allowed;
}
/* ================================================
   Layout Wrapper
================================================ */
.checkout-page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}
/* Kill Woo floats completely */
.woocommerce-checkout .col2-set, .woocommerce-checkout .col-1, .woocommerce-checkout .col-2 {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
}
/* Desktop 2-column layout */
@media (min-width: 992px) {
  .woocommerce-checkout form.checkout {
    display: flex;
    align-items: flex-start;
  }
  #customer_details {
    flex: 0 0 50%;
    max-width: 50%;
    margin-right: 5%;
  }
  #order_review {
    flex: 0 0 45%;
    max-width: 45%;
  }
  #order_review_heading {
    display: none;
  }
  #order_review::before {
    content: "Complete Order";
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    color: #001514;
  }
}
/* ================================================
   Cards
================================================ */
#customer_details, #order_review {
  background: #ffffff;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
/* ================================================
   Headings
================================================ */
.woocommerce-checkout h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
  color: #001514;
}
/* ================================================
   FORM STRUCTURE RESET
================================================ */
.woocommerce-checkout .form-row {
  width: 100% !important;
  margin-bottom: 1rem !important;
  display: block;
}
.form-row-first, .form-row-last, .form-row-wide {
  float: none !important;
  width: 100% !important;
}
/* ================================================
   LABELS
================================================ */
.woocommerce-checkout label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: #001514;
}
/* ================================================
   UNIFIED FIELD STYLING
   This applies to ALL inputs, Stripe, Select2, etc.
================================================ */
.woocommerce-checkout input, .woocommerce-checkout select, .woocommerce-checkout textarea, .woocommerce-checkout .select2-container--default .select2-selection--single, .woocommerce-checkout .StripeElement {
  width: 100% !important;
  height: 50px !important;
  padding: 0px 14px !important;
  font-size: 15px !important;
  line-height: 44px !important;
  border: 1px solid #d1d5db !important;
  border-radius: 0px !important;
  background-color: #ffffff !important;
  color: #001514 !important;
  box-shadow: none !important;
  transition: all .15s ease-in-out;
}
/* Textarea override */
.woocommerce-checkout textarea {
  height: auto !important;
  min-height: 150px !important;
  padding: 12px 14px !important;
  line-height: 1.5 !important;
  resize: vertical;
}
/* Focus state */
.woocommerce-checkout input:focus, .woocommerce-checkout select:focus, .woocommerce-checkout textarea:focus, .woocommerce-checkout .select2-container--default .select2-selection--single:focus, .woocommerce-checkout .StripeElement--focus {
  border-color: #0074c8 !important;
  box-shadow: 0 0 0 3px rgba(0, 116, 200, .15) !important;
  outline: none !important;
}
/* ================================================
   SELECT2 FIX
================================================ */
/* Container */
.woocommerce-checkout .select2-container {
  width: 100% !important;
}
/* Main select box */
.woocommerce-checkout .select2-container--default .select2-selection--single {
  height: 50px !important;
  border: 1px solid #d1d5db !important;
  border-radius: 0px !important;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 40px 0 14px !important; /* space for arrow */
  box-shadow: none !important;
}
/* Rendered text */
.woocommerce-checkout .select2-selection__rendered {
  line-height: normal !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  color: #001514 !important;
}
/* Dropdown arrow */
.woocommerce-checkout .select2-selection__arrow {
  height: 100% !important;
  right: 10px !important;
  display: flex !important;
  align-items: center !important;
}
/* Focus state */
.woocommerce-checkout .select2-container--default.select2-container--focus .select2-selection--single {
  border-color: #0074c8 !important;
  box-shadow: 0 0 0 3px rgba(0, 116, 200, .15) !important;
}
/* ================================================
   COUNTRY FIELD FIX (strong tag)
================================================ */
#billing_country_field strong {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 14px;
  border: 1px solid #d1d5db;
  border-radius: 0px;
  background: #f9fafb;
  font-size: 15px;
  color: #001514;
}
/* ================================================
   RESPONSIVE FIELD PAIRS
================================================ */
@media (min-width: 768px) {
  #billing_first_name_field, #billing_last_name_field, #billing_city_field, #billing_state_field, #billing_postcode_field, #billing_phone_field {
    width: 48% !important;
    display: inline-block;
  }
  #billing_first_name_field, #billing_city_field, #billing_postcode_field {
    margin-right: 4%;
  }
}
/* ================================================
   ORDER SUMMARY TABLE
================================================ */
#order_review {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}
/* Table base */
#order_review table {
  width: 100%;
  border-collapse: collapse;
}
/* Header */
#order_review thead th {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  padding: 0 0 12px 0;
  border-bottom: 1px solid #e5e7eb;
}
/* Body cells */
#order_review tbody td {
  padding: 16px 0;
  font-size: 14px;
  vertical-align: top;
  border-bottom: 1px solid #eef1f4;
}
/* First column (Product names) */
#order_review td:first-child {
  padding-right: 20px;
  word-break: break-word;
}
/* Price column */
#order_review td:last-child, #order_review th:last-child {
  text-align: right;
  white-space: nowrap;
}
/* Remove divider from last product row */
#order_review tbody tr:last-child td {
  border-bottom: none;
}
/* Totals rows */
#order_review tfoot th, #order_review tfoot td {
  padding: 14px 0;
  font-size: 15px;
  border-top: 1px solid #e5e7eb;
}
/* Subtotal row */
#order_review .cart-subtotal th, #order_review .cart-subtotal td {
  font-weight: 500;
}
/* Final total */
#order_review .order-total th, #order_review .order-total td {
  font-weight: 700;
  font-size: 16px;
}
/* ================================================
   REMOVE OUTER TABLE BORDERS
================================================ */
#order_review table.shop_table {
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
}
/* Optional: remove bottom too if desired */
#order_review table.shop_table {
  border-bottom: none !important;
}
/* ================================================
   PAYMENT SECTION (FLAT)
================================================ */
#payment {
  background: transparent !important;
  padding: 0 !important;
  margin-top: 20px;
  border: none !important;
}
#payment .payment_box {
  background: #f9fafb !important;
  border-radius: 10px !important;
  padding: 20px !important;
  box-shadow: none !important;
}
#payment div.payment_box::before {
  display: none !important;
}
/* ================================================
   PLACE ORDER BUTTON
================================================ */
#place_order {
  width: 100%;
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 1px;
  display: inline-block;
  text-align: center;
  background-color: #003063;
  color: #ffffff;
  text-transform: uppercase;
  min-width: 150px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 15px 25px;
  margin: 15px 0 0 0;
  -webkit-transition: background 500ms ease;
  transition: background 500ms ease;
  text-decoration: none;
  border: none;
}
#place_order:hover {
  background: #005fa4;
}
/* ================================================
   REMOVE RETURN TO CART
================================================ */
.woocommerce-checkout .return-to-cart {
  display: none;
}
.woocommerce-privacy-policy-text p {
  font-size: 14px;
  line-height: 20px;
}
#add_payment_method #payment ul.payment_methods, .woocommerce-cart #payment ul.payment_methods, .woocommerce-checkout #payment ul.payment_methods {
  padding: 0 !important;
}
/* ================================================
   FIX CHECKOUT NOTICE LAYOUT PROPERLY
================================================ */
/* Make checkout form stack vertically */
.woocommerce-checkout form.checkout {
  display: block !important;
}
/* Wrap only columns in flex on desktop */
@media (min-width: 992px) {
  .woocommerce-checkout form.checkout {
    display: flex !important;
    flex-wrap: wrap !important;
  }
  /* Force notices to full width row */
  .woocommerce-checkout .woocommerce-NoticeGroup, .woocommerce-checkout .woocommerce-error, .woocommerce-checkout .woocommerce-message, .woocommerce-checkout .woocommerce-info {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-bottom: 24px;
  }
}
/* =========================================
   WooCommerce Thank You Page
========================================= */
.woocommerce-order {
  max-width: 900px;
  margin: 0 auto;
}
/* Success message */
.woocommerce-notice--success {
  background: #f2f7f3;
  border: 1px solid #c9e2cf;
  border-left: 6px solid #28a745;
  padding: 18px 22px;
  font-size: 18px;
  border-radius: 4px;
  margin-bottom: 25px;
}
/* Order summary bar */
.woocommerce-order-overview {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 40px;
  padding: 20px 12px!important;
  background: #f7f7f7;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
}
.woocommerce-order-overview li {
  flex: 1 1 180px;
  list-style: none;
  font-size: 13px;
  text-transform: uppercase;
  color: #777;
}
.woocommerce-order-overview strong {
  display: block;
  font-size: 16px;
  text-transform: none;
  margin-top: 3px;
  color: #222;
}
/* =================================
   ORDER TABLE
================================= */
.woocommerce-table.order_details {
  width: 100%;
  border: 1px solid #e6e6e6;
  border-collapse: collapse;
  background: #fff;
}
.woocommerce-table.order_details th, .woocommerce-table.order_details td {
  padding: 16px 18px;
  border-bottom: 1px solid #e6e6e6;
}
/* Remove Woo's extra borders */
.woocommerce-table.order_details thead th {
  border-bottom: 2px solid #e6e6e6;
  background: #f7f7f7;
  font-weight: 600;
}
/* Product cell */
.woocommerce-table__product-name {
  width: 75%;
}
.woocommerce-table__product-total {
  width: 25%;
  text-align: right;
}
/* Totals section */
.woocommerce-table.order_details tfoot th {
  text-align: right;
  font-weight: 600;
}
.woocommerce-table.order_details tfoot td {
  text-align: right;
  font-weight: 600;
}
/* Remove double borders */
.woocommerce-table.order_details tr:last-child td {
  border-bottom: none;
}
/* =================================
   EVENT DETAILS
================================= */
.tribe-event-details {
  font-size: 14px;
  margin-top: 6px;
}
.tribe-event-details .event-title {
  font-size: 18px;
  font-weight: 600;
  color: #0074c8;
}
.tribe-event-details em {
  color:#001514;
}
/* =================================
   BILLING ADDRESS
================================= */
.woocommerce-customer-details address {
  background: #f7f7f7;
  border: 1px solid #e6e6e6;
  padding: 20px;
  border-radius: 4px;
  line-height: 1.6;
}
/* Section spacing */
.woocommerce-order-details, .woocommerce-customer-details {
  margin-top: 40px;
}
.woocommerce-order-details__title, .woocommerce-column__title {
  font-size: 26px;
  margin-bottom: 18px;
  font-weight: 600;
}
.woocommerce-order {
  max-width: 1100px !important;
}
.woocommerce-notice--success {
  background: #f7f7f7;
  border-top: 4px solid #95ab3b;
  border-bottom: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  padding: 20px 12px!important;
  font-size: 18px;
  border-radius: 0px !important;
  margin-bottom: 25px !important;
}
.woocommerce-order-overview {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, .1) !important;
}
.woocommerce .woocommerce-customer-details address {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, .1) !important;
  padding: 20px 12px!important;
}
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email, .woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
  padding-left: 0 !important;
  margin: 0px !important;
}
.woocommerce-table.order_details th, table.order_details td {
  border-bottom: 0 !important;
}
.woocommerce-table.order_details thead th {
  border-bottom: 0 !important;
  background: #ffffff !important;
}
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before, .woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before {
  display: none !important;
}
.woocommerce-order-overview li {
  flex: 1 1 100px !important;
}
h2.woocommerce-order-details__title, h2.woocommerce-column__title {
  font-size: 18px;
  margin-bottom: 0 !important;
  text-transform: uppercase;
  color: #001514;
}
abbr[title] {
    text-decoration: none!important;
    -webkit-text-decoration: none!important;
    text-decoration: none!important;
    cursor: none!important;
    border-bottom: 0!important;
}
th.woocommerce-table__product-table.product-total {
	text-align: right!important;
}
/* =================================
   Mobile Order Overview
================================= */

@media (max-width: 768px) {

.woocommerce-order-overview {
    display: block;
    padding: 0;
}

.woocommerce-order-overview li {
    display: block;
    width: 100%;
    border-right: none!important;
    border-bottom: 1px dashed rgba(0,0,0,.15);
    padding: 14px 0;
    margin: 0;
}

/* remove last divider */

.woocommerce-order-overview li:last-child {
    border-bottom: none;
}

}
