@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  border-radius: 0 !important;
}

html {
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  scroll-behavior: smooth;
  tab-size: 4;
}

body {
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: #111827;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #111827;
}

p {
  line-height: 1.55;
}
p:not(:last-child) {
  margin-bottom: 16px;
}

a {
  color: #2563EB;
  text-decoration: none;
  transition: color 0.12s ease;
}
a:hover {
  color: rgb(17.7142857143, 72.6285714286, 193.0857142857);
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th {
  text-align: left;
  font-weight: 600;
}

hr {
  border: none;
  border-top: 1px solid #E5E7EB;
  margin: 24px 0;
  color: inherit;
}

pre, code {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9em;
}

fieldset {
  border: none;
}

:focus-visible {
  outline: 2px solid #2563EB;
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=tel],
input[type=search],
textarea {
  -webkit-appearance: none;
  appearance: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

select {
  -webkit-appearance: none;
  appearance: none;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 38px;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 17px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 24px;
  }
}
.label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #2563EB;
  margin-bottom: 12px;
}

.lead {
  font-size: 20px;
  line-height: 1.35;
  color: #6B7280;
  max-width: 640px;
}

.text-xs {
  font-size: 11px !important;
}

.text-sm {
  font-size: 13px !important;
}

.text-base {
  font-size: 15px !important;
}

.text-md {
  font-size: 17px !important;
}

.text-lg {
  font-size: 20px !important;
}

.text-xl {
  font-size: 24px !important;
}

.text-2xl {
  font-size: 30px !important;
}

.fw-regular {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.text-primary {
  color: #1E2A38 !important;
}

.text-cta {
  color: #2563EB !important;
}

.text-muted {
  color: #6B7280 !important;
}

.text-white {
  color: #FFFFFF !important;
}

.text-success {
  color: #10B981 !important;
}

.text-danger {
  color: #EF4444 !important;
}

.text-warning {
  color: #F59E0B !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-upper {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.text-lower {
  text-transform: lowercase;
}

.text-capital {
  text-transform: capitalize;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
}

.container--wide {
  max-width: 1440px;
}

.container--narrow {
  max-width: 800px;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media (max-width: 640px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.section--sm {
  padding-top: 48px;
  padding-bottom: 48px;
}
@media (max-width: 768px) {
  .section--sm {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (max-width: 640px) {
  .section--sm {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.section--dark {
  background-color: #1E2A38;
  color: #FFFFFF;
}
.section--gray {
  background-color: #F3F4F6;
}
.section--white {
  background-color: #FFFFFF;
}

.section-header {
  margin-bottom: 48px;
}
.section-header--center {
  text-align: center;
}
.section-header--center .lead {
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 {
  margin-top: 12px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

[class^=col-] {
  padding: 0 12px;
  width: 100%;
}

.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

@media (max-width: 768px) {
  [class^=col-]:not([class*=-md-]) {
    width: 100%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
}
@media (max-width: 640px) {
  [class^=col-] {
    width: 100%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-12 {
    width: 100%;
  }
}
@media (max-width: 480px) {
  [class^=col-] {
    width: 100% !important;
  }
}
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

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

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.flex-1 {
  flex: 1;
}

.flex-none {
  flex: none;
}

.gap-2 {
  gap: 8px;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

.gap-8 {
  gap: 32px;
}

.block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}

.inline {
  display: inline !important;
}

.hidden {
  display: none !important;
}

@media (max-width: 640px) {
  .hide-mobile {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hide-tablet {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .hide-laptop {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .hide-desktop {
    display: none !important;
  }
}
@media (min-width: 640px) {
  .show-mobile-only {
    display: none !important;
  }
}
@media (max-width: 640px), (min-width: 1024px) {
  .show-tablet-only {
    display: none !important;
  }
}
.mt-2 {
  margin-top: 8px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-8 {
  margin-top: 32px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-6 {
  margin-bottom: 24px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.p-4 {
  padding: 16px;
}

.p-6 {
  padding: 24px;
}

.p-8 {
  padding: 32px;
}

.px-4 {
  padding-left: 16px;
  padding-right: 16px;
}

.px-6 {
  padding-left: 24px;
  padding-right: 24px;
}

.py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-6 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.py-8 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.bg-white {
  background-color: #FFFFFF !important;
}

.bg-gray {
  background-color: #F3F4F6 !important;
}

.bg-primary {
  background-color: #1E2A38 !important;
}

.bg-cta {
  background-color: #2563EB !important;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}
.badge--success {
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
}
.badge--danger {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
}
.badge--warning {
  background: rgba(245, 158, 11, 0.12);
  color: #F59E0B;
}
.badge--info {
  background: rgba(37, 99, 235, 0.1);
  color: #2563EB;
}
.badge--neutral {
  background: #E5E7EB;
  color: #6B7280;
}
.badge--primary {
  background: #1E2A38;
  color: #FFFFFF;
}

.divider {
  position: relative;
  border-top: 1px solid #E5E7EB;
  margin: 32px 0;
}
.divider__label {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  padding: 0 16px;
  font-size: 13px;
  color: #6B7280;
}

.card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  padding: 24px;
}
.card--elevated {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: none;
}
.card--dark {
  background: #1E2A38;
  border: none;
  color: #FFFFFF;
}
.card__header {
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 16px;
  font-weight: 600;
}
.card__footer {
  padding-top: 16px;
  border-top: 1px solid #E5E7EB;
  margin-top: 16px;
}

.aspect {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.aspect img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aspect--16x9 {
  padding-top: 56.25%;
}
.aspect--4x3 {
  padding-top: 75%;
}
.aspect--1x1 {
  padding-top: 100%;
}
.aspect--3x2 {
  padding-top: 66.67%;
}

.skeleton {
  background: #E5E7EB;
  background-image: linear-gradient(90deg, #E5E7EB 0%, rgb(237.647826087, 238.9826086957, 241.652173913) 50%, #E5E7EB 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
}
.skeleton--text {
  height: 1em;
  margin-bottom: 8px;
}
.skeleton--title {
  height: 1.5em;
  width: 60%;
}
.skeleton--block {
  height: 200px;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}
.btn:disabled, .btn--disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--loading {
  position: relative;
  color: transparent;
}
.btn--loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  animation: btn-spin 0.7s linear infinite;
}
.btn--icon {
  padding: 12px;
  width: 40px;
  height: 40px;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}
.btn--primary {
  background: #1E2A38;
  color: #FFFFFF;
  border-color: #1E2A38;
}
.btn--primary:hover {
  background: rgb(44.2325581395, 61.9255813953, 82.5674418605);
  border-color: rgb(44.2325581395, 61.9255813953, 82.5674418605);
  text-decoration: none;
  color: #FFFFFF;
}
.btn--primary:active {
  background: rgb(22.8837209302, 32.0372093023, 42.7162790698);
}

.btn--cta {
  background: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
}
.btn--cta:hover {
  background: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  border-color: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  text-decoration: none;
  color: #FFFFFF;
}
.btn--cta:active {
  background: rgb(16.8571428571, 69.1142857143, 183.7428571429);
}

.btn--outline {
  background: transparent;
  color: #1E2A38;
  border-color: #1E2A38;
}
.btn--outline:hover {
  background: #1E2A38;
  color: #FFFFFF;
  text-decoration: none;
}

.btn--outline-light {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--outline-light:hover {
  background: #FFFFFF;
  color: #1E2A38;
  border-color: #FFFFFF;
  text-decoration: none;
}

.btn--ghost {
  background: transparent;
  color: #2563EB;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover {
  color: rgb(17.7142857143, 72.6285714286, 193.0857142857);
  text-decoration: underline;
}

.btn--danger {
  background: #EF4444;
  color: #FFFFFF;
  border-color: #EF4444;
}
.btn--danger:hover {
  background: rgb(235.7842364532, 30.4157635468, 30.4157635468);
  border-color: rgb(235.7842364532, 30.4157635468, 30.4157635468);
  text-decoration: none;
  color: #FFFFFF;
}

.btn--success {
  background: #10B981;
  color: #FFFFFF;
  border-color: #10B981;
}
.btn--success:hover {
  background: rgb(12.752238806, 147.447761194, 102.8149253731);
  border-color: rgb(12.752238806, 147.447761194, 102.8149253731);
  text-decoration: none;
  color: #FFFFFF;
}

.btn--outline-danger {
  background: transparent;
  color: #EF4444;
  border-color: #EF4444;
}
.btn--outline-danger:hover {
  background: #EF4444;
  color: #FFFFFF;
  text-decoration: none;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 11px;
}

.btn--lg {
  padding: 16px 40px;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.btn--block {
  width: 100%;
  display: flex;
}

.btn-group {
  display: inline-flex;
  gap: 0;
}
.btn-group .btn:not(:first-child) {
  border-left-width: 0;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: #FF6800;
  height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: box-shadow 0.22s ease;
}
.header.is-scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  max-width: none;
  padding-left: clamp(16px, 10vw, 140px);
  padding-right: clamp(16px, 10vw, 140px);
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
}
.header__logo:hover {
  text-decoration: none;
  opacity: 0.88;
}

.header__logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .header__logo-img {
    height: 34px;
    max-width: 150px;
  }
}
@media (max-width: 640px) {
  .header__logo-img {
    height: 28px;
    max-width: 120px;
  }
}

.header__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  max-width: calc(100% - 480px);
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.header__nav-item {
  flex-shrink: 0;
}

.header__nav-link {
  display: block;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.12s ease, background 0.12s ease;
  white-space: nowrap;
}
.header__nav-link:hover {
  color: #FFFFFF;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
}
.header__nav-link.is-active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}
.header__nav-link.is-active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #2563EB;
}

.header__controls {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.lang-switcher {
  position: relative;
}

.lang-switcher__toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}
.lang-switcher__toggle svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  flex-shrink: 0;
  transition: transform 0.12s ease;
}
.lang-switcher__toggle:hover {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.45);
}
.lang-switcher__toggle.is-open svg {
  transform: rotate(180deg);
}

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 100;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  padding: 8px;
  display: none;
  grid-template-columns: 1fr;
  gap: 2px;
  min-width: 180px;
}
.lang-switcher__dropdown.is-open {
  display: grid;
}
@media (max-width: 640px) {
  .lang-switcher__dropdown {
    position: fixed;
    top: 60px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100vw - 32px);
    max-width: 280px;
    padding: 12px;
  }
}

.lang-switcher__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 15px;
  color: #111827;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
  white-space: nowrap;
}
.lang-switcher__option:hover {
  background: #F3F4F6;
  text-decoration: none;
  color: #1E2A38;
}
.lang-switcher__option.is-current {
  background: rgba(37, 99, 235, 0.08);
  color: #2563EB;
  font-weight: 600;
}
.lang-switcher__option .flag {
  font-size: 17px;
  line-height: 1;
}

.header__cart {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.12s ease;
}
.header__cart svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.header__cart:hover {
  color: #FFFFFF;
  text-decoration: none;
}

.header__cart-count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: #2563EB;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  display: none;
}
.header__cart-count.is-visible {
  display: block;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  margin-left: 16px;
  flex-shrink: 0;
}
.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.header__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 250;
  background: #FF6800;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.is-open {
  display: block;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav__link {
  display: block;
  padding: 16px;
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.12s ease, background 0.12s ease;
}
.mobile-nav__link:hover, .mobile-nav__link.is-active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
  .header__burger {
    display: flex;
  }
  .header__controls {
    gap: 8px;
  }
  .header__inner {
    padding-left: clamp(16px, 6vw, 64px);
    padding-right: clamp(16px, 6vw, 64px);
  }
}
@media (max-width: 640px) {
  .header__signin-label {
    display: none;
  }
  .header__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.footer {
  background-color: #FF6800;
  color: #FFFFFF;
  border-top: 3px solid rgba(255, 255, 255, 0.25);
}
.footer .container {
  max-width: none;
  padding-left: clamp(16px, 10vw, 140px);
  padding-right: clamp(16px, 10vw, 140px);
}
@media (max-width: 1024px) {
  .footer .container {
    padding-left: clamp(16px, 6vw, 64px);
    padding-right: clamp(16px, 6vw, 64px);
  }
}
@media (max-width: 768px) {
  .footer .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.footer__main {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer__main {
    grid-template-columns: 1fr;
  }
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__col-title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo-link {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.12s ease;
}
.footer__logo-link:hover {
  opacity: 0.85;
  text-decoration: none;
}

.footer__logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
@media (max-width: 640px) {
  .footer__logo-img {
    height: 30px;
    max-width: 160px;
  }
}

.footer__tagline {
  font-size: 16px;
  color: #FFFFFF;
  line-height: 1.55;
  max-width: 300px;
}

.footer__legal-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin-top: 8px;
}
.footer__legal-info p {
  margin-bottom: 4px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer__social-link,
.dp-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #FF6800;
  color: #FFFFFF;
  text-decoration: none;
  transition: background 0.12s ease;
}
.footer__social-link svg,
.dp-social-icon svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
  stroke: none;
  stroke-width: 0;
}
.footer__social-link:hover,
.dp-social-icon:hover {
  background: rgba(255, 255, 255, 0.14);
  text-decoration: none;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.footer__nav-link {
  font-size: 16px;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.12s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__nav-link::before {
  content: "→";
  font-size: 11px;
  color: #2563EB;
  flex-shrink: 0;
}
.footer__nav-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer__contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  color: #FFFFFF;
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: #2563EB;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__contact-item a {
  color: #FFFFFF;
  transition: color 0.12s ease;
}
.footer__contact-item a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer__badge-group {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  gap: 8px;
  margin-top: 16px;
}

.footer__b2b-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.35);
  color: rgb(130.4285714286, 165.8571428571, 243.5714285714);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__bottom {
  background: #CC5300;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 10pt;
  color: #FFFFFF;
}

.footer__legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal-link {
  font-size: 10pt;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.12s ease;
}
.footer__legal-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer__languages {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer__lang-link {
  font-size: 14px;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.12s ease;
}
.footer__lang-link:hover, .footer__lang-link.is-current {
  color: #FFFFFF;
  text-decoration: underline;
}

.dp-cmyk-dots {
  display: flex;
  align-items: center;
  gap: 3pt;
}

.dp-cmyk-dot {
  display: block;
  width: 20pt;
  height: 20pt;
  flex-shrink: 0;
  clip-path: circle(50% at 50% 50%);
}
.dp-cmyk-dot--c {
  background: #00AEEF;
}
.dp-cmyk-dot--m {
  background: #EC008C;
}
.dp-cmyk-dot--y {
  background: #FFF200;
}
.dp-cmyk-dot--k {
  background: #231F20;
}

@media (max-width: 768px) {
  .footer__bottom-inner {
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer__legal-links {
    gap: 16px;
  }
}
.hero {
  background-color: #1E2A38;
  position: relative;
  overflow: hidden;
  padding: 80px 0 64px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero__content {
  max-width: 620px;
}

.hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #2563EB;
  background: rgba(37, 99, 235, 0.12);
  padding: 4px 16px;
  margin-bottom: 20px;
}

.hero__title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  color: #2563EB;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 38px;
  }
}

.hero__subtitle {
  font-size: 17px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}
@media (max-width: 640px) {
  .hero__stats {
    grid-template-columns: 1fr;
    border-top: none;
    padding-top: 0;
    gap: 16px;
  }
}

.hero__stat {
  padding: 16px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.hero__stat:last-child {
  border-right: none;
}
@media (max-width: 640px) {
  .hero__stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .hero__stat:last-child {
    border-bottom: none;
  }
}

.hero__stat-value {
  display: block;
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
@media (max-width: 640px) {
  .hero__stat-value {
    font-size: 30px;
    margin-bottom: 0;
  }
}

.hero__stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.hero__panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  width: 280px;
}
@media (max-width: 1024px) {
  .hero__panel {
    display: none;
  }
}

.hero__panel-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease;
}
.hero__panel-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(37, 99, 235, 0.5);
}

.hero__panel-card-label {
  font-size: 11px;
  font-weight: 600;
  color: #2563EB;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.hero__panel-card-title {
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
}

.hero__panel-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.promo-ribbon {
  background: #F3F4F6;
  padding: 40px 0;
  overflow: hidden;
}

.promo-ribbon__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.promo-ribbon__title {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-top: 8px;
}

.promo-ribbon__view-all {
  font-size: 13px;
  font-weight: 600;
  color: #2563EB;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.12s ease;
}
.promo-ribbon__view-all svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  transition: transform 0.12s ease;
}
.promo-ribbon__view-all:hover {
  color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
  text-decoration: none;
}
.promo-ribbon__view-all:hover svg {
  transform: translateX(3px);
}

.promo-ribbon__track-wrapper {
  position: relative;
}
.promo-ribbon__track-wrapper::before, .promo-ribbon__track-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 1;
  pointer-events: none;
}
.promo-ribbon__track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #F3F4F6, transparent);
}
.promo-ribbon__track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #F3F4F6, transparent);
}

.promo-ribbon__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.promo-ribbon__track::-webkit-scrollbar {
  display: none;
}
.promo-ribbon__track:hover {
  scroll-behavior: auto;
}

.promo-ribbon__card {
  flex-shrink: 0;
  width: 220px;
  scroll-snap-align: start;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  cursor: pointer;
}
.promo-ribbon__card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.promo-ribbon__card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #F3F4F6;
  position: relative;
}
.promo-ribbon__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.promo-ribbon__card-img:hover img {
  transform: scale(1.04);
}

.promo-ribbon__card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  background: #2563EB;
}

.promo-ribbon__card-body {
  padding: 16px;
}

.promo-ribbon__card-category {
  font-size: 11px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.promo-ribbon__card-name {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  line-height: 1.35;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.promo-ribbon__card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.promo-ribbon__card-price-current {
  font-size: 17px;
  font-weight: 700;
  color: #1E2A38;
}

.promo-ribbon__card-price-old {
  font-size: 13px;
  color: #6B7280;
  text-decoration: line-through;
}

.promo-ribbon__card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 16px;
  width: 100%;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #1E2A38;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: background 0.12s ease;
}
.promo-ribbon__card-cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}
.promo-ribbon__card-cta:hover {
  background: #2563EB;
}

.promo-ribbon__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  justify-content: center;
}

.promo-ribbon__nav-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: #1E2A38;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
  flex-shrink: 0;
}
.promo-ribbon__nav-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}
.promo-ribbon__nav-btn:hover {
  background: #1E2A38;
  color: #FFFFFF;
  border-color: #1E2A38;
}
.promo-ribbon__nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.services-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: #2563EB;
}
.service-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
.service-card:active {
  transform: translateY(1px);
  box-shadow: none;
}
.service-card--blue::before {
  background: #2563EB;
}
.service-card--green::before {
  background: #10B981;
}
.service-card--amber::before {
  background: #F59E0B;
}
.service-card--dark::before {
  background: #1E2A38;
}
.service-card--red::before {
  background: #EF4444;
}
.service-card--teal::before {
  background: #0D9488;
}

.service-card__cover-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  outline: none;
}

