@font-face {
  font-family: DanaFaNum;
  src: url('./fonts/DanaFaNum-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: DanaFaNum;
  src: url('./fonts/DanaFaNum-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: DanaFaNum;
  src: url('./fonts/DanaFaNum-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

.navbar .left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

a.shop-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #3af08a 0%, #01e767 42%, #00c656 100%);
  color: #052010 !important;
  text-decoration: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -8px 12px rgba(0, 80, 40, 0.12),
    0 8px 20px rgba(1, 231, 103, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

a.shop-cta::after {
  content: '';
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: 0;
  width: 42%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 32%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.05) 68%,
    transparent 100%
  );
  transform: translateX(280%) skewX(-24deg);
  pointer-events: none;
  animation: shop-shine 2.8s ease-in-out infinite;
  animation-delay: -0.85s;
}

@keyframes shop-shine {
  0%, 28% { transform: translateX(280%) skewX(-24deg); }
  58%, 100% { transform: translateX(-220%) skewX(-24deg); }
}

a.shop-cta:hover {
  color: #052010 !important;
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -8px 12px rgba(0, 80, 40, 0.1),
    0 10px 24px rgba(1, 231, 103, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  a.shop-cta::after,
  .shop-comma-wrap::after {
    display: none;
    animation: none;
  }
  .shop-landing .scroll_link .icon {
    animation: none;
  }
}

#navbarLinks li a[href*="shop"] {
  color: inherit;
  text-decoration: none;
}

form[data-comma-form] {
  position: relative;
}

.hp-field {
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
  pointer-events: none;
}

.form-status {
  margin-top: 14px;
  min-height: 1.4em;
  font-size: 14px;
  line-height: 1.8;
}

.form-status.is-pending { color: #c8c8c8; }
.form-status.is-ok { color: #01e767; }
.form-status.is-err { color: #ff6b6b; }

/* Shop extras — keep homepage CSS in charge */
.navbar .left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.navbar .right {
  gap: 12px;
}

.nav-toggle {
  display: inline-flex !important;
  order: -1;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(1, 231, 103, 0.7);
  border-radius: 10px;
  background: rgba(1, 231, 103, 0.12);
  cursor: pointer;
  flex: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 21;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1001;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 86vw);
  height: 100%;
  z-index: 1002;
  background: #26282a;
  color: #fff;
  padding: 22px 20px 32px;
  overflow-y: auto;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav-drawer,
body.nav-open .nav-backdrop {
  display: block;
}

.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  font-weight: 700;
}

.nav-drawer-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  position: relative;
}

.nav-drawer-close::before,
.nav-drawer-close::after {
  content: '';
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  background: #fff;
  top: 50%;
}

.nav-drawer-close::before { transform: rotate(45deg); }
.nav-drawer-close::after { transform: rotate(-45deg); }

.nav-drawer-links {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.nav-drawer-links li,
.nav-drawer-links a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-drawer .shop-cta {
  width: 100%;
  margin-bottom: 14px;
}

.nav-drawer .call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  direction: ltr;
}

@media (max-width: 1399px) {
  .navbar .links {
    display: none !important;
  }
}

@media (min-width: 1400px) {
  .nav-toggle {
    display: none !important;
  }
}

html:has(.shop-landing),
body:has(.shop-landing) {
  overflow-x: hidden;
}

.shop-landing {
  position: relative;
  padding: 140px 0 48px;
  overflow-x: hidden;
}

body:has(.shop-landing) > footer {
  margin-top: 0;
  padding-top: 18px;
}

.shop-hero {
  text-align: center;
}

.shop-comma-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  max-width: min(520px, 100%);
  margin: 24px auto 12px;
  padding-top: 18px;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 58%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 58%, transparent 100%);
  mask-composite: intersect;
}

.shop-landing .shop-comma {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  transform: none !important;
}

.shop-comma-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(to bottom, #2a2d32 0%, transparent 26%, transparent 50%, #2a2d32 100%),
    linear-gradient(to right, #2a2d32 0%, transparent 10%, transparent 90%, #2a2d32 100%);
  pointer-events: none;
  z-index: 2;
}

.shop-comma-wrap::after {
  content: '';
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: 0;
  width: 38%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 32%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.04) 68%,
    transparent 100%
  );
  transform: translateX(280%) skewX(-24deg);
  pointer-events: none;
  animation: shop-shine 3.4s ease-in-out infinite;
  z-index: 3;
}

.shop-landing .title {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin: 0 0 12px;
}

.shop-landing .desc {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 20px;
  font-weight: 200;
  line-height: 2;
  color: #fff;
}

.shop-landing .scroll_link {
  position: relative;
  right: auto;
  bottom: auto;
  transform: none;
  display: inline-block;
  width: 34px;
  height: 50px;
  overflow: hidden;
  margin: 0 auto 36px;
  border: 2px solid #707070;
  border-radius: 18px;
}

.shop-landing .scroll_link .icon {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.50196);
  -webkit-animation: iconupdown 1.5s infinite;
  animation: iconupdown 1.5s infinite;
}

.shop-body {
  align-items: flex-end;
}

.shop-body .shop-portrait,
.shop-hero-portrait {
  position: relative;
  background: transparent;
}

