/* =========================
   WOOCOMMERCE CART 
   ========================= */

body.woocommerce-cart {
  --cart-bg: #ffffff;
  --cart-card-bg: #ffffff;
  --cart-border: #e6e6e6;
  --cart-text: #111111;
  --cart-muted: #7a7a7a;
  --cart-accent: #000000;
  --cart-accent-contrast: #ffffff;
  --cart-radius: 28px;
  --cart-shadow: none;
  --cart-gap: 32px;
  --cart-sidebar-width: 430px;
}

/* Main wrapper */
body.woocommerce-cart .woocommerce {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--cart-sidebar-width);
  gap: var(--cart-gap);
  align-items: start;
}

/* Notices should not break the grid */
body.woocommerce-cart .woocommerce-notices-wrapper {
  grid-column: 1 / -1;
}

body.woocommerce-cart .woocommerce-notices-wrapper:empty {
  display: none;
}

/* Left column */
body.woocommerce-cart .woocommerce-cart-form {
  grid-column: 1;
  min-width: 0;
  width: 100%;
  background: var(--cart-card-bg);
  border: 1px solid var(--cart-border);
  border-radius: var(--cart-radius);
  box-shadow: var(--cart-shadow);
  overflow: hidden;
}

/* Right column */
body.woocommerce-cart .cart-collaterals {
  grid-column: 2;
  width: 100%;
  margin: 0;
}

body.woocommerce-cart .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
  margin: 0;
  background: var(--cart-card-bg);
  border: 1px solid var(--cart-border);
  border-radius: var(--cart-radius);
  box-shadow: var(--cart-shadow);
  padding: 32px;
  position: sticky;
  top: 30px;
}


/* Tables */
body.woocommerce-cart table.shop_table {
  width: 100%;
  border: 0;
  margin: 0;
  border-collapse: collapse;
}

body.woocommerce-cart table.shop_table.cart thead th {
  padding: 26px 20px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cart-muted);
  background: #fafafa;
  border-bottom: 1px solid var(--cart-border);
}

body.woocommerce-cart table.shop_table.cart td {
  padding: 28px 20px;
  vertical-align: middle;
  border-top: 1px solid var(--cart-border);
  color: var(--cart-text);
}

body.woocommerce-cart table.shop_table.cart tr:first-child td {
  border-top: 0;
}

/* Column widths */
body.woocommerce-cart td.product-remove {
  width: 72px;
  text-align: center;
}

body.woocommerce-cart td.product-thumbnail {
  width: 120px;
}

body.woocommerce-cart td.product-price,
body.woocommerce-cart td.product-quantity,
body.woocommerce-cart td.product-subtotal {
  white-space: nowrap;
}

/* Product image */
body.woocommerce-cart td.product-thumbnail img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

/* Product name */
body.woocommerce-cart td.product-name a {
  color: var(--cart-text);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
  text-decoration: none;
}

body.woocommerce-cart td.product-name a:hover {
  opacity: 0.75;
}

/* Remove icon */
body.woocommerce-cart a.remove {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 999px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #b8bcc4;
  color: #8d939d !important;
  font-size: 18px;
  line-height: 1;
  transition: all 0.25s ease;
}

body.woocommerce-cart a.remove:hover {
  background: var(--cart-accent) !important;
  border-color: var(--cart-accent);
  color: var(--cart-accent-contrast) !important;
}

/* Price text */
body.woocommerce-cart .woocommerce-Price-amount,
body.woocommerce-cart td.product-price,
body.woocommerce-cart td.product-subtotal {
  font-size: 16px;
  font-weight: 500;
  color: var(--cart-text);
}

/* Quantity */
body.woocommerce-cart .quantity {
  margin: 0;
}

body.woocommerce-cart .quantity .qty {
  width: 78px;
  height: 48px;
  border: 1px solid #cfd5dc;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  font-size: 16px;
  padding: 0 10px;
  box-shadow: none;
}

/* Actions row */
body.woocommerce-cart .actions {
  padding: 24px 20px !important;
  background: #fff;
  border-top: 1px solid var(--cart-border);
}

body.woocommerce-cart .coupon {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

body.woocommerce-cart .coupon .input-text {
  height: 48px;
  min-width: 240px;
  flex: 1 1 auto;
  margin: 0 !important;
  padding: 0 18px !important;
  border: 1px solid #cfd5dc;
  border-radius: 18px;
  background: #fff;
  font-size: 16px;
  box-shadow: none;
}

body.woocommerce-cart .coupon .input-text::placeholder {
  color: #9aa1ad;
}

/* Buttons */
body.woocommerce-cart button.button,
body.woocommerce-cart .button,
body.woocommerce-cart .button.alt,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  min-height: 45px;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--cart-accent);
  color: var(--cart-accent-contrast);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  box-shadow: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

body.woocommerce-cart button.button:hover,
body.woocommerce-cart .button:hover,
body.woocommerce-cart .button.alt:hover,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  color: var(--cart-accent-contrast);
}

