/* Golander floating cart + checkout polish */
.gl-cart-root{
  position:fixed;z-index:9985;bottom:1.25rem;right:1.25rem;left:auto;
  font-family:Rubik,sans-serif;
}
.gl-cart-root.is-modal-open{z-index:10040}
.gl-cart-root[hidden]{display:none!important}

.gl-cart-fab{
  position:relative;display:inline-flex;align-items:center;justify-content:center;
  width:3.25rem;height:3.25rem;min-width:44px;min-height:44px;
  border:0;border-radius:999px;cursor:pointer;
  background:#1D4ED8;color:#fff;
  box-shadow:0 6px 22px rgba(29,78,216,.35);
  transition:transform .35s cubic-bezier(.22,1,.36,1), background-color .35s cubic-bezier(.22,1,.36,1);
}
.gl-cart-fab:hover{background:#1a44bf;transform:translateY(-1px)}
.gl-cart-fab__icon{display:block}
.gl-cart-fab__badge{
  position:absolute;top:-.15rem;left:-.15rem;right:auto;
  min-width:1.35rem;height:1.35rem;padding:0 .35rem;
  border-radius:999px;background:#C4A35A;color:#141414;
  font-size:.7rem;font-weight:700;line-height:1.35rem;text-align:center;
  box-shadow:0 1px 4px rgba(20,20,20,.2);
}
.gl-cart-fab__badge[hidden]{display:none!important}

/* Modal */
.gl-cart-modal{
  position:fixed;inset:0;z-index:10050;display:flex;align-items:flex-end;justify-content:center;
  font-family:Rubik,sans-serif;direction:rtl;
  pointer-events:none;
}
.gl-cart-modal[hidden]{display:none!important;pointer-events:none!important}
.gl-cart-modal[data-open="1"]{display:flex!important;pointer-events:none}
.gl-cart-modal__backdrop{
  position:absolute;inset:0;background:rgba(12,18,36,.55);
  backdrop-filter:blur(4px);cursor:pointer;pointer-events:auto;
  opacity:0;
  transition:opacity .4s cubic-bezier(.22,1,.36,1);
}
.gl-cart-modal[data-open="1"] .gl-cart-modal__backdrop{opacity:1}
.gl-cart-modal__panel{
  position:relative;z-index:2;width:min(440px,calc(100vw - 1.25rem));
  margin:0 .625rem 1rem;background:#f6f2eb;border:1px solid #DDD8CE;
  border-radius:1.35rem;padding:0 0 1.15rem;
  box-shadow:0 24px 60px rgba(20,20,20,.28);
  max-height:min(86vh,620px);display:flex;flex-direction:column;
  overflow:hidden;pointer-events:auto;
  opacity:0;transform:translateY(12px);
  transition:opacity .45s cubic-bezier(.22,1,.36,1),transform .45s cubic-bezier(.22,1,.36,1);
  will-change:opacity,transform;
}
.gl-cart-modal[data-open="1"] .gl-cart-modal__panel{opacity:1;transform:none}
.gl-cart-modal__accent{
  height:4px;width:100%;
  background:linear-gradient(90deg,#1D4ED8 0%,#3B82F6 45%,#C4A35A 100%);
}
.gl-cart-modal__head{
  display:flex;align-items:flex-start;justify-content:space-between;gap:.75rem;
  padding:1.1rem 1.25rem .35rem;
}
.gl-cart-modal__ready{
  margin:0 0 .15rem;font-size:.75rem;font-weight:700;letter-spacing:.04em;
  text-transform:uppercase;color:#1D4ED8;
}
.gl-cart-modal__head h2{margin:0;font-size:1.35rem;font-weight:800;color:#141414;line-height:1.25}
.gl-cart-modal__close{
  position:relative;z-index:5;
  background:rgba(20,20,20,.05);border:0;color:#5C5A55;font-size:1.45rem;line-height:1;
  cursor:pointer;min-width:44px;min-height:44px;border-radius:.65rem;flex-shrink:0;
  pointer-events:auto;
}
.gl-cart-modal__close:hover{background:rgba(20,20,20,.1);color:#141414}
.gl-cart-modal__body{flex:1;overflow:auto;padding:.5rem 1.25rem 0}
.gl-cart-empty{padding:.75rem 0 1rem}
.gl-cart-modal__empty{margin:0;color:#141414;font-size:1.05rem;font-weight:600}
.gl-cart-modal__empty-hint{margin:.35rem 0 0;color:#5C5A55;font-size:.9rem}

.gl-cart-item{
  display:flex;flex-direction:column;gap:.65rem;
  padding:1rem;margin-bottom:.75rem;
  background:#fff;border:1px solid #DDD8CE;border-radius:1rem;
  box-shadow:0 2px 10px rgba(20,20,20,.04);
}
.gl-cart-item__top{display:flex;align-items:center;gap:.85rem}
.gl-cart-item__logo{
  width:52px;height:52px;flex-shrink:0;object-fit:contain;
  border-radius:.85rem;background:#EEF3FF;padding:.45rem;
  border:1px solid #D6E2FF;
}
.gl-cart-item__logo-fallback{
  width:52px;height:52px;flex-shrink:0;display:inline-flex;align-items:center;justify-content:center;
  border-radius:.85rem;background:#1D4ED8;color:#fff;font-weight:800;font-size:1.25rem;
}
.gl-cart-item__meta{min-width:0;flex:1}
.gl-cart-item__eyebrow{
  margin:0;font-size:.72rem;font-weight:700;letter-spacing:.03em;
  text-transform:uppercase;color:#1D4ED8;
}
.gl-cart-item__name{
  margin:.15rem 0 0;font-weight:800;font-size:1.15rem;color:#141414;line-height:1.25;
}
.gl-cart-item__price{margin:.2rem 0 0;color:#5C5A55;font-size:.95rem;font-weight:600}
.gl-cart-item__price .amount,.gl-cart-item__price bdi{font-weight:700;color:#141414}
.gl-cart-item__hook{
  margin:0;font-size:.98rem;line-height:1.45;color:#141414;font-weight:500;
}
.gl-cart-item__next{
  margin:0;padding:.65rem .75rem;border-radius:.75rem;
  background:#EEF3FF;color:#1e3a8a;font-size:.88rem;line-height:1.4;font-weight:500;
}

.gl-cart-modal__foot{padding:.85rem 1.25rem 0}
.gl-cart-checkout{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.2rem;
  width:100%;min-height:58px;padding:.9rem 1.25rem;
  border-radius:.75rem;background:linear-gradient(180deg,#2563EB 0%,#1D4ED8 100%);
  color:#fff!important;text-decoration:none!important;
  box-shadow:0 8px 22px rgba(29,78,216,.35);
  transition:transform .35s cubic-bezier(.22,1,.36,1), filter .35s cubic-bezier(.22,1,.36,1), box-shadow .35s cubic-bezier(.22,1,.36,1);
}
.gl-cart-checkout:hover{
  filter:brightness(1.05);transform:translateY(-1px);
  box-shadow:0 10px 26px rgba(29,78,216,.42);
}
.gl-cart-checkout__row{display:inline-flex;align-items:center;justify-content:center;gap:.55rem}
.gl-cart-checkout__logo{width:48px;height:28px;object-fit:contain;display:block;flex-shrink:0;filter:none}
.gl-cart-checkout__main{font-weight:800;font-size:1.12rem;letter-spacing:.01em}
.gl-cart-checkout__sub{font-weight:500;font-size:.72rem;opacity:.88;text-align:center;line-height:1.3}
.gl-cart-checkout[aria-disabled="true"]{opacity:.4;pointer-events:none;box-shadow:none;transform:none}

html.gl-cart-open,html.gl-cart-open body{overflow:hidden}

button.gl-buy.is-busy,a.gl-buy.is-busy{opacity:.65;pointer-events:none}

/* Checkout page polish (classic shortcode) */
body.woocommerce-checkout,
body.woocommerce-page.woocommerce-checkout{
  background:#f6f2eb;
  font-family:Rubik,sans-serif;
  color:#141414;
}
.woocommerce-checkout .woocommerce,
form.woocommerce-checkout,
.woocommerce form.checkout{
  max-width:920px;margin:0 auto;padding:1.5rem 1rem 3rem;
}
.woocommerce-checkout h1,.woocommerce-checkout h2,.woocommerce-checkout h3{
  font-family:Rubik,sans-serif;font-weight:700;color:#141414;
}
.woocommerce-checkout .col2-set,.woocommerce-checkout #customer_details{
  margin-bottom:1.5rem;
}
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single{
  border:1px solid #DDD8CE!important;border-radius:.65rem!important;
  background:#fff!important;min-height:46px;padding:.55rem .85rem!important;
  font-family:Rubik,sans-serif!important;font-size:1rem;
}
.woocommerce-checkout #order_review,
.woocommerce-checkout #order_review_heading{
  background:#fff;border:1px solid #DDD8CE;border-radius:1rem;
  padding:1.15rem 1.25rem;margin-top:1rem;
}
.woocommerce-checkout #order_review_heading{
  margin-bottom:0;border-bottom-left-radius:0;border-bottom-right-radius:0;
  border-bottom:0;
}
.woocommerce-checkout #order_review{
  border-top-left-radius:0;border-top-right-radius:0;margin-top:0;
}
.woocommerce-checkout #place_order,
.woocommerce-checkout button.button.alt,
.woocommerce-checkout .button.alt{
  background:#1D4ED8!important;color:#fff!important;border:0!important;
  border-radius:.5rem!important;min-height:52px;font-weight:700!important;
  font-size:1.05rem!important;font-family:Rubik,sans-serif!important;
  width:100%;padding:.9rem 1.25rem!important;
}
.woocommerce-checkout #place_order:hover,
.woocommerce-checkout button.button.alt:hover{
  background:#1a44bf!important;
}
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-error{
  border-radius:.75rem;border-right-width:4px;font-family:Rubik,sans-serif;
}
.woocommerce-checkout table.shop_table{
  border:1px solid #DDD8CE;border-radius:.75rem;overflow:hidden;
}
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td{
  border-color:#DDD8CE;padding:.75rem .9rem;
}


/* Brand motion: reduced motion */
@media (prefers-reduced-motion: reduce){
  .gl-cart-modal__backdrop,
  .gl-cart-modal__panel,
  .gl-cart-fab,
  .gl-cart-checkout{
    transition:none!important;transform:none!important;
  }
  .gl-cart-modal[data-open="1"] .gl-cart-modal__backdrop,
  .gl-cart-modal[data-open="1"] .gl-cart-modal__panel{opacity:1}
}
html.gl-a11y-reduce-motion .gl-cart-modal__backdrop,
html.gl-a11y-reduce-motion .gl-cart-modal__panel{
  transition:none!important;transform:none!important;
}
html.gl-a11y-reduce-motion .gl-cart-modal[data-open="1"] .gl-cart-modal__backdrop,
html.gl-a11y-reduce-motion .gl-cart-modal[data-open="1"] .gl-cart-modal__panel{opacity:1}

@media (min-width:720px){
  .gl-cart-modal{align-items:center}
  .gl-cart-modal__panel{margin-bottom:0;transform:translateY(10px)}
  .gl-cart-modal[data-open="1"] .gl-cart-modal__panel{transform:none}
}

