/* Layout */
.woocommerce-account .woocommerce{
  display:flex;
  gap:24px;
  align-items:stretch;
}
.woocommerce-account .woocommerce-MyAccount-navigation{
  width:320px;
  min-width:280px;
  background:#0f2747;
  border-radius:18px;
  padding:18px 14px;
  box-shadow:0 10px 30px rgba(0,0,0,.10);
  order:2; /* RTL: nav right */
}
.woocommerce-account .woocommerce-MyAccount-content{
  flex:1;
  order:1;
}

/* Menu */
.woocommerce-MyAccount-navigation ul{list-style:none;margin:0;padding:0}
.woocommerce-MyAccount-navigation li a{
  display:flex;
  align-items:center;
  padding:12px 12px;
  margin:6px 0;
  border-radius:12px;
  color:rgba(255,255,255,.85);
  text-decoration:none;
  font-weight:800;
  transition:.15s ease;
}
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover{
  background:rgba(255,255,255,.10);
  color:#fff;
}

/* Cards */
.ay-account-cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-bottom:18px;
}
.ay-card{
  color:#fff;
  border-radius:18px;
  padding:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
  display:flex;
  gap:14px;
  align-items:center;
}
.ay-card-ico{font-size:34px;line-height:1}
.ay-card-title{font-weight:800;font-size:14px;opacity:.95}
.ay-card-num{font-weight:900;font-size:20px;margin-top:6px}

.ay-red{background:#ff5a5f}
.ay-amber{background:#ffb000}
.ay-green{background:#27c48a}

/* Quick links */
.ay-quick{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  margin-top:16px;
}
.ay-quick-item{
  background:#fff;
  border-radius:18px;
  padding:18px 10px;
  text-decoration:none;
  color:#111;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  border:1px solid rgba(0,0,0,.05);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:900;
}
.ay-quick-item .ay-ico{font-size:32px;line-height:1}

/* Responsive */
@media (max-width: 992px){
  .woocommerce-account .woocommerce{flex-direction:column}
  .woocommerce-account .woocommerce-MyAccount-navigation{width:100%;order:0}
  .ay-account-cards{grid-template-columns:1fr}
  .ay-quick{grid-template-columns:repeat(2,1fr)}
}

.woocommerce-account .woocommerce{display:flex;gap:24px;align-items:stretch}
.woocommerce-account .woocommerce-MyAccount-navigation{width:320px;min-width:280px;background:#0f2747;border-radius:18px;padding:18px 14px;box-shadow:0 10px 30px rgba(0,0,0,.10);order:2}
.woocommerce-account .woocommerce-MyAccount-content{flex:1;order:1}

.woocommerce-MyAccount-navigation ul{list-style:none;margin:0;padding:0}
.woocommerce-MyAccount-navigation li a{display:flex;align-items:center;padding:12px 12px;margin:6px 0;border-radius:12px;color:rgba(255,255,255,.85);text-decoration:none;font-weight:800;transition:.15s}
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover{background:rgba(255,255,255,.10);color:#fff}

@media (max-width:992px){
  .woocommerce-account .woocommerce{flex-direction:column}
  .woocommerce-account .woocommerce-MyAccount-navigation{width:100%;order:0}
}
/* FORCE: nav on right + RTL */
body.woocommerce-account .woocommerce{
  direction: rtl !important;
  display: flex !important;
  gap: 24px !important;
  align-items: stretch !important;
  flex-direction: row-reverse !important; /* nav right */
}

body.woocommerce-account .woocommerce-MyAccount-navigation{
  width: 320px !important;
  min-width: 280px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content{
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

/* Mobile */
@media (max-width: 992px){
  body.woocommerce-account .woocommerce{
    flex-direction: column !important;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation{
    width: 100% !important;
    min-width: 0 !important;
  }
}