/* Totals card */
body.woocommerce-cart .cart_totals h2 {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--cart-text);
}

body.woocommerce-cart .cart_totals table.shop_table th,
body.woocommerce-cart .cart_totals table.shop_table td {
  padding: 18px 0;
  border-top: 1px solid var(--cart-border);
  font-size: 18px;
  color: var(--cart-text);
  vertical-align: top;
}

body.woocommerce-cart .cart_totals table.shop_table tr:first-child th,
body.woocommerce-cart .cart_totals table.shop_table tr:first-child td {
  border-top: 1px solid #d6dce3;
}

body.woocommerce-cart .cart_totals .cart-subtotal th,
body.woocommerce-cart .cart_totals .cart-subtotal td {
  font-weight: 400;
}

body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td {
  font-weight: 700;
}

body.woocommerce-cart .cart_totals .includes_tax,
body.woocommerce-cart .cart_totals .order-tax th,
body.woocommerce-cart .cart_totals .order-tax td {
  color: var(--cart-muted);
  font-size: 14px;
  font-weight: 400;
}

body.woocommerce-cart .wc-proceed-to-checkout {
  padding: 12px 0 0;
  margin: 0;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  font-size: 18px;
}

/* Small cleanup */
body.woocommerce-cart .screen-reader-text {
  clip-path: inset(50%);
}

/* Tablet */
@media (max-width: 1200px) {
  body.woocommerce-cart {
    --cart-sidebar-width: 380px;
  }
}

/* Stack columns */
@media (max-width: 1024px) {
  body.woocommerce-cart .woocommerce {
    grid-template-columns: 1fr;
  }

  body.woocommerce-cart .woocommerce-cart-form,
  body.woocommerce-cart .cart-collaterals,
  body.woocommerce-cart .woocommerce-notices-wrapper {
    grid-column: 1;
  }

  body.woocommerce-cart .cart-collaterals .cart_totals {
    position: static;
    margin-top: 8px;
  }
}

/* Mobile card layout */
@media (max-width: 767px) {
  body.woocommerce-cart .woocommerce {
    gap: 24px;
  }

  body.woocommerce-cart .woocommerce-cart-form,
  body.woocommerce-cart .cart-collaterals .cart_totals {
    border-radius: 22px;
  }

  body.woocommerce-cart table.shop_table.cart thead {
    display: none;
  }

  body.woocommerce-cart table.shop_table.cart,
  body.woocommerce-cart table.shop_table.cart tbody,
  body.woocommerce-cart table.shop_table.cart tr,
  body.woocommerce-cart table.shop_table.cart td {
    display: block;
    width: 100%;
  }

  body.woocommerce-cart table.shop_table.cart tr.cart_item {
    position: relative;
    margin: 16px;
    padding: 18px;
    border: 1px solid var(--cart-border);
    border-radius: 20px;
    background: #fff;
  }

  body.woocommerce-cart table.shop_table.cart td {
    border: 0;
    padding: 8px 0;
  }

  body.woocommerce-cart td.product-remove {
    position: absolute;
    top: 14px;
    right: 14px;
    width: auto;
    padding: 0;
  }

  body.woocommerce-cart td.product-thumbnail {
    width: auto;
    margin-bottom: 8px;
  }

  body.woocommerce-cart td.product-thumbnail img {
    width: 76px;
    height: 76px;
  }

  body.woocommerce-cart td.product-name {
    padding-right: 56px;
    font-size: 16px!important;
    line-height: 1.3!important;
  }

  body.woocommerce-cart td.product-price::before,
  body.woocommerce-cart td.product-quantity::before,
  body.woocommerce-cart td.product-subtotal::before {
    content: attr(data-title);
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--cart-muted);
  }

  body.woocommerce-cart .actions {
    padding: 18px !important;
  }

  body.woocommerce-cart .coupon {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  body.woocommerce-cart .coupon .input-text,
  body.woocommerce-cart .coupon button,
  body.woocommerce-cart button[name="update_cart"] {
    width: 100%;
  }

  body.woocommerce-cart .cart-collaterals .cart_totals {
    padding: 24px;
  }

  body.woocommerce-cart .cart_totals h2 {
    font-size: 24px;
  }

  body.woocommerce-cart .cart_totals table.shop_table th,
  body.woocommerce-cart .cart_totals table.shop_table td {
    font-size: 16px;
    padding: 14px 0;
  }

  body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    min-height: 54px;
    font-size: 17px;
  }
}

/* =========================
   EMPTY CART STATE
   ========================= */

body.woocommerce-cart .woocommerce:has(.cart-empty) {
  display: block;
  max-width: 760px;
  margin: 0 auto;
}

body.woocommerce-cart .woocommerce:has(.cart-empty) .woocommerce-notices-wrapper {
  display: block;
}

body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .cart-empty.woocommerce-info {
  position: relative;
  margin: 0 0 18px;
  padding: 22px 24px;
  border: 1px solid var(--cart-border);
  border-radius: 24px;
  background: #fff;
  color: var(--cart-text);
  box-shadow: none;
}

