/* =========================
   AL6ABE3 Global Variables
   ========================= */
:root{
  --bg:#070a0d;
  --bg2:#04060a;
  --text:#eaf2f6;
  --muted:rgba(234,242,246,.82);
  --cyan:#00e5ff;
  --cyan2:#00a8c0;
  --ring:rgba(0,229,255,.18);
  --panel: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.12);
  --shadow: 0 24px 70px rgba(0,0,0,.60);
}

/* Make ALL pages feel branded (avoid “WP white”) */
body{
  background: radial-gradient(1200px 800px at 20% 0%, rgba(0,229,255,.08), transparent 55%),
              radial-gradient(900px 620px at 80% 30%, rgba(0,168,192,.06), transparent 60%),
              var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
a{ color: var(--cyan); }

/* =========================
   AL6ABE3 Premium Header (Injected)
   ========================= */
.al6-header{
  position: relative;
  background: var(--bg2);
  border-bottom: 1px solid var(--stroke);
  overflow: hidden;
}
.al6-header__glow{
  content:"";
  position:absolute;
  top:-120%; left:-10%; right:-10%; bottom:-10%;
  background:
    radial-gradient(320px 200px at 10% 120%, rgba(0,229,255,.18), transparent 60%),
    radial-gradient(380px 220px at 86% 20%, rgba(0,229,255,.14), transparent 62%),
    radial-gradient(420px 240px at 50% -30%, rgba(0,229,255,.12), transparent 64%);
  filter: blur(48px);
  opacity:.55;
  pointer-events:none;
}
.al6-header__wrap{
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  min-height: 74px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.al6-brand{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  padding: 6px 8px;
  border-radius: 14px;
}
.al6-brand-logo{
  height: 30px;
  width: auto;
  display:block;
  filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(0,229,255,.35));
}

.al6-nav{ flex: 1 1 auto; min-width: 0; }
.al6-menu{
  display:flex;
  align-items:center;
  gap: 12px;
  margin:0;
  padding:0;
  list-style:none;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.al6-menu::-webkit-scrollbar{ height: 0; }

.al6-menu__link{
  position: relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;

  color: rgba(234,242,246,.92);
  font-weight: 800;
  text-decoration: none;

  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));

  box-shadow:
    0 14px 34px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.14),
    inset 0 -1px 0 rgba(0,0,0,.35);

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
}
.al6-menu__link::before{
  content:"";
  position:absolute;
  inset: 1px 1px auto 1px;
  height: 46%;
  border-radius: 13px;
  background: radial-gradient(90% 60% at 50% 0%, rgba(0,229,255,.14), transparent 70%);
  opacity: .65;
  pointer-events:none;
}
.al6-menu__link:hover,
.al6-menu__link:focus{
  color: var(--cyan);
  border-color: rgba(0,229,255,.35);
  transform: translateY(-2px);
  box-shadow:
    0 18px 46px rgba(0,0,0,.55),
    0 0 0 6px rgba(0,229,255,.10),
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -1px 0 rgba(0,0,0,.35);
}

/* =========================
   PREMIUM FOOTER (Your CSS – kept)
   ========================= */
