/* ---- FAQ PAGE LAYOUT ---- */
.faq-layout {
  display: flex;
  gap: 2.5rem;
}

@media (min-width: 1101px) {
  .dashboard-send-summary-panel {
    position: sticky !important;
    top: 100px;
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 1100px) {
  .dashboard-send-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .dashboard-send-summary-panel {
    position: static !important;
    top: auto;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .dashboard-send-hero,
  .dashboard-send-card,
  .dashboard-send-summary-panel {
    padding: 1rem;
    border-radius: 16px;
  }

  .dashboard-send-summary-panel {
    position: static !important;
    top: auto;
    width: 100%;
  }

  .dashboard-send-steps {
    gap: 0.45rem;
  }

  .dashboard-send-steps__item {
    width: 100%;
    justify-content: flex-start;
  }

  .dashboard-send-card__head {
    flex-direction: column;
  }

  .dashboard-send-form-layout {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .send-radio-grid--carrier,
  .send-radio-grid--payment {
    grid-template-columns: 1fr;
  }

  .dashboard-send-table thead {
    display: none;
  }

  .dashboard-send-table,
  .dashboard-send-table tbody,
  .dashboard-send-table tr,
  .dashboard-send-table td {
    display: block;
    width: 100%;
  }

  .dashboard-send-table .dashboard-table__selectable-row {
    margin-bottom: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(213, 226, 244, 0.95);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(25, 62, 103, 0.06);
  }

  .dashboard-send-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0.9rem;
    border-bottom: 1px solid rgba(226, 235, 247, 0.9);
  }

  .dashboard-send-table td:last-child {
    border-bottom: none;
  }

  .dashboard-send-table td::before {
    content: attr(data-label);
    color: var(--color-text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .dashboard-send-table td:first-child {
    justify-content: flex-start;
  }

  .dashboard-send-table td:first-child::before {
    margin-right: auto;
  }

  .dashboard-send-table td:first-child input {
    margin-left: auto;
  }
}
.faq-sidebar {
  flex: 0 0 260px;
  position: sticky;
  top: 7.5rem; /* Odsazení pod headerem (cca 120px) */
  align-self: flex-start;
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 2rem 1.5rem;
  height: fit-content;
}
.faq-sidebar nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.faq-sidebar nav li {
  margin-bottom: 1rem;
}
.faq-sidebar nav a {
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  transition: color 0.2s;
  border-left: 3px solid transparent;
  padding-left: 0.7em;
}
.faq-sidebar nav a:hover,
.faq-sidebar nav a.active {
  color: var(--color-primary);
  border-left: 3px solid var(--color-primary);
}
.faq-main {
  flex: 1 1 0%;
  min-width: 0;
}
.faq-category {
  margin-bottom: 3.5rem;
}
.faq-category h2 {
  margin-bottom: 1.2rem;
  font-size: 1.45rem;
  color: var(--color-primary-dark);
}
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(25,58,130,0.06);
  overflow: hidden;
  animation: card-drop-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.faq-items > .faq-item:nth-child(2) {
  animation-delay: 0.06s;
}

.faq-items > .faq-item:nth-child(3) {
  animation-delay: 0.12s;
}

.faq-items > .faq-item:nth-child(4) {
  animation-delay: 0.18s;
}

.faq-items > .faq-item:nth-child(5) {
  animation-delay: 0.24s;
}

.faq-items > .faq-item:nth-child(6) {
  animation-delay: 0.3s;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  font-size: 1.13rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 1.1rem 1.5rem 1.1rem 1.2rem;
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
}
.faq-question::after {
  content: '\25BC';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s;
  font-size: 1.1em;
  color: var(--color-primary-dark);
}
.faq-question.open::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--color-surface-alt);
  color: var(--color-text-muted);
  font-size: 1.04rem;
  padding: 0 1.5rem;
  transition: max-height 0.3s cubic-bezier(.4,0,.2,1);
}
.faq-question.open + .faq-answer {
  padding-top: 0.75rem;
  padding-bottom: 1.25rem;
}
/* Opened answer (inline style sets max-height) */
.faq-answer[style*="max-height"] {
  border-top: 1px solid var(--color-border);
}

@media (max-width: 900px) {
  h2.home-calculator-heading {
    white-space: normal;
  }

  .faq-layout {
    flex-direction: column;
    gap: 1.5rem;
  }
  .faq-sidebar {
    display: none;
  }
}
@media (max-width: 600px) {
  .faq-question {
    font-size: 1rem;
    padding: 1rem 1rem 1rem 0.8rem;
  }
  .faq-sidebar {
    padding: 0.7rem 0.5rem;
  }
}
:root {
  --color-primary: #1775ad;
  --color-primary-dark: #105d8a;
  --color-accent: #11a17f;
  --color-primary-soft: #e1eff7;
  --color-text: #162033;
  --color-text-muted: #62708a;
  --color-border: #dbe5f4;
  --color-surface: #ffffff;
  --color-surface-alt: #f7faff;
  --color-bg: #f3f7fd;
  --shadow-soft: 0 20px 60px rgba(25, 58, 130, 0.08);
  --shadow-card: 0 18px 40px rgba(18, 39, 89, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1300px;
}
.nav-services-column--featured {
  padding-right: 2rem;
  border-right: 1px solid rgba(219, 229, 244, 0.9);
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--color-text);
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fd 100%);
  line-height: 1.6;
  padding-top: 86px;
  text-rendering: optimizeLegibility;
}

body.public-page {
  padding-top: 86px;
}

body.admin-page {
  padding-top: 40px;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

/* First content section starts closer to fixed header on desktop */
.page-main > .section:first-child,
.page-main > .content-page:first-child .section:first-child {
  padding-top: 4.2rem;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 3rem;
}

.page-main > .section:first-child .section-heading,
.page-main > .content-page:first-child .section:first-child .section-heading {
  max-width: 1040px;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-heading__link {
  color: inherit;
  text-decoration: none;
}

.section-heading__link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-heading h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4.3vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.home-calculator-heading {
  white-space: nowrap;
}

.section-heading p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

.eyebrow {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 229, 244, 0.9);
  box-shadow: 0 8px 22px rgba(20, 53, 121, 0.06);
}

.page-main {
  min-height: calc(100vh - 86px);
  position: relative;
}

.page-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 22% 8%, rgba(23, 117, 173, 0.1), transparent 44%),
                    radial-gradient(circle at 88% 22%, rgba(17, 161, 127, 0.08), transparent 36%);
  pointer-events: none;
}

.page-main > * {
  position: relative;
  z-index: 1;
}

.flashes {
  padding-top: 0;
}

.flashes:not(:empty) {
  padding-top: 1rem;
}

.flashes:empty {
  display: none;
}

.flash {
  margin-bottom: 0.7rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
}

.flash.success {
  background: #eefaf2;
  border-color: #bbe6c8;
  color: #246a3e;
}

.flash.warning {
  background: #fff8e9;
  border-color: #f3ddb0;
  color: #7d5f1a;
}

.flash.error {
  background: #fff0ef;
  border-color: #f2c4c0;
  color: #9a2f26;
}

.content-page {
  padding-top: 0;
}

.content-page .section {
  padding-top: 4.2rem;
  padding-bottom: 3.6rem;
}

.content-card {
  padding: 1.7rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 229, 244, 0.9);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.content-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(18, 39, 89, 0.12);
}

.content-card--icon {
  padding-top: 1.5rem;
}

.content-card__header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.content-card__header h3 {
  margin: 0;
}

.content-card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 0;
  flex: 0 0 80px;
}

.content-card__icon {
  display: block;
  width: auto;
  height: auto;
  max-width: 48px;
  max-height: 48px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.content-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.55rem;
  color: var(--color-text-muted);
}

.content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.33em;
  width: 1rem;
  height: 1rem;
  background: url("../pictures/li.png") center / contain no-repeat;
}

.content-card__note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(237, 244, 255, 0.88) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.content-card__note svg {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  color: var(--color-primary);
}

.content-card__note strong {
  display: block;
  margin: 0;
  color: var(--color-primary);
  font-size: 0.98rem;
  line-height: 1.45;
}

.de-shops {
  padding-top: 3.4rem;
}

.de-shops__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  margin-bottom: 1.7rem;
}

.de-shops__header-icon,
.de-shops__cta-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  background: linear-gradient(180deg, rgba(237, 244, 255, 0.88) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.de-shops__header-icon svg,
.de-shops__cta-icon svg {
  width: 28px;
  height: 28px;
}

.de-shops__header h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.55rem, 2.55vw, 2.2rem);
  line-height: 1.18;
}

.de-shops__header p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.06rem;
}

.de-shops__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.78rem;
}

.de-shop-card {
  border-radius: 16px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 229, 244, 0.92);
  min-height: 174px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 5px rgba(25, 58, 130, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.de-shop-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(25, 58, 130, 0.08);
  border-color: rgba(37, 99, 235, 0.34);
}

.de-shop-card img {
  width: auto;
  max-width: 100%;
  height: 52px;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto 0.8rem;
}

.de-shop-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.03rem;
}

.de-shop-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.de-shops__cta {
  margin-top: 0.92rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 229, 244, 0.92);
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.de-shops__cta-note {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.de-shops__cta-note strong {
  display: block;
  font-size: 1.18rem;
  margin-bottom: 0.15rem;
}

.de-shops__cta-note p {
  margin: 0;
  color: var(--color-text-muted);
}

.practical-info .section-heading {
  margin-bottom: 1.45rem;
}

.practical-info__card {
  position: relative;
  overflow: hidden;
  padding: 1.9rem;
}

.practical-info__card--left {
  background: linear-gradient(180deg, rgba(237, 244, 255, 0.5) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.practical-info__card--right {
  background: linear-gradient(180deg, rgba(255, 248, 245, 0.5) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.practical-info__card h3 {
  margin: 0;
  font-size: 1.22rem;
  color: #17305d;
}

.practical-info__list {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.practical-info__item {
  position: relative;
  min-height: 44px;
  padding: 0.1rem 0 0.1rem 3.45rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.practical-info__item a {
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 99, 235, 0.3);
  transition: all 0.2s ease;
}

.practical-info__item a:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.practical-info__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background-color: #edf4ff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.practical-info__item--calendar::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3C/svg%3E");
}

.practical-info__item--warehouse::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V7l7-4 7 4v14'/%3E%3Cpath d='M9 21v-6h6v6'/%3E%3C/svg%3E");
}

.practical-info__item--delivery::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='3' width='15' height='13' rx='1'/%3E%3Cpath d='M16 8h4l3 4v4h-7V8z'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E");
}

.practical-info__item--weight::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 7h12l1 13H5L6 7z'/%3E%3Cpath d='M9 7a3 3 0 1 1 6 0'/%3E%3Cpath d='M12 11v4'/%3E%3Cpath d='M10 13h4'/%3E%3C/svg%3E");
}

.practical-info__item--size::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7h18v10H3z'/%3E%3Cpath d='M7 3v4'/%3E%3Cpath d='M17 3v4'/%3E%3Cpath d='M7 17v4'/%3E%3Cpath d='M17 17v4'/%3E%3C/svg%3E");
}

.practical-info__item--shield::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 5-3.5 7.8-7 9-3.5-1.2-7-4-7-9V6l7-3z'/%3E%3Cpath d='m9.5 12 1.8 1.8 3.2-3.6'/%3E%3C/svg%3E");
}

.practical-info__item--business::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2'/%3E%3Cpath d='M3 12h18'/%3E%3C/svg%3E");
}

.practical-info__item--bundle::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2 4 6v6c0 5 3.5 8 8 10 4.5-2 8-5 8-10V6l-8-4z' opacity='.35'/%3E%3Cpath d='M8 9h8'/%3E%3Cpath d='M8 13h8'/%3E%3Cpath d='M8 17h5'/%3E%3C/svg%3E");
}

.practical-info__item--magnify::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
}

.practical-info__item--return::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 4v6h6'/%3E%3Cpath d='M3.56 15.81A8 8 0 0 0 20 12'/%3E%3C/svg%3E");
}

.practical-info__item--star::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 10.26 23.77 11.87 17.88 17.92 19.69 26.63 12 22.77 4.31 26.63 6.12 17.92 0.23 11.87 8.91 10.26'/%3E%3C/svg%3E");
}

.practical-info__item--connect::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 15H6a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v4M14 4h7a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-7a1 1 0 0 1-1-1v-4'/%3E%3C/svg%3E");
}

.practical-info__item--link::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3.9-3.9a5 5 0 0 0-7.07-7.07l-1.72 1.71'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3.9 3.9a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/svg%3E");
}

.practical-info__item--price::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 8v8'/%3E%3Cpath d='M9 11h6'/%3E%3C/svg%3E");
}

@media (max-width: 1100px) {
  .de-shops__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .de-shop-card {
    min-height: 168px;
  }

  .de-shops__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .de-shops__cta .btn {
    align-self: flex-start;
  }

  .practical-info__item {
    padding: 0.15rem 0 0.15rem 3.2rem;
    min-height: 42px;
  }

  .practical-info__item::before {
    width: 38px;
    height: 38px;
    background-size: 16px 16px;
  }
}

@media (max-width: 760px) {
  .de-shops {
    padding-top: 2.8rem;
  }

  .de-shops__header {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-bottom: 1.15rem;
  }

  .de-shops__header-icon {
    width: 50px;
    height: 50px;
  }

  .de-shops__header-icon svg {
    width: 24px;
    height: 24px;
  }

  .de-shops__header p {
    font-size: 1rem;
  }

  .de-shops__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .de-shop-card {
    min-height: 154px;
    padding: 0.85rem;
  }

  .de-shop-card img {
    height: 44px;
    margin-bottom: 0.55rem;
  }

  .de-shop-card h3 {
    font-size: 0.97rem;
  }

  .de-shop-card p {
    font-size: 0.9rem;
  }

  .de-shops__cta {
    margin-top: 0.75rem;
    padding: 1rem;
  }

  .de-shops__cta-note {
    align-items: flex-start;
  }

  .de-shops__cta-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .de-shops__cta-icon svg {
    width: 22px;
    height: 22px;
  }

  .de-shops__cta-note strong {
    font-size: 1.03rem;
  }

  .de-shops__cta-note p {
    font-size: 0.93rem;
  }

  .de-shops__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .practical-info__card {
    padding: 1.6rem;
  }

  .practical-info__item {
    padding: 0.2rem 0 0.2rem 3.1rem;
    min-height: 40px;
    font-size: 0.95rem;
  }

  .practical-info__item::before {
    width: 36px;
    height: 36px;
    background-size: 15px 15px;
  }
}

/* ---- FAQ ACCORDION ---- */
.faq .section-heading {
  margin-bottom: 2.2rem;
}

.faq__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 229, 244, 0.92);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(25, 58, 130, 0.05);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

 .faq__items:hover {
   box-shadow: 0 4px 16px rgba(25, 58, 130, 0.1);
   border-color: rgba(37, 99, 235, 0.3);
 }

 .faq__item {
   background: transparent;
   border: none;
   border-bottom: 1px solid rgba(219, 229, 244, 0.5);
   overflow: visible;
 }

 .faq__item:last-child {
   border-bottom: none;
 }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.35rem 1.6rem;
  background: transparent;
  border: none;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: left;
  font-family: inherit;
}

.faq__question:hover {
  background: rgba(237, 244, 255, 0.25);
}

.faq__question span {
  flex: 1;
}

.faq__icon {
  width: 24px;
  height: 24px;
  margin-left: 1rem;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  padding: 0 1.6rem;
}

.faq__answer-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.faq__item.open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__item.open .faq__answer-inner {
  padding: 1rem 0 1.35rem;
  opacity: 1;
}

.faq__answer p {
  margin: 0;
}

.faq__answer p + p {
  margin-top: 0.8rem;
}

@media (max-width: 760px) {
  .faq__question {
    padding: 1.15rem 1.2rem;
    font-size: 1rem;
  }

  .faq__answer {
    padding: 0 1.2rem;
    font-size: 0.95rem;
  }

  .faq__item.open .faq__answer {
    padding-top: 0.85rem;
    padding-bottom: 1.15rem;
  }

  .faq__icon {
    width: 20px;
    height: 20px;
    margin-left: 0.75rem;
  }
}


.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 0.7rem 0.6rem;
  border-bottom: 1px solid rgba(219, 229, 244, 0.9);
}

.data-table th {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.auth-shell {
  max-width: 760px;
}

.auth-card {
  padding: 1.6rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 229, 244, 0.92);
  box-shadow: var(--shadow-soft);
}

.auth-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  align-items: stretch;
}

.auth-links {
  margin-top: 1.1rem;
  color: var(--color-text-muted);
}

.auth-links a {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.register-shell {
  max-width: 1180px;
}

.register-shell__heading {
  max-width: 760px;
}

.register-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.register-form-card {
  padding: 1.9rem;
}

.register-form {
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.register-form .field {
  min-width: 0;
}

.register-form__full,
.register-form__actions {
  grid-column: 1 / -1;
}

.register-form__half {
  grid-column: span 1;
}

.register-form__section {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  margin: 0;
  padding: 1.1rem 1.1rem 1.2rem;
  border: 1px solid rgba(219, 229, 244, 0.95);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 251, 255, 0.88) 100%);
}

.register-form__section:last-of-type {
  margin-bottom: 0.2rem;
}

.register-form__legend {
  grid-column: 1 / -1;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 0.2rem;
  padding: 0;
  letter-spacing: 0.01em;
}

.register-form__actions {
  margin-top: 0.25rem;
}

.register-form__actions .btn {
  width: 100%;
}

.register-form .contact-recaptcha {
  grid-column: 1 / -1;
  display: inline-flex;
  margin-top: 0.1rem;
}

.register-links {
  margin-top: 1.2rem;
  text-align: center;
}

.register-benefits h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.register-benefits .content-list {
  margin-bottom: 1.2rem;
}

.register-benefits__note {
  margin: 0;
  color: var(--color-text-muted);
  padding-top: 0.8rem;
  border-top: 1px dashed rgba(23, 117, 173, 0.25);
}

@media (max-width: 980px) {
  .register-layout {
    grid-template-columns: 1fr;
  }

  .register-form-card {
    padding: 1.35rem;
  }

  .register-form__section {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .register-form__half,
  .register-form__full {
    grid-column: 1 / -1;
  }
}

.form-card {
  max-width: 760px;
}

.form-stack {
  display: grid;
  gap: 0.85rem;
}

.faq-page {
  padding-top: 1.4rem;
}
.faq-page .section-heading {
  margin-bottom: 1.35rem;
}

.faq-categories {
  display: grid;
  gap: 1.4rem;
}

.faq-page .faq-category {
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 229, 244, 0.92);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.8rem;
}

.faq-page .faq-category h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
}

.faq-page .faq-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.faq-page .faq-item {
  background: rgba(247, 250, 255, 0.9);
  border: 1px solid rgba(219, 229, 244, 0.92);
  border-radius: 10px;
  padding: 0.4rem 0;
}

.faq-page .faq-question {
  padding: 0.9rem 1.2rem 0.9rem 1rem;
}

.faq-page .faq-answer {
  padding: 0 1.2rem;
}

.faq-page .faq-answer p,
.faq-page .faq-answer ul,
.faq-page .faq-answer li {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.faq-page .faq-answer ul {
  margin: 0.45rem 0 0;
  padding-left: 1.2rem;
}

.faq-page .faq-answer li + li {
  margin-top: 0.2rem;
}

.faq-page .faq-question.open + .faq-answer {
  padding-top: 0.55rem;
  padding-bottom: 0.95rem;
}

.faq-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  line-height: 1.35;
}

.faq-item p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.faq-item a {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: 252px;
  height: auto;
}