.service-card__footer .btn {
  position: relative;
  z-index: 2;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: #2563EB;
  fill: none;
}

.service-card__category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6B7280;
}

.service-card__title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
}

.service-card__desc {
  font-size: 13px;
  line-height: 1.55;
  color: #6B7280;
  flex: 1;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  border-top: 1px solid #E5E7EB;
  padding-top: 16px;
  margin-top: 8px;
}

.service-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #111827;
}
.service-card__feature::before {
  content: "✓";
  color: #10B981;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.5;
  font-size: 11px;
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid #E5E7EB;
  padding-top: 16px;
  margin-top: auto;
}

.service-card__price {
  font-size: 11px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.service-card__price strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #1E2A38;
  margin-top: 4px;
}

.service-card--featured {
  flex-direction: row;
  align-items: flex-start;
  padding: 32px;
  grid-column: span 3;
}
@media (max-width: 1024px) {
  .service-card--featured {
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  .service-card--featured {
    grid-column: span 1;
    flex-direction: column;
  }
}
.service-card--featured .service-card__icon {
  width: 80px;
  height: 80px;
}
.service-card--featured .service-card__icon svg {
  width: 40px;
  height: 40px;
}
.service-card--featured .service-card__content {
  flex: 1;
}

.services-cta-strip {
  margin-top: 48px;
  background: #1E2A38;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 768px) {
  .services-cta-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.services-cta-strip__text h3 {
  font-size: 30px;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.services-cta-strip__text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.services-cta-strip__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s ease;
  position: relative;
}
.product-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.product-card:hover .product-card__actions {
  opacity: 1;
  transform: translateY(0);
}

.product-card__cover-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product-card__cart-row,
.product-card__book-fmt,
.product-card__notify,
.product-card__actions {
  position: relative;
  z-index: 2;
}

.product-card__img-wrap {
  position: relative;
  width: 100%;
  padding-top: 56%;
  overflow: hidden;
  background: #F3F4F6;
}

.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img {
  transform: scale(1.04);
}

.product-card__img-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 1;
}

.product-card__img-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.12s ease;
}
.product-card__img-dot.is-active {
  background: #FFFFFF;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  z-index: 1;
}
.product-card__badge--new {
  background: #2563EB;
}
.product-card__badge--sale {
  background: #EF4444;
}
.product-card__badge--out {
  background: #6B7280;
}
.product-card__badge--popular {
  background: #F59E0B;
  color: #111827;
}

.product-card__actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 1;
}

.product-card__action-btn {
  width: 34px;
  height: 34px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease;
  color: #1E2A38;
}
.product-card__action-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}
.product-card__action-btn:hover {
  background: #1E2A38;
  border-color: #1E2A38;
  color: #FFFFFF;
}
.product-card__action-btn--wishlist.is-saved {
  background: rgba(239, 68, 68, 0.1);
  border-color: #EF4444;
  color: #EF4444;
}

.product-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.product-card__category {
  font-size: 11px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-card__name {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__sku {
  font-size: 11px;
  color: #9CA3AF;
  letter-spacing: 0.04em;
}
.product-card__sku span {
  font-weight: 500;
  color: #6B7280;
}

.product-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.product-card__spec-tag {
  padding: 2px 8px;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  font-size: 11px;
  color: #6B7280;
  white-space: nowrap;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

.product-card__tag {
  padding: 1px 8px;
  background: rgba(37, 99, 235, 0.08);
  font-size: 11px;
  color: #2563EB;
  white-space: nowrap;
  line-height: 1.5;
}

.product-card__brand {
  font-size: 11px;
  color: #111827;
}
.product-card__brand strong {
  font-weight: 600;
}

.product-card__stock {
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-card__stock::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50% !important;
  flex-shrink: 0;
}
.product-card__stock--in::before {
  background: #10B981;
}
.product-card__stock--low::before {
  background: #F59E0B;
}
.product-card__stock--out::before {
  background: #EF4444;
}
.product-card__stock--in {
  color: #10B981;
}
.product-card__stock--low {
  color: #F59E0B;
}
.product-card__stock--out {
  color: #EF4444;
}

.product-card__stock-qty {
  font-weight: 400;
  opacity: 0.8;
}

.product-card__notify {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
  font-size: 11px;
  color: #6B7280;
  cursor: pointer;
  line-height: 1.35;
}
.product-card__notify input[type=checkbox] {
  margin: 0;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #2563EB;
}
.product-card__notify span {
  transition: color 0.12s ease;
}
.product-card__notify:hover span {
  color: #111827;
}

.product-card__pricing {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #E5E7EB;
}

.product-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.product-card__price {
  font-size: 24px;
  font-weight: 700;
  color: #1E2A38;
}

.product-card__price-old {
  font-size: 13px;
  color: #6B7280;
  text-decoration: line-through;
}

.product-card__price-note {
  font-size: 11px;
  color: #6B7280;
  margin-top: 4px;
}

.product-card__cart-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid #E5E7EB;
  flex-shrink: 0;
}

.qty-stepper__btn {
  width: 32px;
  height: 32px;
  background: #F3F4F6;
  border: none;
  font-size: 20px;
  font-weight: 700;
  color: #1E2A38;
  cursor: pointer;
  transition: background 0.12s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-stepper__btn:hover {
  background: #E5E7EB;
}

.qty-stepper__input {
  width: 42px;
  height: 32px;
  border: none;
  border-left: 1px solid #E5E7EB;
  border-right: 1px solid #E5E7EB;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  background: #FFFFFF;
  color: #111827;
}
.qty-stepper__input::-webkit-inner-spin-button, .qty-stepper__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.product-card__add-btn {
  flex: 1;
  height: 32px;
  background: #1E2A38;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background 0.12s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.product-card__add-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}
.product-card__add-btn:hover {
  background: #2563EB;
}
.product-card__add-btn.is-added {
  background: #10B981;
}

.preflight-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.preflight-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.preflight-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 620px;
  max-width: 100vw;
  background: #FFFFFF;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  z-index: 500;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow: hidden;
}
.preflight-drawer--open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .preflight-drawer {
    width: 620px;
  }
}

.preflight-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #E5E7EB;
  flex-shrink: 0;
  background: #1E2A38;
  color: #FFFFFF;
}

.preflight-drawer__title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  color: #FFFFFF;
}

.preflight-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.75);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.12s ease;
}
.preflight-drawer__close:hover {
  color: #FFFFFF;
}

.preflight-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.preflight-steps {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #E5E7EB;
  background: #F9FAFB;
  flex-shrink: 0;
  gap: 0;
}

.preflight-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}

.preflight-step__connector {
  flex: 1;
  height: 1px;
  background: #E5E7EB;
  margin: 0 8px;
  margin-bottom: 12px;
}

.preflight-step__num {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #D1D5DB;
  background: #FFFFFF;
  color: #6B7280;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.preflight-step__label {
  font-size: 11px;
  color: #6B7280;
  white-space: nowrap;
  transition: color 0.12s ease;
}

.preflight-step--active .preflight-step__num {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
}
.preflight-step--active .preflight-step__label {
  color: #2563EB;
  font-weight: 600;
}

.preflight-step--done .preflight-step__num {
  background: #10B981;
  border-color: #10B981;
  color: #FFFFFF;
}
.preflight-step--done .preflight-step__label {
  color: #10B981;
}

.preflight-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.preflight-panel[hidden] {
  display: none;
}

.preflight-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.preflight-label {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.preflight-input,
.preflight-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  background: #FFFFFF;
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  color: #111827;
  transition: border-color 0.12s ease;
  resize: none;
}
.preflight-input:focus,
.preflight-textarea:focus {
  outline: none;
  border-color: #2563EB;
}
.preflight-input::placeholder,
.preflight-textarea::placeholder {
  color: #9CA3AF;
}

.preflight-textarea {
  min-height: 72px;
}

.preflight-char-count {
  font-size: 11px;
  color: #6B7280;
  text-align: right;
}

.preflight-form-hint {
  font-size: 11px;
  color: #6B7280;
  margin: 0;
}

.preflight-mode-toggle {
  display: flex;
  gap: 0;
  border: 1px solid #D1D5DB;
}

.preflight-mode-btn {
  flex: 1;
  padding: 8px 12px;
  text-align: center;
  font-size: 13px;
  color: #6B7280;
  background: #FFFFFF;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
  user-select: none;
}
.preflight-mode-btn + .preflight-mode-btn {
  border-left: 1px solid #D1D5DB;
}
.preflight-mode-btn--active {
  background: #1E2A38;
  color: #FFFFFF;
}

.preflight-dropzone {
  border: 2px dashed #D1D5DB;
  background: #F9FAFB;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
  text-align: center;
}
.preflight-dropzone:hover, .preflight-dropzone--dragover {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.04);
}
.preflight-dropzone--has-file {
  border-color: #10B981;
}
.preflight-dropzone[hidden] {
  display: none;
}

.preflight-dropzone__icon {
  color: #6B7280;
  width: 40px;
  height: 40px;
}

.preflight-dropzone__text {
  font-size: 15px;
  color: #111827;
  margin: 0;
}

.preflight-dropzone__link {
  color: #2563EB;
  text-decoration: underline;
  cursor: pointer;
}

.preflight-dropzone__hint {
  font-size: 11px;
  color: #6B7280;
  margin: 0;
}

.preflight-file-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #E5E7EB;
  background: #F9FAFB;
  font-size: 13px;
  color: #111827;
}
.preflight-file-info[hidden] {
  display: none;
}

.preflight-file-remove {
  margin-left: auto;
  background: none;
  border: none;
  color: #EF4444;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  padding: 0 4px;
}

.preflight-error-msg {
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.08);
  border-left: 3px solid #EF4444;
  color: #EF4444;
  font-size: 13px;
}
.preflight-error-msg[hidden] {
  display: none;
}

.preflight-submit-btn {
  width: 100%;
  justify-content: center;
}

.preflight-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #6B7280;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.12s ease;
}
.preflight-back:hover {
  color: #111827;
}
.preflight-back[hidden] {
  display: none;
}

.preflight-processing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 0;
}

.preflight-spinner__svg {
  animation: pf-spin 1s linear infinite;
  transform-origin: center;
}

@keyframes pf-spin {
  to {
    transform: rotate(360deg);
  }
}
.preflight-processing__label {
  font-size: 15px;
  color: #111827;
  margin: 0;
}

.preflight-progress {
  width: 100%;
  height: 4px;
  background: #E5E7EB;
  overflow: hidden;
}

.preflight-progress__fill {
  height: 100%;
  background: #2563EB;
  transition: width 0.4s ease;
}

.preflight-process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.preflight-ps {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #6B7280;
  transition: color 0.12s ease;
}
.preflight-ps--active {
  color: #2563EB;
  font-weight: 600;
}
.preflight-ps--done {
  color: #10B981;
}

.preflight-ps__dot {
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  flex-shrink: 0;
  transition: background 0.12s ease;
}
.preflight-ps--done .preflight-ps__dot {
  background: #10B981;
  border-color: #10B981;
}
.preflight-ps--active .preflight-ps__dot {
  background: #2563EB;
  border-color: #2563EB;
}

.preflight-preview {
  border: 1px solid #E5E7EB;
  background: #F3F4F6;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.preflight-preview__canvas {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  display: block;
}

.preflight-preview__legend {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  color: #6B7280;
  flex-wrap: wrap;
  justify-content: center;
}

.preflight-legend-dot {
  display: inline-block;
  width: 12px;
  height: 3px;
  margin-right: 4px;
  vertical-align: middle;
}
.preflight-legend-dot--trim {
  background: #EF4444;
}
.preflight-legend-dot--safe {
  background: #10B981;
}
.preflight-legend-dot--bleed {
  background: #3B82F6;
}

.preflight-checks {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #E5E7EB;
}

.preflight-check-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #E5E7EB;
  font-size: 13px;
}
.preflight-check-row:last-child {
  border-bottom: none;
}
.preflight-check-row--pass {
  background: rgba(16, 185, 129, 0.04);
}
.preflight-check-row--fail {
  background: rgba(239, 68, 68, 0.04);
}

.preflight-check-icon {
  font-weight: 700;
  font-size: 15px;
}
.preflight-check-row--pass .preflight-check-icon {
  color: #10B981;
}
.preflight-check-row--fail .preflight-check-icon {
  color: #EF4444;
}

.preflight-check-name {
  color: #111827;
  font-weight: 500;
}

.preflight-check-detail {
  color: #6B7280;
  font-size: 11px;
  text-align: right;
}

.preflight-status {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
}
.preflight-status--ok {
  background: rgba(16, 185, 129, 0.1);
  color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
  border: 1px solid #10B981;
}
.preflight-status--fail {
  background: rgba(239, 68, 68, 0.08);
  color: #EF4444;
  border: 1px solid #EF4444;
}
.preflight-status--pending {
  background: rgba(37, 99, 235, 0.06);
  color: #2563EB;
  border: 1px solid #2563EB;
}

.preflight-check-row--pending .preflight-check-icon {
  color: #6B7280;
}

.preflight-check-row--warning {
  background: rgba(245, 158, 11, 0.05);
}
.preflight-check-row--warning .preflight-check-icon {
  color: #D97706;
}

.preflight-check-row--info {
  background: rgba(37, 99, 235, 0.04);
}
.preflight-check-row--info .preflight-check-icon {
  color: #2563EB;
}

.pf-convert-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.25);
  font-size: 11px;
  color: #2563EB;
  margin-bottom: 12px;
}
.pf-convert-notice svg {
  flex-shrink: 0;
}

.pf-file-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #E5E7EB;
  border: 1px solid #E5E7EB;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .pf-file-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pf-file-info__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  background: #FFFFFF;
}

.pf-file-info__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6B7280;
  font-weight: 600;
}

.pf-file-info__val {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.pf-severity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.pf-report-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.preflight-designer-help {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid #D1D5DB;
  background: rgba(245, 158, 11, 0.06);
  cursor: pointer;
}
.preflight-designer-help[hidden] {
  display: none;
}
.preflight-designer-help input[type=checkbox] {
  margin-top: 2px;
  flex-shrink: 0;
}

.preflight-designer-help__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.preflight-designer-help__note {
  font-size: 11px;
  color: #6B7280;
  font-weight: 400;
}

.preflight-result-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.preflight-result-actions .btn {
  flex: 1;
  justify-content: center;
}

.preflight-cover-section {
  border-top: 1px solid #E5E7EB;
  padding-top: 16px;
  margin-top: 8px;
}

.preflight-issue-review {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.25);
  margin: 12px 0;
}
.preflight-issue-review[hidden] {
  display: none;
}

.preflight-issue-review__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.preflight-issue-review__counter {
  font-size: 11px;
  color: #EF4444;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preflight-issue-review__name {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.preflight-issue-review__detail {
  font-size: 13px;
  color: #6B7280;
  margin: 0;
}

.preflight-issue-review__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.preflight-issue-review__actions .btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

.preflight-summary {
  padding: 16px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  font-size: 13px;
  color: #111827;
  margin: 0;
}

.preflight-callback-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preflight-callback-opt {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease;
}
.preflight-callback-opt:has(input:checked) {
  background: rgba(37, 99, 235, 0.05);
  border-color: #2563EB;
}
.preflight-callback-opt input[type=radio] {
  display: none;
}
.preflight-callback-opt > span:first-of-type {
  font-size: 15px;
  font-weight: 500;
  color: #111827;
}

.preflight-callback-opt__note {
  font-size: 11px;
  color: #6B7280;
}

.preflight-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 16px;
  text-align: center;
}
.preflight-success[hidden] {
  display: none;
}
.preflight-success h3 {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 24px;
  margin: 0;
  color: #10B981;
}
.preflight-success p {
  font-size: 15px;
  color: #6B7280;
  margin: 0;
  max-width: 360px;
}

.preflight-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  color: #111827;
  line-height: 1.55;
  padding: 16px;
  background: rgb(251.0236220472, 216.4291338583, 157.9763779528);
  border-left: 4px solid #F59E0B;
  margin-bottom: 16px;
}
.preflight-consent-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #2563EB;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.contact-form__callback-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}
.contact-form__callback-toggle input[type=checkbox] {
  accent-color: #2563EB;
  width: 16px;
  height: 16px;
  margin: 0;
}
.contact-form__callback-toggle span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-form__callback-toggle svg {
  color: #2563EB;
  flex-shrink: 0;
}

.contact-form__callback-fields {
  margin-top: 16px;
}

.contact-form__success {
  text-align: center;
  padding: 32px 0;
}
.contact-form__success svg {
  color: #10B981;
  margin-bottom: 16px;
}
.contact-form__success .register-screen__title {
  margin-bottom: 8px;
}
.contact-form__success .register-screen__subtitle {
  margin-bottom: 24px;
}

.dp-tooltip-trigger {
  position: relative;
  cursor: help;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  vertical-align: middle;
}

.dp-tooltip-trigger__icon {
  width: 16px;
  height: 16px;
  color: #2563EB;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.12s ease;
}
.dp-tooltip-trigger:hover .dp-tooltip-trigger__icon {
  opacity: 1;
}

.dp-tooltip {
  position: fixed;
  z-index: 500;
  background: #1E2A38;
  color: #FFFFFF;
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  padding: 8px 12px;
  max-width: 260px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.12s ease;
}
.dp-tooltip--visible {
  opacity: 1;
}

.dp-tooltip__arrow {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #1E2A38;
  transform: rotate(45deg);
}
.dp-tooltip__arrow--bottom {
  bottom: -4px;
  left: 50%;
  margin-left: -4px;
}
.dp-tooltip__arrow--top {
  top: -4px;
  left: 50%;
  margin-left: -4px;
}

.protected-image {
  position: relative;
}
.protected-image::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: all;
  z-index: 10;
  cursor: default;
}
.protected-image .overlay-clickable {
  position: relative;
  z-index: 11;
  pointer-events: auto;
}
.protected-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.protected-block {
  position: relative;
}
.protected-block::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: all;
  z-index: 10;
  cursor: default;
}
.protected-block .overlay-clickable {
  position: relative;
  z-index: 11;
  pointer-events: auto;
}

.no-overlay::after {
  display: none;
  pointer-events: none;
}