.al6-footer{
  position: relative;
  margin-top: 70px;
  background: radial-gradient(1200px 650px at 20% 0%, rgba(0,229,255,.10), transparent 55%),
              radial-gradient(900px 520px at 80% 30%, rgba(0,168,192,.08), transparent 60%),
              var(--bg2);
  border-top: 1px solid var(--stroke);
  overflow: hidden;
  color: var(--text);
}
.al6-footer__glow{
  position:absolute;
  inset:-60% -20% auto -20%;
  height: 420px;
  background:
    radial-gradient(420px 240px at 20% 60%, rgba(0,229,255,.18), transparent 65%),
    radial-gradient(520px 260px at 80% 20%, rgba(0,229,255,.12), transparent 70%);
  filter: blur(46px);
  opacity: .6;
  pointer-events:none;
}
.al6-footer__wrap{
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  padding: 44px 0 18px;
  position: relative;
  z-index: 2;
}
.al6-footer__grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 900px){
  .al6-footer__grid{ grid-template-columns: 1fr; }
}
.al6-footer__brand,
.al6-footer__nav,
.al6-footer__legal{
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.al6-footer__brandlink{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.al6-footer__logo{
  height: 34px;
  width: auto;
  display:block;
  filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(0,229,255,.35));
}
.al6-footer__name{
  color: var(--text);
  font-weight: 900;
  letter-spacing: .06em;
}
.al6-footer__desc{
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}
.al6-footer__title{
  margin: 0 0 12px;
  color: var(--text);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.al6-footer__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.al6-footer__list a{
  position: relative;
  color: rgba(234,242,246,.86);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  font-weight: 800;
  transition: transform .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
  box-shadow:
    0 14px 34px rgba(0,0,0,.40),
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 -1px 0 rgba(0,0,0,.35);
}
.al6-footer__list a::before{
  content:"";
  position:absolute;
  inset: 1px 1px auto 1px;
  height: 46%;
  border-radius: 13px;
  background: radial-gradient(90% 60% at 50% 0%, rgba(0,229,255,.12), transparent 70%);
  opacity: .7;
  pointer-events:none;
}
.al6-footer__list a:hover{
  color: var(--cyan);
  border-color: rgba(0,229,255,.35);
  transform: translateY(-2px);
  box-shadow:
    0 18px 46px rgba(0,0,0,.55),
    0 0 0 6px rgba(0,229,255,.10),
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -1px 0 rgba(0,0,0,.35);
}
.al6-footer__small{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}
.al6-footer__small a{
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px dashed rgba(0,229,255,.35);
}
.al6-footer__badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.al6-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(234,242,246,.90);
  font-weight: 800;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}
.al6-footer__bottom{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(234,242,246,.70);
  font-size: 13px;
  position: relative;
}
.al6-footer__bottom::before{
  content:"";
  position:absolute;
  left: 0; right: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,.35), transparent);
  opacity: .7;
}
@media (max-width: 700px){
  .al6-footer__bottom{ flex-direction: column; align-items: flex-start; }
}
.al6-footer__copy strong{ color: var(--text); }

@media (max-width: 420px){
  .al6-footer__logo{ height: 30px; }
  .al6-footer__wrap{ width: calc(100% - 28px); }
}

/* Extra safety: hide any default theme footer if it sneaks in */
footer.wp-block-template-part,
footer.wp-site-footer{
  display: none !important;
}

/* =========================
   Woo pages: make them look branded
   (Base)
   ========================= */
.woocommerce,
.woocommerce-page{
  color: var(--text);
}
.woocommerce a{ color: var(--cyan); }

.woocommerce .woocommerce-notices-wrapper,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--text);
  border-radius: 14px;
  padding: 12px 14px;
}
.woocommerce .shop_table,
.woocommerce form.checkout,
.woocommerce .woocommerce-MyAccount-content,
.woocommerce .woocommerce-MyAccount-navigation{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 24px 70px rgba(0,0,0,.40);
}
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button{
  border-radius: 14px !important;
  border: 1px solid rgba(0,229,255,.35) !important;
  background: linear-gradient(135deg, rgba(0,229,255,.20), rgba(255,255,255,.04)) !important;
  color: var(--text) !important;
  font-weight: 900 !important;
  padding: 12px 16px !important;
  box-shadow: 0 18px 46px rgba(0,0,0,.45), 0 0 0 6px rgba(0,229,255,.08) !important;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease !important;
}
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover{
  transform: translateY(-1px);
}

/* ============================================================
   WooCommerce PRO LAYOUT FIX (Cart / Checkout / My Account)
   ============================================================ */