.brand--footer .brand-logo {
  width: 236px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.main-nav a {
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.main-nav > a,
.nav-services-toggle {
  padding: 0.4rem 0.1rem;
  position: relative;
}

.main-nav > a::after,
.nav-services-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  transition: width 0.2s ease;
}

.nav-services-toggle::after {
  bottom: -0.42rem;
}

.main-nav > a:hover::after,
.nav-services-toggle:hover::after,
.main-nav > a.nav--active::after,
.nav-services-toggle.nav--active::after {
  width: 100%;
}

.main-nav a.nav--active,
.nav-services-toggle.nav--active {
  color: var(--color-primary);
}

.main-nav a:hover,
.mobile-nav a:hover,
.footer-grid a:hover {
  color: var(--color-primary);
}

.nav-item {
  position: relative;
}

.nav-item--services {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item--services::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.nav-services-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  color: var(--color-text);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.1rem;
  transition: color 0.2s ease;
  font-size: 1.05rem;
}

.nav-services-toggle:hover {
  color: var(--color-primary);
}

.nav-services-toggle[aria-expanded="true"] .nav-services-icon {
  transform: rotate(180deg);
}

.nav-services-icon {
  transition: transform 0.2s ease;
}

.nav-services-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -180px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  min-width: 840px;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(219, 229, 244, 0.9);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(18, 39, 89, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  overflow: hidden;
  margin-top: 0;
  z-index: 1000;
}

.nav-item--services:hover .nav-services-dropdown,
.nav-services-dropdown:has(.nav-services-list:hover) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-services-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-services-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-services-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.nav-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.nav-services-list li a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s ease;
  display: block;
}

.nav-services-column--featured .nav-services-title {
  color: var(--color-primary-dark);
  opacity: 0.92;
}

.nav-services-column--featured .nav-services-list {
}

.nav-services-list li a:hover {
  color: var(--color-primary);
}

/* ── NSD rich dropdown cards ──────────────────────────────── */
.nsd-col {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.4rem;
}

.nsd-col--main {
  border-right: 1px solid rgba(219, 229, 244, 0.9);
  background: #fff;
}

.nsd-col--supp {
  background: rgba(248, 251, 255, 0.7);
}

.nsd-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.65rem;
}

.nsd-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 0.65rem;
}

.nsd-card {
  display: flex;
  flex-direction: column;
  padding: 0.8rem 0.85rem 0.7rem;
  border-radius: 16px;
  border: 1px solid rgba(219, 229, 244, 0.25);
  background: rgba(248, 251, 255, 0.9);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.18s, box-shadow 0.2s, background 0.2s, transform 0.2s;
}

.nsd-card:hover {
  border-color: rgba(23, 117, 173, 0.35);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(23, 117, 173, 0.16);
}

.nsd-card--de {
  border-color: rgba(38, 107, 214, 0.18);
  background: linear-gradient(180deg, rgba(38, 107, 214, 0.09), rgba(248, 251, 255, 0.95));
  box-shadow: 0 4px 12px rgba(38, 107, 214, 0.07);
}

.nsd-card--pl {
  border-color: rgba(34, 164, 99, 0.18);
  background: linear-gradient(180deg, rgba(34, 164, 99, 0.07), rgba(248, 251, 255, 0.92));
}

.nsd-card--box {
  border-color: rgba(232, 160, 32, 0.2);
  background: linear-gradient(180deg, rgba(232, 160, 32, 0.07), rgba(248, 251, 255, 0.92));
}

.nsd-card--de:hover {
  border-color: rgba(38, 107, 214, 0.3);
  box-shadow: 0 8px 20px rgba(38, 107, 214, 0.14);
}

.nsd-card--pl:hover {
  border-color: rgba(34, 164, 99, 0.3);
  box-shadow: 0 8px 20px rgba(34, 164, 99, 0.14);
}

.nsd-card--box:hover {
  border-color: rgba(232, 160, 32, 0.32);
  box-shadow: 0 8px 20px rgba(232, 160, 32, 0.14);
}

.nsd-card__img {
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0.45rem;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 229, 244, 0.3);
  box-shadow: none;
}

.nsd-card__img img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 9px;
}

.nsd-card strong {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.nsd-card p {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.38;
  flex: 1;
}

.nsd-card__arrow {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.nsd-card__arrow--de { color: var(--color-primary); }
.nsd-card__arrow--pl { color: #22a463; }
.nsd-card__arrow--box { color: #e8a020; }

.nsd-footnote {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.74rem;
  color: var(--color-text-muted);
  opacity: 0.8;
}

.nsd-supp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.nsd-supp li a {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.36rem 0.3rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.3;
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nsd-supp li a:hover {
  color: var(--color-primary);
  background: rgba(23, 117, 173, 0.06);
}

.nsd-supp__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(23, 117, 173, 0.045);
  color: rgba(23, 117, 173, 0.62);
  flex-shrink: 0;
}

.nsd-supp__icon svg {
  width: 12px;
  height: 12px;
}

.nsd-help {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.6rem;
  border-radius: 14px;
  background: rgba(23, 117, 173, 0.04);
  border: 1px solid rgba(23, 117, 173, 0.1);
  color: var(--color-text);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  margin-top: auto;
}

.nsd-help:hover {
  background: rgba(23, 117, 173, 0.08);
  border-color: rgba(23, 117, 173, 0.22);
}

.nsd-help__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(23, 117, 173, 0.08);
  color: var(--color-primary);
  flex-shrink: 0;
}

.nsd-help__text {
  display: flex;
  flex-direction: column;
  gap: 0.04rem;
}

.nsd-help__text strong {
  font-size: 0.8rem;
  font-weight: 700;
  display: block;
}

.nsd-help__text > span {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.nsd-help__arrow {
  color: var(--color-primary-dark);
  flex-shrink: 0;
  opacity: 0.55;
}

/* ── NSD mini service cards (2×2 grid in supp column) ─────── */
.nsd-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.nsd-mini-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(219, 229, 244, 0.35);
  background: #fff;
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.18s, box-shadow 0.2s, transform 0.18s;
}

.nsd-mini-card:hover {
  box-shadow: 0 6px 18px rgba(23, 117, 173, 0.1);
  transform: translateY(-2px);
}

/* per-service color tints */
.nsd-mini-card:nth-child(1) {
  background: rgba(23, 117, 173, 0.04);
  border-color: rgba(23, 117, 173, 0.14);
}
.nsd-mini-card:nth-child(1) .nsd-mini-card__icon {
  background: rgba(23, 117, 173, 0.1);
  color: var(--color-primary);
}
.nsd-mini-card:nth-child(1):hover { border-color: rgba(23, 117, 173, 0.28); }

.nsd-mini-card:nth-child(2) {
  background: rgba(34, 164, 99, 0.04);
  border-color: rgba(34, 164, 99, 0.14);
}
.nsd-mini-card:nth-child(2) .nsd-mini-card__icon {
  background: rgba(34, 164, 99, 0.1);
  color: #22a463;
}
.nsd-mini-card:nth-child(2):hover { border-color: rgba(34, 164, 99, 0.28); }

.nsd-mini-card:nth-child(3) {
  background: rgba(232, 160, 32, 0.04);
  border-color: rgba(232, 160, 32, 0.16);
}
.nsd-mini-card:nth-child(3) .nsd-mini-card__icon {
  background: rgba(232, 160, 32, 0.1);
  color: #b87b00;
}
.nsd-mini-card:nth-child(3):hover { border-color: rgba(232, 160, 32, 0.3); }

.nsd-mini-card:nth-child(4) {
  background: rgba(14, 165, 185, 0.04);
  border-color: rgba(14, 165, 185, 0.15);
}
.nsd-mini-card:nth-child(4) .nsd-mini-card__icon {
  background: rgba(14, 165, 185, 0.1);
  color: #0891a8;
}
.nsd-mini-card:nth-child(4):hover { border-color: rgba(14, 165, 185, 0.28); }

.nsd-mini-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(23, 117, 173, 0.08);
  color: var(--color-primary);
  flex-shrink: 0;
}

.nsd-mini-card__icon svg {
  width: 15px;
  height: 15px;
}

.nsd-mini-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.nsd-mini-card__name {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

.nsd-mini-card__sub {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-account-link {
  position: relative;
  border-color: rgba(23, 117, 173, 0.3);
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  color: #103f6f;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(23, 117, 173, 0.12);
  padding-left: 1.1rem;
}

.header-account-link::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 0.45rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231775ad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 1 0-16 0'/%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  flex: 0 0 14px;
}

.header-account-link:hover {
  border-color: rgba(23, 117, 173, 0.45);
  background: linear-gradient(180deg, #ffffff 0%, #e8f2ff 100%);
  box-shadow: 0 12px 24px rgba(23, 117, 173, 0.18);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.4rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

button {
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.field select:focus-visible,
.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid rgba(23, 117, 173, 0.45);
  outline-offset: 2px;
}

.btn--lg {
  min-height: 58px;
  padding: 0 1.8rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(23, 117, 173, 0.22);
}

.btn--primary:hover {
  box-shadow: 0 20px 34px rgba(23, 117, 173, 0.28);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn--white {
  background: #fff;
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-card);
}

.btn--chip {
  min-height: 28px;
  padding: 0.2rem 0.58rem;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.btn--link-shipment {
  background: linear-gradient(135deg, #2f9e57 0%, #1f7e43 100%);
  color: #fff;
  box-shadow: none;
  gap: 0.32rem;
}

.btn--link-shipment:hover {
  box-shadow: none;
}

.btn--link-shipment::before {
  content: "";
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='3' width='15' height='13' rx='2'/%3E%3Cpath d='M16 8h3l4 4v4h-7z'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E");
}

.btn--link-invoice {
  background: linear-gradient(135deg, #b7791f 0%, #8a5a17 100%);
  color: #fff;
  box-shadow: none;
  gap: 0.32rem;
}

.btn--link-invoice:hover {
  box-shadow: none;
}

.btn--link-invoice::before {
  content: "";
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6'/%3E%3Cpath d='M8 13h8'/%3E%3Cpath d='M8 17h6'/%3E%3C/svg%3E");
}

.btn--link-parcel {
  background: linear-gradient(135deg, #1f8acf 0%, #0f6da8 100%);
  color: #fff;
  box-shadow: none;
  gap: 0.32rem;
}

.btn--link-parcel:hover {
  box-shadow: none;
}

.btn--link-parcel::before {
  content: "";
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7l9-4 9 4-9 4-9-4z'/%3E%3Cpath d='M3 7v10l9 4 9-4V7'/%3E%3Cpath d='M12 11v10'/%3E%3C/svg%3E");
}

.btn--info {
  background: linear-gradient(135deg, #1f8acf 0%, #0f6da8 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(17, 108, 165, 0.28);
}

.btn--info:hover {
  box-shadow: 0 10px 20px rgba(17, 108, 165, 0.34);
}

.btn--success {
  background: linear-gradient(135deg, #2f9e57 0%, #1f7e43 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(31, 126, 67, 0.26);
}

.btn--success:hover {
  box-shadow: 0 10px 20px rgba(31, 126, 67, 0.32);
}

.hero {
  padding: 3rem 0 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  min-height: 640px;
  position: relative;
}

.hero-content {
  display: grid;
  gap: 1.35rem;
  align-content: start;
  transform: translateY(0px);
  position: relative;
  z-index: 6;
  padding-bottom: 10.2rem;
}

.hero-content h1 {
  margin: 0.9rem 0 0;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title-accent {
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  max-width: 600px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.125rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.35rem;
}

.hero-stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 0;
}

.hero-stats .stat {
  position: relative;
  min-height: 86px;
  padding: 1rem 1.25rem 0rem 4rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(184, 207, 232, 0.95);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(19, 52, 107, 0.12);
}

.hero-stats .stat strong {
  position: absolute;
  top: 1.6rem;
  left: 1.4rem;
  display: block;
  margin: 0;
  line-height: 1;
}

.hero-step-badge {
  width: 26px;
  height: 26px;
  padding: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(23, 117, 173, 0.16);
  box-shadow: none;
  color: var(--color-primary-dark);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.hero-stats .stat span {
  display: block;
  color: #445a79;
  font-size: 0.96rem;
  line-height: 1.5;
  text-wrap: balance;
}

.hero-stats .stat:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.8rem;
  width: 0.62rem;
  border-top: 2px dashed rgba(23, 117, 173, 0.3);
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-stats .stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-top: 2px solid rgba(23, 117, 173, 0.34);
  border-right: 2px solid rgba(23, 117, 173, 0.34);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.hero-visual {
  position: relative;
  z-index: 2;
  margin-left: -210px;
}

.hero-illustration {
  position: relative;
  min-height: auto;
  padding: 0;
  display: block;
  border-radius: 0;
  background: transparent;
  border: none;
  overflow: visible;
  box-shadow: none;
}

.hero-map-image {
  display: block;
  width: 130%;
  max-width: none;
  height: auto;
  object-fit: contain;
  margin-left: -20%;
  border-radius: 0;
  animation: hero-float 6s ease-in-out infinite;
  transform-origin: 50% 50%;
}

@keyframes hero-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-map-image {
    animation: none;
  }
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 240px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(219, 229, 244, 0.9);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  z-index: 2;
}

.floating-card .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--color-primary-soft);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.floating-card strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.98rem;
}

.floating-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.floating-card--top {
  top: 28px;
  right: 26px;
}

.floating-card--bottom {
  left: 20px;
  bottom: 18px;
}

.quick-strip {
  padding-bottom: 2rem;
}

.quick-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 28px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(23, 117, 173, 0.2);
}

.quick-strip__inner strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.quick-strip__inner p {
  margin: 0;
  opacity: 0.9;
}


.quick-strip--mini {
  padding-bottom: 1.4rem;
}

.quick-strip__inner--mini {
  padding: 1rem 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  background: linear-gradient(135deg, #1e6a95 0%, #2a7fae 100%);
}

.quick-strip__mini-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
}

.quick-strip__mini-index {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.28);
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}

.forwarding-page {
  padding-bottom: 1.5rem;
}

/* Page intro banner � DE/PL forwarding pages */
.page-intro {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 8rem;
  margin-bottom: 3em;
  background: linear-gradient(135deg, var(--color-surface-alt) 0%, var(--color-primary-soft) 100%);
  border-bottom: 1px solid var(--color-border);
}

.page-intro__content {
  position: relative;
  z-index: 2;
  max-width: 711px;
  display: grid;
  gap: 1rem;
}

.page-intro__content h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin: 0.4rem 0 0;
}

.page-intro__accent {
  color: var(--color-primary);
}

.page-intro__lead {
  font-size: 1.1rem;
  line-height: 1.72;
  color: var(--color-text-muted);
  max-width: 54ch;
  margin: 0;
}

.page-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.page-intro__visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 44%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.page-intro__visual img {
  height: 115%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: right center;
  opacity: 0.35;
  filter: drop-shadow(0 8px 40px rgba(23, 117, 173, 0.1));
}

.forwarding-page--de .page-intro__visual,
.forwarding-page--pl .page-intro__visual,
.forwarding-page--box .page-intro__visual,
.forwarding-page--retour .page-intro__visual {
  left: 50%;
  right: auto;
  transform: translateX(-44%);
  justify-content: center;
  opacity: 1;
}

.forwarding-page--de .page-intro__visual img,
.forwarding-page--pl .page-intro__visual img,
.forwarding-page--box .page-intro__visual img,
.forwarding-page--retour .page-intro__visual img {
  object-position: center center;
  opacity: 0.8;
}

.forwarding-page .quick-strip {
  padding-top: 0;
}

.retour-banner {
  padding-top: 0;
  padding-bottom: 0;
}

.retour-banner__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  background: #e1eff7;
  border-radius: 16px;
  padding: 2rem 2.5rem;
}

.retour-banner__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
}

.retour-banner__visual img {
  max-width: 100%;
  height: auto;
  display: block;
  max-width: 220px;
}

.retour-banner__content h3 {
  margin: 0 0 0.8rem;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--color-dark);
}

.retour-banner__content p {
  margin: 0 0 1.2rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.retour-banner__content .btn {
  display: inline-block;
}

.retour-banner--inspection .retour-banner__visual img {
  max-width: 250px;
}

.section--compact {
  padding-top: 2.6rem;
  padding-bottom: 2.6rem;
}

@media (max-width: 960px) {
  .page-intro__visual {
    width: 55%;
    opacity: 0.1;
  }
}

@media (max-width: 760px) {
  .page-intro {
    padding: 2.5rem 0 2.5rem;
  }

  .page-intro__visual {
    display: none;
  }

  .page-intro__content h1 {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
  }

  .section--compact {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.calculator-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.5rem;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(219, 229, 244, 0.9);
  box-shadow: var(--shadow-soft);
}

.calculator-card .calculator-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calculator-card .calculator-form > div:last-child {
  grid-column: 1 / -1;
}

.calculator-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field label {
  font-weight: 700;
  font-size: 0.95rem;
}

.field select {
  width: 100%;
  min-height: 56px;
  padding: 0 1rem;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background: #fff;
  font: inherit;
  color: var(--color-text);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input {
  width: 100%;
  min-height: 56px;
  padding: 0 1rem;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background: #fff;
  font: inherit;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  width: 100%;
  min-height: 160px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background: #fff;
  font: inherit;
  color: var(--color-text);
  resize: vertical;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field select:focus,
.field input:focus,
.field textarea:focus {
  border-color: rgba(23, 117, 173, 0.6);
  box-shadow: 0 0 0 4px rgba(23, 117, 173, 0.12);
}

.calculator-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.75rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #f5f9ff 0%, #edf4ff 100%);
}

.calculator-result span {
  color: var(--color-text-muted);
  font-weight: 600;
}

.calculator-result strong {
  margin: 0.3rem 0 0.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--color-primary-dark);
  letter-spacing: -0.05em;
}

.calculator-result p {
  margin: 0;
  color: var(--color-text-muted);
}

.forwarding-calculator-page__heading {
  max-width: 760px;
}

.forwarding-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: stretch;
  padding: 1.35rem;
  border: 1px solid rgba(219, 229, 244, 0.92);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 255, 0.95));
  box-shadow: 0 24px 50px rgba(17, 42, 88, 0.1);
}

.forwarding-calculator__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 1.9rem;
  border: 1px solid rgba(223, 233, 246, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  box-shadow: none;
  animation: card-drop-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.forwarding-calculator__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.forwarding-calculator__panel > * {
  position: relative;
  z-index: 1;
}

.forwarding-calculator__panel--summary {
  animation-delay: 0.1s;
  border-color: rgba(23, 117, 173, 0.3);
  background:
    radial-gradient(circle at 92% 10%, rgba(23, 117, 173, 0.2) 0%, rgba(23, 117, 173, 0) 46%),
    linear-gradient(180deg, rgba(237, 246, 255, 0.98), rgba(226, 240, 255, 0.98));
  box-shadow: 0 16px 32px rgba(17, 73, 129, 0.14);
}

.forwarding-calculator__panel-header,
.forwarding-calculator__summary-header {
  margin-bottom: 1.5rem;
}

.forwarding-calculator__summary-header {
  display: grid;
  gap: 0.5rem;
}

.forwarding-calculator__panel-header h2,
.forwarding-calculator__summary-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.forwarding-calculator__panel-header p,
.forwarding-calculator__summary-header p,
.forwarding-calculator__note,
.forwarding-calculator__summary-note,
.forwarding-calculator__empty-state {
  margin: 0;
  color: var(--color-text-muted);
}

.forwarding-calculator__form,
.forwarding-calculator__field-grid,
.forwarding-calculator__package-meta,
.forwarding-calculator__receipt,
.forwarding-calculator__receipt-section,
.forwarding-calculator__package-summary-list,
.forwarding-calculator__packages-list {
  display: grid;
}

.forwarding-calculator__form,
.forwarding-calculator__field-grid {
  gap: 0.95rem;
}

.forwarding-calculator__step {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(209, 223, 242, 0.88);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 255, 0.95));
}

.forwarding-calculator__step-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.forwarding-calculator__step-head h3 {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.forwarding-calculator__step-index {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(23, 117, 173, 0.14);
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.forwarding-calculator__field label {
  margin-bottom: 0.1rem;
}

.forwarding-calculator__field select,
.forwarding-calculator__package-weight {
  width: 100%;
  padding: 0 1rem;
  min-height: 44px;
  border: 1px solid rgba(219, 229, 244, 0.92);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  font: inherit;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-text-muted) 50%),
    linear-gradient(135deg, var(--color-text-muted) 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 14px) calc(50% - 3px),
    calc(100% - 8px) calc(50% - 3px),
    100% 0;
  background-size: 6px 6px, 6px 6px, 2.5em 100%;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}

.forwarding-calculator__warehouse-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 0.78rem;
}

.forwarding-calculator__warehouse-option {
  display: block;
  cursor: pointer;
}

