:root {
  --orange: #ff6a00;
  --anthracite: #2b2f33;
  --anthracite-dark: #2b2f33;
  --light: #f9f4ee;
  --white: #ffffff;
  --gray: #eef0ef;
  --ink: #2b2f33;
  --muted: #687074;
  --line: rgba(43, 47, 51, 0.12);
  --shadow: 0 24px 80px rgba(43, 47, 51, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --plum: var(--anthracite);
  --plum-dark: var(--anthracite-dark);
  --cream: var(--light);
  --warm: #fffaf2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--plum);
  font-size: 13px;
  font-weight: 600;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(var(--container) + 48px);
  margin: 0 auto;
  padding: 18px 24px;
  backdrop-filter: blur(18px);
}

.header.scrolled {
  background: rgba(249, 244, 238, 0.86);
}

.header.scrolled::after {
  position: absolute;
  right: auto;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  content: "";
  background: var(--line);
  transform: translateX(-50%);
  pointer-events: none;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo img {
  display: block;
  width: 252px;
  height: auto;
  object-fit: contain;
}

.footer-brand img {
  width: 230px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.logo-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--anthracite), var(--orange));
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: -0.06em;
  box-shadow: 0 16px 36px rgba(84, 25, 38, 0.25);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text strong {
  font-size: 18px;
  letter-spacing: -0.04em;
}

.logo-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
}

.nav>a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--plum);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.cart-button b {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff8a2a);
  box-shadow: 0 18px 44px rgba(255, 106, 0, 0.24);
}

.button-secondary {
  color: var(--white);
  background: var(--plum);
  box-shadow: 0 18px 44px rgba(84, 25, 38, 0.22);
}

.button-ghost {
  color: var(--plum);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--plum);
  border-radius: 10px;
}