/* 1) Remove the BIG top “hero/cover/featured” that breaks theme on Woo pages */
body.woocommerce-cart .wp-block-post-featured-image,
body.woocommerce-checkout .wp-block-post-featured-image,
body.woocommerce-account .wp-block-post-featured-image,
body.woocommerce-cart .wp-block-cover:first-child,
body.woocommerce-checkout .wp-block-cover:first-child,
body.woocommerce-account .wp-block-cover:first-child{
  display:none !important;
}
body.woocommerce-cart .entry-content > .wp-block-cover:first-child,
body.woocommerce-checkout .entry-content > .wp-block-cover:first-child,
body.woocommerce-account .entry-content > .wp-block-cover:first-child{
  display:none !important;
}

/* 2) Premium centered container like Home */
body.woocommerce-cart main,
body.woocommerce-checkout main,
body.woocommerce-account main{
  width: min(1160px, calc(100% - 44px));
  margin: 34px auto 70px;
  padding: 0 !important;
}

/* Remove weird WP gaps */
body.woocommerce-cart .entry-content,
body.woocommerce-checkout .entry-content,
body.woocommerce-account .entry-content{
  margin:0 !important;
  padding:0 !important;
}

/* 3) Title */
body.woocommerce-cart h1,
body.woocommerce-checkout h1,
body.woocommerce-account h1{
  color: var(--text);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  text-shadow: 0 0 28px rgba(0,229,255,.10);
}

/* 4) Glass cards */
body.woocommerce-cart .woocommerce,
body.woocommerce-checkout .woocommerce,
body.woocommerce-account .woocommerce{
  background: transparent !important;
  color: var(--text);
}
body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-checkout form.checkout,
body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-content,
body.woocommerce-cart .cart-collaterals .cart_totals,
body.woocommerce-checkout #order_review,
body.woocommerce-checkout #customer_details{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px !important;
}

/* 5) My Account layout */
body.woocommerce-account .woocommerce{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  align-items: start;
}
body.woocommerce-account .woocommerce-MyAccount-navigation ul{
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
  display:grid;
  gap: 10px;
}
body.woocommerce-account .woocommerce-MyAccount-navigation a{
  position: relative;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(234,242,246,.90);
  font-weight: 800;

  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow:
    0 14px 34px rgba(0,0,0,.40),
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 -1px 0 rgba(0,0,0,.35);

  transition: transform .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}
body.woocommerce-account .woocommerce-MyAccount-navigation a:hover{
  color: var(--cyan);
  border-color: rgba(0,229,255,.35);
  transform: translateY(-2px);
  box-shadow:
    0 18px 46px rgba(0,0,0,.55),
    0 0 0 6px rgba(0,229,255,.10),
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -1px 0 rgba(0,0,0,.35);
}
body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a{
  color: var(--cyan);
  border-color: rgba(0,229,255,.45);
  box-shadow:
    0 18px 46px rgba(0,0,0,.55),
    0 0 0 6px rgba(0,229,255,.12);
}
body.woocommerce-account .woocommerce-MyAccount-content p,
body.woocommerce-account .woocommerce-MyAccount-content li{
  color: var(--muted);
  line-height: 1.75;
}

/* 6) Cart layout */
body.woocommerce-cart .woocommerce{
  display:grid;
  grid-template-columns: 1fr 380px;
  gap: 18px;
  align-items:start;
}
body.woocommerce-cart table.shop_table{
  width:100%;
  border-collapse: separate !important;
  border-spacing: 0 10px !important;
  background: transparent !important;
  border: none !important;
}
body.woocommerce-cart table.shop_table thead th{
  color: rgba(234,242,246,.85);
  font-weight: 900;
  border: none !important;
  padding: 10px 12px !important;
}
body.woocommerce-cart table.shop_table tbody tr{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}
body.woocommerce-cart table.shop_table tbody td{
  border: none !important;
  padding: 12px !important;
  color: rgba(234,242,246,.90);
}
body.woocommerce-cart .product-thumbnail img{
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
body.woocommerce-cart .cart-collaterals .cart_totals h2{
  margin: 0 0 12px;
  color: var(--text);
  font-weight: 900;
}

/* 7) Checkout layout */
body.woocommerce-checkout .woocommerce{
  display:grid;
  grid-template-columns: 1fr 420px;
  gap: 18px;
  align-items:start;
}
body.woocommerce-checkout #order_review table{
  width:100%;
  background: transparent !important;
  border: none !important;
}
body.woocommerce-checkout #order_review th,
body.woocommerce-checkout #order_review td{
  border-color: rgba(255,255,255,.10) !important;
  color: rgba(234,242,246,.90);
}
body.woocommerce-checkout #order_review .order-total th,
body.woocommerce-checkout #order_review .order-total td{
  color: var(--text);
  font-weight: 900;
}