.forwarding-calculator__warehouse-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.forwarding-calculator__warehouse-option-content {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 54px;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(219, 229, 244, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  font-weight: 700;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.forwarding-calculator__warehouse-option:hover .forwarding-calculator__warehouse-option-content {
  transform: translateY(-1px);
  border-color: rgba(145, 177, 213, 0.86);
}

.forwarding-calculator__warehouse-option-content img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.forwarding-calculator__warehouse-option-content--box {
  justify-content: flex-start;
}

.forwarding-calculator__warehouse-option-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: url('/znemecka/znemecka-new/www/assets/pictures/ico-parcelbox.png') center / contain no-repeat;
}

.forwarding-calculator__warehouse-option input:checked + .forwarding-calculator__warehouse-option-content {
  border-color: rgba(23, 117, 173, 0.52);
  box-shadow: 0 8px 18px rgba(23, 117, 173, 0.16);
  background: linear-gradient(180deg, rgba(218, 237, 255, 0.98), rgba(234, 245, 255, 0.98));
  color: var(--color-primary-dark);
  animation: forwarding-choice-pop 0.24s ease;
}

.forwarding-calculator__warehouse-option input:focus-visible + .forwarding-calculator__warehouse-option-content {
  border-color: rgba(23, 117, 173, 0.65);
  box-shadow: 0 0 0 4px rgba(23, 117, 173, 0.12);
}

.forwarding-calculator__package-weight:focus {
  border-color: rgba(23, 117, 173, 0.6);
  box-shadow: 0 0 0 4px rgba(23, 117, 173, 0.12);
}

.forwarding-calculator__packages {
  margin-top: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(209, 223, 242, 0.88);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 255, 0.95));
}

.forwarding-calculator__packages-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.forwarding-calculator__packages-head h3 {
  margin: 0;
}

.forwarding-calculator__packages-list,
.forwarding-calculator__package-meta,
.forwarding-calculator__receipt,
.forwarding-calculator__receipt-section,
.forwarding-calculator__package-summary-list {
  gap: 0.9rem;
}

.forwarding-calculator__package-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem;
  border: 1px solid rgba(219, 229, 244, 0.82);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(18, 39, 89, 0.06);
  animation: card-drop-in 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.forwarding-calculator__package-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  min-width: 0;
}

.forwarding-calculator__package-label {
  font-size: 0.94rem;
  font-weight: 700;
  flex-shrink: 0;
}

.forwarding-calculator__package-weight {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.forwarding-calculator__package-weight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.forwarding-calculator__weight-chip {
  border: 1px solid rgba(23, 117, 173, 0.18);
  background: rgba(255, 255, 255, 0.95);
  color: #44536b;
  border-radius: 999px;
  padding: 0.46rem 0.78rem;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.forwarding-calculator__weight-chip:hover,
.forwarding-calculator__weight-chip:focus-visible {
  transform: translateY(-1px);
  background: rgba(23, 117, 173, 0.22);
  border-color: rgba(23, 117, 173, 0.52);
  box-shadow: 0 8px 16px rgba(23, 117, 173, 0.16);
  color: var(--color-primary-dark);
}

.forwarding-calculator__weight-chip.is-active {
  background: linear-gradient(135deg, #1f6f98 0%, #2f89b8 100%);
  border-color: rgba(17, 93, 138, 0.95);
  box-shadow: 0 10px 18px rgba(16, 93, 138, 0.2);
  color: #ffffff;
}

.forwarding-calculator__add-button,
.forwarding-calculator__remove-button {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.forwarding-calculator__add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(23, 117, 173, 0.18);
  border-radius: 999px;
  background: rgba(23, 117, 173, 0.08);
  color: var(--color-primary-dark);
  font-weight: 700;
}

.forwarding-calculator__add-button:hover,
.forwarding-calculator__add-button:focus-visible {
  background: rgba(23, 117, 173, 0.14);
  transform: translateY(-1px);
}

.forwarding-calculator__remove-button {
  padding: 0.65rem 0.4rem;
  color: var(--color-text-muted);
  font-size: 0.94rem;
  white-space: nowrap;
}

.forwarding-calculator__remove-button:hover,
.forwarding-calculator__remove-button:focus-visible {
  color: #b14f4f;
}

.forwarding-calculator__remove-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: var(--color-border);
}

.forwarding-calculator__remove-button:disabled:hover {
  color: var(--color-border);
}

.forwarding-calculator__summary-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(23, 117, 173, 0.12);
  color: var(--color-primary-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.forwarding-calculator__receipt {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.forwarding-calculator__receipt-section + .forwarding-calculator__receipt-section {
  padding-top: 1rem;
  border-top: 1px solid rgba(219, 229, 244, 0.82);
}

.forwarding-calculator__panel--summary .forwarding-calculator__receipt-section {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(209, 223, 242, 0.86);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
}

.forwarding-calculator__panel--summary .forwarding-calculator__receipt-section + .forwarding-calculator__receipt-section {
  margin-top: 0.75rem;
  padding-top: 0.95rem;
}

.forwarding-calculator__panel--summary .forwarding-calculator__receipt-section:last-child {
  padding: 0.4rem 0 0;
  border: 0;
  background: transparent;
}

.forwarding-calculator__receipt-line,
.forwarding-calculator__receipt-total,
.forwarding-calculator__package-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.forwarding-calculator__receipt-line[hidden] {
  display: none !important;
}

.forwarding-calculator__receipt-line span:first-child,
.forwarding-calculator__package-summary span,
.forwarding-calculator__receipt-total span:first-child {
  color: var(--color-text-muted);
}

.forwarding-calculator__package-summary {
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
}

.forwarding-calculator__package-summary-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.forwarding-calculator__package-summary-label::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.8;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2362708a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7.5 12 3l9 4.5M3 7.5V16.5L12 21l9-4.5V7.5M3 7.5 12 12m9-4.5L12 12m0 9V12'/%3E%3C/svg%3E");
}

.forwarding-calculator__receipt-total {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.25rem 1.35rem 1.3rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #134f78 0%, #1f6f98 52%, #2f84b5 100%);
  box-shadow: 0 16px 30px rgba(13, 72, 112, 0.3);
}

.forwarding-calculator__receipt-total span:first-child {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.forwarding-calculator__receipt-total strong {
  color: #ffffff;
  font-size: clamp(1.8rem, 3.2vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 20px rgba(6, 57, 91, 0.45);
  white-space: nowrap;
}

.forwarding-calculator__receipt-total strong.is-updating {
  animation: forwarding-total-pulse 0.42s ease;
}

.forwarding-calculator__note {
  font-size: 0.88rem;
}

.forwarding-calculator__summary-note {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  color: rgba(79, 110, 143, 0.92);
}

.forwarding-calculator__empty-state {
  font-size: 0.94rem;
}

.forwarding-calculator__summary-trust {
  margin-top: 0.55rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #5f738d;
}

.forwarding-calculator__summary-psych {
  margin-top: 0.65rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #2d5f8d;
}

.forwarding-calculator__summary-psych strong {
  color: #0f4e7a;
  font-size: 1rem;
}

.forwarding-calculator__live-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: #4f6e8f;
  font-size: 0.83rem;
  font-weight: 700;
}

.forwarding-calculator__live-note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #71a8d4;
  box-shadow: 0 0 0 0 rgba(113, 168, 212, 0.45);
}

.forwarding-calculator.is-calculating .forwarding-calculator__live-note::before {
  animation: forwarding-live-dot 0.5s ease;
}

.forwarding-calculator__cta {
  width: 100%;
  margin-top: 0.8rem;
  justify-content: center;
}

@keyframes forwarding-total-pulse {
  0% { transform: scale(1); opacity: 0.92; }
  35% { transform: scale(1.03); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes forwarding-choice-pop {
  0% { transform: scale(0.985); }
  100% { transform: scale(1); }
}

@keyframes forwarding-live-dot {
  0% { box-shadow: 0 0 0 0 rgba(113, 168, 212, 0.45); }
  100% { box-shadow: 0 0 0 10px rgba(113, 168, 212, 0); }
}

.forwarding-calculator__empty-state {
  padding: 1rem;
  border: 1px dashed rgba(219, 229, 244, 0.92);
  border-radius: var(--radius-md);
  background: rgba(247, 250, 255, 0.86);
  text-align: center;
}

@media (max-width: 760px) {
  .forwarding-calculator {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.9rem;
    border-radius: 24px;
  }

  .forwarding-calculator__panel {
    padding: 1.15rem;
    border-radius: var(--radius-lg);
  }

  .forwarding-calculator__panel-header,
  .forwarding-calculator__summary-header {
    margin-bottom: 1rem;
  }

  .forwarding-calculator__panel-header h2,
  .forwarding-calculator__summary-header h2 {
    font-size: 1.25rem;
  }

  .forwarding-calculator__warehouse-options,
  .forwarding-calculator__destination-options {
    grid-template-columns: 1fr;
  }

  .forwarding-calculator__warehouse-option-content {
    min-height: 48px;
    padding: 0.7rem 0.85rem;
  }

  .forwarding-calculator__step {
    padding: 0.9rem;
  }

  .forwarding-calculator__packages {
    padding: 1rem;
  }

  .forwarding-calculator__packages-head {
    flex-direction: column;
    align-items: stretch;
  }

  .forwarding-calculator__add-button {
    width: 100%;
  }

  .forwarding-calculator__package-item,
  .forwarding-calculator__package-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .forwarding-calculator__package-weight-chips {
    width: 100%;
  }

  .forwarding-calculator__remove-button,
  .forwarding-calculator__package-weight {
    width: 100%;
  }

  .forwarding-calculator__remove-button {
    padding: 0.85rem 1rem;
    text-align: center;
    border: 1px solid rgba(219, 229, 244, 0.92);
    border-radius: var(--radius-md);
    background: rgba(247, 250, 255, 0.96);
  }

  .forwarding-calculator__receipt-line,
  .forwarding-calculator__receipt-total,
  .forwarding-calculator__package-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .forwarding-calculator__receipt-total strong,
  .forwarding-calculator__package-summary strong,
  .forwarding-calculator__receipt-line strong {
    align-self: flex-end;
  }
}

.steps-grid,
.reviews-grid,
.stats-grid {
  display: grid;
  gap: 1.5rem;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.review-card,
.benefit-card {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 229, 244, 0.85);
  box-shadow: var(--shadow-soft);
}

.step-card,
.review-card,
.benefit-card,
.calculator-card,
.auth-card {
  animation: fade-slide-in 0.55s ease both;
}

.content-page .content-card {
  animation: card-drop-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.step-card:nth-child(2),
.review-card:nth-child(2),
.benefit-card:nth-child(2),
.content-grid > .content-card:nth-child(2) {
  animation-delay: 0.08s;
}

.step-card:nth-child(3),
.review-card:nth-child(3),
.benefit-card:nth-child(3),
.content-grid > .content-card:nth-child(3) {
  animation-delay: 0.16s;
}

.content-grid > .content-card:nth-child(4) {
  animation-delay: 0.24s;
}

.step-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  font-weight: 800;
}

.step-card h3,
.benefit-card h3,
.review-card strong {
  margin: 0 0 0.7rem;
}

.step-card p,
.benefit-card p,
.review-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.how-it-works .eyebrow {
  display: inline-flex;
}

.steps-grid--hero {
  gap: 2.9rem;
  align-items: stretch;
}

.step-card--visual {
  position: relative;
  padding: 1.55rem 1.45rem 1.7rem;
  border-radius: 26px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
}

.step-card--visual .step-number {
  position: absolute;
  left: 1.35rem;
  top: 1.35rem;
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(22, 102, 181, 0.22);
  z-index: 3;
}

.step-media {
  width: 100%;
  max-width: 240px;
  height: 240px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step-media img {
  display: block;
  width: 75%;
  height: 75%;
  object-fit: contain;
}

.step-card--visual:nth-child(3) .step-media img {
  transform: scale(1.08);
  transform-origin: center;
}

.steps-grid--boxes .step-media img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.steps-grid--boxes .step-card--visual:nth-child(3) .step-media img {
  transform: none;
}

.step-media--retour {
  height: auto;
  max-height: none;
  align-items: center;
  padding-top: 0;
}

.step-media--icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  background: #e5effc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-media--icon svg {
  width: 46px;
  height: 46px;
  color: #1a73d8;
}

.step-media--retour img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 180px;
  display: block;
  margin: 0 auto;
}

.steps-grid--boxes .step-card--visual p {
  max-width: 31ch;
}

.step-card--visual h3 {
  margin: 0 0 0.55rem;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.step-card--visual h3.smaller {
  font-size: 1.22rem;
  line-height: 1.25;
}

.step-card--visual p {
  max-width: 36ch;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.45;
}

.step-card--visual:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -2.2rem;
  top: 40%;
  width: 2.2rem;
  border-top: 3px dashed #2b7bc9;
  opacity: 0.9;
}

.step-card--visual:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -2.4rem;
  top: calc(40% - 4px);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #2b7bc9;
}

.how-mini-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2.8rem;
  justify-items: center;
}

.how-mini-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.how-mini-benefit h3 {
  margin: 0 0 0.32rem;
  font-size: 1.18rem;
  line-height: 1.2;
}

.how-mini-benefit p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.how-mini-benefit__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex: 0 0 54px;
  background-color: #dfe9f6;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px 25px;
}

.how-mini-benefit__icon--shield {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232b7bc9' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 5-3.5 7.8-7 9-3.5-1.2-7-4-7-9V6l7-3z'/%3E%3C/svg%3E");
}

.how-mini-benefit__icon--clock {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232b7bc9' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.how-mini-benefit__icon--support {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232b7bc9' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 13a8 8 0 0 1 16 0'/%3E%3Cpath d='M5 12h2a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 1-2zm14 0h-1a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h1a2 2 0 0 0 1-2v-3a2 2 0 0 0-1-2z'/%3E%3Cpath d='M12 19v2'/%3E%3C/svg%3E");
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.benefits-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: var(--color-primary-soft);
  font-size: 1.5rem;
}

.services-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.3rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 229, 244, 0.86);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(18, 54, 105, 0.14);
}

.service-card__media {
  width: 100%;
  max-width: 220px;
  height: 150px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}
.service-card__content {
  text-align: center;
}

.service-card__arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-top: 1rem;
  align-self: center;
  border-radius: 50%;
  background: #eaf2f9;
  color: #2f7dbf;
  font-size: 1.3rem;
  font-weight: 700;
}

.services-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.reviews-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.2rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: #fff4d6;
  border: 1px solid #f0d184;
  color: #7a5600;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

a.reviews-proof-badge {
  cursor: pointer;
}

a.reviews-proof-badge:hover {
  background: #ffedd5;
  border-color: #e6c200;
  box-shadow: 0 4px 12px rgba(122, 86, 0, 0.15);
}

.reviews-proof-badge strong::before {
  content: "★";
  margin-right: 0.35rem;
}

.reviews-proof-badge span {
  font-size: 0.84rem;
  color: #9a6d00;
  font-weight: 600;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stars {
  margin-bottom: 1rem;
  color: #ffb800;
  letter-spacing: 0.08em;
}

.review-card--cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #f6faff 0%, #e1eff7 100%);
  border: 1px solid rgba(73, 126, 255, 0.22);
}

.review-card--cta p {
  margin-bottom: 1rem;
}

.review-card--cta .btn {
  align-self: flex-start;
}

.google-reviews-meta__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.google-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0b5b40;
  background: #e9f8f2;
  border: 1px solid #bde6d6;
}