.section-title-with-img {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.section-title-with-img--dark .section-title-with-img__image {
  border-color: rgba(255, 255, 255, 0.3);
}
.section-title-with-img--center {
  justify-content: center;
}
@media (max-width: 640px) {
  .section-title-with-img {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section-title-with-img.section-title-with-img--center {
    align-items: center;
  }
}

.section-title-with-img__image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border: 1px solid #D1D5DB;
}
.section-title-with-img__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.section-title-with-img__image img[loading=lazy] {
  background: #F3F4F6;
}
@media (max-width: 768px) {
  .section-title-with-img__image {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 640px) {
  .section-title-with-img__image {
    width: 120px;
    height: 120px;
  }
}

.section-title-with-img__body {
  flex: 1;
  min-width: 0;
}
.section-title-with-img__body .label {
  margin-bottom: 8px;
  display: block;
}
.section-title-with-img__body h1, .section-title-with-img__body h2, .section-title-with-img__body h3 {
  margin-top: 0;
}
.section-title-with-img__body .lead,
.section-title-with-img__body .section-header__sub,
.section-title-with-img__body p {
  margin-top: 8px;
  margin-bottom: 0;
}

.glass {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
}
.glass--strong {
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
}
.glass--dark {
  background: rgba(30, 42, 56, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
}

.card--glass {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
}
.card--glass:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 0 1px rgba(37, 99, 235, 0.15);
}

.glass-strip {
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
}

.glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 600;
  color: #111827;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
}

.dp-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.dp-hero--dark .dp-hero__label {
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}
.dp-hero--dark .dp-hero__title {
  color: #FFFFFF;
}
.dp-hero--dark .dp-hero__sub {
  color: rgba(255, 255, 255, 0.65);
}
.dp-hero--center {
  justify-content: center;
  text-align: center;
}
.dp-hero--center .dp-hero__content {
  align-items: center;
}
@media (max-width: 768px) {
  .dp-hero {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .dp-hero--center {
    align-items: center;
  }
}

.dp-hero__image-wrap {
  flex-shrink: 0;
  width: 28%;
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  outline: 1px solid rgba(255, 255, 255, 0.35);
  outline-offset: -1px;
}
@media (max-width: 768px) {
  .dp-hero__image-wrap {
    width: 100%;
    aspect-ratio: 16/7;
  }
}
@media (max-width: 640px) {
  .dp-hero__image-wrap {
    aspect-ratio: 16/9;
  }
}

.dp-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  transition: transform 0.25s ease-out;
}
.dp-hero__image-wrap:hover .dp-hero__image {
  transform: scale(1.15);
}

.dp-hero__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dp-hero__label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B7280;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.dp-hero__title {
  margin: 0;
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: #111827;
  letter-spacing: -0.02em;
}

.dp-hero__sub {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #6B7280;
  max-width: 520px;
}

.dp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.pe-wrap {
  margin-top: 32px;
}

.pe-config-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-bottom: none;
}

.pe-chip {
  display: inline-block;
  padding: 4px 12px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  font-size: 0.8rem;
  font-weight: 500;
  color: #111827;
  white-space: nowrap;
}

.pe-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #E5E7EB;
}

.pe-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.9rem;
}
.pe-table .pe-col-label {
  width: 120px;
}
.pe-table .pe-col-qty {
  width: 1fr;
}

.pe-th {
  padding: 12px 16px;
  background: #1E2A38;
  color: #FFFFFF;
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}
.pe-th:last-child {
  border-right: none;
}
.pe-th--label {
  text-align: left;
  padding-left: 16px;
}

.pe-qty-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}

.pe-qty-unit {
  display: block;
  font-size: 0.7rem;
  opacity: 0.75;
  font-weight: 400;
}

.pe-qty-sets {
  display: block;
  font-size: 0.7rem;
  color: #F59E0B;
  font-weight: 500;
  margin-top: 2px;
}

.pe-td {
  padding: 0;
  border-right: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  vertical-align: top;
}
.pe-td:last-child {
  border-right: none;
}
.pe-td--label {
  padding: 12px 16px;
  background: #F3F4F6;
  border-right: 2px solid #E5E7EB;
  white-space: nowrap;
  vertical-align: middle;
}
.pe-td--na {
  text-align: center;
  padding: 12px;
  color: #6B7280;
  font-size: 0.85rem;
  background: #F3F4F6;
}

.pe-row--express .pe-td--label {
  border-left: 3px solid #EF4444;
}
.pe-row--standard .pe-td--label {
  border-left: 3px solid #2563EB;
}
.pe-row--economy .pe-td--label {
  border-left: 3px solid #10B981;
}

.pe-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pe-badge--exp {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.pe-badge--std {
  background: rgba(37, 99, 235, 0.1);
  color: #2563EB;
  border: 1px solid rgba(37, 99, 235, 0.3);
}
.pe-badge--eco {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.pe-cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  height: 100%;
  padding: 12px 12px;
  border: none;
  background: #FFFFFF;
  text-align: center;
  cursor: pointer;
  transition: background 0.12s ease, box-shadow 0.12s ease;
}
.pe-cell:hover {
  background: rgba(37, 99, 235, 0.05);
}
.pe-cell:focus-visible {
  outline: 2px solid #2563EB;
  outline-offset: -2px;
}
.pe-cell--selected {
  background: rgba(37, 99, 235, 0.08);
  box-shadow: inset 0 0 0 2px #2563EB;
}
.pe-cell__price {
  display: block;
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}
.pe-cell__unit {
  display: block;
  font-size: 0.75rem;
  color: #6B7280;
}
.pe-cell__date {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #10B981;
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px dashed #E5E7EB;
}
.pe-cell__tech {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.pe-cell__tech--digital {
  color: #2563EB;
}
.pe-cell__tech--offset {
  color: #F59E0B;
}

.pe-breakeven {
  margin: 12px 0 0;
  padding: 12px 16px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-left: 4px solid #F59E0B;
  font-size: 0.85rem;
  color: #111827;
  line-height: 1.55;
}
.pe-breakeven strong {
  color: #F59E0B;
}

.pe-breakdown {
  margin-top: 16px;
  border: 1px solid #E5E7EB;
}
.pe-breakdown__title {
  display: block;
  padding: 12px 16px;
  background: #F3F4F6;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: #111827;
  user-select: none;
}
.pe-breakdown__title:hover {
  background: rgb(237.1714285714, 238.6571428571, 241.6285714286);
}
.pe-breakdown__title:focus-visible {
  outline: 2px solid #2563EB;
}
.pe-breakdown__table {
  width: 100%;
}
.pe-breakdown__table td {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-bottom: 1px solid #E5E7EB;
  color: #111827;
}
.pe-breakdown__table td:last-child {
  text-align: right;
  font-weight: 600;
  color: #1E2A38;
}
.pe-breakdown__table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 640px) {
  .pe-table {
    font-size: 0.8rem;
    min-width: 420px;
  }
  .pe-cell {
    padding: 8px;
  }
  .pe-cell__price {
    font-size: 0.95rem;
  }
  .pe-th {
    padding: 8px 8px;
  }
  .pe-qty-num {
    font-size: 1rem;
  }
}
.mug-mockup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.mug-mockup-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mug-mockup-panel {
  position: relative;
  width: 94vw;
  max-width: 720px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(24px);
  transition: transform 0.25s ease;
}
.is-open .mug-mockup-panel {
  transform: translateY(0);
}

.mug-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #E5E7EB;
}

.mug-mockup-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.mug-mockup-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: #6B7280;
  cursor: pointer;
}
.mug-mockup-close:hover {
  color: #EF4444;
}

.mug-mockup-viewport {
  width: 100%;
  height: 420px;
  background: #2a2d32;
  position: relative;
}
.mug-mockup-viewport canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
@media (max-width: 600px) {
  .mug-mockup-viewport {
    height: 300px;
  }
}

.mug-mockup-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid #E5E7EB;
  flex-wrap: wrap;
}

.mug-mockup-upload-label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
}

.mug-mockup-hint {
  font-size: 12px;
  color: #6B7280;
  margin-left: auto;
}
@media (max-width: 600px) {
  .mug-mockup-hint {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

.bp-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bp-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.bp-modal__panel {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  max-width: 95vw;
  max-height: 95vh;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.bp-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid #E5E7EB;
  background: #1E2A38;
  color: #FFFFFF;
}

.bp-modal__title {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.bp-modal__title svg {
  stroke: #FFFFFF;
  flex-shrink: 0;
}

.bp-modal__product-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bp-modal__close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 22px;
  cursor: pointer;
  flex-shrink: 0;
}
.bp-modal__close:hover {
  color: #EF4444;
}

.bp-modal__canvas-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  background: #2A2D32;
  padding: 16px;
  min-height: 300px;
}
.bp-modal__canvas-wrap canvas {
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.bp-modal__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 20px;
  border-top: 1px solid #E5E7EB;
  background: #F9FAFB;
}

.bp-modal__nav-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  cursor: pointer;
  transition: background 0.15s;
}
.bp-modal__nav-btn svg {
  stroke: #1E2A38;
}
.bp-modal__nav-btn:hover:not(:disabled) {
  background: #EFF6FF;
}
.bp-modal__nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.bp-modal__page-info {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  min-width: 60px;
  text-align: center;
}

.bp-modal__notice {
  text-align: center;
  font-size: 11px;
  color: #6B7280;
  padding: 6px 20px 10px;
  background: #F9FAFB;
}

@media (max-width: 600px) {
  .bp-modal__panel {
    max-width: 100vw;
    max-height: 100vh;
    width: 100%;
    height: 100%;
  }
  .bp-modal__canvas-wrap {
    padding: 8px;
  }
  .bp-modal__header {
    padding: 10px 14px;
  }
}
.b2b-section {
  background: #1E2A38;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.b2b-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 80px), repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 80px);
  pointer-events: none;
}

.b2b-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .b2b-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.b2b-section__title {
  font-size: 38px;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 16px;
  margin-bottom: 20px;
  line-height: 1.15;
}

.b2b-section__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin-bottom: 32px;
}

.b2b-section__segments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.b2b-section__segment-tag {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.b2b-section__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.b2b-section__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .b2b-section__benefits {
    grid-template-columns: 1fr;
  }
}

.b2b-benefit {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  transition: background 0.22s ease;
}
.b2b-benefit:hover {
  background: rgba(255, 255, 255, 0.1);
}

.b2b-benefit__icon {
  font-size: 30px;
  margin-bottom: 12px;
  display: block;
}

.b2b-benefit__title {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.b2b-benefit__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

.welcome-banner {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-left: 4px solid #2563EB;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  padding: 20px 24px;
  display: none;
  margin-bottom: 24px;
}
.welcome-banner.is-visible {
  display: block;
}

.welcome-banner__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.welcome-banner__greeting {
  font-size: 17px;
  font-weight: 600;
  color: #111827;
}
.welcome-banner__greeting span {
  color: #2563EB;
}

.welcome-banner__close {
  width: 24px;
  height: 24px;
  cursor: pointer;
  color: #6B7280;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome-banner__close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}
.welcome-banner__close:hover {
  color: #111827;
}

.welcome-banner__reminders {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.welcome-reminder {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  font-size: 13px;
  color: #111827;
  text-decoration: none;
  transition: background 0.12s ease;
}
.welcome-reminder svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}
.welcome-reminder strong {
  font-weight: 600;
  color: #1E2A38;
}
.welcome-reminder--warning {
  border-color: #F59E0B;
  background: rgba(245, 158, 11, 0.05);
}
.welcome-reminder--warning svg {
  stroke: #F59E0B;
}
.welcome-reminder:hover {
  background: #E5E7EB;
  text-decoration: none;
}

.news-preview {
  padding: 80px 0;
  background: #F3F4F6;
}

.news-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 1024px) {
  .news-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .news-preview__grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s ease;
}
.news-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-card__img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #F3F4F6;
}
.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card__img img {
  transform: scale(1.04);
}

.news-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-card__category {
  color: #2563EB;
  font-weight: 600;
}

.news-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
}
.news-card__title a {
  color: inherit;
  text-decoration: none;
}
.news-card__title a:hover {
  color: #2563EB;
}

.news-card__excerpt {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__read-more {
  font-size: 13px;
  font-weight: 600;
  color: #2563EB;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.news-card__read-more svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  transition: transform 0.12s ease;
}
.news-card__read-more:hover {
  text-decoration: none;
}
.news-card__read-more:hover svg {
  transform: translateX(3px);
}

.news-article {
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  margin-bottom: 16px;
}
.news-article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 13px;
}
.news-article__cat {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
}
.news-article__title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
  line-height: 1.3;
}
.news-article__text {
  font-size: 15px;
  line-height: 1.7;
  color: #111827;
  margin-bottom: 12px;
}
.news-article__promo {
  padding: 12px 16px;
  background: #EFF6FF;
  border-left: 3px solid #2563EB;
  font-size: 14px;
  color: #1E40AF;
  line-height: 1.5;
}

.calc-cta-strip {
  background: #2563EB;
  padding: 48px 0;
}

.calc-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.calc-cta-strip__text h2 {
  font-size: 30px;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.calc-cta-strip__text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
}

.calc-cta-strip__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.calc-hero {
  background: #1E2A38;
  padding: 64px 0 48px;
  border-bottom: 3px solid #2563EB;
}
.calc-hero .label {
  color: rgba(255, 255, 255, 0.6);
}
.calc-hero h1 {
  color: #FFFFFF;
  margin-top: 12px;
  font-size: clamp(28px, 4vw, 40px);
}
.calc-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 20px;
  margin-top: 16px;
  max-width: 540px;
}

.calc-categories {
  padding: 48px 0 64px;
  background: #F9FAFB;
}

.calc-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .calc-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .calc-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .calc-cat-grid {
    grid-template-columns: 1fr;
  }
}

.calc-cat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  cursor: pointer;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
  position: relative;
  overflow: hidden;
}
.calc-cat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #2563EB;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.12s ease;
}
.calc-cat-card:hover, .calc-cat-card:focus-visible {
  border-color: #2563EB;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
  outline: none;
}
.calc-cat-card:hover::before, .calc-cat-card:focus-visible::before {
  transform: scaleY(1);
}
.calc-cat-card:active {
  transform: translateY(0);
}

.calc-cat-card__icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.calc-cat-card__title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
  line-height: 1.2;
}

.calc-cat-card__desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.4;
  flex: 1;
}

.calc-workspace {
  padding: 40px 0 80px;
  background: #F9FAFB;
}
.calc-workspace[hidden] {
  display: none;
}

.calc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.calc-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid #E5E7EB;
  color: #6B7280;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.12s ease, color 0.12s ease;
}
.calc-back svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}
.calc-back:hover {
  border-color: #111827;
  color: #111827;
}

.calc-cat-label {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 1024px) {
  .calc-layout {
    grid-template-columns: 1fr;
  }
}

.calc-form-panel {
  background: transparent;
  padding: 0;
}
@media (max-width: 640px) {
  .calc-form-panel {
    padding: 0;
  }
}

.calc-form-section {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-left: 3px solid #2563EB;
  padding: 24px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.calc-form-section:last-child {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .calc-form-section {
    padding: 16px;
  }
}

.calc-form-section__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #F9FAFB;
  user-select: none;
}

.calc-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: #2563EB;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.calc-step-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #6B7280;
}
.calc-step-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}
.calc-step-icon[data-icon=product] {
  color: #2563EB;
}
.calc-step-icon[data-icon=material] {
  color: #F59E0B;
}
.calc-step-icon[data-icon=print] {
  color: #1E2A38;
}
.calc-step-icon[data-icon=fold], .calc-step-icon[data-icon=postpress], .calc-step-icon[data-icon=laminate] {
  color: #8B5CF6;
}
.calc-step-icon[data-icon=binding] {
  color: #0D9488;
}
.calc-step-icon[data-icon=cover] {
  color: #B45309;
}
.calc-step-icon[data-icon=size], .calc-step-icon[data-icon=format], .calc-step-icon[data-icon=template] {
  color: #6366F1;
}
.calc-step-icon[data-icon=qty] {
  color: #10B981;
}
.calc-step-icon[data-icon=extras], .calc-step-icon[data-icon=packaging] {
  color: #EA580C;
}

.calc-form-section--collapsible {
  border-left-color: #E5E7EB;
  background: #F9FAFB;
}
.calc-form-section--collapsible > .calc-form-section__title {
  cursor: pointer;
  transition: color 0.12s ease;
}
.calc-form-section--collapsible > .calc-form-section__title:hover {
  color: #2563EB;
}
.calc-form-section--collapsible:not(.calc-form-section--collapsed) {
  border-left-color: rgba(37, 99, 235, 0.4);
}

.calc-form-section__toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  transition: color 0.12s ease;
}
.calc-form-section--collapsible > .calc-form-section__title:hover .calc-form-section__toggle {
  color: #2563EB;
}

.calc-form-section__chevron {
  display: inline-block;
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.calc-form-section__chevron svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.calc-form-section--collapsed > .calc-form-section__title {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.calc-form-section--collapsed > .calc-form-section__body {
  display: none;
}
.calc-form-section--collapsed .calc-form-section__chevron {
  transform: rotate(-90deg);
}

.calc-section-badge {
  display: inline-flex;
  align-items: center;
  padding: 1px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
}
.calc-section-badge:empty {
  display: none;
}

.calc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.calc-form-grid.calc-form-grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.calc-form-grid.calc-form-grid--1 {
  grid-template-columns: 1fr;
}
@media (max-width: 640px) {
  .calc-form-grid {
    grid-template-columns: 1fr;
  }
}

.calc-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-form-label {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.calc-select,
.calc-input {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  color: #111827;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}
.calc-select:focus,
.calc-input:focus {
  outline: none;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.calc-select:invalid, .calc-select.is-error,
.calc-input:invalid,
.calc-input.is-error {
  border-color: #EF4444;
}
.calc-select.is-filled,
.calc-input.is-filled {
  border-color: rgba(16, 185, 129, 0.5);
}
.calc-select.is-filled:focus,
.calc-input.is-filled:focus {
  border-color: #2563EB;
}

.calc-form-label--required::after {
  content: " *";
  color: #EF4444;
  font-weight: 700;
}

.calc-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}
.calc-select.is-placeholder {
  color: #6B7280;
}
.calc-select__placeholder {
  color: #6B7280;
  font-style: normal;
}

.calc-input[type=number] {
  -moz-appearance: textfield;
}
.calc-input[type=number]::-webkit-outer-spin-button, .calc-input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.calc-input-hint {
  font-size: 11px;
  color: #6B7280;
  margin-top: 4px;
}
.calc-input-hint--warn {
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.08);
  padding: 8px 12px;
  border-left: 3px solid #F59E0B;
  font-size: 12px;
}

.calc-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calc-radio-option {
  position: relative;
}
.calc-radio-option input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.calc-radio-option label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.12s ease;
  white-space: nowrap;
}
.calc-radio-option input[type=radio]:checked + label {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.06);
  color: #2563EB;
  font-weight: 700;
}
.calc-radio-option label:hover {
  border-color: #2563EB;
  color: #2563EB;
}
.calc-radio-option input[value=economy]:checked + label {
  border-color: #10B981;
  background: rgba(16, 185, 129, 0.06);
  color: #10B981;
}
.calc-radio-option input[value=economy] + label:hover {
  border-color: #10B981;
  color: #10B981;
}
.calc-radio-option input[value=express]:checked + label {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.06);
  color: #EF4444;
}
.calc-radio-option input[value=express] + label:hover {
  border-color: #EF4444;
  color: #EF4444;
}
.calc-radio-option input[value=standard]:checked + label {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.06);
  color: #2563EB;
}
.calc-radio-option input[value=offset30]:checked + label {
  border-color: #6B7280;
  background: rgba(107, 114, 128, 0.06);
  color: #111827;
}
.calc-radio-option input[value=offset30] + label:hover {
  border-color: #6B7280;
  color: #111827;
}