/* 8) Premium inputs */
body.woocommerce-cart input[type="text"],
body.woocommerce-cart input[type="email"],
body.woocommerce-cart input[type="tel"],
body.woocommerce-cart input[type="password"],
body.woocommerce-cart input[type="number"],
body.woocommerce-cart select,
body.woocommerce-cart textarea,
body.woocommerce-checkout input[type="text"],
body.woocommerce-checkout input[type="email"],
body.woocommerce-checkout input[type="tel"],
body.woocommerce-checkout input[type="password"],
body.woocommerce-checkout input[type="number"],
body.woocommerce-checkout select,
body.woocommerce-checkout textarea,
body.woocommerce-account input[type="text"],
body.woocommerce-account input[type="email"],
body.woocommerce-account input[type="tel"],
body.woocommerce-account input[type="password"],
body.woocommerce-account input[type="number"],
body.woocommerce-account select,
body.woocommerce-account textarea{
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  color: var(--text) !important;
  border-radius: 14px !important;
  padding: 12px 12px !important;
  outline: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
body.woocommerce-cart input:focus,
body.woocommerce-checkout input:focus,
body.woocommerce-account input:focus,
body.woocommerce-cart select:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-account select:focus,
body.woocommerce-cart textarea:focus,
body.woocommerce-checkout textarea:focus,
body.woocommerce-account textarea:focus{
  border-color: rgba(0,229,255,.45) !important;
  box-shadow: 0 0 0 6px rgba(0,229,255,.10) !important;
}

/* 9) Buttons unify */
body.woocommerce-cart .button,
body.woocommerce-checkout .button,
body.woocommerce-account .button,
body.woocommerce-cart button,
body.woocommerce-checkout button,
body.woocommerce-account button{
  border-radius: 14px !important;
  border: 1px solid rgba(0,229,255,.35) !important;
  background: linear-gradient(135deg, rgba(0,229,255,.20), rgba(255,255,255,.04)) !important;
  color: var(--text) !important;
  font-weight: 900 !important;
  padding: 12px 16px !important;
  box-shadow: 0 18px 46px rgba(0,0,0,.45), 0 0 0 6px rgba(0,229,255,.08) !important;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease !important;
}
body.woocommerce-cart .button:hover,
body.woocommerce-checkout .button:hover,
body.woocommerce-account .button:hover{
  transform: translateY(-1px);
  border-color: rgba(0,229,255,.55) !important;
  box-shadow: 0 22px 56px rgba(0,0,0,.55), 0 0 0 6px rgba(0,229,255,.10) !important;
}

/* 10) Responsive */
@media (max-width: 980px){
  body.woocommerce-account .woocommerce,
  body.woocommerce-cart .woocommerce,
  body.woocommerce-checkout .woocommerce{
    grid-template-columns: 1fr;
  }
  body.woocommerce-cart main,
  body.woocommerce-checkout main,
  body.woocommerce-account main{
    width: min(1160px, calc(100% - 28px));
  }
}
/* ── Hide block theme large header on WooCommerce pages ── */
body.woocommerce-account .wp-site-blocks > header,
body.woocommerce-cart .wp-site-blocks > header,
body.woocommerce-checkout .wp-site-blocks > header,
body.woocommerce-account [class*="wp-block-template-part"],
body.woocommerce-cart [class*="wp-block-template-part"],
body.woocommerce-checkout [class*="wp-block-template-part"],
body.woocommerce-account .wp-block-group:has(.wp-block-site-title),
body.woocommerce-cart .wp-block-group:has(.wp-block-site-title),
body.woocommerce-checkout .wp-block-group:has(.wp-block-site-title) {
  display: none !important;
}

/* ── Fix header height on WooCommerce pages ── */
body.woocommerce-account .al6-header,
body.woocommerce-cart .al6-header,
body.woocommerce-checkout .al6-header {
  min-height: 0 !important;
  height: auto !important;
}
body.woocommerce-account .al6-header__wrap,
body.woocommerce-cart .al6-header__wrap,
body.woocommerce-checkout .al6-header__wrap {
  min-height: 64px !important;
}
body.woocommerce-account .al6-brand-logo,
body.woocommerce-cart .al6-brand-logo,
body.woocommerce-checkout .al6-brand-logo {
  height: 36px !important;
}
body.woocommerce-account .al6-header__glow,
body.woocommerce-cart .al6-header__glow,
body.woocommerce-checkout .al6-header__glow {
  opacity: 0.2 !important;
}

/* ── Fix constrained layout on WooCommerce account pages ── */
body.woocommerce-account .entry-content,
body.woocommerce-account .wp-block-post-content {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
body.woocommerce-account main {
  width: min(1160px, calc(100% - 44px)) !important;
  margin: 24px auto 70px !important;
}

/* ── Force grid layout for My Account ── */
body.woocommerce-account .woocommerce {
  display: grid !important;
  grid-template-columns: 260px 1fr !important;
  gap: 24px !important;
  align-items: start !important;
}
body.woocommerce-account .woocommerce-MyAccount-navigation {
  grid-column: 1 !important;
  grid-row: 1 !important;
}
body.woocommerce-account .woocommerce-MyAccount-content {
  grid-column: 2 !important;
  grid-row: 1 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ── Wider sidebar nav ── */
body.woocommerce-account .woocommerce {
  grid-template-columns: 320px 1fr !important;
}

/* AL6ABE3 – Footer compact mode */
.al6-footer{
  margin-top: 32px;        /* היה ~70px */
  padding: 18px 0 20px;    /* פחות גובה */
}

.al6-footer__inner{
  padding: 0 20px;         /* פחות padding צדדי */
}

.al6-footer__grid{
  gap: 20px;               /* רווח קטן יותר בין הכרטיסים */
}

.al6-footer-card{
  padding: 16px 20px;      /* היה הרבה יותר – מצמצם גובה */
}

/* להקטין קצת את גובה כרטיס הלוגו באמצע במסכים גדולים */
@media (min-width: 1024px){
  .al6-footer-hero{
    padding: 18px 20px;
  }
}

/* AL6ABE3 – Footer extra compact override */
.al6-footer{
  margin-top: 20px;
  padding: 10px 0 12px;
}

.al6-footer__inner{
  padding: 0 16px;
}

.al6-footer__grid{
  gap: 16px;
}

/* כל הכרטיסים בפוטר – פחות padding */
.al6-footer-card,
.al6-footer-hero{
  padding: 12px 16px;
}

/* להקטין את הלוגו כדי שהכרטיס לא יהיה ענק */
.al6-footer-hero img,
.al6-footer-hero svg{
  max-height: 150px;
  width: auto;
  height: auto;
}

/* שורת הזכויות למטה – רווח קטן בלבד */
.al6-footer__bottom{
  margin-top: 8px;
  padding-top: 6px;
}


/* =========================
   AL6ABE3 Footer – compact on Woo pages
   ========================= */

/* עמודי WooCommerce (My Account / Cart / Checkout וכו') */
body.woocommerce-account .al6-footer,
body.woocommerce-cart .al6-footer,
body.woocommerce-checkout .al6-footer {
  margin-top: 30px;              /* פחות רווח מעל ה-footer */
}

body.woocommerce-account .al6-footer__inner,
body.woocommerce-cart .al6-footer__inner,
body.woocommerce-checkout .al6-footer__inner {
  padding: 24px 32px 18px;       /* מקטין padding למעלה/למטה */
}

body.woocommerce-account .al6-footer__grid,
body.woocommerce-cart .al6-footer__grid,
body.woocommerce-checkout .al6-footer__grid {
  gap: 18px;                     /* רווחים קטנים יותר בין הקופסאות */
}

body.woocommerce-account .al6-footer__card,
body.woocommerce-cart .al6-footer__card,
body.woocommerce-checkout .al6-footer__card {
  padding: 18px 22px;
}

/* =========================
   AL6ABE3 – Compact footer on Woo pages
   ========================= */
/* WooCommerce footer – show brand card but smaller */
/* WooCommerce footer – make brand card compact */
body.woocommerce-account .al6-footer__brand,
body.woocommerce-cart .al6-footer__brand,
body.woocommerce-checkout .al6-footer__brand {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
}

/* הקטנת הלוגו עצמו בתוך הכרטיס */
body.woocommerce-account .al6-footer__brand img,
body.woocommerce-cart .al6-footer__brand img,
body.woocommerce-checkout .al6-footer__brand img {
  max-width: 130px;   /* אם עדיין גבוה אפשר לרדת ל-110px */
  height: auto;
}

/* טקסט קצר יותר – שלא ידחוף לגובה */
body.woocommerce-account .al6-footer__brand p,
body.woocommerce-cart .al6-footer__brand p,
body.woocommerce-checkout .al6-footer__brand p {
  font-size: 13px;
  line-height: 1.4;
}

/* להקטין קצת את הלוגו בפוטר בדפי WooCommerce */
body.woocommerce-account .al6-footer__logo img,
body.woocommerce-cart .al6-footer__logo img,
body.woocommerce-checkout .al6-footer__logo img {
  max-width: 60px;
  height: auto;
}

/* 2) להקטין את ה-padding של ה-footer בעמודי WooCommerce */
body.woocommerce-account .al6-footer__inner,
body.woocommerce-cart .al6-footer__inner,
body.woocommerce-checkout .al6-footer__inner {
  padding: 18px 32px 14px;
}

/* 3) טיפה פחות רווח מעל ה-footer בעמודי Woo */
body.woocommerce-account .al6-footer,
body.woocommerce-cart .al6-footer,
body.woocommerce-checkout .al6-footer {
  margin-top: 28px;
}

/* 4) כשאין לוגו – שהגריד יתיישב יפה בשתי עמודות */
body.woocommerce-account .al6-footer__grid,
body.woocommerce-cart .al6-footer__grid,
body.woocommerce-checkout .al6-footer__grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: flex-start;
}
/* === AL6ABE3 – unify footer layout on all pages === */

/* נבטל הגבלות רוחב ישנות על כרטיסי ה-footer בעמודי WooCommerce */
body.woocommerce-account  .al6-footer__card,
body.woocommerce-cart     .al6-footer__card,
body.woocommerce-checkout .al6-footer__card{
  max-width: none !important;
}

/* על מסכים גדולים – שלושה בלוקים בשורה אחת (כמו ב-Home) */
@media (min-width: 1024px){
  .al6-footer__grid{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 28px;
  }

  .al6-footer__card{
    flex: 0 0 calc(33.333% - 20px);
  }
}

/* על מסכים בינוניים / קטנים – שיישבר יפה לשורות */
@media (max-width: 1023.98px){
  .al6-footer__grid{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .al6-footer__card{
    flex: 1 1 100%;
  }
}

/* ── Badge no wrap ── */
.hlx-badge { white-space: nowrap !important; }

/* ══════════════════════════════════════
   HexLitho My Account — Orders Portal
══════════════════════════════════════ */
.hlx-wrap {
  width: 100%;
  padding: 0 4px;
}
.hlx-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cyan);
  margin: 0 0 16px;
}
.hlx-back {
  display: inline-block;
  color: var(--cyan);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 16px;
  opacity: 0.8;
}
.hlx-back:hover { opacity: 1; }

/* Orders list rows */
.hlx-orders-list { display: flex; flex-direction: column; gap: 10px; }
.hlx-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(0,0,0,.15));
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  text-decoration: none;
  color: inherit;
  transition: all .2s;
}
.hlx-row:hover {
  background: linear-gradient(160deg, rgba(0,229,255,.08), rgba(0,0,0,.2));
  border-color: rgba(0,229,255,.3);
  box-shadow: 0 12px 40px rgba(0,229,255,.12);
  transform: translateY(-1px);
}
.hlx-row-left { display: flex; flex-direction: column; gap: 4px; }
.hlx-row-num { font-weight: 600; font-size: 0.95rem; color: #fff; }
.hlx-row-date { font-size: 0.78rem; color: rgba(255,255,255,.45); }
.hlx-arrow { color: var(--cyan); font-size: 1.2rem; opacity: 0.7; }

/* Badge */
.hlx-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
}