.stats {
  padding-top: 0;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-item {
  padding: 2rem;
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border: 1px solid rgba(219, 229, 244, 0.88);
  box-shadow: var(--shadow-soft);
}

.stats-item strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.stats-item span {
  color: var(--color-text-muted);
  font-weight: 600;
}

.cta-band {
  padding-top: 1rem;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 22px 46px rgba(23, 117, 173, 0.25);
}

.cta-band__inner h2 {
  margin: 0;
  font-size: clamp(1.72rem, 3.05vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  max-width: 710px;
}

.site-footer {
  padding: 4rem 0 0;
  border-top: 1px solid rgba(219, 229, 244, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .brand--footer {
  display: inline-block;
  margin-bottom: 0.9rem;
}

.footer-col__heading {
  margin-top: 0;
  margin-bottom: 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1f2b45;
}

.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.72rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  background: #1877f2;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(24,119,242,0.18);
}

.footer-fb-link:hover {
  background: #1877f2;
  box-shadow: 0 4px 14px rgba(24,119,242,0.38);
  color: #fff !important;
}

.footer-text {
  max-width: 300px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.footer-country-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-country-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.7rem;
  border-radius: 20px;
  background: rgba(23, 117, 173, 0.07);
  border: 1px solid rgba(23, 117, 173, 0.14);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
}

.footer-country-badge:hover {
  background: rgba(23, 117, 173, 0.14);
  border-color: rgba(23, 117, 173, 0.28);
}

.footer-country-badge img {
  border-radius: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(219, 229, 244, 0.9);
}

.footer-bottom__copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.footer-bottom__nav {
  display: flex;
  gap: 1.4rem;
}

.footer-bottom__nav a {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-bottom__nav a:hover {
  color: var(--color-primary);
}

@keyframes fade-slide-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes card-drop-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Dashboard ─────────────────────────────────────── */
.section-pad {
  padding: 0.08rem 0 1.15rem;
}

.section-pad--alt {
  padding-top: 0.08rem;
}

.section-desc {
  max-width: 60ch;
  color: var(--color-text-muted);
}

.dashboard-page {
  padding-top: 0.12rem;
}

.admin-page {
  background: #eef4fb;
  min-height: 100vh;
}

.admin-shell {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.content-card.admin-sidebar {
  position: sticky;
  top: 0;
  border: 1px solid rgba(204, 218, 238, 0.94);
  background: #ffffff;
  color: var(--color-text);
  box-shadow: 0 18px 36px rgba(16, 44, 81, 0.08);
}

.admin-sidebar__brand {
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(219, 229, 244, 0.92);
}

.admin-sidebar__logo-link {
  display: inline-flex;
  align-items: center;
}

.admin-sidebar__logo {
  width: 208px;
  max-width: 100%;
}

.admin-content__title {
  margin-bottom: 0;
}

.admin-sidebar__label {
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #607697;
}

.admin-topbar {
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border-color: rgba(204, 218, 238, 0.94);
  background: #ffffff;
}

.admin-topbar__row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.admin-topbar__meta {
  margin: 0.2rem 0 0;
  color: #6e86a6;
  font-size: 0.92rem;
}

.admin-nav {
  display: grid;
  gap: 0.55rem;
}

.admin-nav__item {
  position: relative;
  display: block;
  padding: 0.48rem 0.7rem;
  border-radius: 14px;
  color: #17365f;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid rgba(219, 229, 244, 0.96);
  background: #f8fbff;
  box-shadow: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.admin-nav__item:hover {
  background: #f1f7ff;
  border-color: rgba(176, 198, 228, 0.96);
  color: #102c51;
}

.admin-nav__item--active {
  background: linear-gradient(135deg, #17365f 0%, #24518c 100%);
  border-color: rgba(23, 54, 95, 0.94);
  color: #fff;
  box-shadow: 0 10px 18px rgba(23, 54, 95, 0.22);
}

.admin-nav__item--active:hover {
  background: linear-gradient(135deg, #17365f 0%, #24518c 100%);
  color: #fff;
  transform: none;
}

.admin-nav__item--expedition {
  font-weight: 800;
}

.admin-nav__badge {
  position: absolute;
  top: 0.28rem;
  right: 0.45rem;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.34rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ff2f2f;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(255, 47, 47, 0.24);
}

.admin-nav__badge--muted {
  background: #6b7280;
  box-shadow: 0 4px 10px rgba(107, 114, 128, 0.22);
}

.admin-sidebar__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(219, 229, 244, 0.92);
}

.admin-sidebar__action-link {
  color: #5e7391;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.admin-sidebar__action-link:hover {
  color: #17365f;
}

.admin-sidebar__action-link--logout {
  color: #17365f;
}

  border-radius: 14px;
  font-weight: 700;
  color: #17365f;
  border: 1px solid rgba(219, 229, 244, 0.96);
  background: #f8fbff;
  box-shadow: none;
}

}

.admin-content {
  min-width: 0;
}

.admin-content > .content-card,
.admin-content .content-card {
  border-color: rgba(204, 218, 238, 0.92);
  box-shadow: 0 18px 36px rgba(16, 44, 81, 0.08);
}

.admin-overview-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.admin-table-meta {
  margin-bottom: 0.85rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.admin-table-link {
  font-weight: 700;
  color: #163b6f;
}

.admin-table-link--with-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.admin-muted-value {
  color: #8b97a8;
}

.expedition-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.expedition-tab-icon {
  width: auto;
  height: 22px;
  object-fit: contain;
  display: block;
}

.expedition-tab-count {
  margin-left: 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
}

.expedition-form {
  display: grid;
  gap: 1rem;
}

.expedition-row {
  cursor: pointer;
}

.expedition-row--marked td {
  background: rgb(243, 195, 106) !important;
}

.expedition-row--selected td {
  background: #87ff87 !important;
}

.expedition-action-cell,
.expedition-confirm-cell {
  white-space: nowrap;
}

.expedition-parcels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.expedition-parcel-chip {
  border: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.55rem;
  border-radius: 8px;
  background: #49afcd;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.expedition-parcel-chip:hover {
  background: #3da3c1;
  transform: translateY(-1px);
}

.expedition-parcel-chip--pytel {
  background: #7b9e2a;
  color: #fff;
}

.expedition-parcel-chip--pytel:hover {
  background: #6f9025;
}

.expedition-parcel-chip span {
  color: #fff;
}

.expedition-parcel-chip strong {
  font-weight: 400;
  color: inherit;
}

.expedition-parcel-chip__weight {
  position: absolute;
  top: -0.42rem;
  right: -0.42rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.18rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ff2f2f;
  color: #fff !important;
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 3px 8px rgba(255, 47, 47, 0.24);
}

.expedition-parcel-chip__weight--today {
  background: #a900ff;
  color: #fff !important;
  box-shadow: 0 3px 8px rgba(169, 0, 255, 0.28);
}

.expedition-user-shipments-badge {
  position: absolute;
  top: -0.42rem;
  right: -0.42rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.18rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #9aa3ad;
  color: #fff !important;
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 3px 8px rgba(106, 117, 129, 0.24);
}

.expedition-recipient-cell {
  min-width: 220px;
}

.expedition-recipient-cell .admin-table-link--with-badge {
  position: relative;
  padding-right: 1rem;
}

.expedition-carrier {
  font-weight: 700;
}

.expedition-transport-meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.expedition-carrier-icon {
  width: auto;
  height: 22px;
  object-fit: contain;
}

.expedition-country-flag {
  width: auto;
  height: 12px;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(23, 54, 95, 0.12);
}

.expedition-submeta {
  margin-top: 0.25rem;
  color: #607697;
  font-size: 0.84rem;
}

.expedition-note {
  margin-top: 0.45rem;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  background: #f8fbff;
  color: #425a78;
  font-size: 0.85rem;
}

.expedition-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.expedition-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.expedition-popup--hidden {
  display: none !important;
}

.expedition-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 42, 0.35);
}

.expedition-popup__card {
  position: relative;
  z-index: 1;
  width: min(320px, 100%);
  padding: 1.2rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(188, 203, 226, 0.88);
  background: #fff;
  box-shadow: 0 20px 42px rgba(19, 47, 84, 0.24);
}

.expedition-popup__card h3 {
  margin-bottom: 0.9rem;
  font-size: 1.85rem;
}

.expedition-popup__card p {
  margin: 0 0 0.85rem;
  line-height: 1.45;
  color: #17365f;
}

.expedition-popup__card p strong {
  color: #101f35;
  font-size: 1.15rem;
}

.expedition-popup__flag {
  display: inline-block;
  width: auto;
  height: 12px;
  margin-left: 0.35rem;
  vertical-align: middle;
  border-radius: 2px;
}

.expedition-popup__actions {
  margin-top: 0.45rem;
  display: flex;
  gap: 0.45rem;
}

.expedition-popup-open {
  overflow: hidden;
}

.expedition-toolbar {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .expedition-table th,
  .expedition-table td {
    min-width: 120px;
  }

  .expedition-action-cell,
  .expedition-confirm-cell {
    white-space: normal;
  }
}

.admin-brand-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex: 0 0 auto;
}

.admin-detail-grid {
  display: grid;
  gap: 1rem;
}

.admin-detail-grid--sidebar {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
}

.admin-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
}

.admin-stat-card {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(208, 221, 240, 0.94);
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.admin-stat-card--link {
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-stat-card--link:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 117, 173, 0.26);
  box-shadow: 0 12px 24px rgba(16, 44, 81, 0.08);
}

.admin-stat-card__label {
  margin: 0 0 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #607697;
}

.admin-stat-card__value {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
  color: #10294d;
}

.admin-kv {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.admin-kv__row {
  display: grid;
  grid-template-columns: minmax(120px, 150px) minmax(0, 1fr);
  gap: 0.75rem 1rem;
  align-items: start;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(219, 229, 244, 0.92);
  border-radius: 12px;
  background: #f8fbff;
}

.admin-kv dt {
  font-weight: 700;
  color: #5f7595;
}

.admin-kv dd {
  margin: 0;
  min-width: 0;
  color: #16324f;
  line-height: 1.45;
}

.admin-flag-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-flag-meta__icon {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(208, 221, 240, 0.9);
}

@media (max-width: 640px) {
  .admin-kv__row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

.dashboard-header-layout {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 1.25rem;
  margin-bottom: 0;
}

.dashboard-header-col {
  /* Base column styles */
}

.dashboard-header-col--addresses {
  /* Left column: addresses */
}

.dashboard-header-col--badges {
  /* Right column: stat badges */
}

.dashboard-stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.95rem;
}

.dashboard-top-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
  margin-bottom: 1.15rem;
}

.dashboard-stat-card {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(215, 226, 241, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  position: relative;
  z-index: 0;
}

.dashboard-stat-card:has(.dashboard-help[open]) {
  z-index: 100;
}

.dashboard-stat-card__head {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #607697;
  margin-bottom: 0.32rem;
}

.dashboard-stat-card__head--with-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.dashboard-stat-card__value {
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 800;
  color: #0e3259;
  margin-bottom: 0.38rem;
}

.dashboard-stat-card__value--small {
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 700;
}

.dashboard-stat-card__value--ok {
  color: #178f43;
}

.dashboard-stat-card__value--danger {
  color: #c0392b;
}

.dashboard-stat-card__link {
  font-size: 0.84rem;
  font-weight: 600;
}

.dashboard-stat-card__meta {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.dashboard-nav {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 1.15rem;
  padding: 0.55rem;
  border-radius: 14px;
  border: 1px solid rgba(219, 229, 244, 0.9);
  background: rgba(255, 255, 255, 0.86);
}

body.public-page .dashboard-nav--desktop {
  margin-top: 0.85rem;
}

.dashboard-nav__item {
  padding: 0.46rem 0.86rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--color-text-muted);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.dashboard-nav__item-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.dashboard-nav__flags {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.dashboard-nav__flag {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(18, 39, 89, 0.08);
}

.dashboard-nav__item:hover,
.dashboard-nav__item--active {
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
}

.dashboard-nav__item--active {
  background: var(--color-primary);
  color: #fff;
}

.dashboard-nav-mobile {
  display: none;
  margin-top: 0.9rem;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(18, 63, 134, 0.22);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 250, 255, 0.99) 100%);
  box-shadow: 0 18px 38px rgba(18, 39, 89, 0.14);
  overflow: hidden;
}

.dashboard-nav-mobile[open] {
  box-shadow: 0 22px 40px rgba(18, 39, 89, 0.16);
}

.dashboard-nav-mobile__trigger {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 1rem 1rem 1.02rem;
  cursor: pointer;
  background: linear-gradient(135deg, #1c5aa8 0%, #2878c8 100%);
}

.dashboard-nav-mobile__trigger::-webkit-details-marker {
  display: none;
}

.dashboard-nav-mobile__trigger-copy {
  display: grid;
  gap: 0.16rem;
  min-width: 0;
}

.dashboard-nav-mobile__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.dashboard-nav-mobile__value {
  font-size: 1.04rem;
  font-weight: 700;
  color: #ffffff;
}

.dashboard-nav-mobile__chevron {
  width: 0.72rem;
  height: 0.72rem;
  flex: 0 0 auto;
  border-right: 2px solid rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
  margin-top: -0.2rem;
}

.dashboard-nav-mobile[open] .dashboard-nav-mobile__chevron {
  transform: rotate(225deg);
  margin-top: 0.18rem;
}

.dashboard-nav-mobile__menu {
  display: grid;
  gap: 0.45rem;
  padding: 0 0.75rem 0.75rem;
  border-top: 1px solid rgba(23, 117, 173, 0.14);
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.dashboard-nav-mobile__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  width: 100%;
  min-height: 48px;
  padding: 0.78rem 0.85rem;
  border-radius: 12px;
  font-size: 0.96rem;
  font-weight: 600;
  color: #15335f;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(206, 221, 241, 0.92);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.dashboard-nav-mobile__item:hover,
.dashboard-nav-mobile__item--active {
  border-color: rgba(23, 117, 173, 0.28);
  background: rgba(23, 117, 173, 0.08);
  color: var(--color-primary-dark);
}

.dashboard-send-cta.btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #2ca152 0%, #1f8a43 100%);
  box-shadow: 0 16px 30px rgba(35, 139, 71, 0.24);
}

.dashboard-send-cta.btn--primary:hover {
  box-shadow: 0 20px 34px rgba(35, 139, 71, 0.3);
}

.dashboard-send-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.dashboard-missing-parcel-link-wrap {
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

.dashboard-missing-parcel-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(213, 226, 244, 0.95);
  border-radius: 12px;
  background: #f7faff;
  color: #2d5fae;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.dashboard-missing-parcel-link:hover {
  border-color: rgba(59, 124, 214, 0.35);
  background: #f1f7ff;
  color: #244f95;
}

.dashboard-missing-parcel-link__icon {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1px solid rgba(70, 124, 199, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 700;
  color: #2d5fae;
  background: #fff;
  flex: 0 0 auto;
}

.dashboard-missing-parcel-link__text {
  flex: 1;
}

.dashboard-missing-parcel-link__arrow {
  font-size: 1.2rem;
  line-height: 1;
  color: #6789bf;
  flex: 0 0 auto;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.dashboard-grid--addresses {
  margin-top: 0.4rem;
}

.dashboard-address-faqs {
  display: grid;
  gap: 0.85rem;
}

.dashboard-address-faq {
  border: 1px solid rgba(213, 226, 244, 0.95);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.dashboard-address-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  position: relative;
}

.dashboard-address-faq summary::-webkit-details-marker {
  display: none;
}

.dashboard-address-faq summary::after {
  content: '+';
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--color-primary);
}

.dashboard-address-faq[open] summary::after {
  content: '-';
}

.dashboard-address-faq p {
  margin: 0;
  padding: 0 1.15rem 1rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.dashboard-two-col {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 1.05rem;
}

.dashboard-two-col > *,
.dashboard-stat-cards > * {
  min-width: 0;
}

.dashboard-two-col--equal {
  grid-template-columns: 1fr 1fr;
}

.dashboard-two-col--equal .dashboard-col--credit {
  order: 1;
}

.dashboard-two-col--equal .dashboard-col--invoices {
  order: 2;
}

.dashboard-block {
  border: 1px solid rgba(215, 226, 241, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.dashboard-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.dashboard-link-inline {
  font-size: 0.85rem;
  font-weight: 600;
}

.dashboard-stack {
  display: grid;
  gap: 1rem;
}

.dashboard-stack--lg {
  gap: 1.5rem;
}

.dashboard-inline-flag {
  width: 20px;
  height: 14px;
  vertical-align: middle;
  margin-right: 6px;
  object-fit: cover;
  border-radius: 2px;
}

.dashboard-inline-flag--lg {
  width: 24px;
  height: 16px;
  margin-right: 8px;
}

.dashboard-table-wrap--compact {
  margin-bottom: 0;
}

.dashboard-form-error {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #f5c2c7;
  background: #f8d7da;
  color: #842029;
  border-radius: 8px;
}

.dashboard-chip-inline-action {
  margin-left: 8px;
  padding: 0.12rem 0.45rem;
}

.dashboard-section-title {
  font-size: 1.28rem;
  font-weight: 700;
  margin: 0 0 0.95rem;
}

.address-card {
  border: 1px solid rgba(214, 226, 244, 0.95);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  background: #fff;
}

.address-card__topline {
  display: inline-flex;
  padding: 0.25rem 0.58rem;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.address-card--de .address-card__topline {
  background: rgba(255, 227, 89, 0.2);
  color: #7a5d00;
}

.address-card--pl .address-card__topline {
  background: rgba(255, 70, 107, 0.13);
  color: #8a2037;
}

.address-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.address-card__help {
  font-size: 0.84rem;
  font-weight: 600;
}

.address-card__note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 0.85rem;
  margin-bottom: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border-soft);
}

.address-card__schedule {
  margin-top: 0.85rem;
  padding: 0.72rem 0.82rem;
  border-radius: 10px;
  border: 1px solid rgba(44, 146, 90, 0.34);
  background: linear-gradient(135deg, rgba(238, 252, 244, 0.96), rgba(223, 246, 233, 0.92));
}

.address-card__schedule-label {
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2f6c4c;
  font-weight: 700;
}

.address-card__schedule-value {
  margin-top: 0.22rem;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 800;
  color: #184b33;
}

.data-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem 1.15rem;
  font-size: 0.92rem;
}

.data-list dt {
  color: var(--color-text-muted);
  font-weight: 600;
}

.data-list dd {
  margin: 0;
  color: var(--color-text);
}

.data-list--address dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.address-line-value {
  overflow-wrap: anywhere;
}

.address-line-copy-btn {
  flex-shrink: 0;
  border: 1px solid rgba(25, 106, 168, 0.35);
  background: #f6fbff;
  color: #145188;
  border-radius: 8px;
  padding: 0.22rem 0.5rem;
  font-size: 0.74rem;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.address-line-copy-btn:hover {
  background: #e8f4ff;
  border-color: rgba(25, 106, 168, 0.55);
}

.address-line-copy-btn.is-copied {
  background: #e6f8ec;
  border-color: rgba(39, 146, 83, 0.5);
  color: #1f6a41;
}

.data-list--address {
  grid-template-columns: 120px 1fr;
  gap: 0.55rem 1rem;
  background: #f8fbff;
  border: 1px solid rgba(223, 233, 246, 0.9);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
}

.dashboard-alert {
  margin-top: 0.95rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(246, 89, 89, 0.34);
  background: rgba(255, 245, 245, 0.9);
  color: #8f2d2d;
  font-size: 0.9rem;
}

.dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.dashboard-tab {
  border: 1px solid rgba(213, 226, 244, 0.95);
  background: #f8fbff;
  color: #34567f;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.84rem;
  padding: 0.38rem 0.75rem;
}

.dashboard-tab span {
  display: inline-block;
  min-width: 18px;
  text-align: center;
  border-radius: 999px;
  background: rgba(23, 117, 173, 0.14);
  margin-left: 0.4rem;
}

.dashboard-tab--active {
  background: rgba(23, 117, 173, 0.12);
  border-color: rgba(23, 117, 173, 0.35);
}

.dashboard-empty-card {
  border: 1px dashed rgba(180, 201, 230, 0.95);
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f9ff 100%);
  padding: 1.35rem 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.dashboard-empty-card h3 {
  margin: 0.2rem 0 0.45rem;
  font-size: 1.1rem;
}

.dashboard-empty-card p {
  margin: 0 0 0.95rem;
  color: var(--color-text-muted);
}

.dashboard-empty-icon {
  font-size: 2.15rem;
  line-height: 1;
}

.dashboard-help-card {
  border: 1px solid rgba(215, 226, 241, 0.95);
}

.dashboard-steps {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.95rem;
}

.dashboard-steps li {
  color: var(--color-text-muted);
}

.dashboard-steps strong {
  display: block;
  color: #10355e;
  margin-bottom: 0.2rem;
}

.dashboard-steps span {
  font-size: 0.9rem;
}

.dashboard-next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 0.2rem;
  overflow: visible;
}

.dashboard-next-steps-wrap {
  margin-top: 1.15rem;
  margin-bottom: 0;
}

.dashboard-next-steps-wrap__head {
  margin-bottom: 0.85rem;
}

.dashboard-next-step-card {
  border: 1px solid rgba(211, 224, 243, 0.95);
  border-radius: 12px;
  background: #fff;
  padding: 0.95rem 1rem;
  box-shadow: 0 6px 16px rgba(19, 63, 99, 0.06);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  align-items: start;
  position: relative;
}

.dashboard-next-step-card__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef5ff;
  border: 1px solid rgba(173, 202, 238, 0.8);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
  flex: 0 0 auto;
}

.dashboard-next-step-card h3 {
  margin: 0 0 0.22rem;
  font-size: 0.92rem;
  line-height: 1.3;
  color: #10355e;
  grid-column: 2;
}

.dashboard-next-step-card p {
  margin: 0;
  font-size: 0.81rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  grid-column: 2;
}

.dashboard-next-step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.05rem;
  width: 0.68rem;
  border-top: 2px dotted #d0dced;
  transform: translateY(-50%);
}

.dashboard-next-step-card--shop .dashboard-next-step-card__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d6dc7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 7h12l-1 12H7L6 7z'/%3E%3Cpath d='M9 7a3 3 0 1 1 6 0'/%3E%3C/svg%3E");
}

.dashboard-next-step-card--wait .dashboard-next-step-card__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d6dc7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7h13v10H3z'/%3E%3Cpath d='M16 10h4l2 2v5h-6'/%3E%3Ccircle cx='7' cy='17' r='1.5'/%3E%3Ccircle cx='18' cy='17' r='1.5'/%3E%3C/svg%3E");
}

.dashboard-next-step-card--ship .dashboard-next-step-card__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d6dc7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='13' height='10' rx='1'/%3E%3Cpath d='M15 10h4l3 3v4h-7'/%3E%3Ccircle cx='7' cy='18' r='1.5'/%3E%3Ccircle cx='18' cy='18' r='1.5'/%3E%3C/svg%3E");
}

.dashboard-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  margin-bottom: 0.85rem;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.dashboard-table th,
.dashboard-table td {
  text-align: left;
  padding: 0.58rem 0.52rem;
  border-bottom: 1px solid rgba(221, 231, 246, 0.9);
}

.dashboard-table th {
  color: #6982a3;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dashboard-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  font-size: 0.76rem;
  font-weight: 700;
}

.dashboard-badge--ok {
  color: #157f3b;
  background: rgba(54, 197, 106, 0.14);
}

.dashboard-badge--shipping {
  color: #a24e05;
  background: rgba(243, 162, 66, 0.24);
}

.dashboard-badge--cod {
  color: #4c5664;
  background: rgba(128, 141, 161, 0.24);
}

.dashboard-badge--join {
  color: #5a6477;
  background: rgba(154, 167, 189, 0.16);
  width: 1.8rem;
  height: 1.8rem;
  padding: 0 !important;
  border-radius: 50% !important;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.dashboard-badge--intake {
  color: #0f5f8f;
  background: rgba(31, 131, 191, 0.15);
}

.dashboard-badge--topup {
  color: #0f7a35;
  background: rgba(54, 197, 106, 0.2);
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1;
  width: 1.8rem;
  height: 1.8rem;
  padding: 0 !important;
  border-radius: 50% !important;
  justify-content: center;
}

.dashboard-field-help {
  margin-top: 0.45rem;
}

.dashboard-label-with-help {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.dashboard-help {
  position: relative;
  display: inline-block;
}

.dashboard-help__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid rgba(107, 129, 163, 0.4);
  background: #f2f7ff;
  color: #215184;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
  list-style: none;
}

.dashboard-help__trigger::-webkit-details-marker {
  display: none;
}

.dashboard-help__popup {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: min(22rem, 78vw);
  z-index: 9999;
  background: #ffffff;
  border: 1px solid rgba(197, 214, 236, 0.95);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(16, 41, 77, 0.16);
  color: var(--color-text);
  font-size: 0.84rem;
  line-height: 1.45;
  padding: 0.75rem 0.85rem;
}

.dashboard-help:not([open]) .dashboard-help__popup {
  display: none;
}

@media (max-width: 640px) {
  .dashboard-help__popup {
    right: auto;
    left: 0;
    width: min(18rem, 84vw);
  }
}

.dashboard-credit-shipment {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.dashboard-credit-shipment__badge {
  flex-shrink: 0;
  min-width: 1.65rem;
  justify-content: center;
  padding-inline: 0.45rem;
}

.dashboard-credit-shipment__badge--rotated {
  transform: rotate(-90deg);
}

.dashboard-credit-shipment__text {
  color: #143b66;
  font-weight: 600;
}

.dashboard-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.dashboard-quick-action {
  border: 1px solid rgba(213, 226, 244, 0.95);
  border-radius: 10px;
  padding: 0.72rem 0.82rem;
  font-weight: 600;
  color: #2e5279;
  background: #fff;
}

.dashboard-quick-action:hover {
  border-color: rgba(23, 117, 173, 0.35);
  background: rgba(23, 117, 173, 0.05);
}

.dashboard-settings-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.dashboard-settings-form-wrap {
  margin-bottom: 1rem;
  border: 1px solid rgba(213, 226, 244, 0.95);
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
}

#parcelbox-form {
  margin-top: 1.5rem;
}

.dashboard-settings-form-title {
  margin: 0 0 0.8rem;
  font-size: 1rem;
  color: #143b66;
}

.dashboard-settings-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 1.25rem;
  column-gap: 0.85rem;
}

.dashboard-settings-form__full {
  grid-column: span 2;
}

.dashboard-settings-form__actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  margin-top: 0.2rem;
}

