:root {
  --ink: #10251f;
  --muted: #61736d;
  --line: #dfe9e5;
  --soft: #f4f8f6;
  --white: #fff;
  --brand: #08745a;
  --brand-dark: #043c2e;
  --brand-deep: #031f18;
  --gold: #d8b74c;
  --gold-soft: #fff4cc;
  --danger: #ca3b4b;
  --shadow: 0 18px 55px rgba(6, 55, 42, 0.1);
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--site-font, Cairo, Arial, sans-serif);
  font-size: var(--base-font-size, 16px);
  color: var(--ink);
  background: var(--white, #fff);
  line-height: 1.75;
  overflow-x: hidden;
}
body.nav-open {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  max-width: var(--container-width, 1180px);
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1040;
  padding: 14px 0;
  transition: 0.25s;
  background: rgba(3, 31, 24, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header.scrolled {
  padding: 9px 0;
  background: rgba(3, 31, 24, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  min-width: max-content;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
}
.brand strong {
  font-size: 1.05rem;
  font-weight: 900;
  display: block;
  line-height: 1.2;
}
.brand small {
  font-family: Inter, Cairo, sans-serif;
  font-size: 0.61rem;
  letter-spacing: 1.3px;
  color: #bad4cb;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}
.desktop-nav a {
  color: #e9f4f0;
  padding: 9px 10px;
  border-radius: 10px;
  font-weight: 750;
  font-size: 0.92rem;
  white-space: nowrap;
}
.desktop-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}
.icon-action {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}
.cart-count {
  position: absolute;
  top: -5px;
  left: -5px;
  min-width: 19px;
  height: 19px;
  border-radius: 99px;
  background: var(--gold);
  color: #15231e;
  font-size: 0.68rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  padding: 0 5px;
}
.btn-primary-site,
.btn-secondary-site,
.btn-light-site {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--button-radius, 14px);
  padding: 12px 20px;
  font-weight: 900;
  border: 0;
  transition: 0.2s;
}
.btn-primary-site {
  background: linear-gradient(135deg, var(--gold), #f5d86f);
  color: #17231f;
  box-shadow: 0 12px 28px rgba(216, 183, 76, 0.25);
}
.btn-primary-site:hover {
  transform: translateY(-2px);
  color: #101a17;
}
.btn-secondary-site {
  background: var(--brand);
  color: #fff;
}
.btn-secondary-site:hover {
  background: #065f49;
  color: #fff;
}
.btn-light-site {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 1.35rem;
}
.mobile-drawer {
  display: none;
}
main {
  min-height: 60vh;
}
.hero {
  position: relative;
  color: #fff;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(15, 154, 113, 0.28),
      transparent 32%
    ),
    radial-gradient(
      circle at 86% 18%,
      rgba(216, 183, 76, 0.2),
      transparent 26%
    ),
    linear-gradient(135deg, #031914, #052b22 60%, #0a4938);
  padding: 155px 0 82px;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-kicker {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: #f2d66d;
  font-family: Inter, Cairo, sans-serif;
  font-weight: 900;
  letter-spacing: 1.25px;
  font-size: 0.78rem;
  margin-bottom: 18px;
}
.hero-kicker:before {
  content: "";
  width: 32px;
  height: 2px;
  background: #f2d66d;
}
.hero h1 {
  font-size: clamp(2.75rem, 5.2vw, 5.5rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
}
.hero h1 span {
  color: #f3d66e;
}
.hero p {
  color: #d4e6df;
  font-size: 1.15rem;
  max-width: 720px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-points {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
  color: #d8e9e3;
  font-size: 0.92rem;
}
.hero-points span:before {
  content: "✓";
  color: #f3d66e;
  font-weight: 900;
  margin-left: 7px;
}
.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.22);
}
.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.status-dot {
  width: 10px;
  height: 10px;
  background: #2bd59c;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(43, 213, 156, 0.12);
}
.insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.insight {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 17px;
}
.insight small {
  color: var(--muted);
  font-weight: 700;
}
.insight strong {
  display: block;
  font-size: 1.35rem;
  margin-top: 3px;
}
.hero-flow {
  margin-top: 12px;
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 17px;
}
.flow-line {
  height: 9px;
  background: #e8f0ed;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 14px;
}
.flow-line span {
  display: block;
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  border-radius: 20px;
}
.section {
  padding: 88px 0;
}
.section-soft {
  background: var(--soft);
}
.section-dark {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-dark));
}
.section-title {
  max-width: 780px;
  margin-bottom: 38px;
}
.section-title .tag {
  color: var(--brand);
  font-weight: 900;
  font-size: 0.86rem;
}
.section-dark .section-title .tag {
  color: #f2d66d;
}
.section-title h2 {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 900;
  line-height: 1.25;
  margin: 7px 0 13px;
}
.section-title p {
  color: var(--muted);
  font-size: 1.06rem;
}
.section-dark .section-title p {
  color: #cce0d8;
}
.trust-bar {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 24px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.trust-item:last-child {
  border-left: 0;
}
.trust-item strong {
  display: block;
  color: var(--brand);
  font-size: 1.14rem;
  font-weight: 900;
}
.trust-item span {
  color: var(--muted);
  font-size: 0.88rem;
}
.service-card,
.case-card,
.product-card,
.process-card,
.account-card,
.checkout-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(6, 55, 42, 0.06);
}
.service-card,
.product-card,
.case-card {
  height: 100%;
  overflow: hidden;
  transition: 0.25s;
}
.service-card:hover,
.product-card:hover,
.case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.card-media {
  height: 190px;
  background: linear-gradient(135deg, #dff4ec, #fff3c3);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-placeholder {
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand);
  opacity: 0.85;
}
.card-body-site {
  padding: 24px;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.card-badge {
  background: #e7f5f0;
  color: var(--brand);
  border-radius: 99px;
  padding: 5px 11px;
  font-size: 0.75rem;
  font-weight: 900;
}
.duration {
  font-size: 0.78rem;
  color: var(--muted);
}
.card-body-site h3 {
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 8px 0;
}
.card-body-site p {
  color: var(--muted);
  font-size: 0.93rem;
  min-height: 58px;
}
.price-row {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin: 17px 0;
}
.price-current {
  font-weight: 900;
  color: var(--brand);
  font-size: 1.22rem;
}
.price-old {
  text-decoration: line-through;
  color: #83908c;
  font-size: 0.9rem;
}
.card-actions {
  display: flex;
  gap: 9px;
}
.card-actions a,
.card-actions button {
  flex: 1;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.process-card {
  padding: 23px;
}
.process-number {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--gold-soft);
  color: #735f17;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 15px;
}
.process-card h4 {
  font-weight: 900;
  font-size: 1.02rem;
}
.process-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}
.dark-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.dark-value {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
  border-radius: 20px;
}
.dark-value strong {
  display: block;
  color: #f2d66d;
  margin-bottom: 5px;
}
.cta-panel {
  background: linear-gradient(135deg, #064735, #082b22);
  border-radius: 30px;
  padding: 45px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 30px 70px rgba(5, 52, 40, 0.2);
}
.page-hero {
  padding: 145px 0 65px;
  color: #fff;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(216, 183, 76, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #031914, #084332);
}
.page-hero h1 {
  font-size: clamp(2.35rem, 4.6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}
.page-hero p {
  color: #d4e6df;
  font-size: 1.05rem;
  max-width: 760px;
}
.form-shell,
.account-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-control,
.form-select {
  border-radius: 13px;
  padding: 13px 14px;
  border-color: #d6e3de;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.22rem rgba(8, 116, 90, 0.12);
}
.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 24px;
  align-items: start;
}
.cart-list {
  display: grid;
  gap: 13px;
}
.cart-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 15px;
}
.cart-item img {
  width: 88px;
  height: 75px;
  object-fit: cover;
  border-radius: 14px;
  background: var(--soft);
}
.cart-item h3 {
  font-size: 1rem;
  font-weight: 900;
  margin: 0 0 4px;
}
.cart-item small {
  color: var(--muted);
}
.cart-total {
  font-weight: 900;
  white-space: nowrap;
}
.summary-card {
  position: sticky;
  top: 105px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 23px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 9px 0;
}
.summary-line.total {
  border-top: 1px solid var(--line);
  font-size: 1.13rem;
  margin-top: 8px;
  padding-top: 15px;
}
.payment-option {
  display: block;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 17px;
  margin-bottom: 11px;
  cursor: pointer;
}
.payment-option:has(input:checked) {
  border-color: var(--brand);
  background: #eff9f5;
}
.receipt-box {
  border: 1px dashed #a7bdb5;
  border-radius: 17px;
  padding: 19px;
  background: #f8fbfa;
}
.account-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.account-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 19px;
  padding: 20px;
}
.account-stat strong {
  display: block;
  font-size: 1.55rem;
  color: var(--brand);
}
.orders-mobile {
  display: none;
}
.status-pill {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 99px;
  background: #e9f5f1;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
}
.mobile-order-bar {
  display: none;
}
.footer {
  background: #031914;
  color: #c8ddd5;
  padding: 65px 0 24px;
}
.footer h4,
.footer h6 {
  color: #fff;
}
.footer a {
  color: #c8ddd5;
  display: block;
  margin: 7px 0;
}
.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1030;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 12px 17px;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}
.site-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2000;
  place-items: center;
  padding: 18px;
}
.site-popup {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  max-width: 520px;
  width: 100%;
  max-height: 88vh;
  overflow: auto;
}
.site-popup-close {
  position: absolute;
  left: 14px;
  top: 8px;
  border: 0;
  background: transparent;
  font-size: 30px;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
  }
  .mobile-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 360px);
    height: 100vh;
    background: #05251d;
    z-index: 1060;
    padding: 22px;
    transform: translateX(105%);
    transition: 0.25s;
    overflow: auto;
  }
  .mobile-drawer.open {
    transform: translateX(0);
  }
  .drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1050;
    display: none;
  }
  .drawer-overlay.show {
    display: block;
  }
  .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
  }
  .mobile-drawer a {
    display: flex;
    color: #fff;
    padding: 13px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 800;
  }
  .mobile-drawer .btn-primary-site {
    margin-top: 18px;
    border-bottom: 0;
  }
  .header-cta {
    display: none;
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .hero {
    padding: 125px 0 62px;
  }
  .hero-card {
    margin-top: 10px;
  }
  .section {
    padding: 68px 0;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item:nth-child(2) {
    border-left: 0;
  }
  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .summary-card {
    position: static;
  }
  .account-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
    padding-bottom: 0;
  }
  .site-header {
    padding: 9px 0;
  }
  .brand img {
    width: 42px;
    height: 42px;
  }
  .brand small {
    display: none;
  }
  .header-actions .account-text {
    display: none;
  }
  .icon-action {
    width: 40px;
    height: 40px;
  }
  .hero {
    padding: 112px 0 48px;
    text-align: right;
  }
  .hero h1 {
    font-size: 2.45rem;
    letter-spacing: -0.6px;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-actions a {
    width: 100%;
  }
  .hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 0.82rem;
  }
  .insight-grid {
    grid-template-columns: 1fr 1fr;
  }
  .insight {
    padding: 14px;
  }
  .insight strong {
    font-size: 1.12rem;
  }
  .section {
    padding: 54px 0;
  }
  .section-title {
    margin-bottom: 27px;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .trust-item {
    padding: 17px 9px;
  }
  .trust-item strong {
    font-size: 0.98rem;
  }
  .trust-item span {
    font-size: 0.75rem;
  }
  .card-media {
    height: 165px;
  }
  .card-body-site {
    padding: 20px;
  }
  .card-body-site p {
    min-height: 0;
  }
  .process-grid,
  .dark-values {
    grid-template-columns: 1fr;
  }
  .cta-panel {
    padding: 28px 21px;
    border-radius: 22px;
  }
  .page-hero {
    padding: 112px 0 42px;
  }
  .page-hero h1 {
    font-size: 2.05rem;
  }
  .form-shell,
  .account-shell {
    padding: 19px;
    border-radius: 19px;
  }
  .cart-item {
    grid-template-columns: 70px minmax(0, 1fr);
    padding: 12px;
  }
  .cart-item img {
    width: 70px;
    height: 66px;
  }
  .cart-total {
    grid-column: 2;
    text-align: right;
  }
  .account-grid {
    grid-template-columns: 1fr 1fr;
  }
  .account-stat {
    padding: 15px;
  }
  .desktop-orders {
    display: none;
  }
  .orders-mobile {
    display: grid;
    gap: 11px;
  }
  .order-mobile-card {
    border: 1px solid var(--line);
    border-radius: 17px;
    padding: 15px;
    background: #fff;
  }
  .order-mobile-card .rowline {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 0;
  }
  .mobile-order-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1025;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -12px 35px rgba(0, 0, 0, 0.11);
    gap: 10px;
  }
  .mobile-order-bar > * {
    flex: 1;
  }
  .has-mobile-order-bar {
    padding-bottom: 85px;
  }
  .whatsapp-float {
    bottom: 88px;
    padding: 11px 14px;
    font-size: 0.83rem;
  }
}
@media (max-width: 420px) {
  .brand strong {
    font-size: 0.93rem;
  }
  .brand {
    gap: 8px;
  }
  .header-actions {
    gap: 6px;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .hero h1 {
    font-size: 2.12rem;
  }
  .hero-points {
    grid-template-columns: 1fr;
  }
  .insight-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-card {
    padding: 16px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .account-grid {
    grid-template-columns: 1fr;
  }
  .card-actions {
    flex-direction: column;
  }
}

/* Secure authentication experience */
.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 15%, rgba(8, 116, 90, 0.22), transparent 32%),
    radial-gradient(
      circle at 85% 75%,
      rgba(216, 183, 76, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #031914, #063d2f);
  padding: 110px 16px 45px;
  display: grid;
  place-items: center;
}
.auth-shell {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
}
.auth-brand-panel {
  background: linear-gradient(145deg, #031f18, #08745a);
  color: #fff;
  padding: 54px;
  position: relative;
  overflow: hidden;
}
.auth-brand-panel:after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  border: 55px solid rgba(216, 183, 76, 0.12);
  border-radius: 50%;
  left: -85px;
  bottom: -110px;
}
.auth-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 52px;
}
.auth-logo img {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  background: #fff;
}
.auth-logo strong {
  font-size: 1.25rem;
}
.auth-logo small {
  display: block;
  color: #bdd9cf;
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1px;
}
.auth-brand-panel h1 {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 17px;
}
.auth-brand-panel p {
  color: #d0e5dd;
  font-size: 1.02rem;
}
.auth-benefits {
  display: grid;
  gap: 13px;
  margin-top: 31px;
}
.auth-benefit {
  display: flex;
  gap: 11px;
  align-items: center;
}
.auth-benefit i {
  width: 31px;
  height: 31px;
  border-radius: 10px;
  background: rgba(216, 183, 76, 0.18);
  color: #f2d66d;
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 900;
}
.auth-form-panel {
  padding: 48px;
}
.auth-form-panel h2 {
  font-weight: 900;
  font-size: 2rem;
}
.auth-form-panel .lead {
  color: var(--muted);
  font-size: 0.94rem;
}
.auth-label {
  font-weight: 800;
  margin-bottom: 7px;
}
.auth-input-wrap {
  position: relative;
}
.auth-input {
  padding-left: 48px;
}
.auth-toggle {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #667a73;
  width: 34px;
  height: 34px;
}
.auth-help-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 0.86rem;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #82918c;
  font-size: 0.8rem;
  margin: 22px 0;
}
.auth-divider:before,
.auth-divider:after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}
.password-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 9px;
  font-size: 0.76rem;
  color: #7a8883;
}
.password-rules span.ok {
  color: #08745a;
  font-weight: 800;
}
.auth-security-note {
  border-radius: 14px;
  background: #f0f8f5;
  padding: 12px 14px;
  color: #35665a;
  font-size: 0.8rem;
  margin-top: 16px;
}
.admin-auth-badge {
  display: inline-flex;
  background: rgba(216, 183, 76, 0.18);
  color: #f2d66d;
  padding: 6px 12px;
  border-radius: 99px;
  font-weight: 900;
  font-size: 0.75rem;
  margin-bottom: 15px;
}
@media (max-width: 850px) {
  .auth-shell {
    grid-template-columns: 1fr;
    max-width: 610px;
  }
  .auth-brand-panel {
    padding: 30px;
  }
  .auth-logo {
    margin-bottom: 24px;
  }
  .auth-brand-panel h1 {
    font-size: 1.8rem;
  }
  .auth-benefits {
    grid-template-columns: 1fr 1fr;
  }
  .auth-form-panel {
    padding: 30px;
  }
}
@media (max-width: 520px) {
  .auth-page {
    padding: 85px 11px 25px;
    display: block;
  }
  .auth-shell {
    border-radius: 22px;
  }
  .auth-brand-panel {
    padding: 23px;
  }
  .auth-brand-panel h1 {
    font-size: 1.55rem;
  }
  .auth-brand-panel p {
    font-size: 0.88rem;
  }
  .auth-benefits {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .auth-benefit {
    font-size: 0.82rem;
  }
  .auth-form-panel {
    padding: 23px 18px;
  }
  .auth-form-panel h2 {
    font-size: 1.6rem;
  }
  .auth-help-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .password-rules {
    grid-template-columns: 1fr;
  }
  .auth-logo img {
    width: 49px;
    height: 49px;
  }
}

/* Customer account experience */
.customer-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 165px;
  height: 42px;
  padding: 0 12px;
  border-radius: 13px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}