/* Detail card */
.hlx-detail-card {
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 24px;
}
.hlx-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hlx-detail-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* Timeline */
.hlx-timeline {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 20px 0;
  overflow-x: auto;
  padding-bottom: 8px;
}
.hlx-tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 72px;
}
.hlx-tl-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.15);
  transition: all .3s;
}
.hlx-tl-name {
  font-size: 0.65rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  line-height: 1.2;
}
.hlx-tl-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,.1);
  min-width: 16px;
}
.hlx-tl-line-done { background: var(--cyan); }
.hlx-tl-done .hlx-tl-icon {
  background: rgba(0,229,255,.15);
  border-color: var(--cyan);
  color: var(--cyan);
}
.hlx-tl-done .hlx-tl-name { color: var(--cyan); }
.hlx-tl-active .hlx-tl-icon {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0,229,255,.5);
}
.hlx-tl-active .hlx-tl-name { color: #fff; font-weight: 600; }

/* Litho preview */
.hlx-litho-preview {
  position: relative;
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0f18;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,229,255,.15);
  box-shadow: 0 0 40px rgba(0,229,255,.08), inset 0 0 60px rgba(0,0,0,.8);
}
.hlx-litho-backlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,240,200,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hlx-litho-img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(255,220,150,.3));
}
.hlx-litho-label {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 0.7rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .08em;
}