body.woocommerce-cart .woocommerce-message::before,
body.woocommerce-cart .cart-empty.woocommerce-info::before {
  display: none;
}

body.woocommerce-cart .woocommerce-message {
  font-size: 15px;
  line-height: 1.5;
}

body.woocommerce-cart .woocommerce-message .restore-item {
  font-weight: 600;
  color: var(--cart-text);
  text-decoration: underline;
}

body.woocommerce-cart .cart-empty.woocommerce-info {
  text-align: center;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 500;
  padding: 48px 32px;
}

body.woocommerce-cart .wc-empty-cart-message {
  display: none;
}

body.woocommerce-cart p.return-to-shop {
  margin: 0;
  text-align: center;
}

body.woocommerce-cart p.return-to-shop .button.wc-backward {
  min-height: 58px;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--cart-accent);
  color: var(--cart-accent-contrast);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Optional: make empty state feel more like a card */
body.woocommerce-cart .woocommerce:has(.cart-empty) {
  padding-top: 10px;
margin-bottom:80px;
}

/* Fallback for browsers without :has() support */
body.woocommerce-cart .cart-empty.woocommerce-info,
body.woocommerce-cart p.return-to-shop {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  body.woocommerce-cart .cart-empty.woocommerce-info {
    font-size: 20px;
    padding: 36px 22px;
    border-radius: 20px;
  }

  body.woocommerce-cart .woocommerce-message,
  body.woocommerce-cart .cart-empty.woocommerce-info {
    margin-bottom: 14px;
  }

  body.woocommerce-cart p.return-to-shop .button.wc-backward {
    width: 100%;
  }

  body.woocommerce-cart p.return-to-shop {
    max-width: 100%;
  }
}

/* =========================
   CART NOTICE + CONTINUE SHOPPING
   ========================= */

body.woocommerce-cart .woocommerce-notices-wrapper {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 4px;
}

/* Notice card */
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-error,
body.woocommerce-cart .woocommerce-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 18px 22px 18px 22px;
  border: 1px solid var(--cart-border);
  border-radius: 20px;
  background: #fff;
  color: var(--cart-text);
  box-shadow: none;
  font-size: 15px;
  line-height: 1.5;
}

/* Remove Woo default icon */
body.woocommerce-cart .woocommerce-message::before,
body.woocommerce-cart .woocommerce-error::before,
body.woocommerce-cart .woocommerce-info::before {
  display: none;
}

/* Let the text take available width */
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-error,
body.woocommerce-cart .woocommerce-info {
  padding-left: 22px;
}

