/* assets/css/woocommerce.css - split from assets/css/theme.css */

/* Floating WooCommerce Cart - Reference Light Theme */
body.vb-cart-open {
  overflow: hidden;
}

.vb-floating-cart {
  position: relative;
  z-index: 1300;
}

.vb-floating-cart.is-empty,
.vb-floating-cart__trigger.is-empty {
  display: none !important;
}

.vb-floating-cart__trigger {
  position: fixed;
  left: 22px;
  bottom: 24px;
  z-index: 1302;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, #10b981, #6ee7b7);
  color: #04110c;
  box-shadow: 0 18px 42px rgba(16, 185, 129, 0.25);
  cursor: pointer;
  font-size: 0;
  line-height: 1;
}

.vb-floating-cart__trigger:hover,
.vb-floating-cart__trigger:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(16, 185, 129, 0.34);
  outline: none;
}

.vb-floating-cart__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}

.vb-floating-cart__icon svg {
  display: block;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.vb-floating-cart__count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 26px;
  height: 26px;
  padding: 0 7px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: #04110c;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 22px;
  text-align: center;
}

.vb-floating-cart__overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(4, 17, 12, 0.48);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}

.vb-floating-cart.is-open .vb-floating-cart__overlay {
  opacity: 1;
  visibility: visible;
}

.vb-floating-cart__drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1301;
  display: flex;
  flex-direction: column;
  width: min(420px, calc(100vw - 24px));
  height: 100vh;
  background: #f4fbf7;
  color: #06110d;
  box-shadow: 24px 0 70px rgba(4, 17, 12, 0.22);
  transform: translateX(-105%);
  transition: transform 0.28s ease;
}

.vb-floating-cart.is-open .vb-floating-cart__drawer {
  transform: translateX(0);
}

.vb-floating-cart__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid rgba(16, 185, 129, 0.14);
  background: #ffffff;
}

.vb-floating-cart__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: #10b981;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vb-floating-cart__header h2 {
  margin: 0;
  color: #06110d;
  font-size: 28px;
  line-height: 1.12;
}

.vb-floating-cart__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 999px;
  background: #f4fbf7;
  color: #06110d;
  cursor: pointer;
}

.vb-floating-cart__close:hover,
.vb-floating-cart__close:focus-visible {
  background: #e8f7ef;
  color: #047857;
  outline: none;
}

.vb-floating-cart__close svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.vb-floating-cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 24px 28px;
}

.vb-floating-cart .widget_shopping_cart_content {
  color: #5f7068;
}

.vb-floating-cart .woocommerce-mini-cart {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vb-floating-cart .woocommerce-mini-cart-item {
  position: relative;
  min-height: 78px;
  margin: 0 0 16px;
  padding: 0 34px 16px 86px;
  border-bottom: 1px solid rgba(16, 185, 129, 0.14);
}

.vb-floating-cart .woocommerce-mini-cart-item a {
  color: #06110d;
  font-weight: 800;
  text-decoration: none;
}

.vb-floating-cart .woocommerce-mini-cart-item a:hover {
  color: #10b981;
}

.vb-floating-cart .woocommerce-mini-cart-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 66px;
  height: 66px;
  object-fit: cover;
  border: 1px solid rgba(16, 185, 129, 0.16);
  border-radius: 14px;
  background: #ffffff;
}

.vb-floating-cart .woocommerce-mini-cart-item .remove {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #fee2e2;
  color: #991b1b !important;
  font-size: 18px;
  line-height: 1;
}

.vb-floating-cart .quantity,
.vb-floating-cart .amount {
  color: #047857;
  font-weight: 900;
}

.vb-floating-cart .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 22px 0 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 185, 129, 0.18);
  color: #06110d;
  font-size: 16px;
}

.vb-floating-cart .woocommerce-mini-cart__buttons {
  display: grid;
  gap: 12px;
  margin: 0;
}