/* Notes */
.hlx-note {
  background: rgba(255,220,100,.06);
  border: 1px solid rgba(255,220,100,.2);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 12px 0;
}
.hlx-note-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,220,100,.8);
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.hlx-note-txt { font-size: 0.9rem; color: rgba(255,255,255,.85); }

/* Media */
.hlx-media-section { margin: 16px 0; }
.hlx-media-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.hlx-media-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.hlx-media-thumb {
  width: 120px; height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .2s;
}
.hlx-media-thumb:hover { transform: scale(1.05); }

/* Empty state */
.hlx-empty { text-align: center; padding: 60px 20px; }
.hlx-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--cyan);
  color: #000;
  border-radius: 24px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 16px;
}

/* Sticky sidebar */
body.woocommerce-account .woocommerce-MyAccount-navigation {
  position: sticky;
  top: 24px;
}

/* ── GLB Viewer tabs ── */
.hlx-viewer-wrap { margin: 20px 0; }
.hlx-viewer-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.hlx-vtab {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.6);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all .2s;
}
.hlx-vtab:hover { border-color: var(--cyan); color: var(--cyan); }
.hlx-vtab-active {
  background: rgba(0,229,255,.15);
  border-color: var(--cyan);
  color: var(--cyan);
  font-weight: 600;
}
.hlx-vpanel { display: block; }
.hlx-vpanel-hidden { display: none !important; }
.hlx-glb-container {
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: 14px;
  overflow: hidden;
  background: #080c14;
  border: 1px solid rgba(255,220,120,.2);
  box-shadow: 0 0 60px rgba(255,200,80,.1);
}
.hlx-glb-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.4);
  font-size: 0.85rem;
}
.hlx-spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(0,229,255,.2);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: hlxSpin 0.8s linear infinite;
}
@keyframes hlxSpin { to { transform: rotate(360deg); } }
.hlx-glb-hint {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 0.68rem;
  color: rgba(255,255,255,.2);
  pointer-events: none;
}