.shop-body .shop-portrait .image {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 4%;
  mix-blend-mode: lighten;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 42%, transparent 92%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 42%, transparent 92%);
}

.shop-hero-portrait .image {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: lighten;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 42%, transparent 92%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 42%, transparent 92%);
}

.shop-hero-portrait {
  display: none;
}

.shop-card {
  background: #26282a;
  border-radius: 36px;
  padding: 40px 28px 28px;
  max-width: 760px;
  margin: 0 auto;
  scroll-margin-top: 110px;
}

.shop-body .shop-card {
  max-width: none;
  margin: 0;
}

.shop-card input,
.shop-card select {
  max-width: 100%;
  min-width: 0;
}

.shop-card .input_box label,
.shop-card .field-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 200;
}

.shop-card .col-md-12:has(> .submit) {
  text-align: left;
}

.shop-card .form-status {
  display: block;
  width: 100%;
  text-align: right;
  margin-top: 12px;
}

.shop-card #shop-phone::placeholder,
.shop-card #shop-site::placeholder {
  color: rgba(255, 255, 255, 0.32) !important;
  opacity: 1 !important;
}

.shop-card #shop-phone::-webkit-input-placeholder,
.shop-card #shop-site::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.32) !important;
  opacity: 1 !important;
}

.shop-card #shop-phone::-moz-placeholder,
.shop-card #shop-site::-moz-placeholder {
  color: rgba(255, 255, 255, 0.32) !important;
  opacity: 1 !important;
}

.shop-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-checks label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 200;
  cursor: pointer;
  border: 2px solid #2a2d32;
  border-radius: 10px;
  background: #2a2d32;
  color: #fff;
}

.shop-checks input {
  width: 16px !important;
  height: 16px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  background: none !important;
  flex: none;
}

.shop-checks label:has(input:checked) {
  border-color: #01e767;
  color: #01e767;
}

.input_box select {
  width: 100%;
  color: #fff;
  font-family: dana5, DanaFaNum, Tahoma, sans-serif;
  font-weight: 200;
  font-size: 14px;
  border: 2px solid #2a2d32;
  padding: 15px 10px;
  border-radius: 10px;
  background-color: #2a2d32;
}

@media (max-width: 991px) {
  .shop-hero-portrait {
    display: flex;
    justify-content: center;
    margin: -12px auto 4px;
  }
  .shop-hero-portrait .image {
    max-width: 230px;
  }
  .shop-body .shop-portrait {
    display: none;
  }
  .shop-body .shop-card {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  body:has(.shop-landing) .navbar {
    padding: 14px 0;
  }
  body:has(.shop-landing) .navbar .logo img {
    width: 5.2rem;
  }
  body:has(.shop-landing) .navbar .left {
    gap: 6px;
    justify-content: flex-end;
  }
  body:has(.shop-landing) .navbar .left .call {
    font-size: 12px !important;
  }
  a.shop-cta {
    padding: 7px 12px;
    font-size: 12px;
  }
  .shop-landing {
    padding: 96px 0 40px;
  }
  .shop-landing .title {
    font-size: 22px;
  }
  .shop-landing .desc {
    font-size: 14px;
    padding: 0 4px;
  }
  .shop-card {
    padding: 22px 16px 18px;
    border-radius: 24px;
  }
  .shop-checks label {
    font-size: 12px;
    padding: 7px 10px;
  }
}

/* Inbox */
.inbox-page {
  margin: 0;
  min-height: 100vh;
  background: #0b0b0b;
  color: #f3f3f3;
  font-family: DanaFaNum, Tahoma, sans-serif;
  direction: rtl;
}

.inbox-wrap {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 64px;
}

.inbox-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.inbox-top h1 {
  margin: 0 0 6px;
  font-size: 26px;
}

.inbox-top p {
  margin: 0;
  color: #b5b5b5;
  font-size: 13px;
  line-height: 1.8;
}

.inbox-card {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px;
}

.inbox-card label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}

.inbox-card input,
.inbox-card select {
  width: 100%;
  box-sizing: border-box;
  background: #0f0f0f;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 11px 12px;
  font-family: inherit;
  margin-bottom: 12px;
}

.inbox-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 18px;
}

.inbox-btn {
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  background: #01e767;
  color: #052010;
}

.inbox-btn.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.inbox-btn.ghost.is-active {
  border-color: #01e767;
  color: #01e767;
}

.inbox-msg {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 12px;
  background: #121212;
}

.inbox-msg.unread {
  border-color: rgba(1, 231, 103, 0.45);
  box-shadow: inset 3px 0 0 #01e767;
}

.inbox-msg h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.inbox-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: #b8b8b8;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.inbox-body {
  white-space: pre-wrap;
  line-height: 1.9;
  font-size: 14px;
}

.inbox-tag {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(1, 231, 103, 0.12);
  color: #01e767;
  font-size: 12px;
}

.inbox-empty {
  color: #999;
  text-align: center;
  padding: 40px 0;
}

.inbox-note {
  font-size: 13px;
  color: #b5b5b5;
  line-height: 1.9;
}

.inbox-note code {
  font-family: inherit;
  color: #01e767;
}

.hidden { display: none !important; }