.admin-form-panel {
  margin-bottom: 1rem;
}

.admin-form-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.admin-form-panel__head .dashboard-settings-form-title {
  margin-bottom: 0;
}

.admin-form {
  align-items: start;
}

.admin-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #21476b;
}

.admin-form .input {
  width: 100%;
  min-height: 45px;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(152, 175, 204, 0.7);
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(20, 59, 102, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.admin-form .input:focus {
  border-color: rgba(39, 118, 182, 0.85);
  box-shadow: 0 0 0 3px rgba(39, 118, 182, 0.12);
  outline: none;
}

.admin-form__checkbox {
  display: flex;
  align-items: flex-end;
}

.admin-form .field-check {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
}

.admin-form .field-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.admin-user-edit-panel {
  margin-top: -0.1rem;
}

.admin-user-edit-form__textarea {
  min-height: 110px;
  resize: vertical;
}

.admin-form__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}

.admin-parcelboxes__row--marked td {
  background: #fff7d6 !important;
}

.admin-parcelboxes__muted {
  margin-top: 0.3rem;
  font-size: 0.76rem;
  color: #68819a;
}

.admin-parcelboxes__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.admin-parcelboxes__icon {
  display: block;
  max-width: 68px;
  max-height: 34px;
  width: auto;
  height: auto;
}

.admin-parcelboxes__phone {
  margin-top: 0.35rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #21476b;
}

.admin-parcelboxes__expires--late {
  color: #b42318;
  font-weight: 700;
}

.admin-parcelboxes__expires--ok {
  color: #157347;
  font-weight: 600;
}

.admin-parcelboxes__toggle {
  margin-top: 1rem;
}

.admin-parcelboxes__qr {
  margin-top: 0.65rem;
}

.admin-parcelboxes__phones {
  margin-top: 1.5rem;
  color: #21476b;
}

.admin-parcelboxes__phone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  align-items: center;
}

.admin-parcelboxes__phone-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.admin-todo-text {
  line-height: 1.45;
}

.admin-todo-form__textarea {
  min-height: 110px;
  resize: vertical;
}

.form-errors {
  margin: 0;
  padding-left: 1rem;
  color: #9f2525;
}

.dashboard-address-form-panel {
  margin-top: 1rem;
  max-width: 760px;
}

.dashboard-address-form {
  max-width: 760px;
}

.dashboard-address-form-panel.content-card {
  padding: 1rem 1.1rem 1.15rem;
}

.dashboard-address-form .field-check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.93rem;
  gap: 0.4rem;
  line-height: 1.2;
}

.dashboard-address-form .field-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin: 0;
  align-self: center;
}

.dashboard-settings-page__head {
  margin-bottom: 0.7rem;
}

.dashboard-settings-page__head .dashboard-section-title {
  margin-bottom: 0.3rem;
}

.dashboard-settings-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 2.35fr) minmax(300px, 0.65fr);
  gap: 1rem;
}

.dashboard-settings-summary {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.dashboard-send-page__container {
  max-width: 1180px;
}

.dashboard-send-hero {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(213, 226, 244, 0.95);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 16px 40px rgba(25, 62, 103, 0.08);
}

.dashboard-send-hero__content {
  max-width: 720px;
}

.dashboard-send-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-send-steps__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(213, 226, 244, 0.95);
  border-radius: 999px;
  background: #fff;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.dashboard-send-steps__item--active {
  border-color: rgba(23, 117, 173, 0.28);
  background: rgba(23, 117, 173, 0.08);
  color: var(--color-primary-dark);
}

.dashboard-send-steps__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(23, 117, 173, 0.12);
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.dashboard-send-flow {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(300px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.dashboard-send-flow > * {
  min-width: 0;
}

.dashboard-send-flow__main {
  display: grid;
  gap: 1rem;
}

.dashboard-send-card {
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(213, 226, 244, 0.95);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(25, 62, 103, 0.08);
}

.dashboard-send-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dashboard-send-card__title {
  margin: 0;
  font-size: 1.18rem;
  color: #143b66;
}

.dashboard-send-card__subtitle {
  margin: 0.25rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.dashboard-send-selected-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: rgba(23, 117, 173, 0.08);
  color: var(--color-primary-dark);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.dashboard-send-table-wrap {
  overflow: hidden;
  border: 1px solid rgba(213, 226, 244, 0.95);
  border-radius: 16px;
  background: #fff;
}

.dashboard-send-table {
  margin: 0;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.dashboard-send-table thead th {
  padding: 0.95rem 1rem;
  background: #f3f8ff;
  color: #5a7394;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-send-table tbody td {
  padding: 0.95rem 1rem;
}

.dashboard-send-table .dashboard-table__selectable-row {
  border-bottom: 1px solid rgba(226, 235, 247, 0.95);
}

.dashboard-send-table .dashboard-table__selectable-row:last-child {
  border-bottom: none;
}

.dashboard-send-table .dashboard-table__selectable-row:hover td {
  background: rgba(224, 240, 255, 0.78);
}

.dashboard-send-table .dashboard-table__selectable-row.is-selected td {
  background: rgba(219, 236, 255, 0.98);
}

.dashboard-send-selection-summary {
  margin-top: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fd 100%);
}

.dashboard-send-summary-grid {
  display: grid;
  gap: 0.85rem;
}

.dashboard-send-summary__label,
.dashboard-send-summary-estimate span {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.dashboard-send-summary__value,
.dashboard-send-summary-estimate strong {
  color: #143b66;
  font-size: 1rem;
  font-weight: 700;
}

.dashboard-send-summary__note {
  padding-top: 0.25rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.dashboard-send-form-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 590px;
}

.dashboard-send-form-layout__field {
  margin-bottom: 0;
}

.dashboard-send-form-layout__field--full {
  grid-column: 1 / -1;
}

.dashboard-send-field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.dashboard-send-field-head label {
  margin: 0;
}

.dashboard-send-field-link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  text-decoration: none;
  white-space: nowrap;
}

.dashboard-send-field-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.dashboard-send-form-layout .field-help {
  margin: 0.45rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.send-select,
.send-readonly-input {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(190, 206, 229, 0.95);
  border-radius: 14px;
  background: #fff;
  color: var(--color-text);
  font-size: 0.98rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.send-select:focus,
.send-readonly-input:focus {
  outline: none;
  border-color: rgba(23, 117, 173, 0.55);
  box-shadow: 0 0 0 4px rgba(23, 117, 173, 0.12);
}

.send-readonly-input {
  background: #f6f9fe;
  color: var(--color-text-muted);
}

.send-radio-grid {
  display: grid;
  gap: 0.6rem;
}

.send-radio-grid--carrier,
.send-radio-grid--payment {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.send-radio-grid--address {
  grid-template-columns: 1fr;
}

.send-radio-option {
  display: block;
  border: 1px solid rgba(213, 226, 244, 0.95);
  border-radius: 12px;
  background: #f9fbff;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.send-radio-option:hover {
  border-color: rgba(23, 117, 173, 0.35);
  background: #f2f8ff;
}

.send-radio-option.is-selected {
  border-color: rgba(23, 117, 173, 0.48);
  background: linear-gradient(180deg, #eaf5ff 0%, #d9ecff 100%);
  box-shadow: 0 10px 20px rgba(23, 117, 173, 0.12);
}

.send-radio-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.send-radio-option__body {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
}

.send-radio-option__title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #123b66;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
}

.send-radio-option__icon {
  width: 46px;
  height: 22px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.dashboard-send-summary-panel {
  position: static !important;
  display: grid;
  gap: 1.15rem;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(213, 226, 244, 0.95);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.dashboard-send-summary-panel__head {
  display: grid;
  gap: 0.65rem;
}

.dashboard-send-summary-panel__head .dashboard-send-card__title {
  font-size: 1.28rem;
}



.dashboard-send-summary-panel__body {
  display: grid;
  gap: 0.85rem;
}

.dashboard-send-summary-section {
  display: grid;
  gap: 0.65rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(213, 226, 244, 0.95);
  border-radius: 16px;
  background: #f8fbff;
}

.dashboard-send-summary-section__title {
  color: #143b66;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-send-summary-selection-empty,
.dashboard-send-summary-selection-more {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.dashboard-send-summary-selection-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-send-summary-selection-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(213, 226, 244, 0.9);
}

.dashboard-send-summary-selection-item strong {
  color: #143b66;
  font-size: 0.95rem;
  font-weight: 800;
}

.dashboard-send-summary-selection-item span {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  text-align: right;
}

.dashboard-send-breakdown {
  display: grid;
  gap: 0.5rem;
}

.dashboard-send-breakdown__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.dashboard-send-breakdown__row strong {
  color: #143b66;
  font-size: 0.96rem;
  font-weight: 700;
}

.dashboard-send-summary-row,
.dashboard-send-summary-estimate {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(213, 226, 244, 0.95);
  border-radius: 14px;
  background: #fbfdff;
}

.dashboard-send-summary-row span,
.dashboard-send-summary-estimate span {
  color: var(--color-text-muted);
  font-size: 0.84rem;
}

.dashboard-send-summary-row strong,
.dashboard-send-summary-estimate strong {
  color: #143b66;
  font-size: 0.98rem;
  font-weight: 700;
}

.dashboard-send-summary-row--total {
  gap: 0.45rem;
  padding: 1.25rem 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
}

.dashboard-send-summary-row--total span {
  color: #143b66;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-send-summary-row--total strong {
  color: #143b66;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.dashboard-send-summary-row--meta {
  background: rgba(251, 253, 255, 0.7);
}

.dashboard-send-summary-row--meta span,
.dashboard-send-summary-row--meta strong {
  color: var(--color-text-muted);
}

.dashboard-send-summary-row--meta strong {
  font-size: 1.05rem;
  font-weight: 600;
}

#summary-credit-after[style*="#c00"] {
  font-weight: 800;
}

.dashboard-send-summary-row--warning {
  background: rgba(255, 244, 244, 0.9);
  border-color: rgba(214, 74, 74, 0.2);
}

.dashboard-send-summary-warning-link {
  color: #b42318;
  font-weight: 800;
  text-decoration: underline;
}

.dashboard-send-summary-warning-link:hover {
  color: #8f1c13;
}

.dashboard-send-summary-panel__footer {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.dashboard-send-submit {
  width: 100%;
  min-height: 52px;
}

.dashboard-send-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.15);
}

.dashboard-send-summary-panel__note {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .dashboard-send-flow {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1rem;
  }

  .dashboard-send-flow__main {
    display: grid;
    gap: 1rem;
  }

  .dashboard-send-summary-panel {
    position: static !important;
    top: auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100%;
    margin: 0;
  }
}

.dashboard-send-empty {
  margin-top: 0.9rem;
}

.dashboard-setting-item {
  border: 1px solid rgba(213, 226, 244, 0.95);
  border-radius: 12px;
  padding: 0.85rem;
  background: #fff;
}

.dashboard-setting-item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.96rem;
}

.dashboard-setting-item p {
  margin: 0 0 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.dashboard-setting-item a {
  font-size: 0.84rem;
  font-weight: 600;
}

/* ── Dashboard Settings Tabs ──────────────────────── */
.dashboard-settings-tabs {
  margin-top: 1rem;
}

.dashboard-settings-tabs--compact {
  margin-bottom: 1rem;
}

.dashboard-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid rgba(213, 226, 244, 0.95);
  padding-bottom: 0;
}

.dashboard-tab-btn {
  padding: 0.85rem 1.2rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--color-text-muted);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: -2px;
}

.dashboard-tab-btn:hover {
  color: var(--color-primary);
  background: rgba(68, 125, 185, 0.05);
}

.dashboard-tab-btn--active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  font-weight: 600;
}

.dashboard-tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dashboard-tab-content--active {
  display: block;
  opacity: 1;
}

.dashboard-tab-content .field {
  margin-bottom: 1.05rem;
}

.dashboard-tab-content .field:last-child {
  margin-bottom: 0;
}

.dashboard-tab-content .field-check {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
}

.dashboard-tab-content .field-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}

.dashboard-settings-form-title--compact {
  margin-bottom: 0.8rem;
}

.dashboard-settings-form__full ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.dashboard-settings-form__full ul li label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(213, 226, 244, 0.95);
  border-radius: 10px;
  background: #fbfdff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.dashboard-settings-form__full ul li label:hover {
  background: #f0f5fb;
  border-color: rgba(68, 125, 185, 0.3);
}

.dashboard-settings-form__full ul li input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.dashboard-settings-form__full fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.dashboard-settings-form__full legend {
  padding: 0 0 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.packeta-widget {
  display: grid;
  gap: 0.6rem;
}

.pickup-box {
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  padding: 1.1rem;
  background: #f9fbfe;
  margin-bottom: 0.8rem;
}

.pickup-box-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.pickup-box-header img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.pickup-selection-row {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
}

@media (max-width: 720px) {
  .pickup-selection-row {
    grid-template-columns: 1fr;
  }
}

.pickup-selector-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 1rem;
  border: 1px solid #0f5f9a;
  background: linear-gradient(180deg, #1f7cbc 0%, #1268a8 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(18, 104, 168, 0.28);
}

.pickup-selector-btn:hover {
  background: linear-gradient(180deg, #2387cb 0%, #1674b6 100%);
  border-color: #125f95;
  transform: translateY(-1px);
}

.pickup-selector-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(23, 117, 173, 0.2), 0 8px 18px rgba(18, 104, 168, 0.28);
}

.pickup-selector-btn:disabled {
  background: #d4deea;
  border-color: #c4cfdd;
  color: #6f8097;
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
}

.packeta-selector-value {
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(213, 226, 244, 0.95);
  border-radius: 10px;
  background: #f8fbff;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.packeta-selector-value strong {
  color: var(--color-primary-dark);
}

.packeta-widget input[readonly] {
  background: #f6f9fe;
  color: var(--color-text-muted);
}

.balikovna-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 29, 44, 0.55);
  z-index: 9998;
}

.balikovna-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(980px, calc(100vw - 2rem));
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(18, 29, 44, 0.35);
  padding: 0.9rem;
  z-index: 9999;
}

.balikovna-modal__close {
  border: 1px solid rgba(213, 226, 244, 0.95);
  background: #fff;
  color: var(--color-primary-dark);
  border-radius: 10px;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  margin-bottom: 0.7rem;
}

.balikovna-modal__frame {
  width: 100%;
  height: min(72vh, 640px);
  border: none;
  border-radius: 10px;
}

.dashboard-credit-actions {
  display: flex;
  gap: 0.6rem;
}

.dashboard-credit-actions--search {
  margin-left: auto;
}

.dashboard-search-form {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  margin: 0;
  width: min(100%, 430px);
}

.dashboard-search-input {
  width: 100%;
  min-width: 0;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(199, 214, 234, 0.95);
  border-radius: 12px;
  background: #fff;
}

.dashboard-search-input:focus {
  outline: none;
  border-color: rgba(23, 117, 173, 0.46);
  box-shadow: 0 0 0 3px rgba(23, 117, 173, 0.12);
}

.dashboard-search-submit {
  white-space: nowrap;
}

.dashboard-balance-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.95rem;
}

.dashboard-credit-balance--compact {
  margin-bottom: 0;
}

.dashboard-action-btn {
  align-self: center;
}

.dashboard-action-btn--success {
  background: #28a745;
  color: #fff;
  border-color: #28a745;
}

.dashboard-action-btn--success:hover {
  background: #23913c;
  border-color: #23913c;
  color: #fff;
}

.dashboard-credit-balance {
  display: inline-block;
  padding: 0.85rem 1.1rem 1rem;
  border: 1px solid rgba(6, 56, 86, 0.22);
  border-radius: 12px;
  background: var(--color-primary-dark);
  color: #f4f9ff;
  box-shadow: 0 10px 26px rgba(6, 56, 86, 0.2);
  margin-bottom: 0.95rem;
}

.dashboard-credit-balance .dashboard-settings-form-title {
  color: #d9ecff;
  margin-bottom: 0.35rem;
}

.dashboard-credit-balance__value {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
}

.dashboard-credit-history {
  margin-bottom: 0.95rem;
}

.dashboard-credit-amount {
  font-weight: 700;
}

.dashboard-credit-amount--plus {
  color: #1f8b4c;
}

.dashboard-credit-amount--minus {
  color: #b03a3a;
}

.dashboard-credit-empty {
  text-align: center;
  color: var(--color-text-muted);
  padding: 1rem 0.5rem;
}

.dashboard-credit-help {
  border-top: 1px solid rgba(213, 226, 244, 0.95);
  padding-top: 0.8rem;
}

.dashboard-empty {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.btn--icon {
  padding: 0.45rem 0.7rem;
  font-size: 0.85rem;
  line-height: 1;
}

/* ── Unknown Parcel Form ──────────────────────────── */

.unknown-parcel-page {
  position: relative;
  overflow: hidden;
}

.unknown-parcel-page::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 117, 173, 0.15) 0%, rgba(23, 117, 173, 0) 70%);
  pointer-events: none;
}

.unknown-parcel-alert {
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem 1rem 1.2rem;
  border: 1px solid rgba(249, 198, 88, 0.6);
  border-left: 4px solid #f0ad2c;
  border-radius: 12px;
  background: linear-gradient(180deg, #fffdf5 0%, #fff9e8 100%);
}

.unknown-parcel-alert__title {
  margin: 0 0 0.55rem;
  color: #7a5200;
  font-size: 1rem;
}

.unknown-parcel-alert__list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  color: #5f4924;
  font-size: 0.92rem;
}

.unknown-parcel-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 1rem;
  align-items: start;
}

.unknown-parcel-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.98) 100%);
  border: 1px solid rgba(213, 226, 244, 0.95);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 14px 30px rgba(16, 59, 96, 0.08);
}

.unknown-parcel-form__global-error {
  margin-bottom: 0.9rem;
  border: 1px solid rgba(202, 73, 73, 0.35);
  background: #fff5f5;
  color: #a03838;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.unknown-parcel-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.unknown-parcel-field {
  display: grid;
  gap: 0.45rem;
}

.unknown-parcel-field--full {
  grid-column: 1 / -1;
}

.unknown-parcel-field label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #11375c;
}