/* Continue shopping / notice action button */
body.woocommerce-cart .woocommerce-message .button.wc-forward,
body.woocommerce-cart .woocommerce-info .button.wc-forward,
body.woocommerce-cart .woocommerce-error .button.wc-forward {
  order: 2;
  flex: 0 0 auto;
  margin: 0 0 0 auto;
  min-height: 26px;
  padding: 12px 18px;
  border: 1px solid #cfd5dc;
  border-radius: 999px;
  background: #fff;
  color: var(--cart-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  transition: all 0.25s ease;
}

body.woocommerce-cart .woocommerce-message .button.wc-forward:hover,
body.woocommerce-cart .woocommerce-info .button.wc-forward:hover,
body.woocommerce-cart .woocommerce-error .button.wc-forward:hover {
  background: var(--cart-accent);
  border-color: var(--cart-accent);
  color: var(--cart-accent-contrast);
}

/* Undo link inside message */
body.woocommerce-cart .woocommerce-message .restore-item {
  margin-left: 8px;
  color: var(--cart-text);
  font-weight: 600;
  text-decoration: underline;
}

body.woocommerce-cart .woocommerce-message .restore-item:hover {
  opacity: 0.75;
}

/* Optional: hide duplicate preview-only continue shopping buttons */
body.customize-support.woocommerce-cart .woocommerce-message .customize-unpreviewable {
  display: none !important;
}

/* Mobile */
@media (max-width: 767px) {
  body.woocommerce-cart .woocommerce-message,
  body.woocommerce-cart .woocommerce-error,
  body.woocommerce-cart .woocommerce-info {
    flex-direction: column;
    align-items: flex-start;
  }

  body.woocommerce-cart .woocommerce-message .button.wc-forward,
  body.woocommerce-cart .woocommerce-info .button.wc-forward,
  body.woocommerce-cart .woocommerce-error .button.wc-forward {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    display: inline-flex;
    align-items: center;
  }
}

/* =========================
   WOOCOMMERCE CHECKOUT
   ========================= */

body.woocommerce-checkout {
  --checkout-card-bg: #ffffff;
  --checkout-border: #e6e6e6;
  --checkout-text: #111111;
  --checkout-muted: #7a7a7a;
  --checkout-accent: #000000;
  --checkout-accent-contrast: #ffffff;
  --checkout-radius: 28px;
  --checkout-gap: 40px;
  --checkout-sidebar-width: 460px;
}

/* Base */
body.woocommerce-checkout .woocommerce,
body.woocommerce-checkout .woocommerce * {
  box-sizing: border-box;
}

body.woocommerce-checkout form.checkout,
body.woocommerce-checkout #customer_details,
body.woocommerce-checkout #customer_details.col2-set,
body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2,
body.woocommerce-checkout #order_review,
body.woocommerce-checkout .woocommerce-checkout-review-order,
body.woocommerce-checkout .woocommerce-checkout-payment {
  float: none !important;
  clear: none !important;
  width: 100% !important;
  max-width: 100% !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order{
  border-width: 2px!important;
}
/* Intro text */
body.woocommerce-checkout .checkout-neura .elementor-widget-text-editor:first-child {
  margin-bottom: 28px;
}

body.woocommerce-checkout .checkout-neura .elementor-widget-text-editor:first-child p {
  color: var(--checkout-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.woocommerce-privacy-policy-text p,
.woocommerce-privacy-policy-text a{
  font-size: 14px!important;
  line-height: 1.3!important;
}

/* Notices */
body.woocommerce-checkout .woocommerce-notices-wrapper,
body.woocommerce-checkout .woocommerce-form-coupon-toggle {
  width: 100%;
  margin-bottom: 16px;
}

body.woocommerce-checkout .woocommerce-notices-wrapper:empty {
  display: none;
}

body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-error {
  margin: 0 0 14px;
  padding: 18px 24px;
  border: 1px solid var(--checkout-border);
  border-radius: 20px;
  background: #fff;
  color: var(--checkout-text);
  font-size: 15px;
  line-height: 1.55;
  box-shadow: none;
}

body.woocommerce-checkout .woocommerce-info::before,
body.woocommerce-checkout .woocommerce-message::before,
body.woocommerce-checkout .woocommerce-error::before {
  display: none;
}

body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-error {
  padding-left: 24px;
}

body.woocommerce-checkout .woocommerce-info a,
body.woocommerce-checkout .woocommerce-message a,
body.woocommerce-checkout .woocommerce-error a {
  color: var(--checkout-text);
  font-weight: 600;
  text-decoration: underline;
}

/* Coupon form */
body.woocommerce-checkout form.checkout_coupon {
  display: flex;
  gap: 14px;
  align-items: end;
  flex-wrap: wrap;
  margin: 0 0 24px;
  padding: 22px;
  border: 1px solid var(--checkout-border);
  border-radius: 24px;
  background: #fff;
}

body.woocommerce-checkout form.checkout_coupon .form-row-first,
body.woocommerce-checkout form.checkout_coupon .form-row-last {
  float: none;
  width: auto;
  margin: 0;
}

body.woocommerce-checkout form.checkout_coupon .form-row-first {
  flex: 1 1 260px;
}

body.woocommerce-checkout form.checkout_coupon .form-row-last {
  flex: 0 0 auto;
}

/* Main layout */
body.woocommerce-checkout form.checkout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) var(--checkout-sidebar-width) !important;
  grid-template-areas: "details review";
  gap: 20px !important;
  align-items: start !important;
}

/* Left */
body.woocommerce-checkout #customer_details {
  grid-area: details;
  margin: 0;
}

body.woocommerce-checkout #customer_details.col2-set {
  display: block;
}

body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2 {
  margin: 0;
}

body.woocommerce-checkout #customer_details .col-2:empty {
  display: none;
}

/* Hide separate Woo heading to avoid broken grid row */
body.woocommerce-checkout #order_review_heading {
  display: none !important;
}

/* Right */
body.woocommerce-checkout #order_review {
  grid-area: review;
  margin: 0 !important;
  padding: 30px;
  background: var(--checkout-card-bg);
  border: 1px solid var(--checkout-border);
  border-radius: var(--checkout-radius);
  position: sticky;
  top: 30px;
  align-self: start;
}

/* Left cards */
body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-additional-fields {
  margin: 0 0 24px;
  padding: 30px;
  background: var(--checkout-card-bg);
  border: 1px solid var(--checkout-border);
  border-radius: var(--checkout-radius);
}

body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields h3 {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--checkout-text);
  padding-bottom: 16px;
  border-bottom: 1px solid #dbe1e8;
}

/* Field grid */
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
}

body.woocommerce-checkout .form-row {
  margin: 0;
}

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

body.woocommerce-checkout .form-row-wide,
body.woocommerce-checkout .form-row.notes,
body.woocommerce-checkout #customer_type_field,
body.woocommerce-checkout #billing_company_field,
body.woocommerce-checkout #billing_country_field,
body.woocommerce-checkout #billing_address_1_field,
body.woocommerce-checkout #billing_address_2_field,
body.woocommerce-checkout #billing_postcode_field,
body.woocommerce-checkout #billing_city_field,
body.woocommerce-checkout #billing_state_field,
body.woocommerce-checkout #billing_vat_id_field,
body.woocommerce-checkout #billing_phone_field,
body.woocommerce-checkout #billing_email_field {
  grid-column: 1 / -1;
}

