/* Versora global header */
:root{
  --vsr-header-height:76px;
  --vsr-admin-offset:0px;
  --vsr-header-max:1360px;
  --vsr-accent:#ffb116;
  --vsr-header-bg:#090c12;
  --vsr-header-bg-scrolled:rgba(7,9,14,.985);
  --vsr-header-line:rgba(255,255,255,.09);
}
body.admin-bar{--vsr-admin-offset:32px;padding-top:0!important}
@media(max-width:782px){body.admin-bar{--vsr-admin-offset:46px;padding-top:0!important}}
/* WordPress injects html{margin-top} for the admin bar. We own the offset on body instead so the site header starts exactly under the toolbar without a second empty strip. */
html{margin-top:0!important}
body.admin-bar #wpadminbar{position:fixed!important;top:0!important}
body.admin-bar.versora-header-ready .vsr-header{margin-top:0!important}
body.admin-bar .vsr-site-shell,body.admin-bar #page{margin-top:0!important}

html{scroll-padding-top:calc(var(--vsr-header-total-height,var(--vsr-header-height)) + var(--vsr-admin-offset) + 18px)}
body.versora-header-ready{overflow-x:hidden}
body.versora-header-ready #wpadminbar{z-index:1000000}
body.versora-header-ready.vsr-navigation-open,
body.versora-header-ready.vsr-search-open{overflow:hidden!important}

body.versora-header-ready .vsr-header{
  position:relative;
  z-index:99990;
  top:auto;
  inset-inline:0;
  width:100%;
  margin:0;
  padding:0;
  direction:rtl;
  color:#fff;
  background:var(--vsr-header-bg);
  border-bottom:1px solid var(--vsr-header-line);
  box-shadow:none;
  isolation:isolate;
  transition:background-color .2s ease,border-color .2s ease,box-shadow .2s ease;
}
body.versora-header-ready .vsr-header.is-scrolled{
  background:var(--vsr-header-bg-scrolled);
  border-bottom-color:rgba(255,177,22,.22);
  box-shadow:0 14px 36px rgba(0,0,0,.22);
}
.vsr-header *{box-sizing:border-box}
.vsr-header a{text-decoration:none}
.vsr-header-container{width:min(var(--vsr-header-max),calc(100% - 40px));margin-inline:auto}

.vsr-announcement{
  min-height:34px;
  background:linear-gradient(90deg,rgba(255,177,22,.14),rgba(255,177,22,.04),rgba(255,177,22,.14));
  border-bottom:1px solid rgba(255,255,255,.07);
}
.vsr-announcement .vsr-header-container{min-height:34px;display:flex;align-items:center;justify-content:center;text-align:center}
.vsr-announcement a,.vsr-announcement span{display:inline-flex;align-items:center;gap:8px;color:rgba(255,255,255,.84);font-size:.72rem;font-weight:700}
.vsr-announcement svg{width:15px;height:15px;color:var(--vsr-accent)}