.vb-floating-cart .woocommerce-mini-cart__buttons .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #10b981, #6ee7b7);
  color: #04110c !important;
  font-weight: 900;
  text-decoration: none;
}

.vb-floating-cart .woocommerce-mini-cart__buttons .checkout {
  background: #04110c;
  color: #ffffff !important;
}

.vb-floating-cart .woocommerce-mini-cart__empty-message {
  margin: 0;
  padding: 28px;
  border: 1px dashed rgba(16, 185, 129, 0.28);
  border-radius: 18px;
  background: #ffffff;
  color: #5f7068;
  text-align: center;
}

@media (max-width: 640px) {
  .vb-floating-cart__trigger {
    left: 16px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .vb-floating-cart__drawer {
    width: calc(100vw - 24px);
  }

  .vb-floating-cart__header,
  .vb-floating-cart__body {
    padding-left: 18px;
    padding-right: 18px;
  }
}
/* End Floating WooCommerce Cart */


/* WooCommerce Checkout Page - Safe Clean Layout
   Replaces the broken grid checkout block.
   Scoped only to body.woocommerce-checkout. */
body.woocommerce-checkout {
  background: #f4fbf7 !important;
  color: #07130f !important;
}

body.woocommerce-checkout .entry-content-wrap,
body.woocommerce-checkout .comments-wrap {
  background: #f4fbf7 !important;
}

body.woocommerce-checkout .entry-content-wrap {
  padding: 56px 0 82px !important;
}

body.woocommerce-checkout .entry-content {
  width: min(100% - 40px, 980px) !important;
  margin: 0 auto !important;
  color: #07130f !important;
}

body.woocommerce-checkout .woocommerce {
  width: 100% !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  color: #07130f !important;
}

/* Coupon notice */
body.woocommerce-checkout .woocommerce-info {
  margin: 0 0 26px !important;
  padding: 18px 22px !important;
  border: 1px solid rgba(16, 185, 129, 0.22) !important;
  border-top: 4px solid #10b981 !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  color: #5f7068 !important;
  box-shadow: 0 18px 45px rgba(2, 44, 34, 0.08) !important;
}

body.woocommerce-checkout .woocommerce-info::before {
  color: #10b981 !important;
}

body.woocommerce-checkout .woocommerce-info a {
  color: #047857 !important;
  font-weight: 850 !important;
  text-decoration: none !important;
}

body.woocommerce-checkout .checkout_coupon {
  margin: 0 0 26px !important;
  padding: 22px !important;
  border: 1px solid rgba(16, 185, 129, 0.16) !important;
  border-radius: 20px !important;
  background: #ffffff !important;
}

/* Keep checkout classic layout stable, no forced two-column form grid */
body.woocommerce-checkout form.checkout {
  display: block !important;
  width: 100% !important;
  margin: 0 auto !important;
}

/* Customer details card */
body.woocommerce-checkout #customer_details {
  display: block !important;
  width: 100% !important;
  margin: 0 0 28px !important;
  padding: 30px !important;
  border: 1px solid rgba(16, 185, 129, 0.16) !important;
  border-radius: 26px !important;
  background: #ffffff !important;
  box-shadow: 0 22px 55px rgba(2, 44, 34, 0.08) !important;
  overflow: visible !important;
}

/* Woo default columns reset */
body.woocommerce-checkout .woocommerce .col2-set,
body.woocommerce-checkout .woocommerce-page .col2-set {
  display: block !important;
  width: 100% !important;
}

body.woocommerce-checkout .woocommerce .col2-set .col-1,
body.woocommerce-checkout .woocommerce-page .col2-set .col-1,
body.woocommerce-checkout .woocommerce .col2-set .col-2,
body.woocommerce-checkout .woocommerce-page .col2-set .col-2 {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Billing fields grid */
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 18px !important;
  row-gap: 14px !important;
}