.calc-radio-group--urgency {
  gap: 12px;
}
.calc-radio-group--urgency .calc-radio-option label {
  flex-direction: column;
  gap: 2px;
  min-width: 110px;
  text-align: center;
  padding: 12px 16px;
}

.calc-urg-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 4px;
  vertical-align: middle;
}
.calc-urg-icon svg {
  width: 14px;
  height: 14px;
}

.calc-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 640px) {
  .calc-options-grid {
    grid-template-columns: 1fr;
  }
}

.calc-option-chip {
  position: relative;
}
.calc-option-chip input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.calc-option-chip label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  font-size: 13px;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.12s ease;
  line-height: 1.3;
}
.calc-option-chip label::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border: 1.5px solid #E5E7EB;
  background: #FFFFFF;
  transition: all 0.12s ease;
}
.calc-option-chip input[type=checkbox]:checked + label {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.05);
  color: #111827;
}
.calc-option-chip input[type=checkbox]:checked + label::before {
  background: #2563EB;
  border-color: #2563EB;
  box-shadow: inset 0 0 0 2px #FFFFFF;
}
.calc-option-chip label:hover {
  border-color: #2563EB;
}

.calc-result-panel {
  position: sticky;
  top: 88px;
}
@media (max-width: 1024px) {
  .calc-result-panel {
    position: static;
  }
}

.calc-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
  background: #FFFFFF;
  border: 1px dashed #E5E7EB;
  text-align: center;
  color: #6B7280;
}
.calc-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: #E5E7EB;
  stroke-width: 1;
  fill: none;
  margin-bottom: 16px;
}
.calc-placeholder p {
  font-size: 13px;
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-summary {
  background: #1E2A38;
  color: #FFFFFF;
  padding: 20px 24px;
}
.calc-summary__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.7;
  margin-bottom: 8px;
}
.calc-summary__total {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: #FFFFFF;
}
.calc-summary__total span {
  font-size: 20px;
  font-weight: 600;
  opacity: 0.6;
}
.calc-summary__per-unit {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.8;
}
.calc-summary__per-unit-sub {
  margin-top: 2px;
  font-size: 13px;
  opacity: 0.55;
}
.calc-summary__weight {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  opacity: 0.8;
}
.calc-summary__weight svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.calc-price-table {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  overflow: hidden;
}

.calc-price-table__head {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  padding: 8px 16px;
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
  font-size: 11px;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.calc-price-row {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #E5E7EB;
  cursor: pointer;
  transition: background 0.12s ease;
  gap: 12px;
}
.calc-price-row:last-child {
  border-bottom: none;
}
.calc-price-row:hover {
  background: rgba(37, 99, 235, 0.04);
}
.calc-price-row.is-selected {
  background: rgba(37, 99, 235, 0.07);
  border-left: 3px solid #2563EB;
}
.calc-price-row.is-featured {
  background: rgba(37, 99, 235, 0.04);
}

.calc-price-row__qty {
  font-weight: 700;
  font-size: 13px;
  color: #111827;
  min-width: 60px;
}

.calc-price-row__urgency {
  font-size: 13px;
  color: #6B7280;
}
.calc-price-row__urgency strong {
  display: block;
  color: #111827;
  font-size: 13px;
  font-weight: 600;
}

.calc-price-row__per-unit {
  font-size: 13px;
  color: #6B7280;
  text-align: right;
}

.calc-price-row__total {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  text-align: right;
  white-space: nowrap;
}
.calc-price-row.is-selected .calc-price-row__total {
  color: #2563EB;
}

.calc-badge {
  display: inline-block;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.calc-badge--express {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}
.calc-badge--standard {
  background: rgba(245, 158, 11, 0.12);
  color: rgb(172.4330708661, 110.9507874016, 7.0669291339);
}
.calc-badge--economy {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.calc-badge--offset {
  background: rgba(30, 42, 56, 0.08);
  color: #1E2A38;
}

.calc-breakdown {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  padding: 16px 20px;
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
}
.calc-breakdown__header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6B7280;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E5E7EB;
}
.calc-breakdown__sep {
  border: none;
  border-top: 1px solid #E5E7EB;
  margin: 8px 0;
}
.calc-breakdown__line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
  font-size: 13px;
  color: #111827;
  gap: 12px;
}
.calc-breakdown__line:nth-child(even) {
  background: #F9FAFB;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}
.calc-breakdown__lbl {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.calc-breakdown__dots {
  flex: 1 0 12px;
  border-bottom: 1px dotted #E5E7EB;
  margin: 0 4px;
  align-self: baseline;
  height: 10px;
}
.calc-breakdown__amt {
  white-space: nowrap;
  font-weight: 700;
  text-align: right;
}
.calc-breakdown__qty-line {
  font-size: 11px;
  color: #6B7280;
  padding: 0 0 2px;
}
.calc-breakdown__sub {
  font-size: 11px;
  color: #6B7280;
  padding: 0 0 2px 8px;
}
.calc-breakdown__total-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  border-top: 2px solid #1E2A38;
  margin-top: 8px;
}
.calc-breakdown__footer {
  text-align: center;
  font-size: 10px;
  color: #6B7280;
  margin-top: 12px;
}

.calc-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.calc-actions .btn {
  width: 100%;
  justify-content: center;
}
@media (max-width: 640px) {
  .calc-actions {
    grid-template-columns: 1fr;
  }
}
.calc-actions--single {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.calc-disclaimer {
  font-size: 11px;
  color: #6B7280;
  line-height: 1.5;
  padding: 12px 16px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
}

.calc-warning {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-left: 3px solid #F59E0B;
  font-size: 13px;
  color: #111827;
}
.calc-warning svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: #F59E0B;
  stroke-width: 2;
  fill: none;
  margin-top: 1px;
}

.calc-qty-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.calc-qty-tab {
  padding: 4px 12px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.12s ease;
}
.calc-qty-tab:hover {
  border-color: #2563EB;
  color: #2563EB;
}
.calc-qty-tab.is-active {
  border-color: #2563EB;
  background: #2563EB;
  color: #FFFFFF;
}

.calc-fold-note {
  font-size: 12px;
  color: #6B7280;
  margin: 8px 0 0;
  line-height: 1.4;
  font-style: italic;
}

.calc-fold-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.calc-fold-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.calc-fold-option input[type=radio] {
  display: none;
}
.calc-fold-option:hover {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.04);
}
.calc-fold-option:has(input:checked), .calc-fold-option.is-selected {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
}
.calc-fold-option:has(input:checked) .calc-fold-icon svg, .calc-fold-option.is-selected .calc-fold-icon svg {
  stroke: #2563EB;
}
.calc-fold-option:has(input:checked) .calc-fold-icon img, .calc-fold-option.is-selected .calc-fold-icon img {
  filter: brightness(0) saturate(100%) invert(28%) sepia(96%) saturate(1640%) hue-rotate(215deg) brightness(97%) contrast(93%);
}

.calc-fold-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-fold-icon svg {
  width: 86px;
  height: 86px;
  stroke: #111827;
  transition: stroke 0.12s ease;
}
.calc-fold-icon img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.calc-fold-label {
  font-size: 10px;
  color: #6B7280;
  text-align: center;
  line-height: 1.2;
}

.calc-fold-group-title {
  grid-column: 1/-1;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6B7280;
  padding: 8px 0 0;
  border-top: 1px solid #E5E7EB;
  margin-top: 4px;
}
.calc-fold-group-title:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.calc-binding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
  margin-top: 8px;
}
.calc-binding-grid--lg {
  grid-template-columns: repeat(auto-fill, minmax(116px, 1fr));
}

.calc-binding-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.calc-binding-option input[type=radio] {
  display: none;
}
.calc-binding-option:hover {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.04);
}
.calc-binding-option:has(input:checked) {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
}
.calc-binding-option:has(input:checked) .calc-binding-icon svg {
  stroke: #2563EB;
}
.calc-binding-option:has(input:checked) .calc-binding-icon img {
  filter: brightness(0) saturate(100%) invert(28%) sepia(96%) saturate(1640%) hue-rotate(215deg) brightness(97%) contrast(93%);
}

.calc-binding-icon {
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-binding-icon svg {
  width: 100px;
  height: 100px;
  stroke: #111827;
  transition: stroke 0.12s ease;
}
.calc-binding-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.calc-binding-label {
  font-size: 11px;
  font-weight: 500;
  color: #111827;
  text-align: center;
  line-height: 1.3;
  word-break: break-word;
  hyphens: auto;
  padding: 0 4px;
}

.sheets-paper-select {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.sheets-paper-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.sheets-paper-group__label {
  flex-shrink: 0;
  width: 120px;
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  padding-top: 6px;
  text-align: right;
}
.sheets-paper-group__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.sheets-paper-chip {
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  color: #111827;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease, color 0.12s ease;
  white-space: nowrap;
}
.sheets-paper-chip:hover {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.04);
}
.sheets-paper-chip.is-active {
  border-color: #2563EB;
  background: #2563EB;
  color: #FFFFFF;
}

.sheets-print-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.sheets-pm-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 12px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  cursor: pointer;
  min-width: 88px;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.sheets-pm-btn:hover {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.04);
}
.sheets-pm-btn.is-active {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
}
.sheets-pm-btn.is-active .sheets-pm-btn__code {
  color: #2563EB;
}
.sheets-pm-btn__code {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}
.sheets-pm-btn__desc {
  font-size: 11px;
  color: #6B7280;
  margin-top: 2px;
  white-space: nowrap;
}

.calc-matrix__col-mat-th,
.calc-matrix__col-mat {
  width: 180px;
  min-width: 150px;
  white-space: normal;
  vertical-align: middle;
  padding: 8px 12px;
  border-right: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  background: #F9FAFB;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6B7280;
}

.calc-matrix__col-mat {
  background: #FFFFFF;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #111827;
  vertical-align: middle;
}

.calc-matrix__mat-name {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #111827;
}

.calc-matrix__mat-sub {
  display: block;
  font-size: 12px;
  color: #6B7280;
  margin-top: 2px;
  line-height: 1.3;
}

.calc-matrix__col-print-th,
.calc-matrix__col-print {
  width: 70px;
  min-width: 60px;
  text-align: center;
  padding: 8px 8px;
  border-right: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  font-weight: 700;
  font-size: 13px;
  background: #F9FAFB;
}

.calc-matrix__col-print {
  background: #FFFFFF;
  vertical-align: middle;
  color: #111827;
}

.calc-matrix__col-extra-th,
.calc-matrix__col-extra {
  width: 160px;
  min-width: 120px;
  font-size: 12px;
  white-space: normal;
  padding: 8px 12px;
  border-right: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  background: #F9FAFB;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6B7280;
}

.calc-matrix__col-extra {
  background: #FFFFFF;
  font-size: 11px;
  color: #6B7280;
  vertical-align: middle;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.calc-matrix__mat-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.calc-matrix__mat-g {
  display: block;
  font-size: 11px;
  color: #6B7280;
  margin-top: 1px;
}

.calc-matrix__mat-lam {
  display: block;
  font-size: 11px;
  color: #2563EB;
  margin-top: 2px;
  font-weight: 600;
}

.calc-matrix__row {
  transition: background 0.12s ease;
}
.calc-matrix__row td {
  padding: 8px 12px;
  border-bottom: 1px solid #E5E7EB;
}
.calc-matrix__row:hover td {
  background: rgba(37, 99, 235, 0.03);
}
.calc-matrix__row--selected td {
  background: rgba(37, 99, 235, 0.07);
}
.calc-matrix__row--selected td .calc-matrix__col-print {
  color: #2563EB;
}

.mp-inner-paper-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.mp-inner-paper-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 12px;
  text-align: center;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.mp-inner-paper-btn:hover {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.04);
}
.mp-inner-paper-btn.is-active {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
}
.mp-inner-paper-btn.is-active .mp-inner-paper-btn__name {
  color: #2563EB;
}
.mp-inner-paper-btn.is-active .mp-inner-paper-btn__g {
  color: #2563EB;
}
.mp-inner-paper-btn__name {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
}
.mp-inner-paper-btn__g {
  font-size: 11px;
  color: #6B7280;
  white-space: nowrap;
}

.mp-table-wrap {
  overflow-x: auto;
  margin-top: 4px;
}

.mp-mat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.mp-mat-table th, .mp-mat-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #E5E7EB;
  text-align: left;
  white-space: nowrap;
}
.mp-mat-table th {
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #F9FAFB;
}
.mp-mat-table tbody tr:hover {
  background: #F9FAFB;
}
.mp-mat-table.mp-compare-table thead th {
  background: rgba(37, 99, 235, 0.06);
}

.mp-compare-tr--selected td {
  background: rgba(37, 99, 235, 0.07);
}

.mp-compare-wrap {
  border: 1px solid #E5E7EB;
}

.mp-compare-title {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6B7280;
}

.calc-postpress-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-pp-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.calc-pp-row .calc-form-label {
  min-width: 120px;
  margin-bottom: 0;
}

.calc-pp-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.calc-select--sm {
  padding: 4px 8px;
  font-size: 13px;
  height: 32px;
}

.calc-input--sm {
  height: 32px;
  padding: 4px 8px;
  font-size: 13px;
}

.calc-form-hint {
  font-size: 13px;
  color: #6B7280;
}
.calc-form-hint--info {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(37, 99, 235, 0.06);
  border-left: 3px solid #2563EB;
  color: #111827;
  font-size: 13px;
  line-height: 1.5;
}

.calc-ptype-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
}

.calc-ptype-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  border: 1px solid #E5E7EB;
  background: #fff;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}
.calc-ptype-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #6B7280;
  transition: color 0.15s;
}
.calc-ptype-btn__icon svg {
  width: 100%;
  height: 100%;
}
.calc-ptype-btn__label {
  font-size: 11px;
  line-height: 1.2;
  color: #111827;
  font-weight: 500;
}
.calc-ptype-btn:hover {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.04);
}
.calc-ptype-btn:hover .calc-ptype-btn__icon {
  color: #2563EB;
}
.calc-ptype-btn--active {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
  box-shadow: inset 0 0 0 1px #2563EB;
}
.calc-ptype-btn--active .calc-ptype-btn__icon {
  color: #2563EB;
}

.calc-print-method-toggle {
  display: inline-flex;
  gap: 0;
  margin-left: 16px;
}

.calc-pm-btn {
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #E5E7EB;
  background: transparent;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.15s;
}
.calc-pm-btn:first-child {
  border-right: none;
}
.calc-pm-btn--active {
  background: #1E2A38;
  border-color: #1E2A38;
  color: #fff;
}
.calc-pm-btn:hover:not(.calc-pm-btn--active) {
  background: rgba(30, 42, 56, 0.06);
  color: #111827;
}

.calc-radio-group--inline {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.calc-custom-size {
  border: 1px solid #2563EB;
  padding: 16px;
  background: rgba(37, 99, 235, 0.03);
  margin-top: 12px;
}
.calc-custom-size[hidden] {
  display: none;
}

.btn--upload-artwork {
  color: #2563EB;
  border-color: #2563EB;
  font-size: 13px;
}
.btn--upload-artwork:hover {
  background: rgba(37, 99, 235, 0.06);
  border-style: solid;
}

.calc-order-params {
  padding: 12px 24px;
  background: rgba(37, 99, 235, 0.03);
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.calc-order-params__title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6B7280;
  margin-bottom: 8px;
}

.calc-order-params__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}

.calc-order-params__item {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 13px;
}

.calc-order-params__label {
  color: #6B7280;
  white-space: nowrap;
}
.calc-order-params__label::after {
  content: ":";
}

.calc-order-params__value {
  font-weight: 600;
  color: #111827;
}

.calc-urg-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 12px 24px;
  background: #1E2A38;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.calc-urg-tab {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
  white-space: nowrap;
  line-height: 1.3;
}
.calc-urg-tab:hover:not(.calc-urg-tab--active) {
  background: rgba(255, 255, 255, 0.13);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.28);
}
.calc-urg-tab--active {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
  font-weight: 700;
}
.calc-urg-tab[data-urgency=economy].calc-urg-tab--active {
  background: #10B981;
  border-color: #10B981;
}
.calc-urg-tab[data-urgency=express].calc-urg-tab--active {
  background: #EF4444;
  border-color: #EF4444;
}
.calc-urg-tab[data-urgency=standard].calc-urg-tab--active {
  background: #2563EB;
  border-color: #2563EB;
}
.calc-urg-tab[data-urgency=offset30].calc-urg-tab--active {
  background: #6B7280;
  border-color: #6B7280;
}
.calc-urg-tab small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 1px;
}

.calc-matrix__scenario-th {
  padding: 8px 16px;
  text-align: left;
  vertical-align: middle;
  border-right: 2px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  min-width: 180px;
  background: #FFFFFF;
  white-space: nowrap;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.calc-matrix__row--base .calc-matrix__scenario-th {
  font-weight: 700;
}

.calc-matrix__row--addon .calc-matrix__scenario-th {
  color: #6B7280;
  padding-left: 32px;
  font-style: italic;
}

.calc-matrix__row--selected-scenario .calc-matrix__scenario-th {
  color: #2563EB;
  font-weight: 700;
  background: rgba(37, 99, 235, 0.04);
  font-style: normal;
}
.calc-matrix__row--selected-scenario .calc-matrix__cell {
  background: rgba(37, 99, 235, 0.03);
}

.calc-price-matrix {
  margin-top: 40px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  overflow: hidden;
}
.calc-price-matrix[hidden] {
  display: none;
}

.calc-matrix-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 24px;
  background: #1E2A38;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.calc-matrix-controls__left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.calc-matrix-title {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.calc-toggle-slider {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.calc-toggle-slider input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.calc-toggle-slider__wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.calc-toggle-slider__track {
  position: relative;
  width: 40px;
  height: 22px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  transition: background 0.12s ease, border-color 0.12s ease;
}
.calc-toggle-slider__ball {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  transition: transform 0.12s ease, background 0.12s ease;
}
.calc-toggle-slider__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.12s ease;
  white-space: nowrap;
}
.calc-toggle-slider__label--dim {
  color: rgba(255, 255, 255, 0.45);
}
.calc-toggle-slider input:checked + .calc-toggle-slider__wrap .calc-toggle-slider__track {
  background: #2563EB;
  border-color: #2563EB;
}
.calc-toggle-slider input:checked + .calc-toggle-slider__wrap .calc-toggle-slider__ball {
  transform: translateX(18px);
  background: #FFFFFF;
}
.calc-toggle-slider input:checked + .calc-toggle-slider__wrap .calc-toggle-slider__label {
  color: #FFFFFF;
}
.calc-toggle-slider input:checked + .calc-toggle-slider__wrap .calc-toggle-slider__label--dim {
  color: rgba(255, 255, 255, 0.5);
}

.calc-matrix-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.calc-matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 900px;
}

.calc-matrix__corner {
  padding: 12px 16px;
  background: #F9FAFB;
  border-right: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  font-size: 11px;
  font-weight: 700;
  color: #6B7280;
  text-align: left;
  white-space: nowrap;
  min-width: 130px;
}