/* Labels */
body.woocommerce-checkout form .form-row label,
body.woocommerce-checkout .required_field,
body.woocommerce-checkout .woocommerce-form__label {
  display: block;
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--checkout-text);
}

body.woocommerce-checkout .optional {
  color: var(--checkout-muted);
  font-weight: 400;
}

body.woocommerce-checkout .required,
body.woocommerce-checkout abbr.required {
  color: #d22;
  text-decoration: none;
}

/* Inputs */
body.woocommerce-checkout input.input-text,
body.woocommerce-checkout textarea,
body.woocommerce-checkout select,
body.woocommerce-checkout .select2-container--default .select2-selection--single {
  width: 100%;
  min-height: 56px;
  border: 1px solid #cfd5dc;
  border-radius: 16px;
  background: #fff;
  color: var(--checkout-text);
  font-size: 16px;
  line-height: 1.2;
  box-shadow: none;
}

body.woocommerce-checkout input.input-text,
body.woocommerce-checkout textarea,
body.woocommerce-checkout select {
  padding: 0 18px;
}

body.woocommerce-checkout textarea {
  min-height: 120px;
  padding: 16px 18px;
  resize: vertical;
}

body.woocommerce-checkout input.input-text:focus,
body.woocommerce-checkout textarea:focus,
body.woocommerce-checkout select:focus {
  outline: none;
  border-color: #aeb6c2;
}

body.woocommerce-checkout #billing_vat_id_field.wc-customer-type-neutral:not(.woocommerce-invalid):not(.woocommerce-invalid-required-field) input.input-text,
body.woocommerce-checkout #billing_vat_number_field.wc-customer-type-neutral:not(.woocommerce-invalid):not(.woocommerce-invalid-required-field) input.input-text,
body.woocommerce-checkout #vat_id_field.wc-customer-type-neutral:not(.woocommerce-invalid):not(.woocommerce-invalid-required-field) input.input-text {
  border-color: #cfd5dc !important;
  box-shadow: none !important;
}

body.woocommerce-checkout #billing_vat_id_field.wc-customer-type-neutral:not(.woocommerce-invalid):not(.woocommerce-invalid-required-field):before,
body.woocommerce-checkout #billing_vat_id_field.wc-customer-type-neutral:not(.woocommerce-invalid):not(.woocommerce-invalid-required-field):after,
body.woocommerce-checkout #billing_vat_number_field.wc-customer-type-neutral:not(.woocommerce-invalid):not(.woocommerce-invalid-required-field):before,
body.woocommerce-checkout #billing_vat_number_field.wc-customer-type-neutral:not(.woocommerce-invalid):not(.woocommerce-invalid-required-field):after,
body.woocommerce-checkout #vat_id_field.wc-customer-type-neutral:not(.woocommerce-invalid):not(.woocommerce-invalid-required-field):before,
body.woocommerce-checkout #vat_id_field.wc-customer-type-neutral:not(.woocommerce-invalid):not(.woocommerce-invalid-required-field):after {
  display: none !important;
}

body.woocommerce-checkout input::placeholder,
body.woocommerce-checkout textarea::placeholder {
  color: #9aa1ad;
}

/* Select2 */
body.woocommerce-checkout .select2-container {
  width: 100% !important;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single {
  display: flex;
  align-items: center;
  padding: 0 18px;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: normal;
  color: var(--checkout-text);
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 14px;
}

/* Customer type */
body.woocommerce-checkout #customer-type-field {
  margin-bottom: 18px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--checkout-border, #e6e6e6);
  border-radius: var(--checkout-radius, 28px);
}

body.woocommerce-checkout #customer-type-field h5 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--checkout-text);
}

body.woocommerce-checkout .customer-type-radio {
  border-radius: 12px;
}

body.woocommerce-checkout .customer-type-radio label {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin: 0 20px 0 10px;
}

body.woocommerce-checkout .customer-type-radio .woocommerce-input-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

body.woocommerce-checkout .customer-type-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

body.woocommerce-checkout .customer-type-radio label.radio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin: 0;
  padding: 12px 18px;
  border: 1px solid #cfd5dc;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

body.woocommerce-checkout .customer-type-radio input[type="radio"]:checked + label.radio {
  background: var(--checkout-accent);
  border-color: var(--checkout-accent);
  color: var(--checkout-accent-contrast);
}

body.woocommerce-checkout #billing_vat_id_field.validate-required .optional,
body.woocommerce-checkout #billing_vat_number_field.validate-required .optional,
body.woocommerce-checkout #billing_company_field.validate-required .optional {
  display: none !important;
}

body.woocommerce-checkout #no_vat_id_field {
  margin: 0 0 10px;
}

body.woocommerce-checkout #no_vat_id_field label {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 15px;
}

body.woocommerce-checkout #no_vat_id_field input[type="checkbox"] {
  margin: 0 !important;
}