body.woocommerce-checkout .form-row,
body.woocommerce-checkout .form-row-first,
body.woocommerce-checkout .form-row-last {
  float: none !important;
  clear: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-checkout #billing_country_field,
body.woocommerce-checkout #billing_state_field,
body.woocommerce-checkout #billing_phone_field,
body.woocommerce-checkout #billing_email_field,
body.woocommerce-checkout #billing_address_1_field,
body.woocommerce-checkout #billing_address_2_field,
body.woocommerce-checkout #billing_city_field,
body.woocommerce-checkout #billing_postcode_field {
  grid-column: span 1 !important;
}

body.woocommerce-checkout .woocommerce-additional-fields {
  margin-top: 30px !important;
  padding-top: 26px !important;
  border-top: 1px solid rgba(16, 185, 129, 0.14) !important;
}

/* Headings */
body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields h3,
body.woocommerce-checkout #order_review_heading {
  margin: 0 0 20px !important;
  color: #07130f !important;
  font-size: 22px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.03em !important;
}

body.woocommerce-checkout #order_review_heading {
  margin-top: 4px !important;
}

/* Labels and inputs */
body.woocommerce-checkout .form-row label {
  display: block !important;
  margin: 0 0 8px !important;
  color: #5f7068 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

body.woocommerce-checkout abbr.required {
  color: #dc2626 !important;
  text-decoration: none !important;
}

body.woocommerce-checkout input.input-text,
body.woocommerce-checkout input[type="text"],
body.woocommerce-checkout input[type="email"],
body.woocommerce-checkout input[type="tel"],
body.woocommerce-checkout input[type="number"],
body.woocommerce-checkout input[type="password"],
body.woocommerce-checkout select,
body.woocommerce-checkout textarea,
body.woocommerce-checkout .select2-container .select2-selection--single {
  width: 100% !important;
  min-height: 50px !important;
  padding: 12px 14px !important;
  border: 1px solid rgba(7, 19, 15, 0.14) !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  color: #07130f !important;
  box-shadow: none !important;
  outline: none !important;
}

body.woocommerce-checkout textarea {
  min-height: 112px !important;
  resize: vertical !important;
}

body.woocommerce-checkout .select2-container .select2-selection--single {
  display: flex !important;
  align-items: center !important;
}

body.woocommerce-checkout
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #07130f !important;
  line-height: 1.4 !important;
  padding-left: 0 !important;
}

body.woocommerce-checkout
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 48px !important;
}

body.woocommerce-checkout input:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-checkout textarea:focus,
body.woocommerce-checkout .select2-container--open .select2-selection--single {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12) !important;
}

/* Order review card */
body.woocommerce-checkout #order_review {
  width: 100% !important;
  margin: 0 !important;
  padding: 28px !important;
  border: 1px solid rgba(16, 185, 129, 0.16) !important;
  border-radius: 26px !important;
  background: #ffffff !important;
  box-shadow: 0 22px 55px rgba(2, 44, 34, 0.08) !important;
}

body.woocommerce-checkout table.shop_table {
  width: 100% !important;
  margin: 0 0 22px !important;
  border: 1px solid rgba(16, 185, 129, 0.14) !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

body.woocommerce-checkout table.shop_table th,
body.woocommerce-checkout table.shop_table td {
  padding: 15px 16px !important;
  border-color: rgba(7, 19, 15, 0.08) !important;
  color: #07130f !important;
  font-size: 15px !important;
}

body.woocommerce-checkout table.shop_table th {
  background: #f4fbf7 !important;
  font-weight: 900 !important;
}

body.woocommerce-checkout table.shop_table .amount {
  color: #07130f !important;
  font-weight: 900 !important;
}

/* Payment box */
body.woocommerce-checkout #payment,
body.woocommerce-checkout .woocommerce-checkout-payment {
  margin-top: 22px !important;
  padding: 20px !important;
  border: 1px solid rgba(16, 185, 129, 0.18) !important;
  border-radius: 22px !important;
  background: #eef9f3 !important;
  color: #07130f !important;
}

body.woocommerce-checkout #payment ul.payment_methods {
  margin: 0 !important;
  padding: 0 0 18px !important;
  border-bottom: 1px solid rgba(16, 185, 129, 0.18) !important;
}

