@font-face{
  font-family: dana;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('./fonts/woff2/Dana-Light.woff2') format('woff2'),
  url('./fonts/woff/Dana-Light.woff') format('woff');
}
@font-face{
  font-family: dana;
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url('./fonts/woff2/Dana-Regular.woff2') format('woff2'),
  url('./fonts/woff/Dana-Regular.woff') format('woff');
}
@font-face{
  font-family: dana;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./fonts/woff2/Dana-Medium.woff2') format('woff2'),
  url('./fonts/woff/Dana-Medium.woff') format('woff');
}
@font-face{
  font-family: dana;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./fonts/woff2/Dana-DemiBold.woff2') format('woff2'),
  url('./fonts/woff/Dana-DemiBold.woff') format('woff');
}
@font-face{
  font-family: dana;
  font-style: normal;
  font-weight: bold;
  font-display: swap;
  src: url('./fonts/woff2/Dana-Bold.woff2') format('woff2'),
  url('./fonts/woff/Dana-Bold.woff') format('woff');
}
@font-face{
  font-family: dana;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('./fonts/woff2/Dana-ExtraBold.woff2') format('woff2'),
  url('./fonts/woff/Dana-ExtraBold.woff') format('woff');
}

:root{

  --bg:             #090c15;
  --bg-soft:        #0d1120;
  --surface:        #131829;
  --surface-2:      #1a2036;
  --border:         #242b46;


  --text:           #f3f5fb;
  --text-dim:       #9aa1bd;
  --text-faint:     #7b84ac;


  --brand-purple:   #6a2fb0;
  --brand-purple-2: #9333ea;
  --brand-gold:     #f0a93e;
  --brand-gold-2:   #ffcf70;


  --danger:         #f2545b;
  --success:        #24cd7b;

  --radius-lg:      20px;
  --radius-md:      14px;
  --radius-sm:      10px;

  --shadow-soft:    0 8px 24px rgba(0,0,0,.35);
  --shadow-strong:  0 20px 50px rgba(0,0,0,.55);

  --container-pad-x: 5px;
}

*{ box-sizing:border-box; margin:0; padding:0; }

html{ scroll-behavior:smooth; }

body{
  background:
          radial-gradient(1200px 600px at 15% -10%, rgba(106,47,176,.20), transparent 60%),
          radial-gradient(900px 500px at 100% 0%, rgba(240,169,62,.10), transparent 55%),
          var(--bg);
  color: var(--text);
  font-family: 'dana', Tahoma, sans-serif;
  direction: rtl;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }

.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.container{
  width:100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--container-pad-x);
}


.site-header{
  position: relative;
  z-index: 40;
}

.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 58px;
}

.menu-btn{
  width:42px; height:42px;
  border:none;
  background:transparent;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition: transform .15s ease;
  margin-right: -6px;
}
.menu-btn:active{ transform: scale(.94); }
.menu-btn svg{ width:22px; height:22px; stroke: var(--text); }


.hero-wrap{ padding: 26px 0 8px; }

.hero{
  position: relative;
  top: -26px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  width: 60%;
  margin: 0 auto;
}
.hero-img{
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px){
  .hero{
    width: auto;
    margin-inline: calc(-1 * var(--container-pad-x));
    border-radius: 0;
  }
}