.calc-matrix__qty-th {
  padding: 8px 8px;
  text-align: center;
  background: #F9FAFB;
  border-right: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  vertical-align: middle;
  min-width: 80px;
}

.calc-matrix__qty-input {
  width: 62px;
  padding: 4px 8px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  text-align: center;
  transition: border-color 0.12s ease;
  -moz-appearance: textfield;
}
.calc-matrix__qty-input::-webkit-outer-spin-button, .calc-matrix__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.calc-matrix__qty-input:focus {
  outline: none;
  border-color: #2563EB;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.12);
}

.calc-matrix__qty-label {
  display: block;
  font-size: 10px;
  color: #6B7280;
  margin-top: 2px;
  text-align: center;
}

.calc-matrix__urg-th {
  padding: 8px 16px;
  text-align: left;
  vertical-align: middle;
  border-right: 2px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  white-space: nowrap;
  background: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  min-width: 150px;
}

.calc-matrix__cell {
  padding: 8px 8px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  cursor: pointer;
  transition: background 0.12s ease;
}
.calc-matrix__cell:hover {
  background: rgba(37, 99, 235, 0.05);
}
.calc-matrix__cell.is-selected {
  background: rgba(37, 99, 235, 0.1);
  box-shadow: inset 0 0 0 3px #2563EB;
  position: relative;
  z-index: 1;
}
.calc-matrix__row[data-urgency=express] .calc-matrix__cell.is-selected {
  background: rgba(239, 68, 68, 0.09);
  box-shadow: inset 0 0 0 3px #EF4444;
}
.calc-matrix__row[data-urgency=standard] .calc-matrix__cell.is-selected {
  background: rgba(37, 99, 235, 0.09);
  box-shadow: inset 0 0 0 3px #2563EB;
}

.calc-matrix__price {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  display: block;
}
.calc-matrix__cell.is-selected .calc-matrix__price {
  color: #2563EB;
}

.calc-matrix__best-badge {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: #10B981;
  line-height: 1;
  margin-top: 2px;
  letter-spacing: 0.03em;
}

.calc-matrix__row:nth-child(even) td {
  background: #F9FAFB;
}
.calc-matrix__row:hover .calc-matrix__cell {
  background: rgba(37, 99, 235, 0.06);
}
.calc-matrix__row:last-child .calc-matrix__cell, .calc-matrix__row:last-child .calc-matrix__urg-th {
  border-bottom: none;
}

.calc-matrix__session-row {
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
}
.calc-matrix__session-row--current {
  background: rgba(37, 99, 235, 0.04);
}

.calc-matrix__session-desc {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: #6B7280;
}

.calc-matrix__session-label {
  font-style: italic;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.calc-matrix__session-row--current .calc-matrix__session-label {
  color: #2563EB;
  font-weight: 600;
  font-style: normal;
}

.calc-matrix__close-session {
  flex-shrink: 0;
  background: none;
  border: none;
  color: #6B7280;
  cursor: pointer;
  padding: 2px 8px;
  font-size: 13px;
  line-height: 1;
  transition: color 0.12s ease;
}
.calc-matrix__close-session:hover {
  color: #EF4444;
}

.calc-orient-toggle {
  display: flex;
  gap: 8px;
}

.calc-orient-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #D1D5DB;
  background: #FFFFFF;
  color: #6B7280;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.calc-orient-btn svg {
  flex-shrink: 0;
  stroke: currentColor;
}
.calc-orient-btn:hover {
  border-color: #2563EB;
  color: #2563EB;
}
.calc-orient-btn--active {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.07);
  color: #2563EB;
  font-weight: 600;
}

.calc-size-block {
  display: grid;
  grid-template-columns: 1fr 258px;
  gap: 16px;
  align-items: start;
}
@media (max-width: 640px) {
  .calc-size-block {
    grid-template-columns: 1fr;
  }
}

.calc-size-controls {
  min-width: 0;
}

.calc-size-unit-row {
  margin-bottom: 8px;
}
.calc-size-unit-row .calc-radio-group {
  flex-wrap: nowrap;
  gap: 8px;
}
.calc-size-unit-row .calc-radio-option label {
  font-size: 12px;
}

.calc-viz {
  width: 250px;
  height: 200px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  justify-self: end;
}
@media (max-width: 640px) {
  .calc-viz {
    justify-self: center;
    width: 100%;
    height: 200px;
  }
}
.calc-viz#cf-cover-tpl {
  width: 100%;
  height: auto;
  justify-self: stretch;
}
.calc-viz#cf-cover-tpl .calc-viz__svg {
  width: 100%;
  height: auto;
}
.calc-viz__svg {
  display: block;
  width: 250px;
  height: 200px;
}

.cvt-layout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cvt-layout #cf-cover-tpl {
  flex: 1 1 60%;
  min-width: 0;
}
.cvt-layout__info {
  flex: 0 0 240px;
}
@media (max-width: 640px) {
  .cvt-layout {
    flex-direction: column;
  }
  .cvt-layout #cf-cover-tpl {
    width: 100%;
  }
  .cvt-layout__info {
    flex-basis: auto;
    width: 100%;
  }
}

.cvt-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.4;
}
.cvt-specs-table td {
  padding: 5px 8px;
  border-bottom: 1px solid #E5E7EB;
}
.cvt-specs-table td:first-child {
  color: #6B7280;
  white-space: nowrap;
}
.cvt-specs-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: #111827;
}
.cvt-specs-table__total td {
  background: #F0F4FF;
  border-bottom: 2px solid #2563EB;
  font-size: 14px;
}

.calc-schematic-zoomable {
  cursor: zoom-in;
  transition: transform 0.22s ease;
}
.calc-schematic-zoomable:hover {
  transform: scale(1.08);
}

.schematic-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.schematic-modal[hidden] {
  display: none;
}

.schematic-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 42, 56, 0.7);
  backdrop-filter: blur(3px);
}

.schematic-modal__content {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 800px;
  width: 100%;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  max-height: 90vh;
  overflow-y: auto;
}

.schematic-modal__title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.schematic-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #E5E7EB;
  color: #6B7280;
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.12s ease, color 0.12s ease;
  line-height: 1;
}
.schematic-modal__close:hover {
  border-color: #111827;
  color: #111827;
}

.schematic-modal__body {
  display: flex;
  align-items: center;
  justify-content: center;
}
.schematic-modal__body svg {
  max-width: 100%;
  height: auto;
}

.mockup-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.mockup-modal__panel {
  position: relative;
  background: #fff;
  max-width: 560px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
  z-index: 1;
}

.mockup-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: 1px solid #E5E7EB;
  width: 32px;
  height: 32px;
  font-size: 20px;
  cursor: pointer;
  color: #6B7280;
  line-height: 1;
}
.mockup-modal__close:hover {
  color: #111827;
  border-color: #111827;
}

.mockup-modal__title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.mockup-modal__views {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.mockup-view-btn {
  padding: 6px 16px;
  border: 1px solid #E5E7EB;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: #111827;
  transition: border-color 0.15s, background 0.15s;
}
.mockup-view-btn.is-active {
  border-color: #2563EB;
  background: #EFF6FF;
  color: #2563EB;
}

.mockup-modal__canvas-wrap {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.mockup-modal__canvas-wrap canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

.mockup-modal__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.mockup-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #2563EB;
  background: #EFF6FF;
  color: #2563EB;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.mockup-upload-btn:hover {
  background: #DBEAFE;
}

.mockup-clear-btn {
  padding: 8px 14px;
  border: 1px solid #E5E7EB;
  background: #fff;
  font-size: 13px;
  cursor: pointer;
  color: #6B7280;
}
.mockup-clear-btn:hover {
  color: #111827;
  border-color: #111827;
}

.mockup-file-name {
  font-size: 12px;
  color: #6B7280;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mockup-modal__hint {
  font-size: 12px;
  color: #6B7280;
  text-align: center;
}

.mockup-modal__section {
  padding: 0 24px 12px;
}

.mockup-section-title {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.mockup-color-picker,
.mug-color-picker {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mockup-color-swatch,
.mug-color-swatch {
  width: 32px;
  height: 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
  padding: 0;
  outline: none;
}
.mockup-color-swatch:hover,
.mug-color-swatch:hover {
  transform: scale(1.15);
}
.mockup-color-swatch.is-active,
.mug-color-swatch.is-active {
  border-color: #2563EB;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3);
}

.tech-fmt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.tech-fmt-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 10px;
  border: 2px solid #E5E7EB;
  background: #FFFFFF;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  aspect-ratio: 1/1;
}
.tech-fmt-btn img, .tech-fmt-btn svg {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.tech-fmt-btn__label {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}
.tech-fmt-btn__dims {
  font-size: 11px;
  color: #6B7280;
}
.tech-fmt-btn:hover {
  border-color: #2563EB;
  background: #F0F7FF;
}
.tech-fmt-btn.is-active {
  border-color: #2563EB;
  background: #EFF6FF;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.calc-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #1E2A38;
  color: #FFFFFF;
  padding: 12px 16px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1024px) {
  .calc-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
}
.calc-mobile-bar__price {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}
.calc-mobile-bar__price small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.6;
  margin-top: 2px;
}
.calc-mobile-bar__cta {
  flex-shrink: 0;
  padding: 8px 20px;
  background: #2563EB;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.12s ease;
}
.calc-mobile-bar__cta:hover {
  background: rgb(19.4285714286, 79.6571428571, 211.7714285714);
}

@media (max-width: 640px) {
  .calc-radio-option label {
    min-height: 40px;
    padding: 12px 16px;
  }
  .calc-option-chip label {
    min-height: 40px;
    padding: 12px;
  }
  .calc-form-section__title {
    min-height: 40px;
    padding: 12px 0;
  }
  .calc-form-section__toggle {
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .calc-workspace {
    padding-bottom: 72px;
  }
}
@media print {
  .site-header,
  .site-footer,
  .calc-hero,
  .calc-cat-grid,
  .calc-form-col,
  .calc-breadcrumb,
  .calc-actions,
  #calcUploadArtwork,
  .calc-disclaimer,
  .preflight-overlay,
  .preflight-drawer,
  .auth-toast {
    display: none !important;
  }
  .calc-layout {
    display: block !important;
  }
  .calc-result-col {
    width: 100% !important;
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
  }
  .calc-breakdown {
    page-break-inside: avoid;
  }
  body {
    font-size: 12pt;
    color: #000;
  }
}
.calc-delivery-section {
  margin-top: 24px;
}

.calc-delivery {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
}
.calc-delivery__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  border-bottom: 1px solid #E5E7EB;
}
.calc-delivery__header svg {
  flex-shrink: 0;
  color: #2563EB;
}
.calc-delivery__info {
  padding: 16px 20px;
  border-bottom: 1px solid #E5E7EB;
}
.calc-delivery__info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 13px;
}
.calc-delivery__info-row span {
  color: #6B7280;
}
.calc-delivery__info-row strong {
  color: #111827;
  font-weight: 600;
}
.calc-delivery__table {
  width: 100%;
  border-collapse: collapse;
}
.calc-delivery__table th {
  padding: 8px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6B7280;
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
}
.calc-delivery__table td {
  padding: 12px 20px;
  font-size: 13px;
  color: #111827;
  border-bottom: 1px solid #E5E7EB;
}
.calc-delivery__table td strong {
  font-weight: 600;
}
.calc-delivery__table tbody tr:last-child td {
  border-bottom: none;
}
.calc-delivery__row--recommended {
  background: rgba(37, 99, 235, 0.04);
}
.calc-delivery__row--recommended td:first-child {
  font-weight: 600;
}
.calc-delivery__carrier-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #1E2A38;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  margin-right: 8px;
  vertical-align: middle;
}
.calc-delivery__note {
  padding: 12px 20px;
  font-size: 11px;
  color: #6B7280;
  line-height: 1.75;
  border-top: 1px solid #E5E7EB;
}

@media (max-width: 768px) {
  .calc-delivery__table {
    display: block;
  }
  .calc-delivery__table thead {
    display: none;
  }
  .calc-delivery__table tbody, .calc-delivery__table tr, .calc-delivery__table td {
    display: block;
    width: 100%;
  }
  .calc-delivery__table tr {
    padding: 12px 20px;
    border-bottom: 1px solid #E5E7EB;
  }
  .calc-delivery__table tr:last-child {
    border-bottom: none;
  }
  .calc-delivery__table td {
    padding: 4px 0;
    border-bottom: none;
  }
}
.calc-matrix__config-row {
  background: #F9FAFB;
  border-top: 2px solid #E5E7EB;
  cursor: pointer;
}
.calc-matrix__config-row.is-selected-config {
  background: rgba(37, 99, 235, 0.05);
  border-top-color: #2563EB;
}

.calc-matrix__config-cell {
  padding: 8px 16px;
  border-bottom: 1px solid #E5E7EB;
}

.calc-matrix__config-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6B7280;
  margin-bottom: 4px;
}
.calc-matrix__config-row.is-selected-config .calc-matrix__config-header {
  color: #2563EB;
}

.calc-matrix__config-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}

.calc-chip {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  font-size: 10px;
  line-height: 1.4;
  white-space: nowrap;
}
.calc-chip--option {
  background: rgba(37, 99, 235, 0.07);
  border-color: rgba(37, 99, 235, 0.25);
  color: #2563EB;
}
.calc-chip__label {
  color: #6B7280;
  font-weight: 400;
}
.calc-chip__label::after {
  content: ":";
  margin-right: 2px;
}
.calc-chip__value {
  font-weight: 600;
  color: #111827;
}
.calc-chip--option .calc-chip__value {
  color: #2563EB;
}

.calc-matrix__price-row {
  transition: background 0.12s ease;
}
.calc-matrix__price-row:nth-child(even) .calc-matrix__cell,
.calc-matrix__price-row:nth-child(even) .calc-matrix__price-label {
  background: #F9FAFB;
}
.calc-matrix__price-row:hover .calc-matrix__cell {
  background: rgba(37, 99, 235, 0.06);
}
.calc-matrix__price-row--selected .calc-matrix__price-label {
  color: #2563EB;
  font-weight: 700;
  background: rgba(37, 99, 235, 0.04);
}
.calc-matrix__price-row--selected .calc-matrix__cell {
  background: rgba(37, 99, 235, 0.04);
}
.calc-matrix__price-row:last-child .calc-matrix__cell, .calc-matrix__price-row:last-child .calc-matrix__price-label {
  border-bottom: none;
}

.calc-matrix__price-label {
  padding: 8px 16px;
  text-align: left;
  vertical-align: middle;
  border-right: 2px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  font-size: 11px;
  font-weight: 500;
  color: #6B7280;
  background: #FFFFFF;
  white-space: nowrap;
  min-width: 52px;
}

.pb-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.pb-type-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 16px;
  border: 2px solid #E5E7EB;
  background: #FFFFFF;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.pb-type-btn:hover {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.03);
}
.pb-type-btn.is-active {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.06);
}
.pb-type-btn.is-active .pb-type-btn__name {
  color: #2563EB;
  font-weight: 600;
}
.pb-type-btn__icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 2px;
}
.pb-type-btn__name {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}
.pb-type-btn__range {
  font-size: 11px;
  color: #6B7280;
}

.pb-fmt-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.pb-fmt-btn {
  padding: 8px 12px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.pb-fmt-btn:hover {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.04);
}
.pb-fmt-btn.is-active {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
  color: #2563EB;
  font-weight: 600;
}

.pb-paper-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.pb-paper-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 8px 16px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.pb-paper-btn:hover {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.04);
}
.pb-paper-btn.is-active {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
}
.pb-paper-btn.is-active .pb-paper-btn__name {
  color: #2563EB;
}
.pb-paper-btn__name {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}
.pb-paper-btn__thick {
  font-size: 11px;
  color: #6B7280;
}

.pb-finish-grid,
.pb-decor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pb-finish-btn,
.pb-decor-btn {
  padding: 8px 12px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.pb-finish-btn:hover,
.pb-decor-btn:hover {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.04);
}
.pb-finish-btn.is-active,
.pb-decor-btn.is-active {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
  color: #2563EB;
  font-weight: 600;
}

.product-type-grid,
.env-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .product-type-grid,
  .env-type-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .product-type-grid,
  .env-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-type-btn,
.env-type-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px;
  border: 2px solid #E5E7EB;
  background: #FFFFFF;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.12s ease, background 0.12s ease, box-shadow 0.12s ease;
  aspect-ratio: 1;
}
.product-type-btn:hover,
.env-type-btn:hover {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.03);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.product-type-btn.is-active,
.env-type-btn.is-active {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.06);
  box-shadow: 0 0 0 1px #2563EB;
}
.product-type-btn.is-active .product-type-btn__name,
.product-type-btn.is-active .env-type-btn__name,
.env-type-btn.is-active .product-type-btn__name,
.env-type-btn.is-active .env-type-btn__name {
  color: #2563EB;
  font-weight: 600;
}

.product-type-btn__icon,
.env-type-btn__svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-type-btn__icon svg,
.env-type-btn__svg svg {
  width: 100%;
  height: 100%;
}

.product-type-btn__name,
.env-type-btn__name {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  line-height: 1.2;
}

.product-type-btn__desc,
.env-type-btn__dims {
  font-size: 11px;
  color: #6B7280;
}

.product-type-btn__sub,
.env-type-btn__fits {
  font-size: 10px;
  color: #6B7280;
  opacity: 0.7;
}

.cl-color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
}

.cl-color-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  border: 2px solid #E5E7EB;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s;
  background: #fff;
}
.cl-color-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.cl-color-card.is-active {
  border-color: #2563EB;
  background: #EFF6FF;
}
.cl-color-card:hover:not(.is-active) {
  border-color: #6B7280;
}

.cl-color-name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #111827;
  margin-top: 4px;
  line-height: 1.2;
}

.cl-color-swatch {
  display: block;
}

.cl-flip-container {
  position: relative;
  width: 100px;
  height: 100px;
}

.cl-flip-front,
.cl-flip-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: opacity 0.3s ease;
  backface-visibility: hidden;
}

.cl-flip-back {
  opacity: 0;
}

.cl-color-card--flip:hover .cl-flip-front {
  opacity: 0;
}

.cl-color-card--flip:hover .cl-flip-back {
  opacity: 1;
}

.cl-zone-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cl-zone-btn {
  padding: 6px 14px;
  border: 1px solid #E5E7EB;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: #111827;
  transition: border-color 0.15s, background 0.15s;
}
.cl-zone-btn.is-active {
  border-color: #2563EB;
  background: #EFF6FF;
  color: #2563EB;
}

.sd-hero {
  background: #1E2A38;
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}
.sd-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -60px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transform: rotate(20deg);
  pointer-events: none;
}

.sd-hero__inner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.sd-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  transition: color 0.12s ease;
}
.sd-hero__back svg {
  flex-shrink: 0;
}
.sd-hero__back:hover {
  color: #FFFFFF;
}