/* Checkboxes */
body.woocommerce-checkout .woocommerce-form__label-for-checkbox,
body.woocommerce-checkout .legal .woocommerce-form__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  font-weight: 400;
  line-height: 1.65;
}

body.woocommerce-checkout input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 18px;
}

body.woocommerce-checkout .woocommerce-gzd-legal-checkbox-text {
  display: block;
  color: var(--checkout-text);
  font-size: 14px;
  line-height: 1.7;
  overflow-wrap: break-word;
}

/* Order review table */
body.woocommerce-checkout table.woocommerce-checkout-review-order-table {
  width: 100%;
  border: 0;
	border-radius:15px!important;
  margin: 0 0 22px;
  border-collapse: collapse;
}

.woocommerce-checkout-review-order{
	padding: 30px!important;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table thead th {
  padding: 0 0 16px;
  border-bottom: 1px solid var(--checkout-border);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--checkout-muted);
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table th,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table td {
  padding: 18px 0;
  vertical-align: top;
  border-top: 1px solid var(--checkout-border);
  color: var(--checkout-text);
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody tr:first-child td {
  border-top: 0;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr:last-child td {
  border-bottom: 0!important;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr:last-child th {
  border-bottom: 0!important;
}

body.woocommerce-checkout .wc-gzd-cart-item-thumbnail img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

body.woocommerce-checkout .product-quantity {
  font-weight: 600;
}

body.woocommerce-checkout .order-total th,
body.woocommerce-checkout .order-total td {
  font-weight: 700;
}

body.woocommerce-checkout .includes_tax,
body.woocommerce-checkout .order-tax th,
body.woocommerce-checkout .order-tax td {
  font-size: 14px;
  color: var(--checkout-muted);
  font-weight: 400;
}

/* Payment */
body.woocommerce-checkout #order_payment_heading {
  margin: 0 0 18px;
  padding-top: 8px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--checkout-text);
}

body.woocommerce-checkout #payment {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

body.woocommerce-checkout #payment ul.payment_methods {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

body.woocommerce-checkout #payment ul.payment_methods li {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--checkout-border);
  border-radius: 18px;
  background: #fff;
}

body.woocommerce-checkout #payment label {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--checkout-text);
}

body.woocommerce-checkout #payment .payment_box {
  margin: 12px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fafafa;
  color: var(--checkout-muted);
  font-size: 14px;
  line-height: 1.7;
}

body.woocommerce-checkout #payment .payment_box::before {
  display: none;
}

/* Legal */
body.woocommerce-checkout .wc-gzd-checkbox-placeholder-legal {
  margin: 5px 0 16px;
}

body.woocommerce-checkout .legal.form-row {
  margin: 0;
  padding: 16px 18px!important;
  border: 1px solid var(--checkout-border);
  border-radius: 18px;
  background: #fff;
}

/* Buttons */
body.woocommerce-checkout button.button,
body.woocommerce-checkout .button,
body.woocommerce-checkout .button.alt,
body.woocommerce-checkout #place_order {
  min-height: 58px;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--checkout-accent);
  color: var(--checkout-accent-contrast);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  box-shadow: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

body.woocommerce-checkout button.button:hover,
body.woocommerce-checkout .button:hover,
body.woocommerce-checkout .button.alt:hover,
body.woocommerce-checkout #place_order:hover {
  color: var(--checkout-accent-contrast);
}

body.woocommerce-checkout .place-order {
  margin: 0;
  padding: 0;
}

body.woocommerce-checkout #place_order {
  width: 100%;
  margin-top: 6px;
  font-size: 18px;
}

/* Tablet */
@media (max-width: 1200px) {
  body.woocommerce-checkout {
    --checkout-sidebar-width: 400px;
  }
}

/* Stack on tablet/mobile */
@media (max-width: 1024px) {
  body.woocommerce-checkout form.checkout {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "details"
      "review";
  }

  body.woocommerce-checkout #order_review {
    position: static;
  }
}

/* Mobile */
@media (max-width: 767px) {
  body.woocommerce-checkout .woocommerce-billing-fields,
  body.woocommerce-checkout .woocommerce-additional-fields,
  body.woocommerce-checkout #order_review {
    padding: 22px;
    border-radius: 22px;
  }

  body.woocommerce-checkout #order_review::before,
  body.woocommerce-checkout .woocommerce-billing-fields h3,
  body.woocommerce-checkout .woocommerce-additional-fields h3 {
    font-size: 24px;
  }

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

  body.woocommerce-checkout form.checkout_coupon {
    padding: 18px;
  }

  body.woocommerce-checkout form.checkout_coupon .form-row-first,
  body.woocommerce-checkout form.checkout_coupon .form-row-last {
    width: 100%;
    flex: 1 1 100%;
  }

  body.woocommerce-checkout form.checkout_coupon button {
    width: 100%;
  }

  body.woocommerce-checkout .customer-type-radio .woocommerce-input-wrapper {
    flex-direction: column;
  }

  body.woocommerce-checkout .customer-type-radio label {
    display: flex !important;
    width: 100%;
    margin: 0 0 10px 0;
  }

  body.woocommerce-checkout .customer-type-radio label.radio {
    width: 100%;
    justify-content: center;
  }

  body.woocommerce-checkout .wc-gzd-cart-item-name-wrapper {
    align-items: flex-start;
  }

  body.woocommerce-checkout .wc-gzd-cart-item-thumbnail img {
    width: 60px;
    height: 60px;
  }

  body.woocommerce-checkout #place_order {
    min-height: 54px;
    font-size: 17px;
  }
}


