:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --surface-soft: #f1eee4;
  --text: #1f1f1b;
  --muted: #666055;
  --brand: #006d5b;
  --brand-strong: #005445;
  --accent: #b14f2f;
  --border: #d8d1bf;
  --danger: #8d2c21;
  --shadow: 0 14px 28px rgba(22, 16, 7, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 20%, #f2ebe0, transparent 38%),
    radial-gradient(circle at 85% -10%, #dfefe8, transparent 30%),
    var(--bg);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  width: 100%;
  flex: 1 0 auto;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  margin: 0 0 0.6rem;
  line-height: 1.15;
}

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

p {
  margin: 0 0 0.8rem;
}

.container {
  width: min(1480px, 96vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  background: rgba(247, 246, 242, 0.93);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
}

.brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--brand), #00a888);
  color: #fff;
  font-weight: 700;
}

.brand-logo {
  width: auto;
  height: auto;
  max-height: 2.6rem;
  max-width: 9rem;
  object-fit: contain;
  object-position: left center;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: #fff;
  display: block;
}

.main-nav {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0;
  scrollbar-width: thin;
}

.main-nav::-webkit-scrollbar {
  height: 0.35rem;
}

.main-nav a {
  color: var(--muted);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.main-nav .nav-static-label,
.main-nav .nav-dropdown-label {
  color: var(--muted);
  white-space: nowrap;
}

.nav-divider {
  width: 1px;
  height: 1.15rem;
  background: #d8d1bf;
  margin-inline: 0.15rem;
  flex: 0 0 auto;
}

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

.nav-dropdown {
  position: relative;
  padding: 0.4rem 0 0.9rem;
  margin: -0.4rem 0 -0.9rem;
}

.nav-dropdown-trigger::after {
  transition: transform 0.18s ease;
}

.nav-dropdown.is-open .nav-dropdown-trigger::after {
  transform: rotate(180deg);
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.9rem;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-dropdown-trigger::after {
  content: "▾";
  font-size: 0.65rem;
  color: #7f786c;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.22rem);
  left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
  padding: 0.5rem;
  display: grid;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 25;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: block;
  border-radius: 0.5rem;
  padding: 0.42rem 0.5rem;
  color: #3f3b34;
}

.nav-dropdown-group-label {
  display: block;
  border-radius: 0.5rem;
  padding: 0.42rem 0.5rem;
  color: #6b665d;
  font-size: 0.88rem;
  font-weight: 700;
  background: #f8f4ea;
}

.nav-dropdown-menu a:hover {
  background: #f3efe4;
  color: #1f1f1b;
}

.header-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex: 0 0 auto;
}

.header-user-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.1rem;
  max-width: 13.5rem;
  padding: 0.28rem 0.58rem;
  border: 1px solid var(--border);
  border-radius: 0.72rem;
  background: #fff;
  line-height: 1.15;
}

.header-user-pill-desktop {
  flex: 0 1 auto;
  max-width: 10.5rem;
  padding: 0.4rem 0.6rem;
}

.header-user-pill-desktop .header-user-label {
  display: none;
}

.header-user-pill-desktop strong {
  font-size: 0.86rem;
}

.header-user-pill-mobile {
  display: none;
}