.info-bar{
  margin-top: 17px;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(52,211,153,.09);
  border: 1px solid rgba(52,211,153,.28);
  color: #7ee6bf;
  font-size: 11px;
  font-weight: 400;
  padding: 11px 16px;
  border-radius: 2px;
}
.info-bar svg{ width:16px; height:16px; flex-shrink:0; stroke:#7ee6bf; }

@media (max-width: 768px){
  .info-bar{ width: 90%; }
}


.category{ padding-top: 38px; }
.category:last-child{ padding-bottom: 50px; }

.category-head{
  display:flex; align-items:baseline; gap:10px;
  margin-bottom: 16px;
}
.category-head h2{
  font-size: 16px;
  font-weight: 800;
}
.category-underline{
  padding-bottom: 5px;
}

.grid-wrap{
  position:relative;
}

.grid{
  display:flex;
  gap: 14px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 20px;
  padding: 2px 2px 14px;
  margin: -2px -2px -14px;
  -webkit-overflow-scrolling: touch;
}

.card{
  --accent: #4969E7;
  position:relative;
  flex: 0 0 187px;
  scroll-snap-align: start;
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 15px 15px;
  text-align:right;
}
.card:active{ transform: translateY(-1px) scale(.99); }

.card-icons{
  display:flex; align-items:center; justify-content:center; gap:8px;
  margin-bottom: 13px;
}
.card-icon{
  width:57px; height:57px;
  display:flex; align-items:center; justify-content:center;
}
.card-icon img{ width:43px; height:43px; object-fit:contain; }

.card-title{
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 17px;
  text-align:center;
}

.card-options{
  display:flex; flex-direction:column; gap:6px;
  margin-top: 1px;
  margin-bottom: 15px;
}
.card-option{
  display:flex; align-items:center; justify-content:flex-start;
  font-size: 10px;
  color: var(--text-dim);
  gap:7px;
}
.card-option .dot{
  width:15px; height:15px; border-radius:50%;
  flex-shrink:0;
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.card-option .dot img{ width:8px; height:8px; object-fit:contain; }

.card-footer{
  display:flex; align-items:center; justify-content:center;
  padding-top: 13px;
}
.card-order-btn{
  width:100%;
  font-size: 11px;
  font-weight: 800;
  color:#fff;
  background: var(--accent);
  border:none;
  padding: 10px 13px;
  border-radius: 999px;
  cursor:pointer;
  transition: filter .15s ease, transform .15s ease;
  white-space:nowrap;
  text-align:center;
}
.card-order-btn:hover{ filter:brightness(1.1); }
.card-order-btn:active{ transform: scale(.95); }


.modal-scrim{
  position: fixed; inset:0;
  background: rgba(4,5,12,.68);
  backdrop-filter: blur(6px);
  z-index: 80;
  display:flex; align-items:center; justify-content:center;
  padding: 18px;
  opacity:0; pointer-events:none;
  transition: opacity .22s ease;
}
.modal-scrim.open{ opacity:1; pointer-events:auto; }

.modal{
  --accent: #4969E7;
  width:100%; max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  position:relative;
  overflow:hidden;
  transform: translateY(14px) scale(.97);
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
  max-height: 92vh;
  display:flex; flex-direction:column;
}
.modal-scrim.open .modal{ transform: translateY(0) scale(1); }

.modal-close{
  position:absolute; top:16px; left:16px;
  width:32px; height:32px; border-radius:10px;
  background: var(--surface-2);
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; z-index:2;
}
.modal-close svg{ width:15px; height:15px; stroke: var(--text-dim); }
.modal-close:hover svg{ stroke:var(--text); }

.modal-body{
  padding: 14px 24px 24px;
  margin-top: 35px;
  overflow-y:auto;
  -webkit-user-select: none;
  user-select: none;
}


.field{ margin-bottom: 16px; }
.field label{
  display:block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 13px;
}
.field .hint{
  font-size: 10px;
  color: var(--text-faint);
  margin-top: 8px;
}
.field input{
  width:100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  direction: ltr;
  text-align: left;
  transition: border-color .15s ease, box-shadow .15s ease;
  -webkit-user-select: text;
  user-select: text;
}
.field input::placeholder{ color: var(--text-faint); }
.field input:focus{
  outline:none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent);
}
.field.error input{ border-color: var(--danger); }
.field .error-msg{
  display:none;
  font-size: 11px;
  color: var(--danger);
  margin-top: 6px;
}
.field.error .error-msg{ display:block; }

.modal-price-row{
  display:flex; align-items:center; justify-content:space-between;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 18px;
  font-size: 13px;
}
.modal-price-row b{ font-size:15px; }

.submit-btn{
  width:100%;
  border:none;
  border-radius: var(--radius-sm);
  padding: 14px;
  font-family: 'dana', Tahoma, sans-serif;
  font-weight: 800;
  font-size: 15px;
  color:#0d0a17;
  background: linear-gradient(90deg, var(--brand-gold-2), var(--accent) 130%);
  cursor:pointer;
  transition: filter .15s ease, transform .15s ease;
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.submit-btn:hover{ filter:brightness(1.06); }
.submit-btn:active{ transform: scale(.98); }

@keyframes spin{ to{ transform: rotate(360deg); } }


.state-box{
  text-align:center;
  padding: 60px 20px;
  color: var(--text-dim);
}
.state-box .spinner-lg{
  width:34px; height:34px;
  border-radius:50%;
  border: 3px solid var(--border);
  border-top-color: var(--brand-purple-2);
  animation: spin .8s linear infinite;
  margin: 0 auto 16px;
}
.state-box .retry-btn{
  margin-top:14px;
  border:1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 9px 18px;
  border-radius: 999px;
  font-family:inherit; font-weight:700; font-size:13px;
  cursor:pointer;
}

.skeleton-grid{
  display:flex;
  gap: 14px;
  overflow:hidden;
}
.skeleton-card{
  flex: 0 0 187px;
  height: 190px;
  border-radius: var(--radius-md);
  background: linear-gradient(100deg, var(--surface) 30%, var(--surface-2) 50%, var(--surface) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border: 1px solid var(--border);
}
@keyframes shimmer{
  0%{ background-position: 200% 0; }
  100%{ background-position: -200% 0; }
}


@media (max-width: 560px){
  .container{ --container-pad-x: 16px; }
  .grid, .skeleton-grid{ gap:10px; }
  .grid{ padding-inline-end: 16px; }
  .card, .skeleton-card{ flex-basis: 141px; }
  .card{ padding:13px 11px 11px; }
  .card-title{ font-size:14px; }
  .modal-body{ padding: 26px 18px 20px; }
}


@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001s !important; transition-duration: .001s !important; }
}


input,
textarea,
button,
select,
.field label,
.field .hint,
.field .error-msg,
.field input::placeholder,
.modal-price-row{
  font-family: dana, Tahoma, sans-serif !important;
}


body.menu-body{
  background:
          radial-gradient(900px 500px at 100% 0%, rgba(240,169,62,.10), transparent 55%),
          var(--bg);
}

.menu-page{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
}

.menu-icon-wrap{
  margin-top: -8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
}
.menu-icon{
  width: 128px; height: 128px;
  border-radius: 28px;
  object-fit: cover;
}

.menu-actions{
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-row{
  display: flex;
  gap: 12px;
  width: 100%;
}
.menu-row .menu-btn-link{
  flex: 1;
  width: auto;
}

.menu-btn-link{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease, border-color .15s ease;
}
.menu-btn-link:active{ transform: scale(.97); }
.menu-btn-link svg{ width: 18px; height: 18px; flex-shrink: 0; }

.menu-btn-link.accent{
  border: none;
  color: #0d0a17;
  background: linear-gradient(90deg, var(--brand-gold-2), var(--accent-blue, #4969E7) 130%);
}
.menu-btn-link.accent:hover{ filter: brightness(1.06); }

.trust-badges{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 65px;
  max-height: 100px;
  overflow: hidden;
}
.trust-badges img{ max-height: 100px; }


body.menu-body .site-header .menu-btn svg{ width: 28px; height: 28px; }



body.status-body{
  background:
          radial-gradient(900px 500px at 100% 0%, rgba(240,169,62,.10), transparent 55%),
          var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

@media (max-width: 600px){
  body.status-body{
    align-items: flex-start;
    padding-top: 150px;
  }
}

.status-container{
  width: 100%;
  max-width: 360px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  padding: 32px 24px 28px;
  text-align: center;
}

.status-icon{
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.status-icon.success{ background: color-mix(in srgb, var(--success) 16%, transparent); }
.status-icon.error{ background: color-mix(in srgb, var(--danger) 16%, transparent); }
.status-icon svg{ width: 28px; height: 28px; }
.status-icon.success svg{ stroke: var(--success); }
.status-icon.error svg{ stroke: var(--danger); }

.status-title{
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}
.status-title.success{ color: var(--success); }
.status-title.error{ color: var(--danger); }

.status-code-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--text-dim);
}
.status-code-row b{
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  direction: ltr;
}

.status-message{
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.8;
}

.status-actions{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn{
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: filter .15s ease, transform .15s ease, border-color .15s ease;
}
.btn:active{ transform: scale(.97); }

.btn.primary{
  border: none;
  color: #0d0a17;
  background: linear-gradient(90deg, var(--brand-gold-2), var(--brand-purple-2) 130%);
}
.btn.primary:hover{ filter: brightness(1.06); }

.btn.secondary{
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
}
.btn.secondary:hover{ border-color: #3a3f66; }