body.woocommerce-checkout #payment ul.payment_methods li {
  color: #5f7068 !important;
  line-height: 1.55 !important;
}

body.woocommerce-checkout #payment div.payment_box {
  margin: 12px 0 16px !important;
  padding: 16px !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  color: #5f7068 !important;
}

body.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #ffffff !important;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text {
  margin-top: 18px !important;
  color: #5f7068 !important;
  line-height: 1.7 !important;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text a {
  color: #047857 !important;
  font-weight: 850 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

/* Place order button */
body.woocommerce-checkout #place_order {
  float: none !important;
  width: auto !important;
  min-width: 150px !important;
  min-height: 46px !important;
  margin-top: 16px !important;
  padding: 12px 24px !important;
  border: 1px solid #b7ead2 !important;
  border-radius: 999px !important;
  background: #e8f8f0 !important;
  color: #047857 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

body.woocommerce-checkout #place_order:hover,
body.woocommerce-checkout #place_order:focus {
  border-color: #10b981 !important;
  background: #10b981 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.16) !important;
  transform: translateY(-1px) !important;
}

/* Notices */
body.woocommerce-checkout .woocommerce-error,
body.woocommerce-checkout .woocommerce-message {
  border-radius: 18px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 45px rgba(2, 44, 34, 0.08) !important;
}

@media (max-width: 760px) {
  body.woocommerce-checkout .entry-content-wrap {
    padding: 38px 0 60px !important;
  }

  body.woocommerce-checkout .entry-content {
    width: min(100% - 28px, 980px) !important;
  }

  body.woocommerce-checkout #customer_details,
  body.woocommerce-checkout #order_review {
    padding: 22px !important;
    border-radius: 22px !important;
  }

  body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-checkout #billing_country_field,
  body.woocommerce-checkout #billing_state_field,
  body.woocommerce-checkout #billing_phone_field,
  body.woocommerce-checkout #billing_email_field,
  body.woocommerce-checkout #billing_address_1_field,
  body.woocommerce-checkout #billing_address_2_field,
  body.woocommerce-checkout #billing_city_field,
  body.woocommerce-checkout #billing_postcode_field {
    grid-column: 1 !important;
  }

  body.woocommerce-checkout #place_order {
    width: 100% !important;
  }
}
/* End WooCommerce Checkout Page - Safe Clean Layout */


/* Checkout coupon notice icon overlap fix */
body.woocommerce-checkout .woocommerce-info {
  position: relative !important;
  padding: 18px 24px !important;
  border-top: 4px solid #10b981 !important;
}

body.woocommerce-checkout .woocommerce-info::before {
  display: none !important;
  content: none !important;
}

body.woocommerce-checkout .woocommerce-info a {
  margin-left: 4px !important;
}


/* WooCommerce Pay For Order page clean design */
body.woocommerce-order-pay .entry-content-wrap {
  background: #f8fcfa !important;
  padding: 60px 20px 90px !important;
}

body.woocommerce-order-pay .entry-content {
  width: min(100%, 960px) !important;
  color: #07130f !important;
}

body.woocommerce-order-pay .woocommerce {
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 34px !important;
  border: 1px solid #dbeee5 !important;
  border-radius: 28px !important;
  background: #ffffff !important;
  box-shadow: 0 22px 60px rgba(4, 17, 12, 0.08) !important;
}

body.woocommerce-order-pay .woocommerce-order-overview {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin: 0 0 32px !important;
  padding: 0 !important;
  list-style: none !important;
}