.header-user-pill strong {
  max-width: 100%;
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-user-label {
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.icon-btn.header-menu-toggle {
  display: none;
}

.header-search-row {
  border-top: 1px solid rgba(216, 209, 191, 0.75);
  background: rgba(247, 246, 242, 0.96);
}

.header-search-form {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  padding: 0.65rem 0;
}

.header-search-input {
  margin-top: 0;
  flex: 1 1 auto;
  min-width: 0;
  border-radius: 0.7rem;
}

.header-search-btn {
  white-space: nowrap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon-btn {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #fff;
  color: #3f3a31;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.14s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  border-color: #b5ab96;
  box-shadow: 0 7px 18px rgba(33, 31, 23, 0.14);
}

.icon-btn svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-btn-ghost {
  cursor: pointer;
}

.icon-badge {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  min-width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: #c14828;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.2rem;
  border: 2px solid #fff;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #ece8dc;
  color: #4a433a;
  font-size: 0.84rem;
}

.chip-success {
  background: #d7f2e8;
  color: #104f3e;
}

.chip-neutral {
  background: #ece8dc;
  color: #585247;
}

.section {
  padding: 2.4rem 0;
}

.section-top {
  margin-top: 2rem;
}

.hero {
  padding: 2.2rem 0 1.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.hero h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-card {
  background: linear-gradient(160deg, #fefdf9, #e7eee4);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.hero-card ol {
  margin: 0;
  padding-left: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.home-page {
  overflow-x: clip;
}

.home-hero {
  position: relative;
  isolation: isolate;
}

.home-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 109, 91, 0.2), rgba(0, 109, 91, 0));
  animation: driftBlob 9s ease-in-out infinite;
  z-index: -1;
}

.home-hero::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -100px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(177, 79, 47, 0.18), rgba(177, 79, 47, 0));
  animation: driftBlob 11s ease-in-out infinite reverse;
  z-index: -1;
}

.home-hero-grid {
  align-items: center;
  min-height: 560px;
}

.hero-copy h1 {
  max-width: 16ch;
}

.hero-copy p {
  max-width: 60ch;
}

.btn-attention {
  position: relative;
  overflow: hidden;
}

.btn-attention::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, 0.55);
  opacity: 0;
  animation: btnPulse 1.9s ease-out infinite;
}

.home-trust-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.trust-pill {
  border: 1px solid #c8d7d2;
  background: #edf5f2;
  color: #24564b;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-showcase {
  position: relative;
  transition: transform 0.25s ease;
  will-change: transform;
}

.showcase-glow {
  position: absolute;
  inset: 14% 8% 8% 8%;
  border-radius: 1.3rem;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.85), rgba(0, 109, 91, 0.12));
  filter: blur(6px);
  animation: glowPulse 3.6s ease-in-out infinite;
}

