


@media  (orientation: landscape) and (max-width: 761px) {





.pst-auth-area {
    display: grid;
    grid-template-areas: "stack";
    place-items: center end;

    /* 🔧 تضييق الحاوية */
    min-width: auto !important;
    flex: 0 0 auto !important;
    width: auto !important;

    /* نفس التموضع */
    position: absolute;
    inset-block-start: 0.85rem;
    inset-inline-end: 0.85rem;
    transform: translate(var(--mv-auth-x-mobile, 0), var(--mv-auth-y-mobile, 0));
    z-index: 3500;
  }

  /* الزرين يتكدسوا فوق بعض */
  .pst-auth-area > * {
    grid-area: stack;
    transition: opacity .18s ease;
  }

 
}











@media (orientation: landscape) and (min-width: 762px) and (max-width: 1024px) {


 .main-nav { 
    top: 0;
    left: 0;
    width: 100%;
    display: flex; 
    align-items: center; 
    padding: 1vh 2vw; 
    box-sizing: border-box; 
    background-color: rgba(105, 64, 64, 0.85); 
    height: 20vh !important;              /* بدل 105px */
    box-shadow: 0 .2vh .8vh rgba(0, 0, 0, 0.1); 
    justify-content: space-between; 
    position: sticky;                     
    z-index: 3000;  
  }


 
}