.sd-hero__icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sd-hero__icon svg {
  width: 36px;
  height: 36px;
  stroke: #FFFFFF;
  fill: none;
}

.sd-hero__content {
  flex: 1;
}

.sd-hero__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

.sd-hero__title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .sd-hero__title {
    font-size: 30px;
  }
}

.sd-hero__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  max-width: 600px;
}

.sd-body {
  padding: 80px 0;
  background: #FFFFFF;
}

.sd-body__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1024px) {
  .sd-body__grid {
    grid-template-columns: 1fr;
  }
}

.sd-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 640px) {
  .sd-features {
    grid-template-columns: 1fr;
  }
}

.sd-feature {
  padding: 20px;
  border: 1px solid #E5E7EB;
  background: #F9FAFB;
}

.sd-feature__icon {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.sd-feature__icon svg {
  width: 22px;
  height: 22px;
  stroke: #2563EB;
  fill: none;
}

.sd-feature__title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.sd-feature__desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.55;
}

.sd-specs {
  border: 1px solid #E5E7EB;
}

.sd-specs__title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  padding: 16px 20px;
  background: #1E2A38;
  color: #FFFFFF;
  margin: 0;
}

.sd-specs-table {
  width: 100%;
  border-collapse: collapse;
}
.sd-specs-table tr + tr {
  border-top: 1px solid #E5E7EB;
}
.sd-specs-table td {
  padding: 12px 20px;
  font-size: 13px;
  color: #111827;
}
.sd-specs-table td:first-child {
  font-weight: 500;
  color: #6B7280;
  width: 45%;
  background: #F9FAFB;
}

.sd-cta {
  padding: 64px 0;
  background: #F9FAFB;
  border-top: 1px solid #E5E7EB;
  text-align: center;
}

.sd-cta__title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.sd-cta__desc {
  font-size: 15px;
  color: #6B7280;
  margin-bottom: 32px;
}

.sd-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.register-landing {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
  padding: 48px 24px;
}

.register-landing__inner {
  text-align: center;
  max-width: 480px;
  width: 100%;
}

.register-landing__logo {
  color: #2563EB;
  margin-bottom: 24px;
}
.register-landing__logo svg {
  display: inline-block;
}

.register-landing__title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.register-landing__subtitle {
  font-size: 15px;
  color: #6B7280;
  margin-bottom: 40px;
  line-height: 1.55;
}

.register-landing__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.register-landing__btn {
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

body.modal-open {
  overflow: hidden;
}

.reg-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 16px 16px;
  overflow-y: auto;
}
.reg-modal[hidden] {
  display: none;
}
@media (min-width: 640px) {
  .reg-modal {
    align-items: center;
    padding: 24px 16px;
  }
}

.reg-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 42, 56, 0.65);
  backdrop-filter: blur(3px);
}

.reg-modal__window {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  width: 100%;
  max-width: 580px;
  padding: 32px 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  flex-shrink: 0;
}
.reg-modal__window--wide {
  max-width: 720px;
}
.reg-modal__window--sm {
  max-width: 440px;
}
@media (min-width: 640px) {
  .reg-modal__window {
    padding: 40px 40px;
  }
}

.reg-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid #E5E7EB;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  transition: color 0.12s ease, border-color 0.12s ease;
}
.reg-modal__close:hover {
  color: #111827;
  border-color: #6B7280;
}

.register-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.register-step-indicator__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #6B7280;
}
.register-step-indicator__item__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 2px solid #D1D5DB;
  background: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  flex-shrink: 0;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.register-step-indicator__item__label {
  display: none;
}
@media (min-width: 640px) {
  .register-step-indicator__item__label {
    display: block;
  }
}
.register-step-indicator__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #D1D5DB;
  margin: 0 8px;
}
@media (min-width: 640px) {
  .register-step-indicator__item:not(:last-child)::after {
    width: 56px;
    margin: 0 12px;
  }
}
.register-step-indicator__item.is-active {
  color: #2563EB;
}
.register-step-indicator__item.is-active .register-step-indicator__item__num {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
}
.register-step-indicator__item.is-done {
  color: #10B981;
}
.register-step-indicator__item.is-done .register-step-indicator__item__num {
  background: #10B981;
  border-color: #10B981;
  color: #FFFFFF;
}
.register-step-indicator__item.is-done .register-step-indicator__item__num::before {
  content: "✓";
  font-size: 12px;
}
.register-step-indicator__item.is-done:not(:last-child)::after {
  background: #10B981;
}

.register-step-indicator__divider {
  width: 40px;
  height: 2px;
  background: #D1D5DB;
  flex-shrink: 0;
  align-self: center;
}
@media (min-width: 640px) {
  .register-step-indicator__divider {
    width: 56px;
  }
}

.register-screen {
  display: none;
}
.register-screen.is-active {
  display: block;
}

.register-screen__title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.register-screen__subtitle {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 24px;
  line-height: 1.55;
}

.register-back-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  color: #6B7280;
  padding: 0;
  margin-bottom: 20px;
  transition: color 0.12s ease;
}
.register-back-btn:hover {
  color: #2563EB;
}
.register-back-btn svg {
  flex-shrink: 0;
}

.reg-modal__window--select {
  max-width: 480px;
}

.auth-select {
  text-align: center;
  padding: 8px 0 16px;
}

.auth-select__logo {
  color: #2563EB;
  margin-bottom: 20px;
}
.auth-select__logo svg {
  display: inline-block;
}

.auth-select__title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.auth-select__subtitle {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 32px;
  line-height: 1.55;
}

.auth-select__cards {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
@media (min-width: 640px) {
  .auth-select__cards {
    flex-direction: row;
  }
}

.auth-select-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background: #FFFFFF;
  border: 2px solid #E5E7EB;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.auth-select-card svg {
  color: #2563EB;
  flex-shrink: 0;
}
.auth-select-card:hover {
  border-color: #2563EB;
  background: rgb(242.5428571429, 246.0857142857, 253.8571428571);
}

.auth-select-card__title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.auth-select-card__desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.55;
}

.register-type-choice {
  padding: 16px 0;
  text-align: center;
}

.register-type-choice__cards {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-direction: column;
}
@media (min-width: 640px) {
  .register-type-choice__cards {
    flex-direction: row;
  }
}

.register-type-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  background: #FFFFFF;
  border: 2px solid #E5E7EB;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.register-type-card svg {
  color: #2563EB;
}
.register-type-card:hover {
  border-color: #2563EB;
  background: rgb(242.5428571429, 246.0857142857, 253.8571428571);
}

.register-type-card__title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #111827;
}

.register-type-card__desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.55;
}

.register-agreement__body {
  max-height: 320px;
  overflow-y: auto;
  padding: 20px;
  border: 1px solid #E5E7EB;
  background: #F9FAFB;
  margin-bottom: 20px;
  line-height: 1.75;
  font-size: 13px;
  color: #111827;
  scroll-behavior: smooth;
}
.register-agreement__body h3, .register-agreement__body h4 {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-weight: 600;
  color: #111827;
  margin: 16px 0 8px;
}
.register-agreement__body h3 {
  font-size: 17px;
}
.register-agreement__body h4 {
  font-size: 15px;
}
.register-agreement__body p {
  margin-bottom: 12px;
}

.register-agreement__checks {
  margin-bottom: 20px;
}

.register-agreement__checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 13px;
  color: #111827;
  line-height: 1.55;
}
.register-agreement__checkbox-wrap input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: #2563EB;
  cursor: pointer;
}
.register-agreement__checkbox-wrap input[type=checkbox]:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.register-agreement__checkbox-wrap:has(input:disabled) {
  color: #6B7280;
  cursor: default;
}

.register-agreement__scroll-hint {
  font-size: 11px;
  color: #6B7280;
  font-style: italic;
  margin-top: 8px;
}

.register-success {
  padding: 32px 0;
  text-align: center;
}

.register-success__icon {
  margin: 0 auto 20px;
  color: #10B981;
  width: 64px;
  height: 64px;
}

.register-success__title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.register-success__subtitle {
  font-size: 15px;
  color: #6B7280;
  margin-bottom: 16px;
}

.register-success__id {
  display: inline-block;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace, monospace;
  font-size: 24px;
  font-weight: 700;
  color: #2563EB;
  background: rgb(242.5428571429, 246.0857142857, 253.8571428571);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 8px 20px;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.register-success__note {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 32px;
  line-height: 1.55;
}

.register-recovery {
  padding: 16px 0;
}

.register-recovery__back {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #6B7280;
}

.register-field--row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.register-field--row .register-label {
  min-width: 120px;
  flex-shrink: 0;
}

.register-switch-link {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #6B7280;
}
.register-switch-link button {
  background: none;
  border: none;
  color: #2563EB;
  cursor: pointer;
  font-size: inherit;
  text-decoration: underline;
  padding: 0;
}
.register-switch-link button:hover {
  color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
}

.register-forgot-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: #2563EB;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.register-forgot-link:hover {
  color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
}

.register-radio-group--vertical {
  flex-direction: column;
  gap: 12px;
}

.register-tabs {
  display: none;
}

.register-tab-panel {
  display: none;
}

.register-panel {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .register-panel {
    padding: 40px 32px;
  }
}

.register-b2b-notice {
  background: rgb(244.2917073171, 248.1707317073, 254.5082926829);
  border-left: 4px solid #3B82F6;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 13px;
  color: rgb(10.0317073171, 89.1707317073, 218.4682926829);
  line-height: 1.55;
}

.register-section {
  margin-bottom: 24px;
}
.register-section + .register-section {
  padding-top: 24px;
  border-top: 1px solid #E5E7EB;
}
.register-section__title {
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}

.register-section-title {
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}

.register-field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .register-field-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 640px) {
  .register-field-grid .register-field--full {
    grid-column: 1/-1;
  }
}

.register-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.register-label {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}
.register-label .required {
  color: #EF4444;
  margin-left: 2px;
}

.register-hint {
  font-size: 11px;
  color: #6B7280;
}

.register-input,
.register-select {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  color: #111827;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  outline: none;
  transition: border-color 0.12s ease;
  appearance: none;
}
.register-input:focus,
.register-select:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.register-input::placeholder,
.register-select::placeholder {
  color: #9CA3AF;
}
.register-input:disabled,
.register-select:disabled {
  background: #F9FAFB;
  color: #6B7280;
  cursor: not-allowed;
}

.register-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.register-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.register-input-wrap .register-input {
  padding-right: 44px;
}

.register-eye-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #6B7280;
}
.register-eye-btn:hover {
  color: #111827;
}
.register-eye-btn svg {
  pointer-events: none;
}

.register-radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.register-radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  color: #111827;
  user-select: none;
}
.register-radio-option input[type=radio] {
  width: 18px;
  height: 18px;
  accent-color: #2563EB;
  cursor: pointer;
  flex-shrink: 0;
}

.register-checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  color: #111827;
  line-height: 1.55;
}
.register-checkbox-option input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #2563EB;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
}

.register-company-block,
.register-b2b-delivery-block {
  margin-top: 16px;
  padding: 20px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
}

.register-file-zone {
  position: relative;
  border: 2px dashed #D1D5DB;
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
  background: #F9FAFB;
}
.register-file-zone:hover, .register-file-zone.is-over {
  border-color: #2563EB;
  background: rgb(242.5428571429, 246.0857142857, 253.8571428571);
}
.register-file-zone__icon {
  display: block;
  margin: 0 auto 8px;
  color: #6B7280;
}
.register-file-zone__text {
  font-size: 13px;
  color: #6B7280;
}
.register-file-zone__text strong {
  color: #2563EB;
}
.register-file-zone__link {
  color: #2563EB;
  cursor: pointer;
  text-decoration: underline;
}
.register-file-zone__link:hover {
  color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
}
.register-file-zone__sub {
  font-size: 11px;
  color: #9CA3AF;
  margin-top: 4px;
}

.register-file-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.register-file-name {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 11px;
  color: #10B981;
  font-weight: 500;
}
.register-file-name::before {
  content: "✓";
}

.register-submit-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  background: #2563EB;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.12s ease, opacity 0.12s ease;
  margin-top: 24px;
}
.register-submit-btn:hover {
  background: rgb(19.4285714286, 79.6571428571, 211.7714285714);
}
.register-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.register-alert {
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 1.55;
}
.register-alert--error {
  background: rgb(253.4709359606, 237.1290640394, 237.1290640394);
  border-left: 4px solid #EF4444;
  color: rgb(234.9802955665, 21.0197044335, 21.0197044335);
}
.register-alert--success {
  background: rgb(177.1343283582, 248.2656716418, 224.6955223881);
  border-left: 4px solid #10B981;
  color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
}

.register-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.register-forgot-link,
.register-switch-link {
  font-size: 13px;
  color: #2563EB;
  text-decoration: none;
}
.register-forgot-link:hover,
.register-switch-link:hover {
  text-decoration: underline;
}

.register-otp-panel {
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .register-otp-panel {
    padding: 40px 32px;
  }
}

.register-otp-desc {
  font-size: 15px;
  color: #6B7280;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.55;
}

.register-otp-inputs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  .register-otp-inputs {
    gap: 12px;
  }
}

.register-otp-digit {
  width: 48px;
  height: 58px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  color: #111827;
  background: #FFFFFF;
  border: 2px solid #D1D5DB;
  outline: none;
  transition: border-color 0.12s ease;
  caret-color: #2563EB;
}
.register-otp-digit:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
@media (min-width: 640px) {
  .register-otp-digit {
    width: 56px;
    height: 64px;
    font-size: 30px;
  }
}

.register-otp-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.register-otp-resend {
  font-size: 13px;
  color: #6B7280;
}
.register-otp-resend button {
  background: none;
  border: none;
  color: #2563EB;
  cursor: pointer;
  font-size: inherit;
  text-decoration: underline;
  padding: 0;
}

.register-modal {
  display: none;
}
.register-modal.is-open {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 32, 0.6);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.register-modal__panel {
  background: #FFFFFF;
  width: 100%;
  max-width: 480px;
  padding: 32px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}
@media (min-width: 768px) {
  .register-modal__panel {
    padding: 40px 32px;
  }
}

.register-modal__title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.register-modal__sub,
.register-modal__subtitle {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 24px;
  line-height: 1.55;
}

.register-pref-group {
  margin-bottom: 20px;
}
.register-pref-group__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.register-pref-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.register-pref-option {
  position: relative;
}
.register-pref-option input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.register-pref-option input[type=radio]:checked + label {
  border-color: #2563EB;
  background: rgb(233.2, 239.4, 253);
  color: #2563EB;
  font-weight: 600;
}
.register-pref-option label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #E5E7EB;
  cursor: pointer;
  font-size: 13px;
  color: #111827;
  transition: border-color 0.12s ease, background 0.12s ease, color 0.12s ease;
  white-space: nowrap;
}
.register-pref-option label:hover {
  border-color: #2563EB;
}

.register-modal__city {
  margin-bottom: 24px;
}

.register-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-direction: column;
}
@media (min-width: 640px) {
  .register-modal__actions {
    flex-direction: row;
  }
}

.register-modal__save-btn {
  flex: 1;
  padding: 12px 20px;
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  background: #2563EB;
  border: none;
  cursor: pointer;
  transition: background 0.12s ease;
}
.register-modal__save-btn:hover {
  background: rgb(19.4285714286, 79.6571428571, 211.7714285714);
}

.register-modal__skip-btn {
  flex: 1;
  padding: 12px 20px;
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #6B7280;
  background: transparent;
  border: 1px solid #E5E7EB;
  cursor: pointer;
  transition: border-color 0.12s ease, color 0.12s ease;
}
.register-modal__skip-btn:hover {
  border-color: #2563EB;
  color: #2563EB;
}

.register-social-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 16px;
  color: #6B7280;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.register-social-divider::before, .register-social-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #E5E7EB;
}

.register-social-group {
  display: flex;
  gap: 12px;
}

.register-social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease;
  white-space: nowrap;
}
.register-social-btn svg {
  flex-shrink: 0;
}
.register-social-btn:hover {
  background: #F9FAFB;
  border-color: #6B7280;
}
.register-social-btn--google:hover {
  border-color: #4285F4;
}
.register-social-btn--facebook:hover {
  border-color: #1877F2;
}

.auth-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 400;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  background: #111827;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  max-width: 320px;
  pointer-events: none;
}
.auth-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.auth-toast--success {
  background: #10B981;
}
.auth-toast--error {
  background: #EF4444;
}
.auth-toast--info {
  background: #3B82F6;
}
.auth-toast--warning {
  background: #F59E0B;
  color: #111827;
}

.header-user-menu {
  position: relative;
}

.header-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 12px;
  color: #FFFFFF;
  cursor: pointer;
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.12s ease, border-color 0.12s ease;
  white-space: nowrap;
}
.header-user-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.header-user-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #2563EB;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.header-user-name {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  min-width: 180px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 100;
}

.header-user-item {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 13px;
  color: #111827;
  text-decoration: none;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
  border-bottom: 1px solid #E5E7EB;
}
.header-user-item:last-child {
  border-bottom: none;
}
.header-user-item:hover {
  background: #F9FAFB;
  color: #2563EB;
}
.header-user-item--danger {
  color: #EF4444;
}
.header-user-item--danger:hover {
  background: rgb(254.2748768473, 246.5251231527, 246.5251231527);
  color: rgb(236.9901477833, 44.5098522167, 44.5098522167);
}

.b2b-qualify {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.b2b-qualify__block {
  padding: 20px 0;
  border-bottom: 1px solid #E5E7EB;
}
.b2b-qualify__block:first-child {
  padding-top: 0;
}
.b2b-qualify__block:last-child {
  border-bottom: none;
}

.b2b-qualify__block-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
}

.b2b-qualify__block-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #2563EB;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.b2b-qualify__hint {
  font-weight: 400;
  color: #6B7280;
  font-size: 11px;
}

.b2b-qualify__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.b2b-qualify__option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  color: #111827;
  line-height: 1.55;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.b2b-qualify__option:hover {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.03);
}
.b2b-qualify__option input[type=radio],
.b2b-qualify__option input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #2563EB;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
}
.b2b-qualify__option--none {
  border-color: rgba(239, 68, 68, 0.3);
}
.b2b-qualify__option--none:hover {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.03);
}

.b2b-qualify__denial {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background: rgb(253.4709359606, 237.1290640394, 237.1290640394);
  border-left: 4px solid #EF4444;
  color: rgb(234.9802955665, 21.0197044335, 21.0197044335);
  font-size: 13px;
  line-height: 1.55;
}
.b2b-qualify__denial svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.b2b-qualify__denial strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}
.b2b-qualify__denial p {
  margin-top: 4px;
}