.customer-chip:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}
.customer-chip-icon {
  flex: 0 0 auto;
}
.customer-chip-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-page-hero {
  padding-bottom: 56px;
}
.account-profile-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.account-avatar {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(8, 116, 90, 0.2);
}
.account-profile-content h2 {
  font-weight: 900;
  margin: 2px 0 5px;
}
.account-welcome {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
}
.account-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 15px;
  color: var(--muted);
  font-size: 0.9rem;
}
.account-contact-list span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.account-contact-list span:not(:last-child):after {
  content: "•";
  margin-right: 9px;
  color: #a6b7b1;
}
.account-profile-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}
.account-form-card {
  max-width: 920px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.account-password-card {
  max-width: 760px;
}
@media (max-width: 991px) {
  .customer-chip {
    max-width: 125px;
  }
  .account-profile-card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .account-profile-actions {
    grid-column: 1/-1;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .customer-chip {
    width: 40px;
    max-width: 40px;
    padding: 0;
    justify-content: center;
  }
  .customer-chip-name {
    display: none;
  }
  .account-profile-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }
  .account-avatar {
    margin: auto;
  }
  .account-contact-list {
    justify-content: center;
  }
  .account-contact-list span:not(:last-child):after {
    display: none;
  }
  .account-profile-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .account-form-card {
    padding: 20px;
    border-radius: 20px;
  }
}

/* =========================================================
   Hesabatk responsive design system overrides
   ========================================================= */

[hidden] {
  display: none !important;
}

body.motion-disabled *,
body.motion-disabled *::before,
body.motion-disabled *::after {
  scroll-behavior: auto !important;
  transition: none !important;
  animation: none !important;
}

body.header-solid .site-header {
  background: var(--brand-deep);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.desktop-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

.hero h1,
.page-hero h1 {
  font-size: calc(clamp(2.35rem, 4.8vw, 5.5rem) * var(--heading-scale, 1));
}

.section-title h2 {
  font-size: calc(clamp(2rem, 3.8vw, 3.5rem) * var(--heading-scale, 1));
}

.btn-primary-site,
.btn-secondary-site,
.btn-light-site,
.form-control,
.form-select,
.auth-shell,
.form-shell,
.account-shell,
.summary-card,
.cart-item,
.service-card,
.product-card,
.case-card,
.account-card,
.checkout-card {
  border-radius: var(--button-radius, 14px);
}

.service-card,
.product-card,
.case-card,
.account-card,
.checkout-card,
.form-shell,
.account-shell,
.auth-shell,
.summary-card {
  border-radius: var(--radius, 24px);
}

.form-control,
.form-select {
  width: 100%;
  min-height: 48px;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

input[type="file"].form-control {
  min-height: auto;
}

.content-body {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.content-body img,
.content-body iframe,
.content-body video,
.content-body table {
  max-width: 100%;
}

.content-body iframe,
.content-body video {
  width: 100%;
}

.content-body table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.card-actions form {
  display: flex;
  min-width: 0;
  flex: 1;
}

.card-actions form button {
  width: 100%;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-socials a {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #d7e8e2;
  font-size: 0.75rem;
}

.footer-socials a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 18px;
}

.site-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  padding: 18px;
  place-items: center;
  background: rgba(3, 25, 20, 0.68);
  backdrop-filter: blur(7px);
}

.site-popup {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 36px);
  padding: 30px;
  overflow-y: auto;
  border-radius: var(--radius, 24px);
  background: #fff;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
}

.site-popup-close {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  background: var(--soft);
  font-size: 1.35rem;
}

.cart-item-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.cart-qty-form {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cart-qty-form input {
  width: 74px;
  min-height: 38px;
  padding: 6px 8px;
  text-align: center;
}

.cart-remove-button {
  padding: 0;
  border: 0;
  color: var(--danger);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 900;
}

.auth-page .site-header,
.auth-public .site-header {
  background: rgba(3, 31, 24, 0.94);
}

.auth-page {
  min-height: calc(100vh - 1px);
}

.auth-form-panel form {
  max-width: 100%;
}

.auth-input-wrap .form-control {
  padding-left: 50px;
}

.table-responsive-site {
  width: 100%;
  overflow-x: auto;
  border-radius: 16px;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 1100px) {
  .site-header-inner {
    gap: 10px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: max(14px, calc(var(--base-font-size, 16px) - 1px));
  }

  .container {
    width: 100%;
    padding-inline: 16px;
  }

  .section {
    padding-block: 52px;
  }

  .site-header-inner {
    gap: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    min-width: 0;
  }

  .brand strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions {
    flex: 0 0 auto;
  }

  .page-hero p,
  .hero p {
    max-width: 100%;
  }

  .card-actions,
  .hero-actions {
    align-items: stretch;
  }

  .cart-item {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .cart-item > .cart-total {
    grid-column: 2;
  }

  .cart-item-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-qty-form {
    width: 100%;
  }

  .cart-qty-form input {
    flex: 1;
    width: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .site-popup {
    padding: 25px 18px 20px;
    border-radius: 20px;
  }
}

@media (max-width: 420px) {
  .container {
    padding-inline: 12px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    max-width: 110px;
  }

  .header-actions {
    gap: 5px;
  }

  .icon-action,
  .menu-toggle,
  .customer-chip {
    width: 39px;
    height: 39px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: calc(2.05rem * var(--heading-scale, 1));
  }

  .form-shell,
  .account-shell,
  .summary-card,
  .auth-form-panel {
    padding: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.cart-image-placeholder {
  display: grid;
  width: 88px;
  height: 75px;
  place-items: center;
  border-radius: 14px;
  color: var(--brand);
  background: #e7f5f0;
  font-size: 1.6rem;
  font-weight: 900;
}

@media (max-width: 767px) {
  .cart-image-placeholder {
    width: 70px;
    height: 66px;
  }
}