body.woocommerce-order-pay .woocommerce-order-overview li {
  margin: 0 !important;
  padding: 16px 18px !important;
  border: 1px solid rgba(16, 185, 129, 0.16) !important;
  border-radius: 18px !important;
  background: #f4fbf7 !important;
  color: #5f7068 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

body.woocommerce-order-pay .woocommerce-order-overview li strong {
  display: block !important;
  margin-top: 4px !important;
  color: #07130f !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
}

body.woocommerce-order-pay .woocommerce p {
  color: #07130f !important;
  font-size: 18px !important;
  font-weight: 750 !important;
  line-height: 1.7 !important;
}

body.woocommerce-order-pay .woocommerce > p:first-of-type {
  padding: 16px 18px !important;
  border: 1px solid rgba(245, 158, 11, 0.25) !important;
  border-radius: 16px !important;
  background: #fffbeb !important;
  color: #92400e !important;
}

body.woocommerce-order-pay #razorpay_payment_form {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 22px !important;
}

body.woocommerce-order-pay #razorpay_payment_form button,
body.woocommerce-order-pay
  .woocommerce
  button:not(.menu-toggle):not(.vb-floating-cart__trigger):not(
    .vb-floating-cart__close
  ) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  padding: 12px 24px !important;
  border: 1px solid #b7ead2 !important;
  border-radius: 999px !important;
  background: #e8f8f0 !important;
  color: #047857 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

body.woocommerce-order-pay #razorpay_payment_form button:hover,
body.woocommerce-order-pay
  .woocommerce
  button:not(.menu-toggle):not(.vb-floating-cart__trigger):not(
    .vb-floating-cart__close
  ):hover {
  border-color: #10b981 !important;
  background: #10b981 !important;
  color: #ffffff !important;
}

@media (max-width: 760px) {
  body.woocommerce-order-pay .woocommerce {
    padding: 24px !important;
    border-radius: 24px !important;
  }

  body.woocommerce-order-pay .woocommerce-order-overview {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-order-pay #razorpay_payment_form button {
    width: 100% !important;
  }
}


/* WooCommerce Order Received Page UI Fix */
body.has-woocommerce .entry-content > .woocommerce > .woocommerce-order {
  width: min(100%, 960px);
  margin: 0 auto;
  color: #07130f;
}

body.has-woocommerce .entry-content > .woocommerce > .woocommerce-order p {
  color: #34443d;
}