.unknown-parcel-input {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(190, 206, 229, 0.95);
  border-radius: 12px;
  background: #fff;
  color: var(--color-text);
  font: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

textarea.unknown-parcel-input,
.unknown-parcel-input--textarea {
  min-height: 112px;
  resize: vertical;
}

.unknown-parcel-input:focus {
  outline: none;
  border-color: rgba(23, 117, 173, 0.55);
  box-shadow: 0 0 0 4px rgba(23, 117, 173, 0.12);
}

.unknown-parcel-input::placeholder {
  color: #8ba0ba;
}

.unknown-parcel-field__hint {
  margin: -0.1rem 0 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.unknown-parcel-error {
  font-size: 0.82rem;
  color: #b03a3a;
  line-height: 1.35;
}

.unknown-parcel-error ul {
  margin: 0;
  padding-left: 1rem;
}

.unknown-parcel-form__actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
}

.unknown-parcel-side {
  border: 1px solid rgba(213, 226, 244, 0.95);
  border-radius: 18px;
  padding: 1.1rem 1.05rem;
  background: #fff;
  box-shadow: 0 12px 24px rgba(16, 59, 96, 0.06);
}

.unknown-parcel-side h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  color: #123b66;
}

.unknown-parcel-side ul {
  margin: 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.4rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.unknown-parcel-side__meta {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(213, 226, 244, 0.95);
}

.unknown-parcel-side__meta strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #123b66;
}

.unknown-parcel-side__meta p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .unknown-parcel-layout {
    grid-template-columns: 1fr;
  }

  .unknown-parcel-side {
    order: -1;
  }
}

@media (max-width: 760px) {
  .unknown-parcel-form {
    padding: 0.95rem;
    border-radius: 14px;
  }

  .unknown-parcel-alert {
    padding: 0.9rem;
    border-radius: 10px;
  }

  .unknown-parcel-form__grid {
    grid-template-columns: 1fr;
  }

  .unknown-parcel-field--full {
    grid-column: auto;
  }
}

/* ── Credit Topup Page ────────────────────────────── */

.credit-topup-amount-section {
  background: linear-gradient(135deg, rgba(63, 118, 181, 0.08) 0%, rgba(31, 139, 76, 0.08) 100%);
  border: 1px solid rgba(213, 226, 244, 0.6);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.credit-topup-amount-desc {
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.credit-topup-amount-form {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.credit-topup-amount-input-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 180px;
  max-width: 300px;
  background: white;
  border: 1px solid rgba(6, 56, 86, 0.2);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
}

.credit-topup-amount-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
}

.credit-topup-amount-input::placeholder {
  color: var(--color-text-muted);
}

.credit-topup-amount-currency {
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.credit-topup-submit-btn {
  padding: 0.65rem 1.5rem;
  font-weight: 600;
}

.credit-topup-methods-section {
  margin-top: 2rem;
}

.credit-topup-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.credit-topup-method-card {
  background: white;
  border: 1px solid rgba(213, 226, 244, 0.8);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.credit-topup-method-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(63, 118, 181, 0.15);
  transform: translateY(-2px);
}

.credit-topup-method-card--featured {
  background: linear-gradient(135deg, rgba(63, 118, 181, 0.05) 0%, rgba(31, 139, 76, 0.05) 100%);
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 12px rgba(63, 118, 181, 0.1);
}

.credit-topup-method-card--featured:hover {
  box-shadow: 0 8px 24px rgba(63, 118, 181, 0.2);
  border-color: var(--color-primary);
}

.credit-topup-method-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
}

.credit-topup-method-logo {
  height: 40px;
  max-width: 120px;
  object-fit: contain;
  object-position: left;
}

.credit-topup-method-speed {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.credit-topup-method-speed--instant {
  background-color: #e8f5e9;
  color: #1f8b4c;
}

.credit-topup-method-speed--delayed {
  background-color: #fff3e0;
  color: #e8842e;
}

.credit-topup-method-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.credit-topup-method-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  line-height: 1.5;
  flex-grow: 1;
}

.credit-topup-method-form {
  display: flex;
  gap: 0.8rem;
  margin-top: auto;
}

.btn--block {
  width: 100%;
  display: block;
}

.credit-topup-qr-container {
  background: white;
  border: 1px solid rgba(213, 226, 244, 0.6);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.credit-topup-qr-code {
  max-width: 100%;
  height: auto;
  display: block;
}

.credit-topup-bank-details {
  background: #f8fbff;
  border-left: 4px solid var(--color-primary);
  border-radius: 6px;
  padding: 1rem;
  margin: 1.2rem 0;
  font-size: 0.9rem;
}

.credit-topup-bank-detail {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.8rem;
  padding: 0.5rem 0;
  line-height: 1.4;
}

.credit-topup-bank-label {
  font-weight: 600;
  color: var(--color-text-primary);
}

.credit-topup-bank-value {
  font-family: 'Courier New', monospace;
  font-weight: 600;
  color: var(--color-primary);
}

.credit-topup-bank-message {
  background: #fff3e0;
  border: 1px solid rgba(232, 132, 46, 0.3);
  border-radius: 6px;
  padding: 0.8rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #5f6470;
}

.credit-topup-bank-message code {
  display: block;
  background: white;
  border-radius: 4px;
  padding: 0.4rem 0.6rem;
  margin-top: 0.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .credit-topup-methods-grid {
    grid-template-columns: 1fr;
  }

  .credit-topup-amount-form {
    flex-direction: column;
    align-items: stretch;
  }

  .credit-topup-amount-input-group {
    max-width: 100%;
  }

  .credit-topup-submit-btn {
    width: 100%;
  }

  .credit-topup-bank-detail {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .credit-topup-bank-label {
    display: inline;
  }

  .credit-topup-bank-label::after {
    content: ': ';
  }

  .credit-topup-bank-value {
    display: inline;
  }
}

/* ── DE Forwarding Page ───────────────────────────── */
.de-forwarding-page {
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fd 100%);
}

.de-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.de-hero__content h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.de-hero__content p {
  margin: 0;
  max-width: 680px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.de-hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.de-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.de-mini-stat {
  padding: 1.1rem 1.1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 229, 244, 0.92);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.de-mini-stat strong {
  display: block;
  margin-bottom: 0.2rem;
}

.de-mini-stat span {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.de-visual-card {
  padding: 1.35rem;
  border-radius: 30px;
  background: linear-gradient(180deg, #f5f9ff 0%, #e1eff7 100%);
  border: 1px solid rgba(219, 229, 244, 0.95);
  box-shadow: var(--shadow-soft);
}

.de-map-placeholder {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  background: radial-gradient(circle at top right, rgba(23, 117, 173, 0.14), transparent 35%), #f8fbff;
  overflow: hidden;
}

.de-country {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 1.1rem 1.3rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 229, 244, 0.95);
  box-shadow: var(--shadow-soft);
}

.de-country--de {
  top: 62px;
  left: 48px;
}

.de-country--cz {
  right: 48px;
  bottom: 58px;
}

.de-flag {
  font-size: 1.85rem;
}

.de-route {
  position: absolute;
  border-top: 3px dashed rgba(23, 117, 173, 0.45);
}

.de-route--one {
  width: 170px;
  top: 170px;
  left: 165px;
  transform: rotate(24deg);
}

.de-route--two {
  width: 74px;
  top: 230px;
  left: 322px;
  transform: rotate(58deg);
}

.de-intro-strip {
  padding-top: 0;
}

.de-intro-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary) 0%, #105d8a 100%);
  box-shadow: 0 20px 40px rgba(23, 117, 173, 0.2);
}

.de-intro-strip__inner strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.12rem;
}

.de-intro-strip__inner p {
  margin: 0;
  opacity: 0.95;
}

.de-steps-grid,
.de-pricing-grid,
.de-extras-grid {
  display: grid;
  gap: 1.5rem;
}

.de-steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.de-pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.de-extras-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.de-card {
  padding: 1.8rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 229, 244, 0.92);
  box-shadow: var(--shadow-soft);
}

.de-card h3 {
  margin: 0 0 0.65rem;
}

.de-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.de-card p + p {
  margin-top: 0.8rem;
}

.de-card--highlight {
  background: linear-gradient(180deg, #f8fbff 0%, #e1eff7 100%);
}

.de-card--highlight h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  line-height: 1.14;
}

.de-info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.de-timeline-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.de-timeline-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.9rem;
}

.de-timeline-list span,
.de-note {
  color: var(--color-text-muted);
}

.de-note {
  margin-top: 0.8rem;
}

.de-text-link {
  display: inline-block;
  margin-top: 0.95rem;
  color: var(--color-primary);
  font-weight: 700;
}

.de-use-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.de-use-list {
  display: grid;
  gap: 1rem;
}

.de-use-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.3rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 229, 244, 0.92);
  box-shadow: var(--shadow-soft);
}

.de-use-item h3 {
  margin: 0 0 0.3rem;
}

.de-use-item p {
  margin: 0;
  color: var(--color-text-muted);
}

.de-use-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(23, 117, 173, 0.12);
}

tr.pricing-highlight td {
  font-weight: 500;
  color: var(--color-text);
}

.content-card table tbody tr:nth-child(even) td {
  background: rgba(236, 244, 255, 0.55);
}

.carrier-cell {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.carrier-ico {
  width: 40px;
  height: 26px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  border-radius: 4px;
}

.warehouse-flag-ico {
  width: 16px;
  height: 11px;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
}

.dashboard-table--selectable tbody tr {
  transition: background-color 0.15s ease;
}

.dashboard-table--selectable tbody tr:hover td {
  background-color: rgba(236, 244, 255, 0.8);
}

.dashboard-table--selectable tbody tr.is-selected td {
  background-color: rgba(214, 236, 255, 0.95);
}

  /* --- Pricing tabs --- */
  .pricing-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    border-bottom: 2px solid #e8eef8;
    padding-bottom: 0;
  }

  .pricing-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: none;
    background: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    border-radius: 6px 6px 0 0;
    transition: color 0.15s, border-color 0.15s;
  }

  .pricing-tab:hover {
    color: var(--color-primary);
  }

  .pricing-tab--active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    background: rgba(37, 99, 235, 0.04);
  }

  /* --- end Pricing tabs --- */


.flag-ico {
  width: 28px;
  height: 20px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border-radius: 3px;
}

.unavailable {
  display: inline-block;
  color: #c8d0dc;
  font-size: 1rem;
  cursor: default;
}

.unavailable::before {
  content: "\00D7";
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
}

.pricing-example-card {
  background: linear-gradient(145deg, #f0f7ff 0%, #e6f2ff 100%);
  border: 1px solid rgba(73, 126, 255, 0.18);
}

.pricing-example-card h2 {
  color: #1775ad;
}

.de-faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.de-faq-list {
  display: grid;
  gap: 1rem;
}

@media (max-width: 1100px) {
  .dashboard-top-cards,
  .dashboard-settings-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-next-steps {
    grid-template-columns: 1fr;
  }

  .dashboard-next-step-card:not(:last-child)::after {
    display: none;
  }

  .dashboard-settings-page__grid {
    grid-template-columns: 1fr;
  }

  .dashboard-settings-form {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-settings-form__full {
    grid-column: span 2;
  }

  .dashboard-two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .dashboard-page {
    padding-top: 2.25rem;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-nav {
    grid-template-columns: 1fr 1fr;
  }

  .admin-sidebar__actions {
    gap: 0.9rem 1rem;
  }

  .admin-detail-grid--sidebar,
  .admin-kv {
    grid-template-columns: 1fr;
  }

  .dashboard-credit-actions {
    width: 100%;
  }

  .dashboard-credit-actions--search {
    margin-left: 0;
  }

  .dashboard-search-form {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-search-submit,
  .dashboard-action-btn {
    width: 100%;
    justify-content: center;
  }

  .dashboard-chip-inline-action {
    display: inline-flex;
    margin-left: 0;
    margin-top: 0.45rem;
  }

  .dashboard-balance-row {
    align-items: stretch;
  }

  .dashboard-credit-balance--compact {
    width: 100%;
  }

  .dashboard-tabs-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0.55rem;
    padding-bottom: 0.45rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .dashboard-tab-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.8rem 1rem;
    border-radius: 12px 12px 0 0;
  }

  .dashboard-grid,
  .dashboard-top-cards,
  .dashboard-header-layout,
  .dashboard-stat-cards,
  .dashboard-settings-grid,
  .dashboard-quick-actions,
  .dashboard-settings-form {
    grid-template-columns: 1fr;
  }

  .dashboard-next-step-card {
    padding: 0.88rem 0.9rem;
  }

  .dashboard-nav--desktop {
    display: none;
  }

  .dashboard-nav-mobile {
    display: block;
    margin-top: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .address-card__actions,
  .dashboard-block__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .data-list--address {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .data-list--address dd {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .dashboard-settings-form__full {
    grid-column: span 1;
  }

  .section-pad {
    padding: 0.65rem 0 0.95rem;
  }
}

@media (max-width: 1100px) {
  .de-hero__grid,
  .de-info-grid,
  .de-use-grid,
  .de-faq-grid,
  .de-intro-strip__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .de-steps-grid,
  .de-pricing-grid,
  .de-extras-grid {
    grid-template-columns: 1fr 1fr;
  }

  .de-mini-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .de-hero__grid,
  .de-steps-grid,
  .de-pricing-grid,
  .de-extras-grid {
    grid-template-columns: 1fr;
  }

  .de-map-placeholder {
    min-height: 320px;
  }

  .de-country--de {
    top: 28px;
    left: 20px;
  }

  .de-country--cz {
    right: 20px;
    bottom: 28px;
  }

  .de-route--one {
    width: 110px;
    top: 126px;
    left: 112px;
  }

  .de-route--two {
    width: 44px;
    top: 170px;
    left: 214px;
  }
}

@media (max-width: 1100px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open .page-main {
    pointer-events: none;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    width: 100vw;
    min-height: calc(100dvh - 86px);
    max-height: calc(100dvh - 86px);
    grid-template-columns: 1fr;
    align-content: start;
    gap: 1rem;
    padding: 0.75rem 1rem calc(1rem + env(safe-area-inset-bottom));
    background: #ffffff;
    border-top: 1px solid rgba(219, 229, 244, 0.9);
    box-shadow: 0 14px 30px rgba(20, 53, 121, 0.12);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.is-open .mobile-nav {
    display: grid;
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav a {
    font-weight: 600;
  }

  .mobile-nav-section {
    background: #ffffff;
    border: 1px solid rgba(219, 229, 244, 0.72);
    border-radius: 14px;
    padding: 0.9rem 0.9rem 0.75rem;
  }

  .mobile-nav-section--services {
    padding-bottom: 0.9rem;
  }

  .mobile-nav-section__label,
  .mobile-nav-subsection__label {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-text-muted);
  }

  .mobile-nav-subsection__label {
    margin-bottom: 0.55rem;
  }

  .mobile-nav-list {
    display: grid;
    gap: 0.45rem;
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0.7rem 0.75rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-text);
    transition: background-color 0.2s ease, color 0.2s ease;
    line-height: 1.3;
  }

  .mobile-nav-link:hover {
    background: rgba(23, 117, 173, 0.08);
    color: var(--color-primary);
  }

  .mobile-nav-link--secondary {
    min-height: 48px;
    padding: 0.62rem 0.7rem;
    font-size: 0.98rem;
    font-weight: 600;
  }

  .mobile-nav-services-toggle {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-family: inherit;
    font-size: 1.07rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: rgba(23, 117, 173, 0.05);
    border: 1px solid rgba(23, 117, 173, 0.14);
    border-radius: 12px;
    cursor: pointer;
    padding: 0.82rem 0.8rem;
    color: var(--color-text);
    transition: border-color 0.2s ease, background-color 0.2s ease;
  }

  .mobile-nav-services-toggle__title {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
  }

  .mobile-nav-services-toggle:hover {
    border-color: rgba(23, 117, 173, 0.3);
    background: rgba(23, 117, 173, 0.09);
  }

  .mobile-nav-services-toggle .nav-services-icon {
    transition: transform 0.26s ease;
  }

  .mobile-nav-services-toggle[aria-expanded="true"] .nav-services-icon {
    transform: rotate(180deg);
  }

  .mobile-nav-services-dropdown-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease, opacity 0.26s ease;
    opacity: 0;
  }

  .mobile-nav-services-dropdown-wrap.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
  }

  .mobile-nav-services-dropdown {
    min-height: 0;
    overflow: hidden;
    display: grid;
    gap: 1rem;
    padding-top: 0.85rem;
  }

  .mobile-nav-services-group {
    display: grid;
    gap: 0.45rem;
  }

  .mobile-service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .mobile-service-card {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 54px;
    padding: 0.78rem 0.78rem;
    border-radius: 12px;
    border: 1px solid rgba(23, 117, 173, 0.16);
    background: rgba(23, 117, 173, 0.08);
    text-decoration: none;
    color: var(--color-text);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  }

  .mobile-service-card:hover {
    border-color: rgba(23, 117, 173, 0.35);
    background: rgba(23, 117, 173, 0.14);
    transform: translateY(-1px);
  }

  .mobile-service-card__icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(23, 117, 173, 0.18);
    color: var(--color-primary-dark);
    flex: 0 0 auto;
  }

  .mobile-service-card__icon img {
    display: block;
    border-radius: 2px;
  }

  .mobile-service-card__text {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
  }

  .mobile-nav__sticky {
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding: 0.65rem 0 0.2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 34%);
  }

  .mobile-nav__actions {
    display: grid;
    gap: 0.65rem;
    padding: 0.7rem;
    border: 1px solid rgba(219, 229, 244, 0.84);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(18, 39, 89, 0.08);
  }

  .mobile-nav__actions .btn {
    min-height: 48px;
  }

  .hero-grid,
  .benefits-grid,
  .calculator-card,
  .footer-grid,
  .cta-band__inner,
  .quick-strip__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-content {
    transform: none;
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    margin-left: 0;
  }

  .hero-illustration {
    min-height: 460px;
  }

  .hero-map-image {
    width: 100%;
    margin-left: 0;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .calculator-form,
  .steps-grid,
  .reviews-grid,
  .stats-grid,
  .benefits-cards,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .calculator-card .calculator-form {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid--hero {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .step-card--visual::before,
  .step-card--visual::after {
    display: none;
  }

  .how-mini-benefits {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    margin-top: 1.8rem;
  }
}

@media (max-width: 760px) {
  body {
    padding-top: 40px;
    padding-top: 74px;
  }

  .page-main {
    min-height: calc(100vh - 74px);
  }

  .section {
    padding: 2rem 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-content {
    padding-bottom: 0px;
  }

  .hero-stats .stat {
    min-height: 56px;
  }

  .hero-stats .stat strong {
    top: 1rem;
  }

  .brand-logo {
    width: 206px;
  }

  .brand--footer .brand-logo {
    width: 198px;
  }

  .hero-actions,
  .calculator-form,
  .steps-grid,
  .reviews-grid,
  .stats-grid,
  .benefits-cards,
  .services-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .calculator-card .calculator-form {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-illustration {
    min-height: 240px;
  }

  .hero-grid {
    gap: 1.2rem;
  }

  .hero-stats {
    position: static;
    margin-top: 2.35rem;
  }

  .hero-stats .stat:not(:last-child)::before,
  .hero-stats .stat:not(:last-child)::after {
    display: none;
  }

  .quick-strip__inner,
  .cta-band__inner {
    padding: 2rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .faq-items {
    grid-template-columns: 1fr;
  }

  .calculator-card,
  .step-card,
  .review-card,
  .benefit-card,
  .service-card,
  .stats-item {
    padding: 1.5rem;
  }
  .services-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .reviews-proof-badge {
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.65rem 0.9rem;
  }

  .reviews-proof-badge span {
    font-size: 0.8rem;
  }

  .step-card--visual h3 {
    font-size: 1.5rem;
  }

  .steps-grid--boxes .step-card--visual h3 {
    font-size: 1.95rem;
  }

  .how-mini-benefit {
    gap: 0.85rem;
  }

  .how-mini-benefit h3 {
    font-size: 0.98rem;
  }

  .how-mini-benefit p {
    font-size: 0.84rem;
  }
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */

.contact-page .section-heading {
  margin-bottom: 1.75rem;
}

.section-heading--reviews {
  margin-bottom: 1.75rem;
}

/* Info pills row (legacy – hidden when moved to sidebar) */
.contact-info-row {
  display: none;
}

.contact-info-pills-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info-pill {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.contact-info-pill__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex: 0 0 48px;
  background-color: var(--color-primary-soft);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
}

.contact-info-pill__icon--email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231775ad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
}

.contact-info-pill__icon--clock {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231775ad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.contact-info-pill__label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.15rem;
}

.contact-info-pill__value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

.contact-info-pill__value--email {
  font-size: 1.2rem;
}

a.contact-info-pill__value:hover {
  text-decoration: underline;
}

/* Main card: form + sidebar */
.contact-main-card {
  background: var(--color-surface);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 0.52fr;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.contact-form-side {
  padding: 2.5rem;
  border-right: 1px solid var(--color-border);
}

.contact-form-side__heading {
  font-size: 1.35rem;
  margin: 0 0 0.3rem;
  color: var(--color-text);
}

.contact-form-lead {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0 0 1.75rem;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form-side .field {
  margin-bottom: 1rem;
}

.contact-form-message textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.contact-form-footer .btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-privacy-note {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* Form sidebar */
.contact-form-sidebar {
  padding: 2.5rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.contact-sidebar-img-box {
  width: 100%;
  border-radius: 16px;
  background: var(--color-surface-alt);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow: hidden;
}

.contact-sidebar-img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.contact-email-pref h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.contact-email-pref p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0 0 0.875rem;
  line-height: 1.55;
}

.contact-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-checks li {
  font-size: 0.875rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-checks li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex: 0 0 20px;
  background-color: var(--color-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

/* FAQ section */
.contact-faq-section {
  background: var(--color-surface);
  border-radius: 24px;
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-card);
}

.contact-faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.contact-faq-header h2 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--color-dark);
}

@media (max-width: 760px) {
  .retour-banner__inner {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.2rem;
  }

  .retour-banner__visual {
    min-width: auto;
  }

  .retour-banner__content h3 {
    font-size: 1.3rem;
  }
}

.contact-faq-header p {
  font-size: 1.25rem;
  margin: 0;
  color: var(--color-text);
}

.contact-faq-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-faq-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.4;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.contact-faq-card:hover {
  background: var(--color-primary-soft);
  border-color: rgba(23, 117, 173, 0.3);
  box-shadow: 0 4px 14px rgba(23, 117, 173, 0.1);
}

.contact-faq-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: 0 0 40px;
  background-color: #dfe9f6;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}

.contact-faq-card__icon--location {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231775ad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a7 7 0 0 1 7 7c0 5.25-7 13-7 13S5 14.25 5 9a7 7 0 0 1 7-7z'/%3E%3Ccircle cx='12' cy='9' r='2.5'/%3E%3C/svg%3E");
}

.contact-faq-card__icon--delivery {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231775ad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='3' width='15' height='13' rx='1'/%3E%3Cpath d='M16 8h4l3 4v4h-7V8z'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E");
}

.contact-faq-card__icon--package {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231775ad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpolyline points='3.27 6.96 12 12.01 20.73 6.96'/%3E%3Cline x1='12' x2='12' y1='22.08' y2='12'/%3E%3C/svg%3E");
}

.contact-faq-card__text {
  flex: 1;
}

.contact-faq-card__arrow {
  font-size: 1.3rem;
  color: var(--color-text-muted);
  flex: 0 0 auto;
  line-height: 1;
}

/* Warehouse section */
.contact-warehouse-section {
  background: var(--color-surface);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.contact-warehouse-info {
  padding: 2.5rem;
}

.contact-warehouse-title-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.5rem;
}

.contact-warehouse-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: 0 0 44px;
  display: inline-block;
  background-color: var(--color-primary-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231775ad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
}

.contact-warehouse-info h2 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--color-text);
}

.contact-warehouse-info > p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin: 0 0 1.5rem;
}

.contact-address,
.contact-hours {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--color-text);
}

.contact-address__icon,
.contact-hours__icon {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  flex: 0 0 18px;
  margin-top: 3px;
}

.contact-address__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231775ad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a7 7 0 0 1 7 7c0 5.25-7 13-7 13S5 14.25 5 9a7 7 0 0 1 7-7z'/%3E%3Ccircle cx='12' cy='9' r='2.5'/%3E%3C/svg%3E");
}

.contact-hours__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231775ad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.contact-address address {
  font-style: normal;
  line-height: 1.65;
}

.contact-warehouse-map {
  min-height: 320px;
}

.contact-warehouse-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  min-height: 320px;
}

/* Extra info section */
.contact-extra-section {
  margin-bottom: 2.5rem;
}

.contact-extra-section > h2 {
  font-size: 1.35rem;
  margin: 0 0 1.25rem;
  color: var(--color-text);
}

.contact-extra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-extra-card {
  background: var(--color-surface);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.contact-extra-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-primary-soft);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  display: block;
  margin-bottom: 1rem;
}

.contact-extra-card__icon--doc {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231775ad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' x2='8' y1='13' y2='13'/%3E%3Cline x1='16' x2='8' y1='17' y2='17'/%3E%3C/svg%3E");
}

.contact-extra-card__icon--bank {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231775ad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='3' x2='21' y1='22' y2='22'/%3E%3Cline x1='6' x2='6' y1='18' y2='11'/%3E%3Cline x1='10' x2='10' y1='18' y2='11'/%3E%3Cline x1='14' x2='14' y1='18' y2='11'/%3E%3Cline x1='18' x2='18' y1='18' y2='11'/%3E%3Cpolygon points='12 2 20 7 4 7'/%3E%3C/svg%3E");
}

.contact-extra-card__icon--shield {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231775ad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 5-3.5 7.8-7 9-3.5-1.2-7-4-7-9V6l7-3z'/%3E%3C/svg%3E");
}

.contact-extra-card h3 {
  font-size: 0.975rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}

.contact-extra-card p,
.contact-extra-card address {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  font-style: normal;
  margin: 0;
}

/* Contact page responsive */
@media (max-width: 960px) {
  .contact-main-card {
    grid-template-columns: 1fr;
  }

  .contact-form-side {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .contact-faq-cards {
    grid-template-columns: 1fr;
  }

  .contact-warehouse-section {
    grid-template-columns: 1fr;
  }

  .contact-extra-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .contact-info-row {
    gap: 1.25rem;
  }

  .contact-form-side {
    padding: 1.75rem 1.25rem;
  }

  .contact-form-sidebar {
    padding: 1.5rem 1.25rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-faq-section {
    padding: 1.5rem 1.25rem;
  }

  .contact-warehouse-info {
    padding: 1.75rem 1.25rem;
  }

  .contact-extra-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   REVIEWS PAGE (NEW)
   ================================================================ */

.reviews-page-new {
  display: grid;
  gap: 1rem;
}

.reviews-page-new__score-card,
.reviews-page-new__reasons,
.reviews-page-new__featured,
.reviews-page-new__bottom-cta {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(219, 229, 244, 0.9);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.reviews-page-new__score-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  padding: 1.55rem;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.reviews-page-new__score-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(47, 109, 223, 0.1), transparent 42%);
  pointer-events: none;
}

.reviews-page-new__score-left {
  padding: 0.35rem 0.4rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reviews-page-new__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: #e9f8f2;
  border: 1px solid #bde6d6;
  color: #0b5b40;
  font-size: 0.8rem;
  font-weight: 700;
}

.reviews-page-new__rating-row {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-top: 0.8rem;
  justify-content: center;
}

.reviews-page-new__rating-number {
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.9;
  color: #0f2b5c;
  letter-spacing: -0.04em;
}

.reviews-page-new__rating-out-of {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1;
  color: #8aa0bd;
  font-weight: 700;
}

.reviews-page-new__stars,
.reviews-page-new__card-stars {
  color: #ffb800;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.reviews-page-new__stars {
  font-size: 3.35rem;
  line-height: 1;
  margin-top: 0.35rem;
}

.reviews-page-new__rating-meta {
  margin: 0.65rem 0 0;
  color: var(--color-text);
  font-size: 1rem;
  text-align: center;
}

.reviews-page-new__rating-meta strong {
  color: var(--color-primary);
}

.reviews-page-new__trust {
  margin-top: 0.85rem;
  font-size: 0.93rem;
  color: #1f6b46;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  justify-content: center;
}

.reviews-page-new__trust::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e9f8f2;
  flex: 0 0 auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5b40' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

.reviews-page-new__score-right {
  border-left: 1px solid rgba(219, 229, 244, 0.9);
  padding: 1rem 1.05rem 1rem 1.55rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(245, 248, 255, 0.9) 0%, rgba(255, 255, 255, 0.96) 100%);
  border-radius: 18px;
  position: relative;
  z-index: 1;
}

.reviews-page-new__google-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
  text-align: left;
}

.reviews-page-new__google-brand > div {
  text-align: left;
}

.reviews-page-new__google-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.reviews-page-new__google-logo-btn {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: inline-block;
}

.reviews-page-new__google-brand strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: #1f2f4f;
}

.reviews-page-new__google-brand span {
  font-size: 1.55rem;
  color: #2f3f5f;
  line-height: 1.1;
}

.reviews-page-new__google-btn {
  width: 100%;
  justify-content: center;
  min-height: 50px;
}

.reviews-page-new__new-window {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
}

.reviews-page-new__reasons {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 1.45rem;
}

.reviews-page-new__reasons-title {
  margin: 0 0 0.8rem;
  text-align: center;
  font-size: clamp(1.2rem, 1.9vw, 1.65rem);
  line-height: 1.15;
  color: #1a2f58;
}

.reviews-page-new__reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.reviews-page-new__reason-item {
  padding: 1.05rem 1.15rem 1.05rem 4.8rem;
  min-height: 68px;
  position: relative;
}

.reviews-page-new__reason-item + .reviews-page-new__reason-item {
  border-left: 1px solid var(--color-border);
}

.reviews-page-new__reason-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.15rem;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #dfe9f6;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}

.reviews-page-new__reason-item--delivery::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231775ad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='3' width='15' height='13' rx='1'/%3E%3Cpath d='M16 8h4l3 4v4h-7V8z'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E");
}

.reviews-page-new__reason-item--smile::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231775ad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M8 10h.01'/%3E%3Cpath d='M16 10h.01'/%3E%3Cpath d='M8 14c1 1.3 2.3 2 4 2s3-.7 4-2'/%3E%3C/svg%3E");
}