/* =========================
   WOOCOMMERCE THANK YOU PAGE
   ========================= */

   body.woocommerce-order-received {
    --thanks-card-bg: #ffffff;
    --thanks-border: #e6e6e6;
    --thanks-text: #111111;
    --thanks-muted: #7a7a7a;
    --thanks-accent: #000000;
    --thanks-accent-contrast: #ffffff;
    --thanks-radius: 28px;
    --thanks-gap: 32px;
    --thanks-sidebar-width: 380px;
  }
  
  /* Base */
  body.woocommerce-order-received .woocommerce,
  body.woocommerce-order-received .woocommerce * {
    box-sizing: border-box;
  }
  
  body.woocommerce-order-received .woocommerce-order {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--thanks-gap);
    align-items: flex-start;
  }
  
  /* Success notice */
  body.woocommerce-order-received .woocommerce-notice--success,
  body.woocommerce-order-received .woocommerce-notice {
    width: 100%;
    margin: 0;
    padding: 20px 28px;
    border: 1px solid var(--thanks-border);
    border-radius: 20px;
    background: #fff;
    color: var(--thanks-text);
    font-size: 16px;
    line-height: 1.6;
  }
  
  body.woocommerce-order-received .woocommerce-notice::before {
    display: none;
  }
  
  .woocommerce-page.woocommerce-checkout .woocommerce-order ul.order_details{
    margin-bottom: 0px!important;
  }
  
  /* Top overview row */
  body.woocommerce-order-received .woocommerce-order-overview {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    /* display: flex;
    flex-wrap: wrap;
    gap: 16px; */
  }
  
  body.woocommerce-order-received .woocommerce-order-overview li {
    flex: 1 1 180px;
    min-width: 180px;
    margin: 0 12px 12px 0;
    padding: 20px 24px;
    border: 1px solid var(--thanks-border);
    border-radius: 22px;
    background: var(--thanks-card-bg);
    color: var(--thanks-muted);
    font-size: 14px;
    line-height: 1.45;
  }
  
  body.woocommerce-order-received .woocommerce-order-overview li strong {
    display: block;
    margin-top: 8px;
    color: var(--thanks-text);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    overflow-wrap: anywhere;
  }
  
  /* Make email automatically wider */
  body.woocommerce-order-received .woocommerce-order-overview__email {
    flex: 2 1 320px;
  }
  
  /* Keep payment method on a nice flexible width */
  body.woocommerce-order-received .woocommerce-order-overview__payment-method,
  body.woocommerce-order-received .woocommerce-order-overview__method {
    flex: 1.4 1 240px;
  }
  
  /* Main content columns */
  body.woocommerce-order-received .woocommerce-order-details {
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    padding: 32px;
    border: 1px solid var(--thanks-border);
    border-radius: var(--thanks-radius);
    background: var(--thanks-card-bg);
  }
  
  body.woocommerce-order-received .woocommerce-customer-details {
    flex: 0 0 var(--thanks-sidebar-width);
    width: var(--thanks-sidebar-width);
    margin: 0;
    padding: 32px;
    border: 1px solid var(--thanks-border);
    border-radius: var(--thanks-radius);
    background: var(--thanks-card-bg);
    align-self: flex-start;
  }
  
  /* Titles */
  body.woocommerce-order-received .woocommerce-order-details__title,
  body.woocommerce-order-received .woocommerce-column__title {
    margin: 0 0 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #dbe1e8;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--thanks-text);
  }
  
  /* Tables */
  body.woocommerce-order-received table.shop_table,
  body.woocommerce-order-received table.woocommerce-table {
    width: 100%;
    border: 0;
    margin: 0;
    border-collapse: collapse;
  }
  
  body.woocommerce-order-received table.shop_table thead th,
  body.woocommerce-order-received table.woocommerce-table thead th {
    padding: 0 14px 16px;
    border-bottom: 1px solid var(--thanks-border);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--thanks-muted);
    text-align: left;
  }
  
  body.woocommerce-order-received table.shop_table thead th:last-child,
  body.woocommerce-order-received table.woocommerce-table thead th:last-child {
    text-align: left;
  }
  
  body.woocommerce-order-received table.shop_table th,
  body.woocommerce-order-received table.shop_table td,
  body.woocommerce-order-received table.woocommerce-table th,
  body.woocommerce-order-received table.woocommerce-table td {
    padding: 18px 14px;
    vertical-align: top;
    border-top: 1px solid var(--thanks-border);
    color: var(--thanks-text);
    text-align: left;
  }
  
  body.woocommerce-order-received table.shop_table tbody tr:first-child td,
  body.woocommerce-order-received table.woocommerce-table tbody tr:first-child td {
    border-top: 0;
  }
  
  body.woocommerce-order-received .product-name a {
    color: var(--thanks-text);
    text-decoration: none;
    font-weight: 600;
  }
  
  body.woocommerce-order-received .product-name a:hover {
    opacity: 0.75;
  }
  
  body.woocommerce-order-received .product-quantity {
    font-weight: 600;
  }
  
  body.woocommerce-order-received .shop_table tfoot tr:nth-child(2) th,
  body.woocommerce-order-received .shop_table tfoot tr:nth-child(2) td,
  body.woocommerce-order-received .woocommerce-table tfoot tr:nth-child(2) th,
  body.woocommerce-order-received .woocommerce-table tfoot tr:nth-child(2) td {
    font-weight: 700;
  }
  
  body.woocommerce-order-received .woocommerce-Price-amount {
    color: var(--thanks-text);
  }
  
  /* Billing address */
  body.woocommerce-order-received .woocommerce-customer-details address {
    margin: 0;
    font-style: normal;
    color: var(--thanks-text);
    font-size: 16px;
    line-height: 1.85;
  }
  
  body.woocommerce-order-received .woocommerce-customer-details p {
    margin: 12px 0 0;
    color: var(--thanks-text);
    line-height: 1.65;
  }
  
  body.woocommerce-order-received .woocommerce-customer-details--phone,
  body.woocommerce-order-received .woocommerce-customer-details--email {
    padding-top: 12px;
    border-top: 1px solid var(--thanks-border);
  }
  
  /* Tablet */
  @media (max-width: 1100px) {
    body.woocommerce-order-received .woocommerce-customer-details {
      flex: 0 0 340px;
      width: 340px;
    }
  
    body.woocommerce-order-received .woocommerce-order-overview li {
      flex: 1 1 220px;
    }
  
    body.woocommerce-order-received .woocommerce-order-overview__email {
      flex: 2 1 360px;
    }
  }
  
  /* Stack layout */
  @media (max-width: 900px) {
    body.woocommerce-order-received .woocommerce-order-details,
    body.woocommerce-order-received .woocommerce-customer-details {
      flex: 1 1 100%;
      width: 100%;
    }
  
    body.woocommerce-order-received .woocommerce-order-overview li,
    body.woocommerce-order-received .woocommerce-order-overview__email,
    body.woocommerce-order-received .woocommerce-order-overview__payment-method,
    body.woocommerce-order-received .woocommerce-order-overview__method {
      flex: 1 1 calc(50% - 8px);
      min-width: 220px;
    }
  }
  
  /* Mobile */
  @media (max-width: 767px) {
    body.woocommerce-order-received .woocommerce-order {
      gap: 24px;
    }
  
    body.woocommerce-order-received .woocommerce-order-overview li,
    body.woocommerce-order-received .woocommerce-order-overview__email,
    body.woocommerce-order-received .woocommerce-order-overview__payment-method,
    body.woocommerce-order-received .woocommerce-order-overview__method {
      flex: 1 1 100%;
      min-width: 0;
    }
  
    body.woocommerce-order-received .woocommerce-order-details,
    body.woocommerce-order-received .woocommerce-customer-details {
      padding: 22px;
      border-radius: 22px;
    }
  
    body.woocommerce-order-received .woocommerce-order-details__title,
    body.woocommerce-order-received .woocommerce-column__title {
      font-size: 24px;
    }
  
    body.woocommerce-order-received table.shop_table thead,
    body.woocommerce-order-received table.woocommerce-table thead {
      display: none;
    }
  
    body.woocommerce-order-received table.shop_table,
    body.woocommerce-order-received table.shop_table tbody,
    body.woocommerce-order-received table.shop_table tr,
    body.woocommerce-order-received table.shop_table td,
    body.woocommerce-order-received table.shop_table th,
    body.woocommerce-order-received table.shop_table tfoot,
    body.woocommerce-order-received table.woocommerce-table,
    body.woocommerce-order-received table.woocommerce-table tbody,
    body.woocommerce-order-received table.woocommerce-table tr,
    body.woocommerce-order-received table.woocommerce-table td,
    body.woocommerce-order-received table.woocommerce-table th,
    body.woocommerce-order-received table.woocommerce-table tfoot {
      display: block;
      width: 100%;
    }
  
    body.woocommerce-order-received table.shop_table tr,
    body.woocommerce-order-received table.woocommerce-table tr {
      padding: 10px 0;
    }
  
    body.woocommerce-order-received table.shop_table td,
    body.woocommerce-order-received table.shop_table th,
    body.woocommerce-order-received table.woocommerce-table td,
    body.woocommerce-order-received table.woocommerce-table th {
      padding: 8px 0;
      border-top: 0;
    }
  }