body.has-woocommerce .entry-content > .woocommerce > .woocommerce-order a {
  color: #047857;
  font-weight: 800;
  text-decoration: none;
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  a:hover {
  color: #10b981;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .woocommerce-thankyou-order-received {
  position: relative;
  margin: 0 0 24px;
  padding: 22px 24px 22px 68px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at top left,
      rgba(16, 185, 129, 0.12),
      transparent 34%
    ),
    #ffffff;
  color: #07130f !important;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.55;
  box-shadow: 0 16px 45px rgba(6, 17, 13, 0.08);
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .woocommerce-thankyou-order-received::before {
  content: "✓";
  position: absolute;
  top: 22px;
  left: 22px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #10b981, #6ee7b7);
  color: #04110c;
  font-size: 17px;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(16, 185, 129, 0.22);
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .woocommerce-order-overview {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 34px !important;
  padding: 0 !important;
  list-style: none !important;
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .woocommerce-order-overview
  li {
  float: none !important;
  width: auto !important;
  min-height: 96px;
  margin: 0 !important;
  padding: 16px !important;
  border: 1px solid rgba(7, 19, 15, 0.08) !important;
  border-radius: 18px;
  background: #ffffff;
  color: #5f7068;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 34px rgba(6, 17, 13, 0.06);
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .woocommerce-order-overview
  li
  strong {
  display: block;
  margin-top: 7px;
  color: #07130f;
  font-size: 0.96rem;
  font-weight: 950;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: -0.02em;
  word-break: break-word;
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .woocommerce-order-details,
body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .woocommerce-customer-details {
  margin-top: 34px;
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .woocommerce-order-details__title,
body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .woocommerce-column__title,
body.has-woocommerce .entry-content > .woocommerce > .woocommerce-order > h2 {
  margin: 0 0 16px;
  color: #07130f !important;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .shop_table {
  width: 100%;
  margin: 0 !important;
  border: 1px solid rgba(7, 19, 15, 0.1) !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: 20px !important;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(6, 17, 13, 0.07);
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .shop_table
  thead
  th {
  padding: 17px 20px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(7, 19, 15, 0.08) !important;
  background: #f2faf6;
  color: #07130f !important;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.35;
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .shop_table
  tbody
  td,
body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .shop_table
  tfoot
  th,
body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .shop_table
  tfoot
  td {
  padding: 17px 20px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(7, 19, 15, 0.08) !important;
  color: #07130f !important;
  font-size: 0.94rem;
  line-height: 1.5;
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .shop_table
  tr:last-child
  th,
body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .shop_table
  tr:last-child
  td {
  border-bottom: 0 !important;
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .shop_table
  tfoot
  th {
  background: #f8fcfa;
  font-weight: 950;
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .shop_table
  tfoot
  td {
  background: #ffffff;
  font-weight: 900;
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .shop_table
  tfoot
  tr:last-child
  th,
body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .shop_table
  tfoot
  tr:last-child
  td {
  background: #f2faf6;
  font-size: 1rem;
  font-weight: 950;
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .woocommerce-customer-details
  address {
  margin: 0;
  padding: 22px 24px;
  border: 1px solid rgba(7, 19, 15, 0.1);
  border-radius: 20px;
  background: #ffffff;
  color: #34443d;
  font-style: normal;
  line-height: 1.8;
  box-shadow: 0 18px 50px rgba(6, 17, 13, 0.07);
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .woocommerce-customer-details
  address
  p {
  margin: 10px 0 0;
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .woocommerce-customer-details--phone,
body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .woocommerce-customer-details--email {
  color: #07130f;
  font-weight: 700;
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  > h2:last-child {
  margin-top: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(16, 185, 129, 0.18);
}

@media (max-width: 900px) {
  body.has-woocommerce
    .entry-content
    > .woocommerce
    > .woocommerce-order
    .woocommerce-order-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.has-woocommerce .entry-content > .woocommerce > .woocommerce-order {
    width: 100%;
  }

  body.has-woocommerce
    .entry-content
    > .woocommerce
    > .woocommerce-order
    .woocommerce-thankyou-order-received {
    padding: 18px 18px 18px 58px;
    border-radius: 18px;
    font-size: 0.95rem;
  }

  body.has-woocommerce
    .entry-content
    > .woocommerce
    > .woocommerce-order
    .woocommerce-thankyou-order-received::before {
    top: 18px;
    left: 18px;
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  body.has-woocommerce
    .entry-content
    > .woocommerce
    > .woocommerce-order
    .woocommerce-order-overview {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 28px !important;
  }

  body.has-woocommerce
    .entry-content
    > .woocommerce
    > .woocommerce-order
    .woocommerce-order-overview
    li {
    min-height: auto;
    padding: 14px 16px !important;
  }

  body.has-woocommerce
    .entry-content
    > .woocommerce
    > .woocommerce-order
    .shop_table
    thead
    th,
  body.has-woocommerce
    .entry-content
    > .woocommerce
    > .woocommerce-order
    .shop_table
    tbody
    td,
  body.has-woocommerce
    .entry-content
    > .woocommerce
    > .woocommerce-order
    .shop_table
    tfoot
    th,
  body.has-woocommerce
    .entry-content
    > .woocommerce
    > .woocommerce-order
    .shop_table
    tfoot
    td {
    padding: 14px !important;
    font-size: 0.88rem;
  }

  body.has-woocommerce
    .entry-content
    > .woocommerce
    > .woocommerce-order
    .woocommerce-customer-details
    address {
    padding: 18px;
    border-radius: 18px;
  }
}

body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .woocommerce-order-overview::before,
body.has-woocommerce
  .entry-content
  > .woocommerce
  > .woocommerce-order
  .woocommerce-order-overview::after {
  display: none !important;
  content: none !important;
}