.reviews-page-new__reason-item--shield::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231775ad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 5-3.5 7.8-7 9-3.5-1.2-7-4-7-9V6l7-3z'/%3E%3C/svg%3E");
}

.reviews-page-new__reason-item h3 {
  margin: 0 0 0.38rem;
  font-size: 1.02rem;
  line-height: 1.25;
}

.reviews-page-new__reason-item p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.reviews-page-new__featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.8rem;
  padding: 0;
}

.reviews-page-new__featured-text {
  background: linear-gradient(145deg, #f4f8ff 0%, #eaf2ff 100%);
  padding: 2.2rem 2.2rem 2rem 3.5rem;
  border-radius: 28px 0 0 28px;
  position: relative;
}

.reviews-page-new__featured-text::before {
  content: '\201C';
  font-size: 6rem;
  line-height: 1;
  color: #c5d9f5;
  font-family: Georgia, serif;
  position: absolute;
  top: 1rem;
  left: 0.9rem;
  pointer-events: none;
}

.reviews-page-new__featured-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #eaf2ff;
  color: #2a69bf;
  font-size: 0.8rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.reviews-page-new__featured h3 {
  margin: 0.8rem 0 0.6rem;
  position: relative;
  z-index: 1;
  font-size: clamp(1.05rem, 1.6vw, 1.55rem);
  line-height: 1.2;
  color: #1a2f58;
}

.reviews-page-new__featured p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.reviews-page-new__featured-author {
  margin-top: 1.1rem;
}

.reviews-page-new__featured-author strong {
  display: block;
  margin-bottom: 0.2rem;
}

.reviews-page-new__featured-author span {
  color: var(--color-text-muted);
  font-size: 0.86rem;
}

.reviews-page-new__featured-visual {
  border-radius: 0 28px 28px 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  min-height: 250px;
}

.reviews-page-new__featured-visual-img {
  max-width: 100%;
  max-height: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.reviews-page-new__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.reviews-page-new__card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(219, 229, 244, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.4rem 1.5rem;
}

.reviews-page-new__card--cta {
  background: linear-gradient(145deg, #f6faff 0%, #e1eff7 100%);
  border-color: rgba(73, 126, 255, 0.24);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reviews-page-new__card--cta .btn {
  align-self: flex-start;
}

.reviews-page-new__card-stars {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.reviews-page-new__card p {
  margin: 0 0 0.55rem;
  color: var(--color-text-muted);
  font-size: 0.91rem;
  line-height: 1.5;
}

.reviews-page-new__card strong {
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.93rem;
  color: var(--color-text);
}

.reviews-page-new__card span {
  color: var(--color-text-muted);
  font-size: 0.83rem;
}

.reviews-page-new__bottom-cta {
  padding: 2.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reviews-page-new__bottom-cta h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.reviews-page-new__bottom-cta p {
  margin: 0;
  color: var(--color-text-muted);
}

.reviews-page-new__bottom-cta .btn {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 1100px) {
  .reviews-page-new__score-card,
  .reviews-page-new__featured {
    grid-template-columns: 1fr;
  }

  .reviews-page-new__score-right {
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding: 1.2rem 0.2rem 0;
    background: transparent;
    border-radius: 0;
  }

  .reviews-page-new__reasons-grid {
    grid-template-columns: 1fr;
  }

  .reviews-page-new__reason-item + .reviews-page-new__reason-item {
    border-left: none;
    border-top: 1px solid var(--color-border);
  }

  .reviews-page-new__cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .reviews-page-new__score-card,
  .reviews-page-new__featured,
  .reviews-page-new__reasons,
  .reviews-page-new__bottom-cta {
    border-radius: 16px;
  }

  .reviews-page-new__score-card,
  .reviews-page-new__featured {
    padding: 1rem;
  }

  .reviews-page-new__score-right {
    padding: 1rem 0 0;
  }

  .reviews-page-new__google-brand strong {
    font-size: 1.6rem;
  }

  .reviews-page-new__google-brand span {
    font-size: 1.2rem;
  }

  .reviews-page-new__reasons-title {
    font-size: 1.25rem;
  }

  .reviews-page-new__reason-item {
    padding: 0.9rem 0.4rem 0.9rem 3.4rem;
  }

  .reviews-page-new__reason-item::before {
    left: 0.2rem;
  }

  .reviews-page-new__cards {
    grid-template-columns: 1fr;
  }

  .reviews-page-new__bottom-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---- ESHOP CATALOG PAGE ---- */
.eshop-catalog-page {
  padding-bottom: 1.2rem;
}

.eshop-breadcrumbs-wrap {
  padding: 1.2rem 0 0;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-text-muted);
  font-size: 0.86rem;
}

.breadcrumbs a {
  color: var(--color-text-muted);
}

.breadcrumbs a:hover {
  color: var(--color-primary-dark);
}

.eshop-hero {
  padding-top: 0.7rem;
  padding-bottom: 1.1rem;
}

.eshop-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.8rem;
  align-items: center;
}

.eshop-hero__left {
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0 0.9rem;
}

.eshop-hero__left h1 {
  margin: 0.3rem 0 0.65rem;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.1;
}

.eshop-hero__left > p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.eshop-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.eshop-hero__country-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.eshop-hero__country-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 229, 244, 0.92);
  color: var(--color-text);
}

.eshop-hero__country-badge img {
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.eshop-brand-strip {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.eshop-brand-strip__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.2rem 0.65rem;
  border-radius: 10px;
  color: rgba(15, 23, 42, 0.52);
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.1);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.eshop-brand-strip__hint {
  margin-top: 0.3rem;
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.eshop-info-box {
  margin-top: 0.7rem;
  padding: 0.72rem 0.86rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(225, 239, 247, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(23, 117, 173, 0.18);
}

.eshop-info-box h2 {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
  color: var(--color-primary-dark);
}

.eshop-info-box p {
  margin: 0;
  font-size: 0.86rem;
}

.eshop-country-picker {
  padding: 0.85rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(232, 242, 252, 0.97) 0%, rgba(255, 255, 255, 0.96) 60%);
  border: 1px solid rgba(23, 117, 173, 0.14);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.eshop-country-picker::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(23, 117, 173, 0.06) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(16, 93, 138, 0.04) 0%, transparent 45%);
  pointer-events: none;
}

.eshop-country-picker__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.eshop-country-picker h2 {
  margin: 0;
  font-size: 1.0rem;
}

.eshop-country-grid {
  display: grid;
  gap: 0.4rem;
}

.eshop-country-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  border-radius: 11px;
  border: 1px solid rgba(219, 229, 244, 0.85);
  background: rgba(255, 255, 255, 0.82);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  position: relative;
  z-index: 1;
}

.eshop-country-card:hover {
  transform: translateY(-1px);
  border-color: rgba(23, 117, 173, 0.35);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 14px rgba(25, 58, 130, 0.09);
}

.eshop-country-card__flag {
  font-size: 1.05rem;
}

.eshop-country-card__name {
  font-weight: 600;
  font-size: 0.93rem;
}

.eshop-country-card__arrow {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.88rem;
  opacity: 0.75;
}

.eshop-benefits {
  display: none;
}

/* --- Hero right: shop grid --- */
.eshop-shop-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.62rem;
  padding: 0.85rem;
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(235, 244, 253, 0.75) 0%, rgba(246, 250, 255, 0.54) 100%);
  border: 1px solid rgba(219, 229, 244, 0.82);
  overflow: hidden;
}

.eshop-shop-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../pictures/hero-map.png') no-repeat right 10px bottom 2px;
  background-size: 96% auto;
  opacity: 0.14;
  pointer-events: none;
}

.eshop-shop-tile {
  position: relative;
  z-index: 1;
  padding: 0.82rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(219, 229, 244, 0.96);
  box-shadow: 0 8px 18px rgba(25, 58, 130, 0.07);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.eshop-shop-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(25, 58, 130, 0.12);
  border-color: rgba(23, 117, 173, 0.28);
}

.eshop-shop-tile--large {
  grid-column: span 2;
  min-height: 96px;
  padding: 1rem 1.05rem;
}

.eshop-shop-tile__logo {
  width: auto;
  max-width: 87px;
  height: 34px;
  object-fit: contain;
  object-position: center;
}

.eshop-shop-tile__logo-text {
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1f2b45;
}

.eshop-shop-tile__name {
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 700;
  color: #2f415e;
  margin-top: 0.1rem;
}

.eshop-shop-tile:not(.eshop-shop-tile--large) .eshop-shop-tile__logo-text {
  font-size: 1.15rem;
}

.eshop-shop-tile__country {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--color-text-muted);
  opacity: 0.92;
}

.eshop-shop-tile__country img {
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.eshop-shop-tile--ghost {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
}

.eshop-shop-tile__dots {
  font-size: 1.65rem;
  line-height: 1;
  color: rgba(75, 90, 118, 0.6);
}

/* --- Destinations strip --- */
.eshop-destinations {
  padding-top: 0.5rem;
  padding-bottom: 0.6rem;
}

.eshop-destinations__inner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.eshop-destinations__label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.eshop-destinations__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.eshop-dest-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  padding: 0.32rem 0.78rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 229, 244, 0.95);
  color: var(--color-text);
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.eshop-dest-pill:hover {
  background: rgba(23, 117, 173, 0.08);
  border-color: rgba(23, 117, 173, 0.3);
  color: var(--color-primary-dark);
}

.eshop-dest-pill img {
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.eshop-why {
  padding-top: 1.5rem;
  padding-bottom: 1.2rem;
}

.eshop-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.eshop-why-card {
  padding: 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 229, 244, 0.92);
  box-shadow: 0 10px 24px rgba(25, 58, 130, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.eshop-why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 117, 173, 0.32);
  box-shadow: 0 16px 28px rgba(25, 58, 130, 0.12);
}

.eshop-why-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, rgba(203, 233, 249, 0.95) 0%, rgba(239, 247, 255, 0.95) 100%);
}

.eshop-why-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.97rem;
}

.eshop-why-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.86rem;
}

.eshop-categories {
  padding-top: 1.2rem;
  padding-bottom: 1rem;
}

.eshop-categories .section-heading {
  margin-bottom: 0.75rem;
}

.eshop-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.eshop-category-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 229, 244, 0.92);
  box-shadow: 0 12px 28px rgba(25, 58, 130, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.eshop-category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 117, 173, 0.28);
  box-shadow: 0 10px 22px rgba(25, 58, 130, 0.11);
}