.b2b-qualify__link-btn {
  background: none;
  border: none;
  color: #2563EB;
  font-size: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.b2b-qualify__link-btn:hover {
  color: rgb(17.7142857143, 72.6285714286, 193.0857142857);
}

.b2b-qualify__conditional {
  margin-top: 16px;
  padding: 16px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
}
.b2b-qualify__conditional .register-field + .register-field {
  margin-top: 16px;
}

.b2b-qualify__progress {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0;
  margin-top: 8px;
  border-top: 1px solid #E5E7EB;
}

.b2b-qualify__progress-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #6B7280;
}
.b2b-qualify__progress-item svg {
  flex-shrink: 0;
}
.b2b-qualify__progress-item.is-done {
  color: #10B981;
}
.b2b-qualify__progress-item.is-done svg {
  stroke: #10B981;
}

.cart-page {
  padding: 40px 0 64px;
}

.cart-title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 64px 0;
  text-align: center;
}
.cart-empty[hidden] {
  display: none;
}
.cart-empty__icon {
  width: 64px;
  height: 64px;
  color: #9CA3AF;
}
.cart-empty__text {
  font-size: 20px;
  color: #6B7280;
}

.cart-section {
  margin-bottom: 32px;
}
.cart-section__title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1E2A38;
  display: inline-block;
}

.cart-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.cart-table thead {
  background: #F3F4F6;
  border-bottom: 2px solid #E5E7EB;
}
.cart-table th, .cart-table td {
  padding: 12px;
  vertical-align: middle;
}
.cart-table th {
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.cart-table td {
  border-bottom: 1px solid #E5E7EB;
}
.cart-table__col-num {
  width: 40px;
  text-align: center;
}
.cart-table__col-article {
  width: 100px;
  text-align: left;
}
.cart-table__col-name {
  min-width: 180px;
  text-align: left;
}
.cart-table__col-qty {
  width: 130px;
  text-align: center;
}
.cart-table__col-price {
  width: 100px;
  text-align: right;
}
.cart-table__col-tax {
  width: 90px;
  text-align: right;
}
.cart-table__col-total {
  width: 110px;
  text-align: right;
}
.cart-table__col-del {
  width: 44px;
  text-align: center;
}
.cart-table__col-pay {
  width: 110px;
  text-align: center;
}
.cart-table td.cart-table__col-total {
  font-weight: 600;
}

.cart-table__row {
  transition: background 0.12s ease;
}
.cart-table__row:hover {
  background: #F9FAFB;
}
.cart-table__row--paid {
  background: rgba(16, 185, 129, 0.04);
}
.cart-table__row--paid:hover {
  background: rgba(16, 185, 129, 0.07);
}
.cart-table__row--excluded {
  opacity: 0.5;
}
.cart-table__row--excluded .cart-table__col-total,
.cart-table__row--excluded .cart-table__col-tax {
  color: #9CA3AF;
}
.cart-table__row--pending .cart-table__item-name {
  color: #6B7280;
}

.cart-table__article-code {
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 11px;
  color: #6B7280;
}

.cart-table__item-name {
  font-weight: 500;
  color: #111827;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 280px;
}

.cart-table__pending-badge {
  display: inline-block;
  margin-top: 2px;
  padding: 1px 8px;
  font-size: 11px;
  font-weight: 600;
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cart-table__qty-wrap {
  display: inline-flex;
  align-items: center;
  border: 1px solid #E5E7EB;
}

.cart-table__qty-btn {
  width: 32px;
  height: 32px;
  background: #F3F4F6;
  border: none;
  font-size: 20px;
  font-weight: 700;
  color: #1E2A38;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s ease;
  flex-shrink: 0;
}
.cart-table__qty-btn:hover:not(:disabled) {
  background: #E5E7EB;
}
.cart-table__qty-btn:disabled {
  color: #9CA3AF;
  cursor: not-allowed;
}

.cart-table__qty-input {
  width: 44px;
  height: 32px;
  border: none;
  border-left: 1px solid #E5E7EB;
  border-right: 1px solid #E5E7EB;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  background: #FFFFFF;
  color: #111827;
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
  outline: none;
  -moz-appearance: textfield;
}
.cart-table__qty-input::-webkit-inner-spin-button, .cart-table__qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.cart-table__qty-input:disabled {
  background: #F3F4F6;
  color: #9CA3AF;
}

.cart-table__clear-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #6B7280;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  transition: color 0.12s ease;
}
.cart-table__clear-btn:hover {
  color: #EF4444;
}

.cart-table__del-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #6B7280;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 4px;
  transition: color 0.12s ease;
}
.cart-table__del-btn:hover:not(:disabled) {
  color: #EF4444;
}
.cart-table__del-btn:disabled {
  color: #9CA3AF;
  cursor: not-allowed;
}

.cart-table__pay-btn {
  padding: 4px 12px;
  font-size: 11px;
  white-space: nowrap;
}

.cart-table__paid-label {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #10B981;
  background: rgba(16, 185, 129, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cart-summary {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  padding: 24px;
}
@media (min-width: 1024px) {
  .cart-summary {
    position: sticky;
    top: calc(72px + 16px);
  }
}
.cart-summary__title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #6B7280;
  padding: 8px 0;
}
.cart-summary__row--total {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}
.cart-summary__row--due {
  font-size: 15px;
  font-weight: 700;
  color: #EF4444;
}
.cart-summary__paid-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #10B981;
  padding: 8px 0;
  font-weight: 600;
}
.cart-summary__paid-row[hidden] {
  display: none;
}
.cart-summary__divider {
  border: none;
  border-top: 1px solid #E5E7EB;
  margin: 16px 0;
}
.cart-summary__delivery-note {
  font-size: 11px;
  color: #10B981;
  margin-top: 8px;
  margin-bottom: 20px;
  min-height: 1em;
}

.cart-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .cart-bottom {
    grid-template-columns: 1fr 380px;
    align-items: start;
  }
}
.cart-bottom[hidden] {
  display: none;
}

.cart-delivery {
  background: #FFFFFF;
  border: 2px solid #2563EB;
  padding: 24px;
}
.cart-delivery__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}
.cart-delivery__icon {
  width: 24px;
  height: 24px;
  color: #2563EB;
  flex-shrink: 0;
}
.cart-delivery__required {
  font-size: 11px;
  font-weight: 400;
  color: #EF4444;
  margin-left: auto;
}
.cart-delivery__methods {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cart-delivery__address {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #E5E7EB;
}
.cart-delivery__address[hidden] {
  display: none;
}
.cart-delivery__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-delivery__field--full {
  grid-column: 1/-1;
}
.cart-delivery__field[hidden] {
  display: none;
}
.cart-delivery__label {
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cart-delivery__input {
  height: 40px;
  padding: 0 12px;
  border: 1px solid #E5E7EB;
  font-size: 13px;
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
  color: #111827;
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.12s ease;
}
.cart-delivery__input::placeholder {
  color: #9CA3AF;
}
.cart-delivery__input:focus {
  border-color: #2563EB;
}
.cart-delivery__input.is-invalid {
  border-color: #EF4444;
}
.cart-delivery__select {
  height: 40px;
  padding: 0 12px;
  border: 1px solid #E5E7EB;
  font-size: 13px;
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
  color: #111827;
  background: #FFFFFF;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.cart-delivery__select:focus {
  border-color: #2563EB;
}
.cart-delivery__select.is-invalid {
  border-color: #EF4444;
}
.cart-delivery__autocomplete {
  position: relative;
}
.cart-delivery__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-top: none;
  max-height: 220px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.cart-delivery__dropdown[hidden] {
  display: none;
}
.cart-delivery__dropdown-item {
  padding: 8px 12px;
  font-size: 13px;
  color: #111827;
  cursor: pointer;
  transition: background 0.12s ease;
}
.cart-delivery__dropdown-item:hover, .cart-delivery__dropdown-item--active {
  background: #F9FAFB;
  color: #2563EB;
}
.cart-delivery__dropdown-item mark {
  background: rgba(37, 99, 235, 0.12);
  color: #2563EB;
  font-weight: 600;
}
.cart-delivery__cost-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(59, 130, 246, 0.06);
  border-left: 3px solid #3B82F6;
  font-size: 11px;
  color: #3B82F6;
}
.cart-delivery__cost-note[hidden] {
  display: none;
}
.cart-delivery__cost-note svg {
  flex-shrink: 0;
  margin-top: 1px;
}
.cart-delivery__error {
  font-size: 11px;
  color: #EF4444;
  margin-top: 8px;
}
.cart-delivery__error[hidden] {
  display: none;
}
.cart-delivery__weight-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  background: #F9FAFB;
  font-size: 11px;
  color: #6B7280;
}
.cart-delivery__weight-info svg {
  flex-shrink: 0;
  color: #6B7280;
}
.cart-delivery__weight-info strong {
  color: #111827;
  font-weight: 600;
}
.cart-delivery__spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #E5E7EB;
  border-top-color: #2563EB;
  animation: cart-spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes cart-spin {
  to {
    transform: rotate(360deg);
  }
}
.cart-delivery-radio {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.cart-delivery-radio:hover {
  border-color: #D1D5DB;
  background: #F9FAFB;
}
.cart-delivery-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cart-delivery-radio input[type=radio]:checked ~ .cart-delivery-radio__mark {
  border-color: #2563EB;
}
.cart-delivery-radio input[type=radio]:checked ~ .cart-delivery-radio__mark::after {
  transform: scale(1);
}
.cart-delivery-radio input[type=radio]:checked ~ .cart-delivery-radio__body strong {
  color: #2563EB;
}
.cart-delivery-radio__mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #D1D5DB;
  border-radius: 50%;
  position: relative;
  margin-top: 3px;
}
.cart-delivery-radio__mark::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: #2563EB;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.12s ease;
}
.cart-delivery-radio__body {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.cart-delivery-radio__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.cart-delivery-radio__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.cart-delivery-radio__label {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}
.cart-delivery-radio__label strong {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}
.cart-delivery-radio__label span {
  font-size: 11px;
  color: #6B7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-delivery-radio__price {
  font-size: 13px;
  font-weight: 700;
  color: #10B981;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-actions__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
}
.cart-actions__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cart-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
}
.cart-modal-overlay[hidden] {
  display: none;
}

.cart-modal {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  padding: 32px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}
.cart-modal__title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}
.cart-modal__text {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.55;
  margin-bottom: 24px;
}
.cart-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cart-modal__btn {
  padding: 8px 20px;
  font-size: 13px;
}

.cart-payment-modal {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  padding: 32px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}
.cart-payment-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #6B7280;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.12s ease;
}
.cart-payment-modal__close:hover {
  color: #111827;
}
.cart-payment-modal__title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}
.cart-payment-modal__amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  margin-bottom: 24px;
  font-size: 15px;
}
.cart-payment-modal__amount strong {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}
.cart-payment-modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-payment-modal__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-payment-modal__label {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}
.cart-payment-modal__input {
  height: 40px;
  padding: 0 12px;
  border: 1px solid #E5E7EB;
  font-size: 13px;
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
  color: #111827;
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.12s ease;
}
.cart-payment-modal__input::placeholder {
  color: #9CA3AF;
}
.cart-payment-modal__input:focus {
  border-color: #2563EB;
}
.cart-payment-modal__input.is-invalid {
  border-color: #EF4444;
}
.cart-payment-modal__methods {
  border: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-payment-modal__card-fields {
  padding: 16px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-payment-modal__card-fields[hidden] {
  display: none;
}
.cart-payment-modal__card-row {
  display: flex;
  gap: 12px;
}
.cart-payment-modal__card-row .cart-payment-modal__field {
  flex: 1;
}
.cart-payment-modal__card-input {
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  letter-spacing: 0.04em;
}
.cart-payment-modal__alt-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}
.cart-payment-modal__alt-divider::before, .cart-payment-modal__alt-divider::after {
  content: "";
  flex: 1;
  border-top: 1px solid #E5E7EB;
}
.cart-payment-modal__alt-divider span {
  font-size: 11px;
  color: #6B7280;
  white-space: nowrap;
}
.cart-payment-modal__method-note {
  font-size: 11px;
  color: #3B82F6;
  background: rgba(59, 130, 246, 0.06);
  padding: 8px 12px;
  border-left: 3px solid #3B82F6;
}
.cart-payment-modal__method-note[hidden] {
  display: none;
}
.cart-payment-modal__error {
  font-size: 13px;
  color: #EF4444;
  padding: 8px 12px;
  background: rgba(239, 68, 68, 0.06);
  border-left: 3px solid #EF4444;
}
.cart-payment-modal__error[hidden] {
  display: none;
}
.cart-payment-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 16px;
}

.cart-pay-logo {
  height: 16px;
  width: auto;
  flex-shrink: 0;
}
.cart-pay-logo--wide {
  height: 14px;
}

.cart-pay-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.cart-pay-radio:hover {
  border-color: #D1D5DB;
  background: #F9FAFB;
}
.cart-pay-radio--active {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.03);
}
.cart-pay-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cart-pay-radio input[type=radio]:checked ~ .cart-pay-radio__mark {
  border-color: #2563EB;
}
.cart-pay-radio input[type=radio]:checked ~ .cart-pay-radio__mark::after {
  transform: scale(1);
}
.cart-pay-radio input[type=radio]:checked ~ .cart-pay-radio__label strong {
  color: #2563EB;
}
.cart-pay-radio__mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #D1D5DB;
  border-radius: 50%;
  position: relative;
}
.cart-pay-radio__mark::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: #2563EB;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.12s ease;
}
.cart-pay-radio__logo {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.cart-pay-radio__logo svg {
  width: 24px;
  height: 24px;
  display: block;
}
.cart-pay-radio__logos {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.cart-pay-radio__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.cart-pay-radio__label strong {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}
.cart-pay-radio__label span {
  font-size: 11px;
  color: #6B7280;
}

@media (max-width: 768px) {
  .cart-table {
    font-size: 11px;
  }
  .cart-table th, .cart-table td {
    padding: 8px;
  }
  .cart-table__col-article, .cart-table__col-tax {
    display: none;
  }
  .cart-table__item-name {
    max-width: 140px;
  }
  .cart-table__qty-btn {
    width: 28px;
    height: 28px;
  }
  .cart-table__qty-input {
    width: 36px;
    height: 28px;
  }
}
@media (max-width: 480px) {
  .cart-table__col-num {
    display: none;
  }
  .cart-table__item-name {
    max-width: 100px;
  }
}
@media (max-width: 768px) {
  .cart-delivery__address {
    grid-template-columns: 1fr;
  }
  .cart-delivery__field--full {
    grid-column: 1;
  }
  .cart-delivery-radio__body {
    flex-wrap: wrap;
  }
  .cart-delivery-radio__price {
    width: 100%;
    margin-left: 0;
    margin-top: 2px;
  }
}
.store-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 1024px) {
  .store-layout {
    grid-template-columns: 1fr;
  }
}

.store-sidebar {
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #E5E7EB transparent;
}
.store-sidebar::-webkit-scrollbar {
  width: 4px;
}
.store-sidebar::-webkit-scrollbar-thumb {
  background: #E5E7EB;
}
@media (max-width: 1024px) {
  .store-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    max-height: 100vh;
    background: #FFFFFF;
    z-index: 200;
    padding: 24px;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  }
  .store-sidebar.is-open {
    transform: translateX(0);
  }
}

.store-sidebar-backdrop {
  display: none;
}
@media (max-width: 1024px) {
  .store-sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
  }
  .store-sidebar-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
}

.store-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #1E2A38;
  color: #FFFFFF;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .store-filter-toggle {
    display: flex;
  }
}
.store-filter-toggle svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.sidebar-block {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  padding: 20px;
  margin-bottom: 16px;
}
.sidebar-block__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1E2A38;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.sidebar-block__title svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.2s;
}
.sidebar-block__title.is-collapsed svg {
  transform: rotate(-90deg);
}
.sidebar-block__body.is-hidden {
  display: none;
}

.store-cats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cat-item {
  position: relative;
}
.cat-item .cat-main-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 10px;
  font-size: 14px;
  color: #374151;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  gap: 4px;
}
.cat-item .cat-main-btn .cat-name {
  flex: 1;
}
.cat-item .cat-main-btn .cat-count {
  font-size: 12px;
  color: #6B7280;
}
.cat-item .cat-main-btn .cat-arrow {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.cat-item .cat-main-btn:hover {
  background: #F3F4F6;
  color: #2563EB;
}
.cat-item.is-active > .cat-main-btn {
  background: #1E2A38;
  color: #FFFFFF;
  font-weight: 600;
}
.cat-item.is-active > .cat-main-btn .cat-count {
  color: rgba(255, 255, 255, 0.6);
}
.cat-item.has-subs > .cat-main-btn .cat-arrow {
  display: block;
}
.cat-item:not(.has-subs) > .cat-main-btn .cat-arrow {
  display: none;
}
.cat-item.is-open > .cat-main-btn .cat-arrow {
  transform: rotate(90deg);
}

.cat-subs {
  list-style: none;
  padding-left: 12px;
  display: none;
}
.cat-item.is-open > .cat-subs {
  display: block;
}
.cat-subs .cat-main-btn {
  font-size: 13px;
  padding: 6px 10px;
}

.store-search {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #E5E7EB;
  font-size: 14px;
  color: #111827;
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.15s;
}
.store-search:focus {
  border-color: #2563EB;
}
.store-search::placeholder {
  color: #6B7280;
}

.price-range-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-range-wrap .price-range-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.price-range-wrap .price-range-inputs input[type=range] {
  width: 100%;
  accent-color: #2563EB;
}
.price-range-wrap .price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #6B7280;
}
.price-range-wrap .price-range-labels strong {
  color: #111827;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #111827;
  cursor: pointer;
}
.filter-options label input[type=checkbox],
.filter-options label input[type=radio] {
  accent-color: #2563EB;
  flex-shrink: 0;
}
.filter-options label:hover {
  color: #2563EB;
}

.sale-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #111827;
  cursor: pointer;
}
.sale-toggle input[type=checkbox] {
  accent-color: #EF4444;
  flex-shrink: 0;
}
.sale-toggle span {
  user-select: none;
}
.sale-toggle:hover span {
  color: #EF4444;
}

.filter-select {
  width: 100%;
  padding: 7px 10px;
  font-size: 13px;
  color: #111827;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  outline: none;
  transition: border-color 0.15s;
  appearance: auto;
}
.filter-select:focus {
  border-color: #2563EB;
}

.store-reset-btn {
  width: 100%;
  padding: 9px;
  background: none;
  border: 1px solid #E5E7EB;
  font-size: 13px;
  color: #6B7280;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  margin-top: 8px;
}
.store-reset-btn:hover {
  border-color: #2563EB;
  color: #2563EB;
}

.store-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E7EB;
}
.store-toolbar__count {
  font-size: 14px;
  color: #6B7280;
}
.store-toolbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.store-toolbar select {
  padding: 8px 32px 8px 12px;
  border: 1px solid #E5E7EB;
  font-size: 14px;
  color: #111827;
  background: #FFFFFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s;
}
.store-toolbar select:focus {
  border-color: #2563EB;
}

.store-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 64px;
  color: #6B7280;
  font-size: 15px;
}

.store-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.store-page-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  font-size: 14px;
  color: #111827;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.store-page-btn:hover {
  border-color: #2563EB;
  color: #2563EB;
}
.store-page-btn.is-active {
  background: #1E2A38;
  border-color: #1E2A38;
  color: #FFFFFF;
  pointer-events: none;
}