.hero {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 48px;
  align-items: center;
  max-width: var(--container);
  min-height: calc(100vh - 128px);
  margin: 0 auto;
  padding: 58px 24px 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.workshop-content h2,
.register-copy h2,
.corporate-card h2 {
  margin: 18px 0;
  color: var(--plum-dark);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
}

.hero p,
.section-heading p,
.workshop-content p,
.register-copy p,
.corporate-card p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-stats {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.hero-stats div {
  min-width: 126px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.hero-stats strong {
  display: block;
  color: var(--plum);
  font-size: 28px;
  letter-spacing: -0.05em;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(84, 25, 38, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(84, 25, 38, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(242, 106, 27, 0.18), transparent 22rem),
    rgba(255, 255, 255, 0.42);
  background-size: 42px 42px, 42px 42px, auto, auto;
  border: 1px solid var(--line);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.printer-card {
  position: relative;
  width: min(78%, 410px);
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(84, 25, 38, 0.18);
}

.printer-top,
.printer-base {
  height: 42px;
  background: linear-gradient(135deg, var(--plum), #7a2436);
  border-radius: 18px;
}

.printer-body {
  position: relative;
  height: 260px;
  margin: 16px 24px;
  overflow: hidden;
  border: 14px solid var(--plum);
  border-top: 0;
  border-radius: 0 0 26px 26px;
}

.print-head {
  position: absolute;
  z-index: 3;
  top: 34px;
  left: 50%;
  width: 102px;
  height: 40px;
  background: linear-gradient(135deg, var(--orange), #ff9b4a);
  border-radius: 14px;
  transform: translateX(-50%);
  animation: printMove 6.4s ease-in-out infinite;
}

.print-object {
  position: absolute;
  z-index: 1;
  bottom: 6px;
  left: 50%;
  width: 132px;
  height: 132px;
  transform: translateX(-50%);
  animation: printObjectReveal 6.4s ease-in-out infinite;
  pointer-events: none;
}

.print-object span {
  position: absolute;
  inset: 0;
  display: block;
  filter: drop-shadow(0 12px 18px rgba(43, 47, 51, 0.12));
}

.print-object span:nth-child(1) {
  background: rgba(255, 106, 0, 0.76);
  clip-path: polygon(50% 0, 100% 25%, 50% 50%, 0 25%);
}

.print-object span:nth-child(2) {
  background: rgba(255, 106, 0, 0.92);
  clip-path: polygon(100% 25%, 50% 50%, 50% 100%, 100% 75%);
}

.print-object span:nth-child(3) {
  background: rgba(255, 106, 0, 0.56);
  clip-path: polygon(0 25%, 50% 50%, 50% 100%, 0 75%);
}

.floating-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(84, 25, 38, 0.16);
}

.floating-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.floating-card strong {
  color: var(--plum);
  font-size: 18px;
  letter-spacing: -0.04em;
}

.card-one {
  top: 54px;
  right: 42px;
}

.card-two {
  bottom: 76px;
  left: 38px;
}

.card-three {
  right: 58px;
  bottom: 40px;
}

.quick-links,
.section,
.footer {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 24px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 76px;
}

.quick-card,
.product-card,
.event-card,
.process-card,
.why-card,
.corporate-card,
.form {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quick-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.quick-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--plum);
  border-radius: 16px;
  font-weight: 900;
}

.quick-card h2,
.product-info h3,
.event-card h3,
.process-card h3,
.why-card h3 {
  margin: 18px 0 10px;
  color: var(--plum-dark);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.quick-card p,
.product-info p,
.event-card p,
.process-card p,
.why-card p,
.faq-item p,
.footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.quick-card a,
.event-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 900;
}

.section {
  padding-top: 42px;
  padding-bottom: 92px;
}

.section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h2,
.workshop-content h2,
.register-copy h2,
.corporate-card h2 {
  max-width: 820px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.category {
  min-height: 42px;
  padding: 0 16px;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.category.active {
  color: var(--white);
  background: var(--plum);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.product-card.hidden {
  display: none;
}

.product-image {
  height: 238px;
  background-size: cover;
  background-position: center;
}

.product-image-one {
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.95) 0 46px, transparent 47px),
    radial-gradient(circle at 50% 70%, rgba(242, 106, 27, 0.86) 0 82px, transparent 83px),
    linear-gradient(135deg, #ffe5d2, #fff8f1);
}

.product-image-two {
  background:
    linear-gradient(90deg, transparent 24%, rgba(84, 25, 38, 0.88) 24% 39%, transparent 39%),
    linear-gradient(0deg, rgba(242, 106, 27, 0.78) 0 34%, transparent 34%),
    linear-gradient(135deg, #f7f1ea, #ffffff);
}

.product-image-three {
  background:
    radial-gradient(circle at 50% 38%, rgba(84, 25, 38, 0.88) 0 48px, transparent 49px),
    radial-gradient(circle at 35% 64%, rgba(242, 106, 27, 0.9) 0 42px, transparent 43px),
    radial-gradient(circle at 65% 64%, rgba(242, 106, 27, 0.9) 0 42px, transparent 43px),
    linear-gradient(135deg, #fff6ed, #f1dfd8);
}

.product-image-four {
  background:
    radial-gradient(circle at 48% 46%, rgba(255, 255, 255, 0.94) 0 70px, transparent 71px),
    conic-gradient(from 120deg, var(--plum), var(--orange), #ffb16f, var(--plum));
}

.product-info {
  padding: 20px;
}

.product-info span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.product-footer strong {
  color: var(--plum);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.add-cart {
  min-height: 38px;
  padding: 0 14px;
  color: var(--white);
  background: var(--plum);
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.workshop-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
}

.workshop-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.workshop-list div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.workshop-list strong,
.workshop-list span {
  display: block;
}

.workshop-list strong {
  color: var(--plum);
  font-size: 17px;
}

.workshop-list span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.events {
  display: grid;
  gap: 16px;
}

.event-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.event-date {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.process-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card,
.why-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.process-card span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 15px;
  font-weight: 900;
}

.register-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: start;
}

.form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--plum);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(242, 106, 27, 0.52);
  box-shadow: 0 0 0 4px rgba(242, 106, 27, 0.12);
}

textarea {
  resize: vertical;
}

.form-button {
  width: fit-content;
}

.form-success {
  display: none;
  margin: 0;
  color: var(--plum);
  font-weight: 800;
}

.form-success.show {
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
}

.gallery-grid div {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.gallery-grid div:nth-child(1) {
  grid-row: span 2;
  background:
    radial-gradient(circle at 56% 34%, rgba(242, 106, 27, 0.6), transparent 8rem),
    linear-gradient(135deg, rgba(84, 25, 38, 0.92), rgba(84, 25, 38, 0.72));
}

.gallery-grid div:nth-child(2) {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.62) 0 26%, transparent 26%),
    linear-gradient(135deg, #ffe3d0, #ffffff);
}

.gallery-grid div:nth-child(3) {
  background:
    radial-gradient(circle at 50% 50%, rgba(84, 25, 38, 0.74), transparent 6rem),
    linear-gradient(135deg, #fff8f1, #f0ddd2);
}

.gallery-grid div:nth-child(4) {
  grid-column: span 2;
  background:
    linear-gradient(90deg, rgba(242, 106, 27, 0.82), transparent),
    linear-gradient(135deg, #541926, #7f2940);
}

.corporate-card {
  padding: clamp(30px, 6vw, 64px);
  overflow: hidden;
  background:
    radial-gradient(circle at right, rgba(255, 106, 0, 0.18), transparent 20rem),
    rgba(255, 255, 255, 0.72);
  border-radius: 38px;
}

.corporate-card p {
  margin-bottom: 28px;
}

.faq-list {
  display: grid;
  max-width: 850px;
  margin: 0 auto;
  gap: 12px;
}

.faq-item {
  width: 100%;
  padding: 22px;
  text-align: left;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.faq-item span {
  display: block;
  color: var(--plum);
  font-size: 17px;
  font-weight: 900;
}

.faq-item p {
  display: none;
  margin-top: 12px;
}

.faq-item.active p {
  display: block;
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  gap: 28px;
  padding-top: 58px;
  padding-bottom: 58px;
}

.footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  content: "";
  background: var(--line);
  transform: translateX(-50%);
  pointer-events: none;
}

.footer h3 {
  margin: 0 0 14px;
  color: var(--plum);
  font-size: 16px;
}

.footer a {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.footer p {
  max-width: 320px;
  margin-top: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes printMove {

  0% {
    box-shadow: 0 16px 34px rgba(255, 106, 0, 0.32);
    transform: translateX(-78%);
  }

  25% {
    box-shadow: 0 8px 18px rgba(255, 106, 0, 0.08);
  }

  50% {
    box-shadow: 0 16px 34px rgba(255, 106, 0, 0.32);
    transform: translateX(-22%);
  }

  75% {
    box-shadow: 0 8px 18px rgba(255, 106, 0, 0.08);
  }

  100% {
    box-shadow: 0 16px 34px rgba(255, 106, 0, 0.32);
    transform: translateX(-78%);
  }
}

@keyframes printObjectReveal {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(18px) scale(0);
  }

  20% {
    opacity: 0.18;
    transform: translateX(-50%) translateY(12px) scale(0.34);
  }

  45%,
  88% {
    opacity: 0.88;
    transform: translateX(-50%) translateY(0) scale(1);
  }

  89%,
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@media (min-width: 1441px) {
  :root {
    --container: 1320px;
  }
}

@media (max-width: 1040px) {
  .nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav.open {
    position: absolute;
    top: 86px;
    left: 24px;
    right: 24px;
    display: grid;
    gap: 10px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .hero,
  .workshop-section,
  .register-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 480px;
  }

  .product-grid,
  .process-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .topbar {
    display: grid;
    gap: 6px;
    text-align: center;
  }

  .header {
    padding: 14px 16px;
  }

  .header-actions .button,
  .cart-button span {
    display: none;
  }

  .hero,
  .section,
  .quick-links,
  .footer {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-stats,
  .hero-actions {
    display: grid;
  }

  .hero-stats div,
  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
    border-radius: 28px;
  }

  .printer-card {
    width: 86%;
    padding: 18px;
  }

  .printer-body {
    height: 214px;
    margin: 14px;
  }

  .floating-card {
    display: none;
  }

  .product-grid,
  .process-grid,
  .why-grid,
  .form-row,
  .footer {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-grid div,
  .gallery-grid div:nth-child(1),
  .gallery-grid div:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
}


@media (max-width: 720px) {
  .brand-logo img {
    width: 190px;
  }

  .footer-brand img {
    width: 210px;
  }
}


.product-grid {
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-footer {
  margin-top: auto;
  padding-top: 22px;
}

.button,
.add-cart,
.category,
.event-card a,
.quick-card a,
.auth-button,
.cart-button,
.select-trigger,
.select-menu button,
.modal-close,
.auth-tab {
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.button::after,
.add-cart::after,
.auth-button::after,
.cart-button::after,
.category::after,
.select-trigger::after,
.auth-tab::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.28) 42%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.button:hover::after,
.add-cart:hover::after,
.auth-button:hover::after,
.cart-button:hover::after,
.category:hover::after,
.select-trigger:hover::after,
.auth-tab:hover::after {
  transform: translateX(120%);
}

.button:hover,
.add-cart:hover,
.category:hover,
.auth-button:hover,
.cart-button:hover,
.select-trigger:hover,
.auth-tab:hover {
  transform: translateY(-3px);
}

.add-cart:hover,
.auth-button:hover,
.cart-button:hover,
.select-trigger:hover {
  box-shadow: 0 16px 36px rgba(43, 47, 51, 0.14);
}

.auth-button,
.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.auth-button {
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  color: var(--anthracite);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.auth-button svg,
.cart-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-button {
  min-width: 50px;
}

.custom-select {
  position: relative;
  display: grid;
  gap: 7px;
}

.select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  width: 100%;
  padding: 0 15px 0 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
}

.select-trigger svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}

.custom-select.open .select-trigger {
  border-color: rgba(255, 106, 0, 0.52);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

.custom-select.open .select-trigger svg {
  transform: rotate(180deg);
}

.select-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 8;
  display: grid;
  width: 100%;
  padding: 8px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(43, 47, 51, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.custom-select.open .select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.select-menu button {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 12px;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.select-menu button:hover,
.select-menu button.selected {
  color: var(--orange);
  background: rgba(255, 106, 0, 0.09);
}

.field-error {
  display: none;
  color: #c0392b;
  font-size: 12px;
  font-weight: 700;
}

.custom-select.invalid .field-error {
  display: block;
}

.faq-item {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(43, 47, 51, 0.1);
}

.faq-item p {
  display: block;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.34s ease, opacity 0.28s ease, margin-top 0.28s ease;
}

.faq-item.active p {
  max-height: 140px;
  margin-top: 12px;
  opacity: 1;
}

.footer h3 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer a {
  font-weight: 500;
}

.footer p {
  font-weight: 400;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(31, 36, 38, 0.54);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.auth-modal {
  position: relative;
  width: min(100%, 480px);
  max-height: min(92vh, 720px);
  overflow: auto;
  padding: 26px;
  background: radial-gradient(circle at top right, rgba(255, 106, 0, 0.12), transparent 16rem), var(--light);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 30px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.24s ease;
}

.modal-backdrop.open .auth-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--anthracite);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 0 48px 24px 0;
  padding: 6px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.auth-tab {
  min-height: 40px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.auth-tab.active {
  color: var(--white);
  background: var(--anthracite);
}

.auth-panel {
  display: none;
}

.auth-panel.active {
  display: block;
  animation: authPanelIn 0.24s ease both;
}

.auth-panel h2 {
  margin: 18px 0 10px;
  color: var(--anthracite-dark);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.auth-panel p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form .button {
  width: 100%;
  margin-top: 4px;
}

body.modal-open {
  overflow: hidden;
}

@keyframes authPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .auth-button {
    width: 44px;
    padding: 0;
  }

  .auth-button span {
    display: none;
  }

  .cart-button {
    padding: 0 12px;
  }

  .cart-button svg,
  .auth-button svg {
    width: 21px;
    height: 21px;
  }

  .auth-modal {
    padding: 22px;
    border-radius: 24px;
  }

  .auth-tabs {
    margin-right: 42px;
  }
}


.nav-dropdown {
  position: relative;
}

.nav-cube {
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 16px;
  height: 16px;
  opacity: 0;
  transform: translateX(-50%) translateY(8px) scale(0.82);
  pointer-events: none;
}

.nav-cube span {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  filter: drop-shadow(0 0 0 var(--orange));
}

.nav-cube span:nth-child(1) {
  background: rgba(255, 106, 0, 0.22);
  clip-path: polygon(50% 0, 100% 25%, 50% 50%, 0 25%);
}

.nav-cube span:nth-child(2) {
  background: rgba(255, 106, 0, 0.34);
  clip-path: polygon(100% 25%, 50% 50%, 50% 100%, 100% 75%);
}

.nav-cube span:nth-child(3) {
  background: rgba(255, 106, 0, 0.16);
  clip-path: polygon(0 25%, 50% 50%, 50% 100%, 0 75%);
}

.nav-cube span:nth-child(n+4) {
  display: none;
}

.nav>a:hover .nav-cube,
.nav-dropdown:hover .nav-cube,
.nav-dropdown.open .nav-cube {
  opacity: 1;
  animation: navCubeBuild 0.58s cubic-bezier(0.2, 0.84, 0.22, 1) both;
}

.nav>a:hover .nav-cube span,
.nav-dropdown:hover .nav-cube span,
.nav-dropdown.open .nav-cube span {
  animation: navCubeFace 0.36s ease both;
}

.nav>a:hover .nav-cube span:nth-child(2),
.nav-dropdown:hover .nav-cube span:nth-child(2),
.nav-dropdown.open .nav-cube span:nth-child(2) {
  animation-delay: 0.05s;
}

.nav>a:hover .nav-cube span:nth-child(3),
.nav-dropdown:hover .nav-cube span:nth-child(3),
.nav-dropdown.open .nav-cube span:nth-child(3) {
  animation-delay: 0.1s;
}

@keyframes navCubeFace {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes navCubeBuild {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(8px) scale(0.72) rotate(-10deg);
  }

  58% {
    opacity: 1;
    transform: translateX(-50%) translateY(-1px) scale(1.08) rotate(3deg);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1) rotate(0);
  }
}

.nav-dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger {
  color: var(--plum);
}

.nav-dropdown-trigger svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-trigger svg,
.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 25;
  display: grid;
  min-width: 230px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(43, 47, 51, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px) scale(0.98);
  transform-origin: top;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  border-radius: 12px;
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-dropdown-menu a:hover {
  color: var(--orange);
  background: rgba(255, 106, 0, 0.09);
  transform: translateX(3px);
}

.icon-button {
  width: 46px;
  min-width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border-radius: 50%;
}

.has-tooltip {
  overflow: visible;
}

.has-tooltip::before {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 40;
  width: max-content;
  max-width: 180px;
  padding: 8px 10px;
  color: var(--white);
  background: var(--anthracite);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(43, 47, 51, 0.18);
  content: attr(data-tooltip);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.has-tooltip:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cart-button b {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  font-size: 11px;
}

.select-trigger {
  overflow: hidden;
}

.select-trigger::after {
  display: none;
}

.select-trigger:hover {
  transform: none;
  box-shadow: none;
}

.modal-close {
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

.modal-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

@media (max-width: 1040px) {
  .nav.open .nav-cube {
    display: none;
  }

  .nav.open .nav-dropdown {
    width: 100%;
  }

  .nav.open .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    min-height: 38px;
    color: var(--muted);
  }

  .nav.open .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding: 0 8px;
    transform: none;
    transition: max-height 0.25s ease, opacity 0.2s ease, visibility 0.2s ease, padding 0.2s ease;
  }

  .nav.open .nav-dropdown.open .nav-dropdown-menu {
    max-height: 240px;
    padding: 8px;
    opacity: 1;
    visibility: visible;
  }

  .nav.open .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
  }
}

@media (max-width: 720px) {
  .auth-button {
    display: inline-flex;
  }

  .icon-button {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .has-tooltip::before {
    display: none;
  }
}


.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 84;
  background: rgba(31, 36, 38, 0.48);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.cart-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 85;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 430px);
  height: 100dvh;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.1), transparent 15rem),
    var(--light);
  border-left: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: -28px 0 80px rgba(31, 36, 38, 0.18);
  transform: translateX(104%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 26px 20px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-header h2 {
  margin: 14px 0 0;
  color: var(--anthracite-dark);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.cart-drawer-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--anthracite);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-drawer-close:hover {
  transform: rotate(90deg);
  box-shadow: 0 14px 34px rgba(43, 47, 51, 0.12);
}

.cart-drawer-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.cart-drawer-body {
  min-height: 0;
  overflow: auto;
  padding: 20px 20px 24px;
}

.cart-empty {
  display: grid;
  min-height: 100%;
  place-items: center;
  align-content: center;
  padding: 30px 10px;
  text-align: center;
}

.cart-empty.hidden {
  display: none;
}

.cart-empty-icon {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  color: var(--orange);
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.18);
  border-radius: 28px;
}

.cart-empty-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-empty h3 {
  margin: 18px 0 8px;
  color: var(--anthracite-dark);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.cart-empty p {
  max-width: 280px;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 20px;
  animation: cartItemIn 0.22s ease both;
}

.cart-item-thumb {
  width: 76px;
  height: 86px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.cart-item-info {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.cart-item-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
}

.cart-item-title {
  min-width: 0;
}

.cart-item-title span {
  display: block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
}

.cart-item-title h3 {
  margin: 4px 0 0;
  color: var(--anthracite-dark);
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cart-remove {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--muted);
  background: rgba(43, 47, 51, 0.05);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.cart-remove:hover {
  color: var(--orange);
  background: rgba(255, 106, 0, 0.1);
  transform: scale(1.05);
}

.cart-remove svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  background: rgba(43, 47, 51, 0.05);
  border-radius: 999px;
}

.quantity-control button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--anthracite);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
  cursor: pointer;
}

.quantity-control span {
  min-width: 22px;
  text-align: center;
  color: var(--anthracite);
  font-size: 13px;
  font-weight: 900;
}

.cart-item-price {
  color: var(--anthracite-dark);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.cart-drawer-footer {
  padding: 18px 20px 22px;
  background: rgba(255, 255, 255, 0.82);
  border-top: 1px solid var(--line);
  box-shadow: 0 -18px 40px rgba(43, 47, 51, 0.06);
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 700;
}

.cart-summary-row strong {
  color: var(--anthracite-dark);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.checkout-button {
  width: 100%;
}

.cart-drawer-footer small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

body.cart-open {
  overflow: hidden;
}

@keyframes cartItemIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 520px) {
  .cart-drawer {
    width: 100%;
  }

  .cart-drawer-header {
    padding: 24px 18px 18px;
  }

  .cart-drawer-body {
    padding: 18px 14px;
  }

  .cart-drawer-footer {
    padding: 16px 14px 18px;
  }
}


body {
  font-weight: 400;
  letter-spacing: -0.01em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

input::placeholder,
textarea::placeholder {
  color: rgba(104, 112, 116, 0.68);
  font-weight: 400;
  letter-spacing: -0.01em;
}

input,
select,
textarea,
.select-trigger {
  font-weight: 400;
}

.select-trigger span {
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}

label {
  color: rgba(43, 47, 51, 0.82);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.nav,
.nav-dropdown-trigger {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-dropdown-menu a {
  font-weight: 500;
}

.logo-text strong {
  font-weight: 750;
}

.logo-text small {
  font-weight: 500;
}

.eyebrow {
  font-weight: 650;
  letter-spacing: -0.005em;
}

.hero h1,
.section-heading h2,
.workshop-content h2,
.register-copy h2,
.corporate-card h2,
.auth-panel h2,
.cart-drawer-header h2 {
  font-weight: 750;
  letter-spacing: -0.065em;
}

.hero p,
.section-heading p,
.workshop-content p,
.register-copy p,
.corporate-card p,
.quick-card p,
.product-info p,
.event-card p,
.process-card p,
.why-card p,
.faq-item p,
.footer p,
.cart-empty p,
.auth-panel p {
  font-weight: 400;
  letter-spacing: -0.01em;
}

.button,
.add-cart,
.category,
.auth-button,
.cart-button,
.auth-tab,
.checkout-button {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.quick-card h2,
.product-info h3,
.event-card h3,
.process-card h3,
.why-card h3,
.cart-empty h3,
.cart-item-title h3 {
  font-weight: 700;
  letter-spacing: -0.035em;
}

.product-info span,
.event-date,
.cart-item-title span {
  font-weight: 700;
  letter-spacing: 0.005em;
}

.product-footer strong,
.cart-item-price,
.cart-summary-row strong,
.hero-stats strong {
  font-weight: 750;
}

.quick-icon,
.process-card span {
  font-weight: 750;
}

.hero-stats span,
.workshop-list span,
.footer a,
.cart-summary-row,
.select-menu button {
  font-weight: 500;
  letter-spacing: -0.01em;
}

.workshop-list strong,
.footer h3,
.quantity-control span {
  font-weight: 650;
  letter-spacing: -0.01em;
}

.faq-item span {
  font-weight: 650;
  letter-spacing: -0.02em;
}

.form-success,
.field-error,
.cart-drawer-footer small {
  font-weight: 400;
}

.auth-form .button,
.form-button {
  font-weight: 700;
}

@media (max-width: 720px) {
  .hero h1 {
    letter-spacing: -0.055em;
  }
}