.eshop-category-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(23, 117, 173, 0.12);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.eshop-category-card__body {
  display: grid;
  gap: 0.1rem;
}

.eshop-category-card__body strong {
  font-size: 1.02rem;
  line-height: 1.35;
}

.eshop-category-card__body span {
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.eshop-list {
  padding-top: 1rem;
}

.eshop-list .section-heading {
  margin-bottom: 0.75rem;
}

.eshop-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 229, 244, 0.9);
  margin-bottom: 1rem;
  align-items: end;
}

.eshop-filter-field {
  display: grid;
  gap: 0.35rem;
}

.eshop-filter-field span {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.eshop-filter-field select {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 0 0.7rem;
  color: var(--color-text);
  font: inherit;
}

.eshop-no-results {
  padding: 3rem 0;
  text-align: center;
  color: var(--color-text-muted);
}

.eshop-no-results p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.eshop-filter-check {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  padding: 0 0.2rem 0.75rem;
  font-weight: 600;
}

.eshop-filter-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
}

.eshop-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.eshop-card {
  padding: 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(219, 229, 244, 0.95);
  box-shadow: 0 8px 18px rgba(25, 58, 130, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  text-decoration: none;
  color: inherit;
}

.eshop-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(25, 58, 130, 0.12);
  border-color: rgba(23, 117, 173, 0.3);
}

.eshop-card__brand {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(219, 229, 244, 0.85);
}

.eshop-card__brand-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.eshop-card__brand-logo {
  width: auto;
  max-width: 90px;
  height: 22px;
  object-fit: contain;
  object-position: left center;
}

.eshop-card__brand-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2b45;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.eshop-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.eshop-card__content p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.eshop-country {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.06);
}

.eshop-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  padding: 0.24rem 0.54rem;
  border-radius: 999px;
  font-size: 0.68rem;
  background: rgba(23, 117, 173, 0.12);
  color: var(--color-primary-dark);
}

.eshop-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(219, 229, 244, 0.7);
}

.eshop-card__link-primary {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s, text-decoration-color 0.15s;
  text-underline-offset: 3px;
}

.eshop-card__link-primary:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.eshop-card__link-secondary {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.eshop-card__link-secondary:hover {
  color: var(--color-text);
  text-decoration: underline;
}

.eshop-disclaimer {
  margin: 1rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* ── Catalog pagination ─────────────────────────────────── */
.catalog-pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0 1rem;
  flex-wrap: wrap;
}

.catalog-pagination__pages {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.catalog-pagination__page,
.catalog-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.6rem;
  border-radius: var(--radius, 6px);
  font-size: 0.92rem;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  color: var(--color-text);
  background: transparent;
  border: 1px solid var(--color-border, #e0e0e0);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.catalog-pagination__page:hover,
.catalog-pagination__btn:hover {
  background: var(--color-bg-soft, #f5f5f5);
  border-color: var(--color-primary, #1a56db);
  color: var(--color-primary, #1a56db);
}

.catalog-pagination__page--active {
  background: var(--color-primary, #1a56db);
  border-color: var(--color-primary, #1a56db);
  color: #fff;
  cursor: default;
  pointer-events: none;
}

.catalog-pagination__btn--prev {
  margin-right: 0.25rem;
}

.catalog-pagination__btn--next {
  margin-left: 0.25rem;
}

.catalog-pagination__btn--disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}

.catalog-pagination__ellipsis {
  padding: 0 0.25rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 2.2rem;
}
/* ────────────────────────────────────────────────────────── */

.eshop-cta {
  padding-top: 2.5rem;
  padding-bottom: 2.1rem;
}

.eshop-cta-box {
  padding: 1.35rem 1.5rem;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 20px 38px rgba(23, 117, 173, 0.26);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.eshop-cta-box h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.eshop-cta-box p {
  margin: 0;
  opacity: 0.92;
  max-width: 760px;
}

.eshop-cta-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.eshop-howto {
  padding-top: 1.6rem;
}

.eshop-howto .section-heading {
  margin-bottom: 1rem;
}

.eshop-howto-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.eshop-howto-card {
  padding: 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 229, 244, 0.92);
  box-shadow: 0 10px 24px rgba(25, 58, 130, 0.08);
}

.eshop-howto-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.04rem;
}

.eshop-howto-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

  /* ──── SHOP DETAIL REDESIGN ──── */
  .shop-detail-hero__layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.4rem;
    align-items: start;
  }

  .shop-detail-hero__main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .shop-detail-hero__brand {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .shop-detail-hero__logo {
    min-width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(219, 229, 244, 0.92);
    flex-shrink: 0;
  }

  .shop-detail-hero__logo-img {
    max-width: 88px;
    max-height: 88px;
    object-fit: contain;
  }

  .shop-detail-hero__logo-text {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    text-align: center;
    line-height: 1;
  }

  .shop-detail-hero__brand > div {
    flex: 1;
  }

  .shop-detail-hero__brand h1 {
    margin: 0.4rem 0 0.5rem;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    line-height: 1.2;
  }

  .shop-detail-hero__brand > div > p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .shop-detail-hero__actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .shop-detail-hero__actions .btn {
    flex: 1;
    min-width: 180px;
  }

  .shop-detail-hero__side {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }

  .shop-detail-keyfacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    padding: 1.2rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(232, 242, 252, 0.97) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(219, 229, 244, 0.92);
    box-shadow: 0 8px 16px rgba(25, 58, 130, 0.06);
  }

  .shop-detail-keyfacts__item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .shop-detail-keyfacts__item span {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .shop-detail-keyfacts__item strong {
    font-size: 0.95rem;
    color: #1f2b45;
    font-weight: 700;
  }
  .shop-detail-keyfacts__item strong img,
  .shop-detail-param strong img {
    vertical-align: middle;
    display: inline;
  }
    padding: 1.2rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(239, 247, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
    border: 1px solid rgba(219, 229, 244, 0.92);
    box-shadow: 0 10px 24px rgba(25, 58, 130, 0.08);
  }

  .shop-detail-visual__chrome {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
  }

  .shop-detail-visual__chrome span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(23, 117, 173, 0.2);
  }

  .shop-detail-visual__content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }

  .shop-detail-visual__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
  }

  .shop-detail-visual__logo {
    max-width: 80px;
    max-height: 48px;
    object-fit: contain;
  }

  .shop-detail-visual__logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-primary-dark);
  }

  .shop-detail-visual__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
  }

  .shop-detail-visual__grid div {
    height: 42px;
    border-radius: 8px;
    background: rgba(219, 229, 244, 0.5);
  }

  .shop-detail-params {
    padding-top: 1.8rem;
  }

  .shop-detail-params__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .shop-detail-param {
    padding: 0.85rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(219, 229, 244, 0.92);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
  }

  .shop-detail-param span {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .shop-detail-param strong {
    font-size: 0.9rem;
    color: #1f2b45;
    font-weight: 700;
  }

  .shop-detail-category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .shop-detail-category-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 16px;
    background: rgba(23, 117, 173, 0.08);
    border: 1px solid rgba(23, 117, 173, 0.18);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-primary-dark);
  }

  .shop-detail-similar__row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .shop-detail-similar-card {
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(219, 229, 244, 0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: inherit;
    text-align: center;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  }

  .shop-detail-similar-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(25, 58, 130, 0.08);
    border-color: rgba(23, 117, 173, 0.24);
  }

  .shop-detail-similar-card__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    min-width: 80px;
  }

  .shop-detail-similar-card__logo {
    max-width: 72px;
    max-height: 32px;
    object-fit: contain;
  }

  .shop-detail-similar-card__meta {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.2rem;
    justify-content: center;
  }

  .shop-detail-sections__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  @media (max-width: 1100px) {
    .shop-detail-hero__layout {
      grid-template-columns: 1fr;
      gap: 1.8rem;
    }

    .shop-detail-hero__side {
      order: 3;
    }

    .shop-detail-params__grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .shop-detail-similar__row {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 760px) {
    .shop-detail-hero__layout {
      grid-template-columns: 1fr;
    }

    .shop-detail-hero__brand {
      flex-direction: column;
      gap: 1rem;
    }

    .shop-detail-hero__logo {
      min-width: 80px;
      width: 80px;
      height: 80px;
    }

    .shop-detail-hero__actions {
      flex-direction: column;
    }

    .shop-detail-hero__actions .btn {
      width: 100%;
      min-width: auto;
    }

    .shop-detail-keyfacts {
      grid-template-columns: 1fr;
    }

    .shop-detail-params__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-detail-similar__row {
      grid-template-columns: 1fr;
    }

    .shop-detail-sections__grid--2 {
      grid-template-columns: 1fr !important;
    }
  }
/* ---- SHOP DETAIL PAGE ---- */
.shop-detail-page {
  padding-bottom: 1.2rem;
}

.shop-detail-hero {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.shop-detail-hero__card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(239, 247, 255, 0.92) 100%);
  border: 1px solid rgba(219, 229, 244, 0.95);
  box-shadow: var(--shadow-soft);
}

.shop-detail-hero__layout {
  display: flex;
  gap: 1.2rem;
}

.shop-detail-hero__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.shop-detail-hero__brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.shop-detail-hero__logo {
  min-width: 120px;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  background: linear-gradient(135deg, rgba(232, 242, 252, 0.97) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(23, 117, 173, 0.14);
}

.shop-detail-hero__logo-img {
  display: block;
  max-width: 130px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.shop-detail-hero__logo-text {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.shop-detail-hero__country {
  font-size: 0.78rem;
  margin-top: 0.05rem;
}

.shop-detail-hero__brand h1 {
  margin: 0.4rem 0 0.45rem;
  font-size: clamp(1.8rem, 3.7vw, 2.55rem);
}

.shop-detail-hero__brand p {
  margin: 0;
  color: var(--color-text-muted);
}

.shop-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.shop-detail-hero__side {
  width: min(100%, 420px);
  display: grid;
  gap: 0.9rem;
}

.shop-detail-keyfacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.shop-detail-keyfacts__item {
  padding: 0.75rem 0.8rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 229, 244, 0.95);
  box-shadow: 0 6px 14px rgba(25, 58, 130, 0.06);
  display: grid;
  gap: 0.2rem;
}

.shop-detail-keyfacts__item span {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.shop-detail-keyfacts__item strong {
  font-size: 0.84rem;
  color: #1f2b45;
  line-height: 1.35;
}

.shop-detail-visual {
  border-radius: 16px;
  border: 1px solid rgba(219, 229, 244, 0.95);
  background: linear-gradient(145deg, rgba(252, 254, 255, 0.96) 0%, rgba(240, 247, 255, 0.95) 100%);
  box-shadow: 0 8px 20px rgba(25, 58, 130, 0.08);
  overflow: hidden;
}

.shop-detail-visual__chrome {
  padding: 0.6rem 0.7rem;
  border-bottom: 1px solid rgba(219, 229, 244, 0.92);
  display: flex;
  gap: 0.35rem;
}

.shop-detail-visual__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(23, 117, 173, 0.24);
}

.shop-detail-visual__content {
  padding: 0.9rem;
  display: grid;
  gap: 0.75rem;
}

.shop-detail-visual__brand {
  min-height: 40px;
  display: flex;
  align-items: center;
}

.shop-detail-visual__logo {
  max-width: 110px;
  height: 34px;
  object-fit: contain;
  object-position: left center;
}

.shop-detail-visual__logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2b45;
}

.shop-detail-visual__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.shop-detail-visual__grid div {
  min-height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(23, 117, 173, 0.12) 0%, rgba(23, 117, 173, 0.04) 100%);
}

.shop-detail-params {
  padding-top: 0.35rem;
}

.shop-detail-params__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.shop-detail-param {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  box-shadow: 0 4px 12px rgba(25, 58, 130, 0.05);
  display: grid;
  gap: 0.3rem;
}

.shop-detail-param span {
  font-size: 0.71rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.shop-detail-param strong {
  font-size: 0.88rem;
  color: #1f2b45;
  line-height: 1.4;
  font-weight: 700;
}

.shop-detail-info {
  padding-top: 0.5rem;
}

.shop-detail-info__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.shop-detail-sections {
  padding-top: 1rem;
}

.shop-detail-sections__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.shop-detail-sections__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-detail-box {
  padding: 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 229, 244, 0.92);
  box-shadow: 0 10px 24px rgba(25, 58, 130, 0.08);
}

.shop-detail-box h2 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.shop-detail-box p,
.shop-detail-box li {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.shop-detail-box ul,
.shop-detail-box ol {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.shop-detail-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.shop-detail-category-pill {
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  background: rgba(23, 117, 173, 0.09);
  border: 1px solid rgba(23, 117, 173, 0.15);
}

.shop-detail-faq {
  padding-top: 1.4rem;
}

.shop-detail-faq__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.shop-detail-faq__item {
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  box-shadow: 0 4px 14px rgba(25, 58, 130, 0.06);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.shop-detail-faq__item:hover {
  box-shadow: 0 10px 28px rgba(25, 58, 130, 0.11);
  transform: translateY(-1px);
}

.shop-detail-faq__item h3 {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
  color: var(--color-primary-dark);
  line-height: 1.35;
}

.shop-detail-faq__item p {
  margin: 0;
  font-size: 0.91rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.shop-detail-similar {
  padding-top: 1.2rem;
}

.shop-detail-similar__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.shop-detail-similar-card {
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 229, 244, 0.92);
  box-shadow: 0 6px 15px rgba(25, 58, 130, 0.06);
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: 0.35rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.shop-detail-similar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(25, 58, 130, 0.09);
  border-color: rgba(23, 117, 173, 0.24);
}

.shop-detail-similar-card__brand {
  min-height: 28px;
  display: flex;
  align-items: center;
}

.shop-detail-similar-card__logo {
  max-width: 92px;
  height: 26px;
  object-fit: contain;
  object-position: left center;
}

.shop-detail-similar-card__meta {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

@media (max-width: 1100px) {
  .eshop-hero__layout {
    grid-template-columns: 1fr;
  }

  .eshop-shop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .eshop-why-grid,
  .eshop-category-grid,
  .eshop-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eshop-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
  }

  .eshop-howto-grid {
    grid-template-columns: 1fr;
  }

  .eshop-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-detail-hero__layout {
    flex-direction: column;
  }

  .shop-detail-hero__side {
    width: 100%;
  }

  .shop-detail-params__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-detail-keyfacts,
  .shop-detail-similar__row,
  .shop-detail-info__grid,
  .shop-detail-sections__grid {
    grid-template-columns: 1fr;
  }

  .shop-detail-faq__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .eshop-hero {
    padding-top: 1.5rem;
    padding-bottom: 1.2rem;
  }

  .eshop-hero__left {
    padding: 0;
  }

  .eshop-hero__left h1 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .eshop-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0.65rem;
  }

  .eshop-shop-tile__logo {
    max-height: 26px;
    max-width: 112px;
  }

  .eshop-shop-tile__name {
    font-size: 0.74rem;
  }

  .eshop-shop-tile--large {
    min-height: 84px;
  }

  .eshop-why-grid,
  .eshop-category-grid,
  .eshop-card-grid {
    grid-template-columns: 1fr;
  }

  .eshop-filters {
    grid-template-columns: 1fr;
  }

  .eshop-filter-check {
    padding-bottom: 0.2rem;
    align-items: center;
  }

  .eshop-card {
    padding: 1rem;
  }

  .eshop-card__actions {
    flex-direction: row;
  }

  .eshop-cta-box {
    padding: 1.1rem;
    border-radius: 16px;
  }

  .eshop-cta-box__actions {
    width: 100%;
  }

  .eshop-cta-box__actions .btn {
    width: 100%;
  }

  .shop-detail-hero {
    padding-top: 1rem;
  }

  .shop-detail-hero__brand {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .shop-detail-hero__logo {
    min-width: 0;
    padding: 0.7rem 0.8rem;
    border-radius: 16px;
  }

  .shop-detail-hero__actions .btn {
    width: 100%;
  }

  .shop-detail-params__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- SHOP DETAIL PREMIUM CLEANUP ---- */
.shop-detail-page {
  background: transparent;
}

.shop-detail-hero {
  padding-top: 1.8rem;
  padding-bottom: 1.6rem;
}

.shop-detail-hero__card {
  padding: 2rem;
  border: 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(25, 58, 130, 0.08);
}

.shop-detail-hero__layout {
  align-items: center;
  gap: 2rem;
}

.shop-detail-hero__brand-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.6rem;
}

.shop-detail-hero__logo {
  min-width: 188px;
  min-height: 148px;
  padding: 1.15rem 1.3rem;
  border-radius: 22px;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.95);
  border: 0;
  box-shadow: 0 12px 28px rgba(25, 58, 130, 0.12);
}

.shop-detail-hero__logo-img {
  max-width: 168px;
  max-height: 68px;
  height: auto;
}

.shop-detail-hero__logo-text {
  font-size: 2rem;
}

.shop-detail-hero__copy h1 {
  margin: 0.2rem 0 0.45rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.shop-detail-hero__copy p {
  margin: 0;
  font-size: 1.08rem;
  color: #4d5f7b;
}

.shop-detail-hero__actions {
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.shop-detail-hero__side {
  width: min(100%, 360px);
}

.shop-detail-keyfacts {
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.shop-detail-keyfacts__item {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 0;
  box-shadow: none;
  background: rgba(236, 244, 252, 0.85);
}

.shop-detail-keyfacts__item span {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.77rem;
}

.shop-detail-keyfacts__item strong {
  font-size: 0.94rem;
}

.shop-detail-params {
  padding-top: 0.6rem;
}

.shop-detail-param {
  background: rgba(246, 249, 253, 0.92);
}

.shop-detail-box {
  border: 0;
  box-shadow: 0 8px 22px rgba(25, 58, 130, 0.06);
  background: rgba(255, 255, 255, 0.96);
  padding: 1.4rem 1.5rem;
}

.shop-detail-box h2 {
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.shop-detail-similar {
  padding-top: 1.35rem;
}

.shop-detail-similar__row.eshop-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.eshop-card--compact {
  padding: 0.95rem;
  border-radius: 16px;
  border: 0;
  box-shadow: 0 8px 20px rgba(25, 58, 130, 0.08);
  gap: 0.8rem;
}

.eshop-card--compact .eshop-card__brand {
  min-height: 34px;
}

.eshop-card--compact .eshop-card__brand-logo {
  max-height: 24px;
  max-width: 110px;
}

.eshop-card--compact .eshop-card__content p {
  -webkit-line-clamp: 1;
  font-size: 0.9rem;
}

.eshop-card--compact .eshop-card__actions {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .shop-detail-hero__card {
    padding: 1.45rem;
  }

  .shop-detail-hero__brand-wrap {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .shop-detail-hero__logo {
    min-width: 152px;
    min-height: 122px;
  }

  .shop-detail-similar__row.eshop-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .shop-detail-hero__card {
    padding: 1.1rem;
  }

  .shop-detail-hero__logo {
    min-width: 132px;
    min-height: 104px;
    padding: 0.95rem;
  }

  .shop-detail-hero__logo-img {
    max-width: 128px;
    max-height: 52px;
  }

  .shop-detail-hero__copy h1 {
    font-size: clamp(1.75rem, 9vw, 2.3rem);
  }

  .shop-detail-similar__row.eshop-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- PAGINATION ---- */
.dashboard-credit-pagination {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(219, 229, 244, 0.9);
  text-align: center;
}

.pagination-info {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.4rem;
  border: 1px solid rgba(219, 229, 244, 0.9);
  border-radius: 6px;
  background: #fff;
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.pagination-btn:hover:not(.pagination-btn--disabled):not(.pagination-btn--active) {
  border-color: var(--color-primary);
  background: rgba(23, 117, 173, 0.06);
  color: var(--color-primary);
}

.pagination-btn--active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  cursor: default;
}

.pagination-btn--disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: #f5f7fa;
}

.pagination-btn--dots {
  cursor: default;
  border: 0;
  background: transparent;
}

@media (max-width: 760px) {
  .dashboard-credit-pagination {
    gap: 0.85rem;
  }

  .pagination-btn {
    min-width: 2rem;
    height: 2rem;
    font-size: 0.8rem;
  }
}