.vsr-header__bar,.vsr-header__layout{min-height:var(--vsr-header-height)}
.vsr-header__layout{
  display:grid;
  grid-template-columns:minmax(250px,auto) minmax(360px,1fr) minmax(250px,auto);
  grid-template-areas:"actions nav brand";
  align-items:center;
  gap:clamp(14px,2vw,30px);
  direction:ltr;
}
.vsr-header__brand{
  grid-area:brand;
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  direction:rtl;
  color:#fff!important;
}
.vsr-header__logo{
  display:grid;
  place-items:center;
  flex:0 0 52px;
  width:52px;
  height:52px;
  overflow:visible;
}
.vsr-header-logo,.vsr-header__logo-image{
  display:block!important;
  width:52px!important;
  height:52px!important;
  max-width:none!important;
  object-fit:contain!important;
  object-position:center!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
  opacity:1!important;
  visibility:visible!important;
  filter:drop-shadow(0 0 10px rgba(255,177,22,.30));
}
.vsr-header__brand-copy{display:grid;min-width:0;text-align:right}
.vsr-header__brand-copy strong{color:#fff;font-size:1.04rem;font-weight:900;line-height:1.25;white-space:nowrap}
.vsr-header__brand-copy small{margin-top:3px;color:rgba(255,255,255,.48);font-size:.60rem;font-weight:650;line-height:1.4;white-space:nowrap}

.vsr-header__nav{grid-area:nav;justify-self:center;min-width:0;direction:rtl}
.vsr-menu{display:flex;align-items:center;justify-content:center;gap:2px;margin:0!important;padding:0!important;list-style:none!important;white-space:nowrap}
.vsr-menu>li{position:relative;margin:0!important;padding:0!important}
.vsr-menu>li>a{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 clamp(8px,.85vw,13px)!important;
  border-radius:10px;
  color:rgba(255,255,255,.72)!important;
  font-size:clamp(.69rem,.72vw,.78rem)!important;
  font-weight:750!important;
  line-height:1.3!important;
}
.vsr-menu>li>a::after{
  content:"";
  position:absolute;
  right:12px;
  left:12px;
  bottom:6px;
  height:2px;
  border-radius:99px;
  background:var(--vsr-accent);
  transform:scaleX(0);
  transition:transform .18s ease;
}
.vsr-menu>li:hover>a,.vsr-menu>li.current-menu-item>a,.vsr-menu>li.current-menu-ancestor>a{color:#fff!important;background:rgba(255,255,255,.045)}
.vsr-menu>li:hover>a::after,.vsr-menu>li.current-menu-item>a::after,.vsr-menu>li.current-menu-ancestor>a::after{transform:scaleX(1)}
.vsr-menu .sub-menu{
  position:absolute;
  z-index:20;
  top:calc(100% + 8px);
  right:0;
  min-width:220px;
  margin:0!important;
  padding:8px!important;
  list-style:none!important;
  border:1px solid rgba(255,255,255,.11);
  border-radius:14px;
  background:#11151d;
  box-shadow:0 24px 60px rgba(0,0,0,.34);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:opacity .18s ease,transform .18s ease,visibility .18s ease;
}
.vsr-menu li:hover>.sub-menu,.vsr-menu li:focus-within>.sub-menu{opacity:1;visibility:visible;transform:none}
.vsr-menu .sub-menu a{display:block;padding:10px 12px!important;border-radius:9px;color:rgba(255,255,255,.68)!important;font-size:.76rem!important;font-weight:700!important;text-align:right}
.vsr-menu .sub-menu a:hover,.vsr-menu .sub-menu a:focus-visible{background:rgba(255,177,22,.1);color:#fff!important;outline:none}

.vsr-header__actions{grid-area:actions;justify-self:start;display:flex;align-items:center;gap:8px;direction:rtl}
.vsr-header-action,.vsr-menu-toggle{
  position:relative;
  display:grid;
  place-items:center;
  flex:0 0 42px;
  width:42px;
  height:42px;
  min-width:42px;
  min-height:42px;
  margin:0;
  padding:0;
  border:1px solid rgba(255,255,255,.18);
  border-radius:11px;
  background:rgba(255,255,255,.045);
  color:#fff!important;
  cursor:pointer;
}
.vsr-header-action svg,.vsr-menu-toggle svg{width:19px;height:19px;color:#fff!important}
.vsr-header-action:hover,.vsr-header-action:focus-visible,.vsr-menu-toggle:hover,.vsr-menu-toggle:focus-visible{
  border-color:rgba(255,177,22,.58);
  background:rgba(255,177,22,.11);
  color:#fff!important;
  outline:none;
  transform:translateY(-1px);
}
.vsr-header-cart{display:grid;place-items:center;width:42px;min-width:42px;padding:0}
.vsr-header-cart__label{display:none!important}
.vsr-header-cart__count{
  position:absolute;
  top:-6px;
  left:-6px;
  display:grid;
  place-items:center;
  min-width:19px;
  height:19px;
  padding:0 5px;
  border-radius:99px;
  background:var(--vsr-accent);
  color:#111;
  font-size:.59rem;
  font-weight:950;
}
.vsr-header__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:118px;
  height:42px;
  padding:0 16px!important;
  border-radius:11px;
  background:var(--vsr-accent);
  color:#111!important;
  font-size:.72rem;
  font-weight:900;
  white-space:nowrap;
}
.vsr-header__cta svg{width:17px;height:17px;transform:scaleX(-1)}
.vsr-header__cta:hover,.vsr-header__cta:focus-visible{background:#ffc84f;color:#111!important;outline:none;transform:translateY(-1px)}
.vsr-menu-toggle{display:none}
.vsr-menu-toggle>span{display:grid;gap:4px}
.vsr-menu-toggle i{display:block;width:18px;height:2px;border-radius:99px;background:currentColor}

.vsr-mobile-nav{
  position:fixed;
  z-index:99996;
  inset:var(--vsr-admin-offset) 0 0;
  visibility:hidden;
  pointer-events:none;
}
.vsr-mobile-nav.is-open{visibility:visible;pointer-events:auto}
.vsr-mobile-nav__backdrop,.vsr-search-overlay__backdrop{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  padding:0;
  border:0;
  background:rgba(3,5,8,.72);
  opacity:0;
  cursor:default;
  backdrop-filter:blur(4px);
  transition:opacity .18s ease;
}
.vsr-mobile-nav.is-open .vsr-mobile-nav__backdrop{opacity:1}
.vsr-mobile-nav__panel{
  position:absolute;
  top:0;
  right:0;
  display:flex;
  flex-direction:column;
  width:min(390px,92vw);
  height:100%;
  overflow:auto;
  background:#0d1118;
  color:#fff;
  border-left:1px solid rgba(255,255,255,.1);
  box-shadow:-24px 0 70px rgba(0,0,0,.44);
  transform:translateX(102%);
  transition:transform .22s ease;
}
.vsr-mobile-nav.is-open .vsr-mobile-nav__panel{transform:none}
.vsr-mobile-nav__head{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:16px 18px;border-bottom:1px solid rgba(255,255,255,.08)}
.vsr-mobile-nav__brand{display:flex;align-items:center;gap:10px;color:#fff!important}
.vsr-mobile-nav__logo,.vsr-mobile-nav__logo-image{display:block;width:46px!important;height:46px!important;object-fit:contain!important}
.vsr-mobile-nav__brand>span:last-child{display:grid}
.vsr-mobile-nav__brand strong{font-size:.94rem}
.vsr-mobile-nav__brand small{margin-top:2px;color:rgba(255,255,255,.44);font-size:.62rem}
.vsr-mobile-nav__close{
  display:grid;
  place-items:center;
  flex:0 0 42px;
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:11px;
  background:rgba(255,255,255,.04);
  color:#fff;
  cursor:pointer;
}
.vsr-mobile-nav__close svg{width:20px;height:20px}
.vsr-mobile-nav__menu{padding:14px 18px}
.vsr-mobile-menu{display:grid;gap:4px;margin:0!important;padding:0!important;list-style:none!important}
.vsr-mobile-menu li{margin:0!important}
.vsr-mobile-menu>li>a{display:flex!important;align-items:center;min-height:45px;padding:0 12px!important;border-radius:10px;color:rgba(255,255,255,.78)!important;font-size:.82rem!important;font-weight:760!important}
.vsr-mobile-menu>li>a:hover,.vsr-mobile-menu>li.current-menu-item>a{background:rgba(255,177,22,.1)!important;color:#fff!important}
.vsr-mobile-menu .sub-menu{display:grid;gap:2px;margin:3px 12px 8px 0!important;padding:4px 10px 4px 0!important;border-right:1px solid rgba(255,255,255,.1);list-style:none!important}
.vsr-mobile-menu .sub-menu a{display:block!important;padding:9px 10px!important;border-radius:8px!important;color:rgba(255,255,255,.58)!important;font-size:.75rem!important}
.vsr-mobile-nav__actions{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;margin-top:auto;padding:18px;border-top:1px solid rgba(255,255,255,.08)}
.vsr-mobile-action{
  display:flex!important;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  min-height:68px;
  padding:8px!important;
  border:1px solid rgba(255,255,255,.11);
  border-radius:12px;
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.78)!important;
  font-size:.66rem;
  font-weight:760;
}
.vsr-mobile-action svg{width:20px;height:20px}
.vsr-mobile-nav__cta{
  display:flex!important;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:50px;
  margin:0 18px 18px;
  padding:0 16px!important;
  border-radius:12px;
  background:var(--vsr-accent);
  color:#111!important;
  font-size:.78rem;
  font-weight:900;
}
.vsr-mobile-nav__cta svg{width:18px;height:18px;transform:scaleX(-1)}

#tnrSearchOverlay[hidden]{display:none!important}
body:not(.vsr-search-open) #tnrSearchOverlay{display:none!important}
body.vsr-search-open #tnrSearchOverlay{display:grid!important}

.vsr-search-overlay{
  position:fixed;
  z-index:99997;
  inset:var(--vsr-admin-offset) 0 0;
  display:grid;
  place-items:center;
  padding:24px;
  direction:rtl;
  visibility:hidden;
  pointer-events:none;
}
.vsr-search-overlay[aria-hidden="false"]{visibility:visible;pointer-events:auto}
.vsr-search-overlay[aria-hidden="false"] .vsr-search-overlay__backdrop{opacity:1}
.vsr-search-dialog{
  position:relative;
  z-index:1;
  width:min(720px,100%);
  max-height:calc(100dvh - var(--vsr-admin-offset) - 48px);
  overflow:auto;
  padding:clamp(22px,4vw,38px);
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  background:linear-gradient(145deg,#151922,#090b10);
  color:#fff;
  box-shadow:0 32px 100px rgba(0,0,0,.58);
  opacity:0;
  transform:translateY(16px) scale(.985);
  transition:opacity .18s ease,transform .18s ease;
}
.vsr-search-overlay[aria-hidden="false"] .vsr-search-dialog{opacity:1;transform:none}
.vsr-search-dialog__head{display:flex;align-items:flex-start;justify-content:space-between;gap:20px}
.vsr-search-dialog__head>div{display:grid;gap:6px}
.vsr-search-dialog__head span{color:var(--vsr-accent);font-size:.68rem;font-weight:850}
.vsr-search-dialog__head h2{margin:0;color:#fff;font-size:clamp(1.5rem,3vw,2.2rem);font-weight:950;line-height:1.35}
.vsr-search-dialog>p{margin:14px 0 22px;color:rgba(255,255,255,.58);font-size:.82rem;line-height:1.9}
.vsr-search-close{display:grid;place-items:center;flex:0 0 42px;width:42px;height:42px;padding:0;border:1px solid rgba(255,255,255,.14);border-radius:12px;background:rgba(255,255,255,.05);color:#fff;cursor:pointer}
.vsr-search-close svg{width:20px;height:20px}
.vsr-search-close:hover,.vsr-search-close:focus-visible{background:var(--vsr-accent);border-color:var(--vsr-accent);color:#111;outline:none}
.vsr-search-form-wrap form{display:block;width:100%;margin:0!important}
.vsr-search-form-wrap .versora-search-form__field{display:flex!important;align-items:center!important;gap:10px!important;width:100%!important;margin:0!important}
.vsr-search-form-wrap .versora-search-form__icon{display:grid;place-items:center;flex:0 0 20px;width:20px;height:20px;color:rgba(255,255,255,.48)}
.vsr-search-form-wrap .versora-search-form__icon svg{width:19px;height:19px}
.vsr-search-form-wrap input[type="search"]{
  flex:1;
  width:100%!important;
  height:56px!important;
  margin:0!important;
  padding:0 16px!important;
  border:1px solid rgba(255,255,255,.14)!important;
  border-radius:13px!important;
  background:rgba(255,255,255,.055)!important;
  color:#fff!important;
  font-size:.9rem!important;
  text-align:right!important;
  direction:rtl!important;
  outline:none!important;
}
.vsr-search-form-wrap input[type="search"]:focus{border-color:var(--vsr-accent)!important;box-shadow:0 0 0 3px rgba(255,177,22,.13)!important}
.vsr-search-form-wrap input[type="submit"],.vsr-search-form-wrap button[type="submit"]{
  flex:0 0 auto;
  height:56px!important;
  margin:0!important;
  padding:0 20px!important;
  border:1px solid var(--vsr-accent)!important;
  border-radius:13px!important;
  background:var(--vsr-accent)!important;
  color:#111!important;
  font-size:.78rem!important;
  font-weight:900!important;
  cursor:pointer;
}
.vsr-search-links{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin-top:18px}
.vsr-search-links span{color:rgba(255,255,255,.42);font-size:.69rem;font-weight:700}
.vsr-search-links a{padding:7px 10px;border:1px solid rgba(255,255,255,.1);border-radius:999px;color:rgba(255,255,255,.72)!important;font-size:.68rem;font-weight:700}

@media(max-width:1280px){
  .vsr-header__layout{grid-template-columns:minmax(215px,auto) minmax(320px,1fr) minmax(220px,auto);gap:12px}
  .vsr-header-cart{width:42px;min-width:42px;padding:0}
  .vsr-header-cart__label{display:none}
  .vsr-header__cta{min-width:106px;padding-inline:12px!important}
  .vsr-menu>li>a{padding-inline:8px!important;font-size:.68rem!important}
}
@media(max-width:1080px){
  :root{--vsr-header-height:70px}
  .vsr-header-container{width:calc(100% - 28px)}
  .vsr-header__layout{display:flex;justify-content:space-between;gap:12px;min-height:var(--vsr-header-height);direction:rtl}
  .vsr-header__brand{order:1}
  .vsr-header__nav{display:none!important}
  .vsr-header__actions{order:2;margin-inline-start:auto}
  .vsr-header__actions>.vsr-account-link,.vsr-header__actions>.vsr-account-trigger,.vsr-header__actions>.vsr-header-cart,.vsr-header__actions>.vsr-header__cta{display:none!important}
  .vsr-menu-toggle{display:grid}
  .vsr-header__logo,.vsr-header-logo,.vsr-header__logo-image{width:48px!important;height:48px!important;flex-basis:48px}
}
@media(max-width:560px){
  :root{--vsr-header-height:66px}
  .vsr-header-container{width:calc(100% - 20px)}
  .vsr-header__brand-copy strong{font-size:.98rem}
  .vsr-header__brand-copy small{display:none}
  .vsr-header__actions{gap:7px}
  .vsr-header-action,.vsr-menu-toggle{width:40px;height:40px;min-width:40px;min-height:40px;flex-basis:40px}
  .vsr-header__logo,.vsr-header-logo,.vsr-header__logo-image{width:44px!important;height:44px!important;flex-basis:44px}
  .vsr-search-overlay{padding:12px}
  .vsr-search-dialog{padding:20px;border-radius:17px}
  .vsr-search-form-wrap .versora-search-form__field{display:grid!important;grid-template-columns:1fr!important}
  .vsr-search-form-wrap .versora-search-form__icon{display:none}
  .vsr-search-form-wrap input[type="submit"],.vsr-search-form-wrap button[type="submit"]{width:100%}
}
@media(max-width:380px){
  .vsr-header__brand-copy{display:none}
  .vsr-mobile-nav__actions{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(prefers-reduced-motion:reduce){
  .vsr-header *, .vsr-mobile-nav *, .vsr-search-overlay *{transition:none!important;animation:none!important}
}

/* Sticky mode: fixed to viewport with a measured content offset. */
body.versora-sticky-enabled.versora-header-ready .vsr-header{
  position:fixed;
  top:var(--vsr-admin-offset);
  right:0;
  left:0;
}
body.versora-sticky-enabled.versora-header-ready .vsr-site-shell,
body.versora-sticky-enabled.versora-header-ready #page{
  padding-top:var(--vsr-header-total-height,var(--vsr-header-height))!important;
}
body.admin-bar.versora-sticky-enabled.versora-header-ready .vsr-site-shell,
body.admin-bar.versora-sticky-enabled.versora-header-ready #page{
  padding-top:calc(var(--vsr-header-total-height,var(--vsr-header-height)) + var(--vsr-admin-offset))!important;
}
body.versora-sticky-enabled .vsr-shop-category-wrap{top:var(--vsr-header-total-height,var(--vsr-header-height))!important}
body.admin-bar.versora-sticky-enabled .vsr-shop-category-wrap{top:calc(var(--vsr-header-total-height,var(--vsr-header-height)) + var(--vsr-admin-offset))!important}

body.admin-bar:not(.versora-sticky-enabled).versora-header-ready .vsr-site-shell,body.admin-bar:not(.versora-sticky-enabled).versora-header-ready #page{padding-top:var(--vsr-admin-offset)!important}


/* Versora 2.5 — sticky header + login modal */
body.versora-header-ready .vsr-header{position:fixed;top:var(--vsr-admin-offset)}
body.versora-header-ready #page,body.versora-header-ready .vsr-site-shell{padding-top:var(--vsr-header-total-height,var(--vsr-header-height))}
body.versora-header-ready.vsr-account-open{overflow:hidden!important}
.vsr-account-trigger{appearance:none}
.vsr-account-modal{position:fixed;inset:0;z-index:100070;display:grid;place-items:center;padding:28px}
.vsr-account-modal[hidden]{display:none!important}
.vsr-account-modal__backdrop{position:absolute;inset:0;border:0;background:rgba(3,6,12,.72);backdrop-filter:blur(10px);cursor:pointer}
.vsr-account-modal__dialog{position:relative;z-index:1;width:min(100%,470px);padding:28px;border:1px solid rgba(255,255,255,.1);border-radius:28px;background:linear-gradient(180deg,rgba(16,21,31,.98),rgba(11,15,23,.98));box-shadow:0 34px 90px rgba(0,0,0,.45);color:#fff;transform:translateY(18px);opacity:0;transition:transform .18s ease,opacity .18s ease}
.vsr-account-modal.is-open .vsr-account-modal__dialog{transform:none;opacity:1}
.vsr-account-modal__close{position:absolute;top:18px;left:18px;display:grid;place-items:center;width:42px;height:42px;border:1px solid rgba(255,255,255,.14);border-radius:14px;background:rgba(255,255,255,.04);color:#fff;cursor:pointer}
.vsr-account-modal__close svg{width:18px;height:18px}
.vsr-account-modal__hero span{display:inline-flex;padding:7px 12px;border-radius:999px;background:rgba(255,177,22,.12);color:#ffbf44;font-size:.73rem;font-weight:850}
.vsr-account-modal__hero h2{margin:14px 0 8px;color:#fff;font-size:clamp(1.65rem,4vw,2.2rem);line-height:1.35}
.vsr-account-modal__hero p{margin:0;color:rgba(255,255,255,.68);line-height:1.95;font-size:.92rem}
.vsr-account-modal__form{display:grid;gap:14px;margin-top:24px}
.vsr-account-modal__form label{display:grid;gap:8px}
.vsr-account-modal__form label>span{color:#eef2f8;font-size:.8rem;font-weight:800}
.vsr-account-modal__form input[type=text],.vsr-account-modal__form input[type=password]{width:100%;min-height:54px;padding:0 16px;border:1px solid rgba(255,255,255,.12);border-radius:16px;background:rgba(8,12,20,.78);color:#fff;outline:none}
.vsr-account-modal__form input[type=text]:focus,.vsr-account-modal__form input[type=password]:focus{border-color:rgba(255,177,22,.75);box-shadow:0 0 0 3px rgba(255,177,22,.16)}
.vsr-account-modal__meta{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.vsr-account-modal__remember{display:inline-flex;align-items:center;gap:8px;color:#c9d1db;font-size:.78rem;font-weight:700}
.vsr-account-modal__meta a,.vsr-account-modal__link{color:#ffbf44!important;font-size:.8rem;font-weight:800;text-decoration:none}
.vsr-account-modal__submit,.vsr-account-modal__secondary{display:inline-flex;align-items:center;justify-content:center;min-height:52px;padding:0 18px;border-radius:16px;text-decoration:none;font-weight:900}
.vsr-account-modal__submit{border:0;background:linear-gradient(135deg,#ffb116,#ffc84c);color:#16120a;cursor:pointer}
.vsr-account-modal__secondary{border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.04);color:#fff!important}
.vsr-account-modal__footer{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-top:18px;padding-top:18px;border-top:1px solid rgba(255,255,255,.08)}
@media(max-width:700px){body.versora-header-ready #page,body.versora-header-ready .vsr-site-shell{padding-top:var(--vsr-header-total-height,var(--vsr-header-height))}.vsr-account-modal{padding:16px}.vsr-account-modal__dialog{padding:22px;border-radius:24px}.vsr-account-modal__hero h2{font-size:1.7rem}.vsr-account-modal__footer{flex-direction:column;align-items:stretch}.vsr-account-modal__secondary,.vsr-account-modal__submit{width:100%}}


/* Versora 2.5.2 — compact anchored account popover */
body.versora-header-ready.vsr-account-open{overflow:auto!important}
.vsr-account-trigger__avatar{display:block;width:30px;height:30px;border-radius:9px;overflow:hidden;border:1px solid rgba(255,177,22,.38)}
.vsr-account-trigger__avatar img{display:block;width:100%;height:100%;object-fit:cover}
.vsr-account-trigger.is-authenticated{border-color:rgba(255,177,22,.32);background:rgba(255,177,22,.075)}
.vsr-account-modal{
  position:fixed!important;
  inset:auto!important;
  top:var(--vsr-account-top,90px)!important;
  left:var(--vsr-account-left,24px)!important;
  z-index:100080!important;
  display:block!important;
  width:var(--vsr-account-width,360px)!important;
  max-width:calc(100vw - 24px)!important;
  padding:0!important;
  pointer-events:none;
  direction:rtl;
}
.vsr-account-modal[hidden]{display:none!important}
.vsr-account-modal.is-open{pointer-events:auto}
.vsr-account-modal__backdrop{display:none!important}
.vsr-account-modal__dialog{
  position:relative!important;
  width:100%!important;
  padding:18px!important;
  border:1px solid rgba(255,177,22,.28)!important;
  border-radius:20px!important;
  background:linear-gradient(180deg,rgba(16,22,32,.995),rgba(10,15,23,.995))!important;
  box-shadow:0 20px 55px rgba(0,0,0,.36)!important;
  color:#fff!important;
  transform:translateY(-7px) scale(.985)!important;
  transform-origin:top center!important;
  opacity:0!important;
  transition:opacity .14s ease,transform .14s ease!important;
  overflow:visible!important;
}
.vsr-account-modal__dialog::before{
  content:"";position:absolute;top:-7px;left:calc(var(--vsr-account-anchor-x,50%) - 7px);width:14px;height:14px;
  transform:rotate(45deg);border-top:1px solid rgba(255,177,22,.28);border-left:1px solid rgba(255,177,22,.28);background:#101620;
}
.vsr-account-modal.opens-up .vsr-account-modal__dialog{transform-origin:bottom center!important}
.vsr-account-modal.opens-up .vsr-account-modal__dialog::before{top:auto;bottom:-7px;transform:rotate(225deg);background:#0a0f17}
.vsr-account-modal.is-open .vsr-account-modal__dialog{transform:none!important;opacity:1!important}
.vsr-account-modal__close{display:none!important}
.vsr-account-modal__hero{padding:0 2px 2px}
.vsr-account-modal__hero span{padding:0!important;border-radius:0!important;background:transparent!important;color:#ffb116!important;font-size:.68rem!important;font-weight:900!important}
.vsr-account-modal__hero h2{margin:4px 0 4px!important;color:#fff!important;font-size:1.18rem!important;line-height:1.45!important}
.vsr-account-modal__hero p{margin:0!important;color:rgba(255,255,255,.58)!important;font-size:.75rem!important;line-height:1.8!important}
.vsr-account-modal__form{display:grid!important;gap:10px!important;margin-top:14px!important}
.vsr-account-modal__form label{gap:5px!important}
.vsr-account-modal__form label>span{color:#dfe6ef!important;font-size:.7rem!important;font-weight:800!important}
.vsr-account-modal__form input[type=text],.vsr-account-modal__form input[type=password]{min-height:44px!important;padding:0 12px!important;border-radius:12px!important;font-size:.78rem!important;background:#090e16!important}
.vsr-account-modal__meta{gap:8px!important;font-size:.7rem!important}
.vsr-account-modal__remember{font-size:.68rem!important}
.vsr-account-modal__meta a,.vsr-account-modal__link{font-size:.69rem!important}
.vsr-account-modal__submit,.vsr-account-modal__secondary{min-height:44px!important;border-radius:12px!important;font-size:.76rem!important}
.vsr-account-modal__footer{margin-top:12px!important;padding-top:12px!important;gap:9px!important}
.vsr-account-modal__secondary{flex:1 1 auto!important}

.vsr-account-menu-head{display:grid;grid-template-columns:48px minmax(0,1fr) auto;gap:11px;align-items:center;padding-bottom:14px;border-bottom:1px solid rgba(255,255,255,.08)}
.vsr-account-menu-avatar{width:48px;height:48px;border-radius:14px;overflow:hidden;border:1px solid rgba(255,177,22,.32);background:#0b111a}
.vsr-account-menu-avatar img{display:block;width:100%;height:100%;object-fit:cover}
.vsr-account-menu-head>div:nth-child(2){display:grid;gap:2px;min-width:0}
.vsr-account-menu-head span{color:#ffb116;font-size:.65rem;font-weight:900}
.vsr-account-menu-head strong{overflow:hidden;color:#fff;font-size:.86rem;white-space:nowrap;text-overflow:ellipsis}
.vsr-account-menu-head small{overflow:hidden;color:rgba(255,255,255,.56);font-size:.66rem;white-space:nowrap;text-overflow:ellipsis}
.vsr-account-menu-orders{display:grid;place-items:center;min-width:50px;padding:7px 8px;border:1px solid rgba(255,255,255,.08);border-radius:12px;background:rgba(255,255,255,.04);color:#fff;font-size:.9rem;text-align:center}
.vsr-account-menu-orders small{display:block;color:rgba(255,255,255,.5);font-size:.56rem;font-weight:700}
.vsr-account-menu-links{display:grid;gap:5px;padding:10px 0}
.vsr-account-menu-links a{display:flex;align-items:center;justify-content:space-between;min-height:38px;padding:0 11px;border-radius:10px;color:#dce4ee!important;font-size:.72rem;font-weight:800;text-decoration:none!important}
.vsr-account-menu-links a i{color:#ffb116;font-style:normal;opacity:.65}
.vsr-account-menu-links a:hover,.vsr-account-menu-links a:focus-visible{background:rgba(255,177,22,.10);color:#fff!important;outline:none}
.vsr-account-menu-links a:hover i{opacity:1}
.vsr-account-menu-footer{display:flex;align-items:center;justify-content:space-between;gap:10px;padding-top:11px;border-top:1px solid rgba(255,255,255,.08)}
.vsr-account-menu-footer a{color:#ffbf44!important;font-size:.69rem;font-weight:850;text-decoration:none!important}
.vsr-account-menu-footer a.is-logout{color:#ff8e8e!important}

@media(max-width:700px){
  .vsr-account-modal{max-width:calc(100vw - 20px)!important}
  .vsr-account-modal__dialog{padding:16px!important;border-radius:18px!important}
  .vsr-account-modal__footer{flex-direction:row!important;align-items:center!important}
  .vsr-account-modal__secondary,.vsr-account-modal__submit{width:auto!important}
}


/* Versora R59 — premium cart popover */
.vsr-cart-popover{position:fixed;top:var(--vsr-cart-top,calc(var(--vsr-admin-offset) + 72px));left:var(--vsr-cart-left,12px);z-index:100030;width:var(--vsr-cart-width,410px);max-width:calc(100vw - 24px);direction:rtl;filter:drop-shadow(0 30px 60px rgba(9,14,23,.18))}
.vsr-cart-popover[hidden]{display:none!important}
.vsr-cart-popover__dialog{position:relative;width:100%;padding:0;border:1px solid rgba(17,24,39,.10);border-radius:26px;background:linear-gradient(180deg,#fff 0%,#fbfcfe 100%);box-shadow:0 28px 90px rgba(15,23,42,.18),0 4px 16px rgba(15,23,42,.06);color:#121821;transform:translateY(10px) scale(.975);opacity:0;pointer-events:none;transition:transform .2s cubic-bezier(.2,.8,.2,1),opacity .16s ease}.vsr-cart-popover.is-open .vsr-cart-popover__dialog{transform:none;opacity:1;pointer-events:auto}.vsr-cart-popover__dialog:before{content:"";position:absolute;z-index:2;top:-8px;right:calc(var(--vsr-cart-anchor-x,28px) - 8px);width:16px;height:16px;background:#0d131d;border-top:1px solid rgba(17,24,39,.12);border-left:1px solid rgba(17,24,39,.12);transform:rotate(45deg)}.vsr-cart-popover.opens-up .vsr-cart-popover__dialog:before{top:auto;bottom:-8px;background:#fbfcfe;transform:rotate(225deg)}
.vsr-cart-popover__head{position:relative;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:17px 17px 16px;border-radius:25px 25px 18px 18px;background:radial-gradient(circle at 15% -20%,rgba(255,177,22,.20),transparent 42%),linear-gradient(135deg,#0b1018 0%,#111925 100%);overflow:hidden}.vsr-cart-popover__head:after{content:"";position:absolute;inset:auto 18px 0;height:1px;background:linear-gradient(90deg,transparent,rgba(255,177,22,.42),transparent)}.vsr-cart-popover__title-group{position:relative;z-index:1;display:flex;align-items:center;gap:11px;min-width:0}.vsr-cart-popover__head-icon{display:grid;place-items:center;flex:0 0 42px;width:42px;height:42px;border:1px solid rgba(255,193,67,.22);border-radius:14px;background:linear-gradient(145deg,rgba(255,177,22,.15),rgba(255,255,255,.04));color:#ffbd36;box-shadow:inset 0 1px 0 rgba(255,255,255,.06)}.vsr-cart-popover__head-icon svg{width:21px;height:21px}.vsr-cart-popover__title-group>div{min-width:0}.vsr-cart-popover__eyebrow{display:block;color:#f3b52f!important;font-size:.65rem!important;font-weight:900!important;letter-spacing:.01em}.vsr-cart-popover__head h2{margin:3px 0 0!important;color:#fff!important;font-size:1.02rem!important;line-height:1.55!important;white-space:nowrap}.vsr-cart-popover__head-actions{position:relative;z-index:1;display:flex;align-items:center;gap:7px}.vsr-cart-popover__badge{display:inline-flex;align-items:center;justify-content:center;min-height:31px;padding:0 10px;border:1px solid rgba(255,193,67,.18);border-radius:999px;background:rgba(255,177,22,.10);color:#ffd36f;font-size:.69rem;font-weight:900;white-space:nowrap}.vsr-cart-popover__close{display:grid;place-items:center;width:31px;height:31px;padding:0;border:1px solid rgba(255,255,255,.10);border-radius:10px;background:rgba(255,255,255,.055);color:rgba(255,255,255,.72);cursor:pointer;transition:background .16s ease,color .16s ease,transform .16s ease}.vsr-cart-popover__close svg{width:15px;height:15px}.vsr-cart-popover__close:hover,.vsr-cart-popover__close:focus-visible{background:rgba(255,177,22,.13);color:#ffca59;outline:none;transform:rotate(4deg)}
.vsr-cart-popover__body{padding:14px 15px 15px}.vsr-cart-popover__items{display:grid;gap:10px}.vsr-cart-popover__body .woocommerce-mini-cart{display:grid;gap:9px;max-height:min(345px,52vh);margin:0;padding:1px 1px 2px;overflow:auto;overscroll-behavior:contain;scrollbar-width:thin;scrollbar-color:#d7dce4 transparent;list-style:none}.vsr-cart-popover__body .woocommerce-mini-cart::-webkit-scrollbar{width:5px}.vsr-cart-popover__body .woocommerce-mini-cart::-webkit-scrollbar-thumb{border-radius:999px;background:#d7dce4}.vsr-cart-popover__body .woocommerce-mini-cart-item{position:relative;display:block!important;min-height:78px;padding:10px 10px 10px 38px!important;border:1px solid #e8edf3;border-radius:18px;background:linear-gradient(135deg,#fff 0%,#f8fafc 100%);box-shadow:0 5px 18px rgba(15,23,42,.035);transition:border-color .16s ease,box-shadow .16s ease,transform .16s ease}.vsr-cart-popover__body .woocommerce-mini-cart-item:hover{border-color:#e2c88f;box-shadow:0 10px 26px rgba(15,23,42,.07);transform:translateY(-1px)}.vsr-cart-popover__body .woocommerce-mini-cart-item>a:not(.remove){display:grid!important;grid-template-columns:62px minmax(0,1fr);gap:11px;align-items:center;min-width:0;color:#151b24!important;font-size:.78rem!important;font-weight:900!important;line-height:1.8!important;text-decoration:none!important}.vsr-cart-popover__body .woocommerce-mini-cart-item img{float:none!important;grid-column:1!important;width:62px!important;height:58px!important;margin:0!important;border:1px solid #edf0f4;border-radius:14px;object-fit:cover;background:#f2f4f7;box-shadow:0 3px 10px rgba(15,23,42,.06)}.vsr-cart-popover__body .woocommerce-mini-cart-item .remove{position:absolute;z-index:2;top:9px;left:9px;display:grid!important;place-items:center;width:25px!important;height:25px!important;line-height:25px!important;border:1px solid #f3d7d7;border-radius:9px;background:#fff7f7;color:#bd4343!important;font-size:.78rem!important;font-weight:700!important;text-decoration:none!important;transition:background .15s ease,color .15s ease,transform .15s ease}.vsr-cart-popover__body .woocommerce-mini-cart-item .remove:hover,.vsr-cart-popover__body .woocommerce-mini-cart-item .remove:focus-visible{background:#c63f3f;color:#fff!important;outline:none;transform:scale(1.04)}.vsr-cart-popover__body .woocommerce-mini-cart-item .quantity{display:flex;align-items:center;gap:4px;margin:-14px 73px 0 0;color:#737d8a;font-size:.70rem;font-weight:800;line-height:1.6}.vsr-cart-popover__body .woocommerce-mini-cart-item .quantity .woocommerce-Price-amount{color:#3e4651!important;font-weight:900}.vsr-cart-popover__body .variation{grid-column:2;margin:2px 0 0!important;font-size:.66rem!important}.vsr-cart-popover__body .variation dt,.vsr-cart-popover__body .variation dd{margin:0!important;color:#77818e!important}
.vsr-cart-popover__summary{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-top:12px;padding:13px 14px;border:1px solid #eadfc9;border-radius:17px;background:linear-gradient(135deg,#fffaf0 0%,#fff7e6 100%);box-shadow:inset 0 1px 0 rgba(255,255,255,.8)}.vsr-cart-popover__summary-copy{display:grid;gap:2px}.vsr-cart-popover__summary-copy span{color:#71572f;font-size:.74rem;font-weight:900}.vsr-cart-popover__summary-copy small{color:#9a876a;font-size:.61rem;font-weight:650}.vsr-cart-popover__summary strong,.vsr-cart-popover__summary .woocommerce-Price-amount{color:#111821!important;font-size:1.02rem;font-weight:950;white-space:nowrap}.vsr-cart-popover__actions{display:grid;grid-template-columns:1.15fr .85fr;gap:8px;margin-top:10px}.vsr-cart-popover__button{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:46px;padding:0 14px;border-radius:13px;text-decoration:none!important;font-size:.76rem;font-weight:950;transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease,background .16s ease}.vsr-cart-popover__button i{font-size:1rem;font-style:normal;line-height:1;transition:transform .16s ease}.vsr-cart-popover__button:hover i{transform:translateX(-2px)}.vsr-cart-popover__button.is-primary{border:1px solid #f1a900;background:linear-gradient(135deg,#ffb116 0%,#ffc950 100%);color:#17130a!important;box-shadow:0 10px 24px rgba(255,177,22,.22)}.vsr-cart-popover__button.is-primary:hover,.vsr-cart-popover__button.is-primary:focus-visible{background:linear-gradient(135deg,#ffbc2e 0%,#ffd167 100%);box-shadow:0 13px 30px rgba(255,177,22,.30);outline:none;transform:translateY(-1px)}.vsr-cart-popover__button.is-secondary{border:1px solid #d9dfe7;background:#fff;color:#18202a!important}.vsr-cart-popover__button.is-secondary:hover,.vsr-cart-popover__button.is-secondary:focus-visible{border-color:#c6cdd7;background:#f7f9fb;outline:none;transform:translateY(-1px)}.vsr-cart-popover__trust{display:grid;grid-template-columns:auto minmax(0,1fr);gap:1px 7px;align-items:center;margin-top:10px;padding:0 4px;color:#5f6975}.vsr-cart-popover__trust-dot{grid-row:1 / span 2;width:7px;height:7px;border-radius:999px;background:#2db477;box-shadow:0 0 0 4px rgba(45,180,119,.10)}.vsr-cart-popover__trust>span:not(.vsr-cart-popover__trust-dot){font-size:.65rem;font-weight:850}.vsr-cart-popover__trust small{color:#929aa5;font-size:.58rem;font-weight:650}
.vsr-cart-popover__empty{display:grid;justify-items:start;gap:8px;padding:9px 4px 3px;text-align:right}.vsr-cart-popover__empty-icon{display:grid;place-items:center;width:48px;height:48px;margin-bottom:2px;border:1px solid #f0dfb8;border-radius:15px;background:linear-gradient(145deg,#fffaf0,#fff2d1);color:#b77900}.vsr-cart-popover__empty-icon svg{width:23px;height:23px}.vsr-cart-popover__empty strong{color:#171c24;font-size:.96rem}.vsr-cart-popover__empty p{margin:0 0 2px;color:#66707b;line-height:1.9;font-size:.78rem}.vsr-cart-popover__empty .vsr-cart-popover__button{width:100%;margin-top:4px}.vsr-cart-popover__body p.total,.vsr-cart-popover__body p.buttons{display:none!important}
@media(max-width:782px){.vsr-cart-popover{display:none!important}}