.product-card__badge--digital {
  background: #7C3AED;
  color: #fff;
}

.product-card__badge--popular {
  background: #F59E0B;
  color: #fff;
}

.store-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6B7280;
  text-decoration: none;
  padding: 10px 0;
  margin-bottom: 12px;
  transition: color 0.15s;
}
.store-back-link:hover {
  color: #2563EB;
}

.store-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1280px) {
  .store-cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .store-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .store-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.store-cat-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.store-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.store-cat-card__img-wrap {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
  border-bottom: 1px solid #E5E7EB;
}
.store-cat-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(229, 231, 235, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-cat-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: #1E2A38;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.store-cat-card__body {
  padding: 14px 12px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.store-cat-card__name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}
.store-cat-card__subs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
}
.store-cat-card__subs span {
  font-size: 10px;
  color: #6B7280;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  padding: 1px 5px;
}
.store-cat-card__count {
  font-size: 13px;
  color: #6B7280;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .store-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .store-toolbar__right {
    width: 100%;
  }
  .store-toolbar select {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .store-page-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
@media (max-width: 640px) {
  .store-cat-card__img-wrap {
    height: 84px;
  }
  .store-cat-card__icon {
    width: 44px;
    height: 44px;
  }
  .store-cat-card__icon svg {
    width: 22px;
    height: 22px;
  }
  .store-cat-card__body {
    padding: 10px 8px 8px;
  }
  .store-cat-card__name {
    font-size: 0.9rem;
  }
}
.product-detail {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 1024px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
}

.product-gallery {
  position: sticky;
  top: 80px;
}
@media (min-width: 769px) {
  .product-gallery {
    position: relative;
    position: sticky;
    top: 80px;
  }
}

.product-gallery__main {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  cursor: zoom-in;
}

.product-gallery__main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.15s;
}
.product-gallery__nav svg {
  width: 18px;
  height: 18px;
  stroke: #1E2A38;
  fill: none;
  stroke-width: 2;
}
.product-gallery__nav:hover {
  background: #FFFFFF;
}
.product-gallery__nav--prev {
  left: 8px;
}
.product-gallery__nav--next {
  right: 8px;
}

.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.product-gallery__thumb {
  width: 72px;
  height: 72px;
  border: 2px solid #E5E7EB;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s;
  flex-shrink: 0;
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-gallery__thumb.is-active {
  border-color: #2563EB;
}
.product-gallery__thumb:hover {
  border-color: #1E2A38;
}

.product-gallery__lens {
  position: absolute;
  border: 2px solid rgba(37, 99, 235, 0.5);
  background: rgba(37, 99, 235, 0.08);
  pointer-events: none;
  z-index: 3;
  transition: none;
}

.product-gallery__zoom-result {
  position: absolute;
  top: 0;
  left: calc(100% + 16px);
  width: 400px;
  height: 400px;
  border: 1px solid #E5E7EB;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .product-gallery__zoom-result {
    width: 320px;
    height: 320px;
  }
}
@media (max-width: 768px) {
  .product-gallery__zoom-result {
    display: none !important;
  }
}

.product-gallery__hint {
  font-size: 12px;
  color: #6B7280;
  margin-top: 8px;
  text-align: center;
}
@media (max-width: 768px) {
  .product-gallery__hint--desktop {
    display: none;
  }
}
.product-gallery__hint--mobile {
  display: none;
}
@media (max-width: 768px) {
  .product-gallery__hint--mobile {
    display: block;
  }
}

.product-gallery__zoom {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
}
.product-gallery__zoom.is-open {
  display: flex;
}

.product-gallery__zoom-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.product-gallery__zoom-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.product-gallery__zoom-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.product-gallery__zoom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.product-gallery__zoom-nav svg {
  width: 24px;
  height: 24px;
  stroke: #FFFFFF;
  fill: none;
  stroke-width: 2;
}
.product-gallery__zoom-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}
.product-gallery__zoom-nav--prev {
  left: 20px;
}
.product-gallery__zoom-nav--next {
  right: 20px;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-breadcrumb {
  font-size: 13px;
  color: #6B7280;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.product-breadcrumb a {
  color: #6B7280;
  text-decoration: none;
}
.product-breadcrumb a:hover {
  color: #2563EB;
}
.product-breadcrumb span {
  opacity: 0.5;
}

.product-cat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #2563EB;
}

.product-title {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1E2A38;
  line-height: 1.25;
  margin: 0;
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #6B7280;
}
.product-meta strong {
  color: #111827;
}

.product-stock {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
}
.product-stock::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50% !important;
  flex-shrink: 0;
}
.product-stock--in {
  color: #10B981;
  background: rgba(16, 185, 129, 0.08);
}
.product-stock--in::before {
  background: #10B981;
}
.product-stock--low {
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.08);
}
.product-stock--low::before {
  background: #F59E0B;
}
.product-stock--out {
  color: #EF4444;
  background: rgba(239, 68, 68, 0.08);
}
.product-stock--out::before {
  background: #EF4444;
}

.product-price-block {
  padding: 16px 0;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.product-price {
  font-size: 30px;
  font-weight: 700;
  color: #1E2A38;
}

.product-price-old {
  font-size: 15px;
  color: #6B7280;
  text-decoration: line-through;
}

.product-price-savings {
  font-size: 13px;
  color: #EF4444;
  font-weight: 600;
}

.product-format-toggle {
  display: flex;
  gap: 12px;
}
.product-format-toggle label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #111827;
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid #E5E7EB;
  transition: border-color 0.15s;
}
.product-format-toggle label input[type=radio] {
  accent-color: #2563EB;
}
.product-format-toggle label:has(input:checked) {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.04);
}

.product-cart-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.product-add-btn {
  flex: 1;
  min-width: 140px;
  height: 44px;
  background: #1E2A38;
  color: #FFFFFF;
  border: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.product-add-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.product-add-btn:hover {
  background: #2563EB;
}
.product-add-btn.is-added {
  background: #10B981;
}

.product-buy-btn {
  height: 44px;
  padding: 0 20px;
  background: #2563EB;
  color: #FFFFFF;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.product-buy-btn:hover {
  background: rgb(19.4285714286, 79.6571428571, 211.7714285714);
}

.product-preview-btn {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  background: #FFFFFF;
  color: #1E2A38;
  border: 2px solid #1E2A38;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.product-preview-btn svg {
  stroke: #1E2A38;
  transition: stroke 0.15s;
}
.product-preview-btn:hover {
  background: #1E2A38;
  color: #FFFFFF;
}
.product-preview-btn:hover svg {
  stroke: #FFFFFF;
}

.product-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.product-specs-table tr:nth-child(even) td {
  background: #F3F4F6;
}
.product-specs-table td {
  padding: 9px 14px;
  border-bottom: 1px solid #E5E7EB;
  vertical-align: top;
}
.product-specs-table td:first-child {
  color: #6B7280;
  width: 42%;
  font-weight: 500;
}
.product-specs-table td:last-child {
  color: #111827;
}

.product-description {
  font-size: 15px;
  color: #111827;
  line-height: 1.65;
}

.product-desc-full {
  display: none;
}
.product-desc-full.is-visible {
  display: block;
}

.product-desc-toggle {
  background: none;
  border: none;
  color: #2563EB;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  text-decoration: underline;
}
.product-desc-toggle:hover {
  color: #1E2A38;
}

.product-book-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #E5E7EB;
}

.product-book-section__title {
  font-size: 16px;
  font-weight: 700;
  color: #1E2A38;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-book-annotation {
  font-size: 14px;
  color: #111827;
  line-height: 1.7;
  margin-bottom: 20px;
  padding: 16px;
  background: #F3F4F6;
  border-left: 3px solid #2563EB;
}

.product-book-preview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
@media (max-width: 640px) {
  .product-book-preview {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-book-preview__slot {
  aspect-ratio: 3/4;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  font-size: 11px;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s;
}
.product-book-preview__slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-book-preview__slot span {
  font-size: 10px;
  margin-top: 4px;
}
.product-book-preview__slot svg {
  width: 24px;
  height: 24px;
  stroke: #6B7280;
  fill: none;
  opacity: 0.5;
}
.product-book-preview__slot:hover {
  border-color: #2563EB;
}

.product-tabs {
  display: flex;
  border-bottom: 2px solid #E5E7EB;
  margin-bottom: 24px;
  gap: 0;
}

.product-tab-btn {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.product-tab-btn.is-active {
  color: #1E2A38;
  border-bottom-color: #1E2A38;
}
.product-tab-btn:hover:not(.is-active) {
  color: #2563EB;
}

.product-tab-panel {
  display: none;
}
.product-tab-panel.is-active {
  display: block;
}

.product-barcode-display {
  margin-top: 8px;
}
.product-barcode-display svg {
  display: block;
  max-width: 200px;
}
.product-barcode-display p {
  font-size: 11px;
  color: #6B7280;
  text-align: center;
  margin-top: 4px;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .product-gallery {
    position: static;
  }
}
@media (max-width: 640px) {
  .product-title {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .product-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }
  .product-tabs::-webkit-scrollbar {
    height: 2px;
  }
  .product-tabs::-webkit-scrollbar-thumb {
    background: #E5E7EB;
  }
  .product-tab-btn {
    white-space: nowrap;
    padding: 10px 14px;
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  .product-cart-row {
    flex-direction: column;
    align-items: stretch;
  }
  .product-add-btn {
    min-width: 0;
    justify-content: center;
  }
  .product-buy-btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .product-format-toggle {
    flex-direction: column;
    gap: 8px;
  }
  .product-format-toggle label {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .product-gallery__zoom-nav {
    display: none;
  }
}
.label--light {
  color: rgba(255, 255, 255, 0.55);
}

.about-story {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-story__block {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid #E5E7EB;
}
.about-story__block:last-child {
  border-bottom: none;
}

.about-story__year {
  flex-shrink: 0;
  width: 80px;
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #2563EB;
  line-height: 1;
  padding-top: 4px;
}

.about-story__content h3 {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}
.about-story__content p {
  color: #6B7280;
  line-height: 1.75;
}

.about-closing {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 0;
}

.about-closing__text {
  font-size: 20px;
  line-height: 1.75;
  color: #6B7280;
  margin-bottom: 32px;
}

.about-closing__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .about-story__block {
    flex-direction: column;
    gap: 12px;
  }
  .about-story__year {
    width: auto;
    font-size: 24px;
  }
}
.checkout-radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  cursor: pointer;
  transition: border-color 0.15s;
}
.checkout-radio:hover {
  border-color: #2563EB;
}
.checkout-radio input[type=radio] {
  margin-top: 3px;
  accent-color: #2563EB;
}
.checkout-radio__label {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
}

.checkout-radio:has(input:checked) {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.03);
}

#checkoutResult {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  #checkoutForm > .container {
    grid-template-columns: 1fr !important;
  }
  #checkoutForm aside {
    position: static !important;
  }
}
.legal-content {
  line-height: 1.75;
  color: #111827;
}
.legal-content p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.75;
}

.legal-content__intro {
  font-size: 20px;
  color: #6B7280;
  margin-bottom: 32px;
  line-height: 1.75;
}

.legal-content__heading {
  font-family: "Hind", "Open Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1E2A38;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #2563EB;
}

.legal-content__list {
  margin: 0 0 16px 0;
  padding-left: 24px;
  list-style: disc;
}
.legal-content__list li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.75;
  color: #111827;
}

@media (max-width: 768px) {
  .legal-content {
    padding-left: 16px;
    padding-right: 16px;
  }
  .legal-content__heading {
    font-size: 18px;
    margin-top: 32px;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: #1E2A38;
  color: #FFFFFF;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
}
.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
}

.cookie-banner__text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
}
.cookie-banner__text p {
  margin: 0;
}
.cookie-banner__text a {
  color: #2563EB;
  text-decoration: underline;
  white-space: nowrap;
}
.cookie-banner__text a:hover {
  color: rgb(93.0571428571, 139.1142857143, 240.1428571429);
}

.cookie-banner__icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.6);
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner__btn--accept {
  background: #2563EB;
  color: #FFFFFF;
}
.cookie-banner__btn--accept:hover {
  background: rgb(19.4285714286, 79.6571428571, 211.7714285714);
}
.cookie-banner__btn--settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.cookie-banner__btn--settings:hover {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }
  .cookie-banner__actions {
    justify-content: stretch;
  }
  .cookie-banner__actions .cookie-banner__btn {
    flex: 1;
    text-align: center;
  }
}
/* ============================================================
   CONSTRUCTOR PAGE — Product designer for printing
   ============================================================ */
/* ── Hero ─────────────────────────────────────────────────── */
.ctr-hero {
  padding: 48px 0 32px;
  background: #1E2A38;
  color: #fff;
  text-align: center;
}
.ctr-hero .label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 12px;
}
.ctr-hero h1 {
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.2;
}
.ctr-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.55;
}

/* ── Selector Section ─────────────────────────────────────── */
.ctr-selector {
  padding: 48px 0 40px;
}

.ctr-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}

.ctr-tab {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #E5E7EB;
  background: #fff;
  color: #111827;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.ctr-tab:hover {
  border-color: #2563EB;
  color: #2563EB;
}
.ctr-tab.is-active {
  background: #2563EB;
  border-color: #2563EB;
  color: #fff;
}

.ctr-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.ctr-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  border: 1px solid #E5E7EB;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ctr-product-card:hover {
  border-color: #2563EB;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.ctr-product-card.is-selected {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.04);
}
.ctr-product-card svg {
  width: 56px;
  height: 56px;
  color: #111827;
}
.ctr-product-card span {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: #111827;
  line-height: 1.3;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.ctr-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ctr-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #2563EB;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.ctr-back:hover {
  text-decoration: underline;
}

.ctr-product-label {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

/* ── Editor Layout ────────────────────────────────────────── */
.ctr-workspace {
  padding: 0 0 56px;
}

.ctr-editor {
  display: grid;
  grid-template-columns: 200px 1fr 240px;
  gap: 20px;
  min-height: 620px;
}
@media (max-width: 960px) {
  .ctr-editor {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

/* ── Tools Panel ──────────────────────────────────────────── */
.ctr-tools {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 16px;
  border: 1px solid #E5E7EB;
  background: #fff;
  align-self: start;
}
@media (max-width: 960px) {
  .ctr-tools {
    flex-direction: row;
    flex-wrap: wrap;
    order: 2;
  }
}

.ctr-tool-group h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6B7280;
  margin: 0 0 8px;
}

.ctr-tool-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #E5E7EB;
  background: #fff;
  color: #111827;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.ctr-tool-btn:hover {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.04);
}
.ctr-tool-btn--sm {
  padding: 6px 8px;
  font-size: 12px;
}
.ctr-tool-btn--danger {
  color: #EF4444;
}
.ctr-tool-btn--danger:hover {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.04);
}

.ctr-shapes-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.ctr-shape-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid #E5E7EB;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s;
}
.ctr-shape-btn:hover {
  border-color: #2563EB;
}
.ctr-shape-btn svg {
  color: #111827;
}

.ctr-layer-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ── Canvas Area ──────────────────────────────────────────── */
.ctr-canvas-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #E5E7EB;
  background: #F3F4F6;
  padding: 16px;
  min-height: 600px;
}
@media (max-width: 960px) {
  .ctr-canvas-wrap {
    order: 1;
  }
}

.ctr-view-toggle {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.ctr-view-btn {
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #E5E7EB;
  background: #fff;
  color: #6B7280;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.ctr-view-btn:hover {
  color: #111827;
}
.ctr-view-btn.is-active {
  background: #1E2A38;
  border-color: #1E2A38;
  color: #fff;
}

.ctr-mockup {
  position: relative;
  width: 500px;
  height: 600px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .ctr-mockup {
    width: 100%;
    height: auto;
    aspect-ratio: 500/600;
  }
}

.ctr-product-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

#ctrCanvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.ctr-zoom {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.ctr-zoom-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #E5E7EB;
  background: #fff;
  color: #111827;
  cursor: pointer;
}
.ctr-zoom-btn:hover {
  border-color: #2563EB;
}

/* ── Options Panel ────────────────────────────────────────── */
.ctr-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 16px;
  border: 1px solid #E5E7EB;
  background: #fff;
  align-self: start;
}
@media (max-width: 960px) {
  .ctr-options {
    order: 3;
  }
}

.ctr-opt-group h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6B7280;
  margin: 0 0 8px;
}

.ctr-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ctr-swatch {
  width: 28px;
  height: 28px;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  transition: border-color 0.15s;
}
.ctr-swatch:hover {
  border-color: #6B7280;
}
.ctr-swatch.is-active {
  border-color: #2563EB;
}
.ctr-swatch.is-active::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid #2563EB;
}

.ctr-size-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.ctr-size-btn {
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #E5E7EB;
  background: #fff;
  color: #111827;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.ctr-size-btn:hover {
  border-color: #2563EB;
}
.ctr-size-btn.is-active {
  background: #2563EB;
  border-color: #2563EB;
  color: #fff;
}

.ctr-print-info {
  font-size: 13px;
  color: #6B7280;
  margin: 0;
  line-height: 1.5;
}

/* ── Text Properties ──────────────────────────────────────── */
.ctr-prop-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.ctr-prop-row label {
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  min-width: 50px;
}
.ctr-prop-row select, .ctr-prop-row input[type=number] {
  flex: 1;
  padding: 5px 8px;
  font-size: 13px;
  border: 1px solid #E5E7EB;
  background: #fff;
  color: #111827;
}
.ctr-prop-row input[type=color] {
  width: 32px;
  height: 28px;
  padding: 0;
  border: 1px solid #E5E7EB;
  cursor: pointer;
}

.ctr-text-style-btns {
  display: flex;
  gap: 4px;
}
.ctr-text-style-btns button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid #E5E7EB;
  background: #fff;
  color: #111827;
  cursor: pointer;
}
.ctr-text-style-btns button:hover {
  border-color: #2563EB;
}
.ctr-text-style-btns button.is-active {
  background: #1E2A38;
  border-color: #1E2A38;
  color: #fff;
}

/* ── Quantity Stepper ─────────────────────────────────────── */
.ctr-qty-stepper {
  display: flex;
  align-items: center;
}
.ctr-qty-stepper input {
  width: 48px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 4px;
  border: 1px solid #E5E7EB;
  border-left: none;
  border-right: none;
}

.ctr-qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid #E5E7EB;
  background: #fff;
  cursor: pointer;
}
.ctr-qty-btn:hover {
  background: #F9FAFB;
}

/* ── Order Section ────────────────────────────────────────── */
.ctr-order-section {
  border-top: 1px solid #E5E7EB;
  padding-top: 16px;
}

.ctr-price-line {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 8px 0 12px;
}

.ctr-order-btn {
  width: 100%;
  margin-bottom: 8px;
}

.ctr-export-btn {
  width: 100%;
  font-size: 13px;
}
/*# sourceMappingURL=main.css.map */