.showcase-frame {
  position: relative;
  border-radius: 1.3rem;
  border: 1px solid var(--border);
  box-shadow: 0 22px 38px rgba(19, 27, 21, 0.2);
  background: linear-gradient(160deg, #fff, #f3f7f4);
  padding: 0.7rem;
}

.showcase-frame img {
  width: 100%;
  border-radius: 1rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.showcase-frame img.is-switching {
  opacity: 0.45;
  transform: scale(1.02);
}

.floating-tag {
  position: absolute;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.floating-tag-a {
  top: -12px;
  left: -16px;
  color: #0f5545;
  animation: floatTag 3.6s ease-in-out infinite;
}

.floating-tag-b {
  bottom: -10px;
  right: -18px;
  color: #60371a;
  animation: floatTag 3.9s ease-in-out infinite 0.35s;
}

.home-strip {
  padding-top: 0.8rem;
  padding-bottom: 0.4rem;
}

.home-strip-marquee {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fbfaf6;
}

.home-strip-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0.7rem 0.8rem;
  animation: marqueeMove 20s linear infinite;
}

.home-strip-track span {
  color: #3e4d44;
  font-weight: 700;
  font-size: 0.86rem;
  white-space: nowrap;
}

.home-strip-track span::before {
  content: "•";
  margin-right: 0.5rem;
  color: #2f7865;
}

.home-page .category-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.category-card-lift:hover {
  transform: translateY(-5px);
  border-color: #b7d8cf;
  box-shadow: 0 18px 30px rgba(15, 53, 44, 0.16);
}

.home-page .product-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-page .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(16, 40, 34, 0.17);
}

.home-page .product-card img {
  transition: transform 0.35s ease;
}

.home-page .product-card:hover img {
  transform: scale(1.03);
}

.home-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid #b9d9cf;
  background: linear-gradient(140deg, #eff8f4, #e6f0ea);
  padding: 1.2rem 1.3rem;
}

.home-cta-banner h2 {
  margin-bottom: 0;
  max-width: 26ch;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@keyframes driftBlob {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(16px, -10px, 0) scale(1.05);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes glowPulse {
  0% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.95;
  }

  100% {
    opacity: 0.5;
  }
}

@keyframes floatTag {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes btnPulse {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  25% {
    opacity: 0.35;
  }

  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-attention::after,
  .home-strip-track,
  .floating-tag-a,
  .floating-tag-b,
  .showcase-glow,
  .home-hero::before,
  .home-hero::after {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.section-head.split {
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.category-card {
  min-height: 200px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.product-card.product-card-clickable {
  padding: 0;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0.8rem;
}

.product-card.compact img {
  aspect-ratio: 3 / 2;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
}

.product-actions.product-actions-end {
  padding: 0 1rem 1rem;
  justify-content: flex-end;
}

.product-card-main-link {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: inherit;
  padding: 1rem;
  min-height: 100%;
}

.product-card-main-link h3 {
  transition: color 0.2s ease;
}

.product-card-main-link:hover h3 {
  color: #0a5a4a;
}

.product-card-main-link img {
  transition: transform 0.3s ease;
}

.product-card-main-link:hover img {
  transform: scale(1.03);
}

.price {
  font-weight: 700;
  color: var(--brand-strong);
}

.price.large {
  font-size: 1.35rem;
}

.muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.link {
  color: var(--brand-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.text-danger {
  color: var(--danger);
}

.text-success {
  color: var(--brand-strong);
}

.btn {
  border: none;
  border-radius: 0.7rem;
  padding: 0.62rem 1rem;
  cursor: pointer;
  background: linear-gradient(160deg, var(--brand), #00836d);
  color: white;
  font-weight: 700;
  transition: transform 0.14s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 18px rgba(0, 109, 91, 0.25);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-danger {
  background: linear-gradient(150deg, var(--danger), #be3f33);
}

.filters {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.filters.filters-5 {
  grid-template-columns: 2fr repeat(4, minmax(0, 1fr)) auto;
}

#catalog-filter-form input,
#catalog-filter-form select,
#catalog-filter-form button {
  margin-top: 0;
}

#catalog-filter-form-mobile input,
#catalog-filter-form-mobile select,
#catalog-filter-form-mobile button {
  margin-top: 0;
}

.catalog-mobile-filter-trigger {
  display: none;
  margin-bottom: 1rem;
}

.catalog-mobile-filter-trigger .btn {
  width: 100%;
}

.catalog-filter-modal {
  width: min(560px, 94vw);
}

input,
select,
textarea {
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  padding: 0.58rem 0.62rem;
  font: inherit;
  background: #fff;
}

label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #3b372f;
}

.empty-state {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px dashed var(--border);
  border-radius: 0.9rem;
  background: #fff;
}

.flash {
  margin-top: 1rem;
  margin-bottom: -0.5rem;
  padding: 0.75rem 0.95rem;
  border-radius: 0.8rem;
  font-weight: 600;
}

.flash-success {
  background: #dff4ea;
  color: #184d3e;
  border: 1px solid #b8e7d3;
}

.flash-error {
  background: #fde9e6;
  color: #6f241c;
  border: 1px solid #f4c0b8;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.8rem;
}

.cookie-card {
  width: min(860px, 96vw);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 18px 35px rgba(18, 20, 15, 0.22);
  padding: 0.9rem;
  display: grid;
  gap: 0.8rem;
}

.cookie-card p {
  margin: 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-link {
  color: #235c4f;
  text-decoration: underline;
}

.site-footer {
  margin-top: 2.2rem;
  background: #1e2a24;
  color: #edf2ef;
  padding: 2rem 0 1.1rem;
}

.site-footer .muted {
  color: #c3d0ca;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.footer-col h4 {
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b4c6bf;
  margin-bottom: 0.6rem;
}

.footer-col p {
  color: #d6e2dd;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-list li {
  color: #dce8e3;
  font-size: 0.93rem;
}

.footer-bottom {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  width: 100%;
  text-align: left;
  color: #cfd8d3;
}

.footer-link {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.65);
}

.footer-link:hover {
  text-decoration-color: #fff;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 0.6rem;
}

.legal-page h2 {
  margin-top: 1rem;
}

.pre-line {
  white-space: pre-line;
}

.stack-cards {
  display: grid;
  gap: 1rem;
}

.service-card h2,
.project-card h2 {
  margin-bottom: 0.4rem;
}

.project-card {
  display: grid;
  gap: 0.8rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.project-card img {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  max-height: 280px;
  object-fit: cover;
}

.project-card-link {
  display: block;
  color: inherit;
}

.project-card-link:hover .project-card {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(17, 42, 36, 0.18);
}

.project-card.compact img {
  max-height: 220px;
}

.review-card {
  display: grid;
  gap: 0.4rem;
}

.review-stars {
  color: #b56a2b;
  letter-spacing: 0.08em;
  font-size: 1rem;
  margin: 0;
}

.rating-stars-input {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.2rem;
  margin-top: 0.3rem;
}

.rating-star-control {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rating-stars-input label {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1;
  color: #cbbfa8;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}

.rating-stars-input label:hover,
.rating-stars-input label:hover ~ label,
.rating-star-control:checked ~ label {
  color: #bf752f;
}

.rating-star-control:focus + label {
  outline: 2px solid #9e7c56;
  outline-offset: 2px;
  border-radius: 4px;
}

.rating-stars-input label:hover {
  transform: scale(1.04);
}

.product-detail {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.4rem;
}

.product-page .product-detail-animated {
  position: relative;
}

.product-page .product-detail-animated::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: -90px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(177, 79, 47, 0.14), transparent 70%);
  z-index: -1;
  animation: driftBlob 10s ease-in-out infinite;
}

.product-main-stage {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(15, 29, 22, 0.16);
  background: #f6f3eb;
}

.product-main-stage img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border: 0;
}

.project-main-stage img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 0;
}

[data-gallery-main] {
  transition: transform 0.35s ease, opacity 0.25s ease;
}

[data-gallery-main].is-switching {
  opacity: 0.45;
  transform: scale(1.03);
}

.product-media {
  display: grid;
  gap: 0.7rem;
}

.project-media {
  display: grid;
  gap: 0.7rem;
}

.media-thumb-strip {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: thin;
}

.media-thumb-btn {
  flex: 0 0 auto;
  width: 88px;
  height: 66px;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  padding: 0;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.2s ease;
}

.media-thumb-btn:hover {
  transform: translateY(-2px);
  border-color: #1f8872;
}

.media-thumb-btn.is-active {
  border-color: #1d7a66;
  box-shadow: 0 0 0 2px rgba(29, 122, 102, 0.22);
}

.media-thumb-btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.project-main-stage {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(15, 29, 22, 0.16);
  background: #f6f3eb;
}

.project-detail-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.4rem;
}

.project-detail-page .note.strong {
  margin-bottom: 1rem;
}

.meta-list {
  padding-left: 1.1rem;
  color: #3a3630;
}

.reserve-form {
  display: flex;
  gap: 0.8rem;
  align-items: end;
  margin-top: 1rem;
}

.reserve-form label {
  max-width: 9rem;
}

.product-quote-actions {
  margin-top: 1.15rem;
}

.product-quote-note {
  margin-top: 1rem;
}

.note {
  background: #f8efe2;
  border: 1px solid #ead8bf;
  border-radius: 0.7rem;
  padding: 0.65rem 0.8rem;
  color: #6d4a2a;
  font-size: 0.9rem;
}

.note.strong {
  font-weight: 700;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1rem;
  align-items: center;
}

.cart-item img {
  width: 140px;
  height: 95px;
  object-fit: cover;
  border-radius: 0.8rem;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.inline-form {
  display: flex;
  gap: 0.4rem;
}

.inline-form input {
  width: 4.4rem;
}

.summary-card {
  margin-top: 1rem;
  max-width: 420px;
  margin-left: auto;
  background: #f7f1e7;
  border: 1px solid #ead8bf;
  border-radius: 0.85rem;
  padding: 1rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.checkout-form,
.order-summary {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.home-fields {
  display: grid;
  gap: 0.65rem;
  padding: 0.8rem;
  border: 1px dashed var(--border);
  border-radius: 0.8rem;
}

.hidden {
  display: none;
}

.order-summary ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.order-summary li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.auth-wrapper {
  display: grid;
  place-items: center;
}

.auth-card {
  width: min(480px, 100%);
  display: grid;
  gap: 0.85rem;
}

.auth-switch {
  margin: 0.15rem 0 0;
  color: #3d372f;
}

.auth-switch-link {
  color: #0a6f5c;
  font-weight: 700;
  position: relative;
  text-decoration: none;
  transition: color 0.2s ease;
}

.auth-switch-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0.38);
  transform-origin: left center;
  opacity: 0.65;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.auth-switch-link:hover {
  color: #084e41;
}

.auth-switch-link:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.auth-switch-link:focus-visible {
  outline: 2px solid #8fbbae;
  outline-offset: 3px;
  border-radius: 2px;
}

.error-list {
  background: #fde9e6;
  border: 1px solid #f4c0b8;
  border-radius: 0.75rem;
  padding: 0.8rem;
}

.error-list ul {
  margin: 0;
  padding-left: 1.1rem;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

th,
td {
  text-align: left;
  padding: 0.72rem 0.75rem;
  border-bottom: 1px solid #eee8d9;
}

th {
  background: #f8f5ed;
  color: #4d473f;
}

tr:last-child td {
  border-bottom: none;
}

.status {
  padding: 0.24rem 0.58rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.status-reservado {
  background: #fff1cc;
  color: #684f02;
}

.status-preparacao {
  background: #d7ecff;
  color: #11426e;
}

.status-pronto_entrega {
  background: #dff4ea;
  color: #1e5b3f;
}

.status-entregue {
  background: #e8ecf2;
  color: #3e4550;
}

.status-cancelado {
  background: #fde9e6;
  color: #81291d;
}

.stats-grid .stat {
  border-top: 3px solid #007c67;
}

.stats-grid .stat p {
  font-size: 1.9rem;
  font-family: "Fraunces", serif;
  margin-bottom: 0;
}

.inline-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.stack-form {
  display: grid;
  gap: 0.7rem;
}

.stack-list {
  display: grid;
  gap: 0.8rem;
}

.compact-card {
  padding: 0.85rem;
}

.product-images-admin {
  margin-top: 1rem;
  padding: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  background: #fbf9f3;
}

.product-images-admin .hint {
  margin-bottom: 0.35rem;
}

.image-replace-details {
  border: 1px dashed var(--border);
  border-radius: 0.7rem;
  background: #fff;
  padding: 0.5rem 0.6rem;
}

.image-replace-details summary {
  cursor: pointer;
  font-weight: 600;
}

.admin-image-thumb {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0.7rem;
  border: 1px solid var(--border);
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  background: #fff;
  overflow: hidden;
}

.accordion-item summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.85rem;
  background: #f9f6ee;
}

.accordion-item form {
  padding: 0.85rem;
}

.admin-products-stack {
  gap: 1rem;
}

.admin-product-item {
  display: grid;
  gap: 0.8rem;
}

.admin-project-summary {
  display: grid;
  grid-template-columns: minmax(170px, 260px) minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.admin-project-thumb {
  width: 100%;
  max-width: 100%;
}

.admin-project-content {
  display: grid;
  gap: 0.6rem;
}

.admin-product-item-head {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: flex-start;
}

.admin-product-badges {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.chip-promo {
  background: #fce6cf;
  color: #7a3f16;
}

.admin-product-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
}

.admin-product-meta-grid p {
  margin: 0;
}

.admin-modal {
  width: min(980px, 94vw);
  max-height: 90vh;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(19, 26, 21, 0.25);
  padding: 1rem;
  background: #fff;
}

.admin-modal::backdrop {
  background: rgba(17, 20, 16, 0.58);
}

.admin-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}

.nav-builder-wrap {
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: #fbf8f1;
  padding: 0.75rem;
}

.nav-builder-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.nav-builder-sublist {
  margin-top: 0.45rem;
  margin-left: 1.5rem;
  padding-left: 0.65rem;
  border-left: 2px dashed #d8d1bf;
  min-height: 2.1rem;
  align-content: start;
}

.nav-builder-sublist[data-empty="1"] {
  background: rgba(0, 109, 91, 0.03);
  border-radius: 0.65rem;
  padding: 0.45rem 0.5rem 0.45rem 0.8rem;
}

.nav-builder-sublist[data-empty="1"]::before {
  content: "Arraste um subitem para aqui";
  color: #7a756b;
  font-size: 0.82rem;
  font-weight: 600;
}

.nav-builder-list.is-drop-target {
  background: rgba(0, 109, 91, 0.06);
  border-radius: 0.65rem;
}

.nav-builder-item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.55rem;
  background: #fff;
}

.nav-builder-item.is-dragging {
  opacity: 0.55;
  border-style: dashed;
}

.nav-builder-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
}

.nav-drag-handle {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #8b8478;
  cursor: grab;
  user-select: none;
}

.nav-builder-title {
  margin: 0;
  font-weight: 700;
}

.nav-builder-main .muted {
  margin: 0.1rem 0 0;
}

.nav-builder-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.nav-builder-actions form {
  margin: 0;
}

.nav-item-btn {
  padding: 0.44rem 0.65rem;
}

.nav-depth-warning {
  margin-top: 0.55rem;
}

.nav-item-modal {
  width: min(760px, 94vw);
}

.quote-line-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.quote-product-modal {
  width: min(1100px, 95vw);
}

.quote-product-list {
  display: grid;
  gap: 0.65rem;
  max-height: 62vh;
  overflow: auto;
  padding-right: 0.15rem;
}

.quote-product-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  background: #fff;
  padding: 0.65rem;
  align-items: start;
}

.quote-product-item.hidden {
  display: none !important;
}

.quote-product-item.is-expanded {
  border-color: #badfd2;
  background: #f8fcfa;
}

.quote-product-item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 0.65rem;
  border: 1px solid var(--border);
}

.quote-product-content {
  display: grid;
  gap: 0.22rem;
}

.quote-product-content h4 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.quote-product-content p {
  margin: 0;
}

.quote-product-actions {
  display: flex;
  gap: 0.45rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.quote-product-extra {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.3rem;
  margin-top: 0.2rem;
  padding-top: 0.55rem;
  border-top: 1px dashed #d9d1c0;
}

.quote-product-extra p {
  margin: 0;
}

.promo-fields {
  border: 1px dashed var(--border);
  border-radius: 0.8rem;
  background: #faf8f1;
  padding: 0.7rem;
}

.promo-fields.is-disabled {
  opacity: 0.62;
}

.product-images-admin.simple {
  background: #f8f5ee;
}

.product-image-row {
  display: grid;
  gap: 0.7rem;
}

.product-image-controls {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
}

.grid-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.full-width {
  grid-column: 1 / -1;
}

.admin-main {
  padding-top: 1.3rem;
}

.admin-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.admin-sidebar {
  position: sticky;
  top: 5.9rem;
  background: #f8f5ed;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.admin-company-card {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.9rem;
}

.admin-company-card small {
  display: block;
  color: var(--muted);
}

.admin-company-logo {
  width: auto;
  height: auto;
  max-height: 2.8rem;
  max-width: 10rem;
  border-radius: 0.5rem;
  object-fit: contain;
  object-position: left center;
  border: 1px solid var(--border);
  background: #fff;
  display: block;
}

.admin-company-mark {
  width: 2.8rem;
  height: 2.8rem;
}

.admin-side-nav {
  display: grid;
  gap: 0.35rem;
}

.admin-side-link {
  border: 1px solid transparent;
  border-radius: 0.6rem;
  padding: 0.55rem 0.65rem;
  font-weight: 600;
  color: #4f493f;
}

.admin-side-link:hover {
  background: #ebe4d4;
}

.admin-side-link.is-active {
  background: #dfefe8;
  border-color: #b7ddcf;
  color: #0d4e40;
}

.admin-content {
  min-width: 0;
}

.settings-form {
  display: grid;
  gap: 1rem;
}

.settings-logo-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  align-items: start;
}

.settings-logo-preview {
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  background: #f7f4ec;
  min-height: 140px;
  display: grid;
  place-items: center;
  padding: 0.6rem;
}

.settings-logo-preview img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.settings-logo-fields {
  display: grid;
  gap: 0.7rem;
}

.demo-upload-box {
  position: relative;
  margin-top: 0.35rem;
}

.demo-lock-box {
  position: relative;
  margin-top: 0.35rem;
}

.demo-upload-box input[type="file"] {
  width: 100%;
  pointer-events: none;
  opacity: 0.45;
  filter: grayscale(0.2);
}

.demo-lock-box input,
.demo-lock-box textarea,
.demo-lock-box select {
  pointer-events: none;
  opacity: 0.45;
  filter: grayscale(0.2);
}

.demo-upload-lock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px dashed #b99f79;
  border-radius: 0.6rem;
  background: rgba(252, 246, 235, 0.92);
  color: #6f4721;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem 0.65rem;
}

.demo-upload-lock-icon {
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(111, 71, 33, 0.1);
  flex: 0 0 auto;
}

.demo-upload-lock-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.demo-upload-lock-text {
  line-height: 1.2;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.checkbox-row input {
  width: auto;
  margin: 0;
}

@media (max-width: 1000px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-grid,
  .product-detail,
  .project-detail-layout,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

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

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-side-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .settings-logo-block {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    max-width: 540px;
    margin-inline: auto;
  }

  .home-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-product-meta-grid {
    grid-template-columns: 1fr;
  }

  .product-image-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-project-summary {
    grid-template-columns: 1fr;
  }

  .nav-builder-row {
    grid-template-columns: auto 1fr;
  }

  .nav-builder-actions {
    grid-column: 1 / -1;
  }

  .quote-product-item {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .quote-product-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 1280px) {
  .main-nav {
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: thin;
  }

  .header-user-pill-desktop {
    display: none;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    column-gap: 0.65rem;
    row-gap: 0.55rem;
  }

  .brand {
    flex: 1 1 0;
    min-width: 0;
    gap: 0.5rem;
  }

  .brand > span {
    min-width: 0;
  }

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

  .brand small {
    display: none;
  }

  .brand-logo {
    max-width: 5.25rem;
    max-height: 2.2rem;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.65rem;
  }

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

  .header-user-pill-desktop {
    display: none;
  }

  .header-user-pill-mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 0.45rem;
    padding: 0.5rem 0.7rem;
    max-width: none;
  }

  .header-user-pill-mobile strong {
    font-size: 0.86rem;
  }

  .header-actions .icon-btn {
    width: 2.35rem;
    height: 2.35rem;
  }

  .icon-btn.header-menu-toggle {
    display: inline-flex;
  }

  .header-search-form {
    flex-direction: column;
    align-items: stretch;
  }

  .header-search-btn {
    width: 100%;
  }

  .main-nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: visible;
    padding: 0.45rem 0 0.25rem;
    border-top: 1px solid var(--border);
  }

  .site-header.is-mobile-menu-open .main-nav {
    display: flex;
    max-height: calc(100vh - 5.2rem);
    overflow-y: auto;
  }

  .main-nav > a,
  .main-nav > .nav-static-label {
    display: block;
    width: 100%;
    padding: 0.55rem 0;
  }

  .nav-divider {
    display: none;
  }

  .nav-dropdown {
    padding: 0;
    margin: 0;
    border-top: 1px solid #e8e1cf;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.55rem 0;
  }

  .nav-dropdown-menu {
    position: static;
    left: auto;
    right: auto;
    width: 100%;
    min-width: 0;
    max-height: none;
    overflow: visible;
    margin: 0 0 0.35rem;
    padding: 0.35rem 0 0.35rem 0.75rem;
    border: 0;
    border-left: 2px solid #dfd6c1;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    gap: 0.2rem;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu a,
  .nav-dropdown-group-label {
    padding: 0.38rem 0.45rem;
    background: transparent;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-form,
  .filters,
  .filters.filters-5 {
    grid-template-columns: 1fr;
  }

  .catalog-filters-desktop {
    display: none;
  }

  .catalog-mobile-filter-trigger {
    display: block;
  }

  .catalog-filter-modal {
    width: 96vw;
    padding: 0.85rem;
  }

  #catalog-filter-form {
    gap: 0.55rem;
  }

  .admin-side-nav {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .reserve-form {
    flex-direction: column;
    align-items: stretch;
  }

  .reserve-form label {
    max-width: none;
  }

  .home-trust-row {
    gap: 0.45rem;
  }

  .floating-tag-a,
  .floating-tag-b {
    position: static;
    display: inline-flex;
    margin-top: 0.5rem;
  }

  .hero-showcase {
    display: grid;
    gap: 0.45rem;
  }

  .cookie-card {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .admin-product-item-head {
    flex-direction: column;
  }

  .admin-product-badges {
    justify-content: flex-start;
  }

  .admin-modal {
    width: 96vw;
    padding: 0.85rem;
  }

  .quote-product-item {
    grid-template-columns: 1fr;
  }

  .quote-product-item img {
    height: auto;
    aspect-ratio: 16 / 10;
  }
}
