:root {
  --brand-orange: #ed8b00;
  --brand-blue: #001489;
  --brand-blue-soft: #17306f;
  --text-dark: #242424;
  --text-muted: #505050;
  --bg-light: #f5f5f5;
  --white: #ffffff;
  --focus-ring: #4f7cd8;
  --anchor-offset: 114px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  font-family: "Segoe UI", "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: absolute;
  left: 10px;
  top: -120px;
  z-index: 999;
  background: #0f172a;
  color: #ffffff;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 10px;
}

body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
p {
  text-wrap: pretty;
  overflow-wrap: break-word;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.header {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 16px rgba(20, 41, 143, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand-logo {
  display: inline-block;
  background: #001489;
  border-radius: 8px;
  padding: 8px 14px 7px;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(0, 20, 137, 0.22);
}

.brand-text strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  color: #ffffff;
  white-space: nowrap;
}

.brand-text small {
  display: block;
  margin-top: 5px;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.nav-menu {
  margin-left: auto;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 30px;
  font-weight: 600;
  line-height: 1.25;
}

.nav-link {
  display: inline-block;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: var(--brand-orange);
}

.nav-link.active {
  color: var(--brand-orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.theme-toggle {
  border: 1px solid rgba(15, 23, 42, 0.2);
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
  border-radius: 999px;
  min-height: 38px;
  padding: 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.theme-toggle:hover {
  border-color: rgba(0, 20, 137, 0.35);
  color: var(--brand-blue);
}

.nav-close {
  display: none;
}

.nav-menu-toggle {
  display: none;
}

.icon-btn.nav-close,
.icon-btn.nav-menu-toggle {
  display: none;
}

.icon-btn.nav-search-toggle {
  display: inline-flex;
}

.icon-btn {
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: #ffffff;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #111827;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.icon-btn:hover {
  background: rgba(0, 20, 137, 0.08);
  border-color: rgba(0, 20, 137, 0.35);
  color: #001489;
}

.icon-btn i {
  display: block;
  line-height: 1;
}

.search {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: rgba(10, 19, 67, 0.1);
  backdrop-filter: blur(24px);
  padding: 120px 24px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.search.active {
  opacity: 1;
  pointer-events: auto;
}

.search-form {
  max-width: 460px;
  margin: 0 auto;
  background: #f2f8ff;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(-14px);
  transition: transform 0.35s ease;
}

.search-form:focus-within {
  box-shadow: 0 0 0 3px rgba(0, 20, 137, 0.2);
}

.search.active .search-form {
  transform: translateY(0);
}

.search-input {
  border: 0;
  width: 100%;
  font-size: 1rem;
  background: transparent;
  outline: none;
}

.search-close {
  display: block;
  margin: 20px auto 0;
  width: max-content;
  font-size: 2rem;
}

.hero {
  min-height: 640px;
  background-image:
    linear-gradient(115deg, rgba(0, 20, 137, 0.9), rgba(0, 20, 137, 0.58), rgba(0, 20, 137, 0.35)),
    url("assets/images/bannerBackground.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  width: min(62%, 780px);
  color: #fafafa;
  padding: 136px 0 100px;
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.15;
  font-weight: 800;
}

.hero h1 strong {
  color: #ffb347;
  font-weight: 800;
}

.hero p {
  margin: 0 0 34px;
  font-size: 1.25rem;
  line-height: 1.35;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #ffd7a1;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(237, 139, 0, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.65);
  font-size: 2rem;
  animation: hero-bounce 1.7s infinite;
}

@keyframes hero-bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}

.section {
  margin: 44px auto;
}

#rentInstructions {
  scroll-margin-top: calc(var(--anchor-offset) + 12px);
}

.section-title {
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 500;
  line-height: 1.18;
}

.section-subtitle {
  margin: 0;
  color: #616161;
  font-size: 1.05rem;
}

.section-subtitle.center {
  text-align: center;
  margin-bottom: 20px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 22px;
}

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

.section-soft {
  background: linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
  padding: 64px 0;
}

.page-hero {
  background:
    linear-gradient(to right, rgba(0, 20, 137, 0.92), rgba(0, 20, 137, 0.55)),
    url("assets/images/bannerBackground.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 94px 0 72px;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.16;
}

.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
}

.page-wrap {
  width: min(1100px, 92vw);
  margin: 34px auto 60px;
}

.content-card {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(20, 41, 143, 0.06);
  padding: 26px;
}

.content-card + .content-card {
  margin-top: 22px;
}

.content-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-meta {
  display: grid;
  gap: 14px;
}

.contact-intro {
  display: grid;
  gap: 14px;
}

.contact-intro p {
  margin: 0;
  color: #475569;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #d7e0ee;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: #0f172a;
  background: #fff;
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: #8aa5e6;
  box-shadow: 0 0 0 3px rgba(0, 20, 137, 0.08);
}

.consent {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.95rem;
  color: #475569;
}

.consent-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.consent-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: #001489;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.consent-meta {
  margin: 0;
  font-size: 0.86rem;
  color: #566173;
}

.contact-status {
  margin: 0;
  font-size: 0.92rem;
}

.visually-hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-secondary {
  border: 1px solid #cdd8ea;
  color: #0f172a;
  background: #fff;
  border-radius: 10px;
  padding: 9px 18px;
  font-weight: 600;
}

.meta-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e7ebf0;
  padding: 16px;
}

.meta-item h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.meta-item p {
  margin: 0;
  color: #4b5563;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 22px;
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.product-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e6ebf0;
  box-shadow: 0 18px 34px rgba(20, 41, 143, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-image-wrap {
  height: 220px;
  background: linear-gradient(180deg, #f2f5fa 0%, #e9eef5 100%);
  padding: 14px;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.product-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  display: inline-block;
  color: var(--brand-orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-content h3 {
  margin: 0 0 8px;
  font-size: 1.28rem;
  line-height: 1.25;
  min-height: 2.5em;
}

.product-content p {
  margin: 0 0 14px;
  font-size: 0.96rem;
  color: #5f5f5f;
  min-height: 4.6em;
}

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

.product-footer small {
  display: block;
  color: #7a7a7a;
  font-size: 0.78rem;
}

.product-footer strong {
  font-size: 1.1rem;
}

.product-cart {
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-blue);
  color: #fff;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 16px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.steps.cards {
  gap: 20px;
  width: 100%;
}

.step-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(20, 41, 143, 0.05);
}

.step-card .step-number {
  margin: 0 auto 16px;
}

.step-card .step-label {
  margin: 0 0 8px;
}

.step-card p {
  margin: 0;
  color: #656565;
  font-size: 0.95rem;
}

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

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--brand-orange);
  color: var(--brand-orange);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.step-label {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
}

.benefits {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 64px;
}

.benefits.modern {
  gap: 22px;
  margin-top: 28px;
}

.benefit {
  text-align: center;
  width: min(320px, 100%);
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  padding: 24px 20px;
  box-shadow: 0 8px 22px rgba(20, 41, 143, 0.04);
}

.benefit img {
  width: 112px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 18px;
}

.benefit span {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.28;
}

.forestry-hero {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0), 15%, rgb(0, 0, 0)),
    url("assets/images/forestryWorkBackground.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: var(--white);
}

.forestry-inner {
  width: min(60%, 900px);
  margin: 0 auto;
  padding: 32px 0 36px;
}

.forestry-inner h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}

.forestry-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin: 34px 0;
}

.forestry-col-left {
  width: 50%;
}

.forestry-col-right {
  width: 33.333%;
}

.service-item + .service-item {
  margin-top: 30px;
}

.forestry-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
}

.forestry-hero-modern {
  min-height: 420px;
  background-image:
    linear-gradient(to right, rgba(0, 20, 137, 0.88), rgba(0, 20, 137, 0.62), rgba(0, 20, 137, 0.24)),
    url("assets/images/forestryWorkBackground.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.forestry-hero-content {
  color: #fff;
  padding: 40px 0;
}

.forestry-hero-content h1 {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.06;
}

.forestry-hero-content p {
  margin: 0;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.45;
}

.forestry-wrap {
  margin-top: -54px;
}

.forestry-panel {
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
  border: 1px solid #e6edf7;
  padding: clamp(1.1rem, 2vw, 2rem);
}

.forestry-panel h2 {
  color: #001489;
  margin-bottom: 22px;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.service-card {
  border: 1px solid #e4e9f2;
  border-radius: 14px;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
  padding: 18px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.service-card .service-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(0, 20, 137, 0.1);
  color: #001489;
  margin-bottom: 10px;
}

.service-item h3 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
}

.service-item p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.45;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.service-card p {
  margin: 0;
  color: #556274;
  line-height: 1.5;
  font-size: 0.96rem;
}

.forestry-cta {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}

.btn-primary {
  border: 0;
  background: var(--brand-orange);
  color: #f5f5f5;
  padding: 9px 20px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 10px;
}

.about {
  width: min(66%, 1100px);
  margin: 22px auto 40px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.about h1 {
  margin: 0;
  font-size: 3rem;
  color: #404040;
  line-height: 1.2;
}

.about h2 {
  margin: 0 0 18px;
  color: #404040;
  font-size: 1.5rem;
  line-height: 1.3;
}

.about h2 em {
  display: block;
  font-style: italic;
  font-weight: 500;
}

.about-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.about-text {
  flex: 2;
}

.about-text p {
  margin: 0 0 14px;
  color: #404040;
  line-height: 1.55;
}

.about-text .motto {
  text-align: center;
  font-weight: 600;
  font-size: 1.125rem;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 24px;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
  width: 100%;
}

.inline-link {
  font-weight: 700;
}

.contact {
  width: min(66%, 1100px);
  margin: 32px auto;
}

.contact-main {
  min-height: calc(100vh - 82px);
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(280px, 36%) 1fr;
  min-height: calc(100vh - 82px);
}

.contact-left {
  background: linear-gradient(180deg, #001489 0%, #031b9d 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.contact-left:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 18px 18px;
}

.contact-left-inner {
  position: relative;
  z-index: 1;
  padding: 50px 48px;
  max-width: 520px;
  margin: 0 auto;
}

.contact-left h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.1;
  color: #fff;
}

.contact-left p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 30ch;
}

.contact-info-list {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px;
}

.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--brand-orange);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.14rem;
}

.contact-info-item span {
  display: block;
  font-size: .84rem;
  color: rgba(255, 255, 255, 0.62);
}

.contact-info-item strong {
  display: block;
  margin-top: 2px;
  font-size: 1.24rem;
  line-height: 1.2;
}

.contact-info-item small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
}

.contact-right {
  background: #fff;
  padding: 56px 48px;
  display: flex;
  align-items: center;
}

.contact-form-wrap {
  width: min(740px, 100%);
  margin: 0 auto;
}

.contact-form-wrap h2 {
  margin: 0 0 8px;
  font-size: clamp(1.9rem, 2.6vw, 2.5rem);
}

.contact-form-wrap > p {
  margin: 0 0 22px;
  color: #64748b;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px;
}

.footer {
  background: #122853;
  color: #eef3ff;
  padding: 64px 0 24px;
  border-top: 2px solid rgba(237, 139, 0, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr 1fr;
  align-items: start;
  column-gap: 42px;
  row-gap: 24px;
  margin-bottom: 34px;
}

.footer-col h3 {
  margin: 0 0 18px;
  font-size: 1.6rem;
  line-height: 1.25;
  color: #f5bd6b;
}

.footer-brand-title {
  margin: 0;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
}

.footer-brand-sub {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-brand-text {
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.87);
  max-width: 32ch;
  line-height: 1.6;
}

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

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: .2s ease;
}

.footer-social a:hover {
  color: #fff;
  border-color: var(--brand-orange);
  background: rgba(237, 139, 0, 0.16);
}

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

.footer-list a,
.footer-list button {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.4;
  text-align: left;
  white-space: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: rgba(255, 255, 255, 0.95);
}

.footer-list a:hover,
.footer-list button:hover {
  color: #fff;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.94);
}

.footer-contact-item i {
  color: var(--brand-orange);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 18px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: .92rem;
}

.dialog {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: none;
  place-items: center;
  z-index: 300;
}

.dialog.active {
  display: grid;
}

.dialog-card {
  width: min(640px, 92vw);
  max-height: 80vh;
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.dialog-card h4 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  line-height: 1.25;
}

.dialog-card p {
  margin: 0 0 14px;
  line-height: 1.5;
}

.dialog-close {
  margin-top: 10px;
  align-self: flex-end;
  position: sticky;
  bottom: 0;
  z-index: 2;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 500;
  display: flex;
  justify-content: center;
}

.cookie-banner__content {
  width: min(860px, 100%);
  background: #ffffff;
  border: 1px solid #d6e0ee;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
  padding: 16px;
  display: grid;
  gap: 12px;
}

.cookie-banner__content h2 {
  margin: 0;
  font-size: 1.2rem;
  color: #0f172a;
}

.cookie-banner__content p {
  margin: 0;
  color: #334155;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-banner__actions .btn-secondary {
  min-height: 40px;
}

.legal-main {
  width: min(940px, 94vw);
  margin: 28px auto 64px;
}

.legal-card {
  background: #ffffff;
  border: 1px solid #dde5f1;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  padding: 24px;
}

.legal-card h1 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.legal-card h2 {
  margin: 22px 0 8px;
  font-size: 1.2rem;
}

.legal-card p,
.legal-card li {
  color: #334155;
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}

.consent-settings {
  margin-top: 20px;
  border-top: 1px solid #e2e8f0;
  padding-top: 16px;
  display: grid;
  gap: 10px;
}

.consent-settings__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #f8fbff;
  border: 1px solid #dbe4f2;
  border-radius: 10px;
  padding: 10px;
}

.consent-settings__meta {
  font-size: 0.88rem;
  color: #475569;
}

.shop-main {
  padding: 32px 0 72px;
}

.shop-head h1 {
  margin: 12px 0 8px;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  line-height: 1.1;
  color: #0f172a;
}

.shop-head p {
  margin: 0;
  color: #64748b;
}

.shop-search-form {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.shop-search-form input {
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid #d8e1ef;
  padding: 8px 12px;
  font: inherit;
  color: #0f172a;
  background: #fff;
}

.shop-search-form input::placeholder {
  color: #7b8798;
}

.shop-search-form input:focus {
  outline: none;
  border-color: #8aa5e6;
  box-shadow: 0 0 0 3px rgba(0, 20, 137, 0.08);
}

.shop-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 0.92rem;
}

.shop-breadcrumb a:hover {
  color: var(--brand-orange);
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  margin-top: 26px;
}

.shop-categories {
  background: #fff;
  border: 1px solid #dde5f1;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  align-self: start;
  position: sticky;
  top: 98px;
}

.shop-categories h2 {
  margin: 0 0 14px;
  color: #001489;
}

.shop-categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.shop-categories li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 8px;
  border-radius: 10px;
  color: #334155;
}

.category-btn {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
  width: 100%;
  padding: 0;
}

.category-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.category-meta small {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

.shop-categories li.active,
.shop-categories li:hover {
  background: #f4f8ff;
  color: #001489;
}

.shop-content {
  display: grid;
  gap: 20px;
}

.shop-strip,
.shop-products-wrap {
  background: #fff;
  border: 1px solid #dde5f1;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.shop-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.shop-strip-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.78rem;
  line-height: 1.15;
}

.shop-feedback {
  margin: 0 0 10px;
  font-size: 0.95rem;
  min-height: 1.2em;
}

.btn-filter {
  border: 0;
  background: var(--brand-orange);
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: 8px 16px;
  cursor: pointer;
}

.shop-mini-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 12px;
}

.shop-mini-grid article {
  background: #f7f9fc;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 10px;
  text-align: center;
}

.shop-mini-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 6px;
}

.shop-mini-grid span {
  font-size: 0.9rem;
  color: #334155;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 14px;
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.shop-product-card {
  background: #f8fbff;
  border: 1px solid #dfe7f3;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
}

.shop-product-image {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.shop-product-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.shop-product-card:hover .shop-product-image img {
  transform: scale(1.04);
}

.shop-product-card h3 {
  margin: 0;
  font-size: 1.26rem;
  line-height: 1.2;
  min-height: 2.4em;
}

.shop-product-card h3 a {
  color: #001489;
}

.shop-product-card p {
  margin: 0;
  color: #1f2937;
  font-size: 1.06rem;
  min-height: 2.6em;
  line-height: 1.28;
}

.shop-product-card dl {
  margin: 4px 0 0;
  display: grid;
  gap: 7px;
  margin-top: auto;
  min-height: 5.8em;
}

.shop-product-card dl div {
  display: grid;
  gap: 2px;
}

.shop-product-card dt {
  font-size: 0.86rem;
  color: #001489;
  font-weight: 700;
}

.shop-product-card dd {
  margin: 0;
  color: #334155;
}

.tool-empty {
  margin: 0;
  padding: 10px;
  color: #64748b;
}

.btn-price {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  min-width: 124px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--brand-orange);
  color: #fff;
  font-weight: 700;
  align-self: flex-start;
  white-space: nowrap;
}

.product-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.shop-back-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: #001489;
  font-weight: 600;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.product-gallery-card,
.product-summary-card {
  background: #fff;
  border: 1px solid #dde5f1;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.product-main-image {
  position: relative;
  background: #f4f7fc;
  border-radius: 16px;
  padding: 18px;
}

.product-main-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
}

.product-badges span {
  background: #001489;
  color: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  text-transform: uppercase;
}

.product-badges span.green {
  background: #16a34a;
}

.view360 {
  margin: -16px auto 0;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #d9e3f4;
  padding: 6px 12px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
}

.product-thumbs {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.product-thumbs button {
  border: 1px solid #d9e3f4;
  border-radius: 12px;
  background: #fff;
  width: 74px;
  height: 74px;
  padding: 4px;
  cursor: pointer;
}

.product-thumbs button.active {
  border-color: #001489;
}

.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.product-summary-card {
  position: sticky;
  top: 96px;
}

.product-summary-card h1 {
  margin: 0;
  color: #001489;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
}

.product-summary-card h1 span {
  display: block;
  margin-top: 8px;
  font-size: 1.75rem;
  color: #64748b;
  font-weight: 500;
}

.product-rating {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #64748b;
}

.stars {
  color: var(--brand-orange);
}

.availability {
  color: #15803d;
  font-weight: 600;
}

.availability.is-out {
  color: #dc2626;
}

.product-summary-card > p {
  color: #334155;
  margin: 14px 0 16px;
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 10px;
}

.product-spec-grid article {
  background: #f8fbff;
  border: 1px solid #dee6f1;
  border-radius: 12px;
  padding: 10px;
}

.product-spec-grid small {
  display: block;
  color: #64748b;
}

.product-spec-grid strong {
  color: #001489;
}

.rent-box {
  margin-top: 14px;
  background: #f8fbff;
  border: 1px solid #dee6f1;
  border-radius: 16px;
  padding: 14px;
}

.rent-box-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.rent-box-head small {
  color: #64748b;
}

.rent-box-head p {
  margin: 0;
}

.rent-box-head strong {
  color: #001489;
  font-size: 2rem;
  line-height: 1;
}

.rent-box-head span {
  font-size: 0.8rem;
  color: #15803d;
  background: #dcfce7;
  padding: 5px 8px;
  border-radius: 999px;
  font-weight: 700;
}

.rent-date-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}

.rent-date-grid div {
  background: #fff;
  border: 1px solid #d9e3f4;
  border-radius: 10px;
  padding: 10px;
}

.rent-action {
  margin-top: 14px;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  gap: 8px;
}

.btn-secondary {
  border: 1px solid #c9d5e8;
  background: #ffffff;
  color: #334155;
  border-radius: 10px;
  padding: 9px 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  min-height: 44px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rent-save {
  margin-top: 8px;
  width: 100%;
  gap: 8px;
}

.rent-form {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

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

.field-inline {
  display: grid;
  gap: 6px;
}

.field-inline span {
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
}

.field-inline input,
.field-inline textarea {
  width: 100%;
  border: 1px solid #d9e3f4;
  border-radius: 10px;
  padding: 9px 10px;
  font: inherit;
  color: #0f172a;
  background: #fff;
}

.field-inline input:focus,
.field-inline textarea:focus {
  outline: none;
  border-color: #8aa5e6;
  box-shadow: 0 0 0 3px rgba(0, 20, 137, 0.08);
}

.icon-btn:focus-visible,
.nav-link:focus-visible,
.category-btn:focus-visible,
.btn-primary:focus-visible,
.btn-filter:focus-visible,
.btn-price:focus-visible,
.product-cart:focus-visible,
.btn-secondary:focus-visible,
.consent-link:focus-visible,
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible,
.field-inline input:focus-visible,
.field-inline textarea:focus-visible,
.search-input:focus-visible,
.shop-search-form input:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

.field-inline-small {
  max-width: 130px;
}

.rent-availability,
.rent-feedback {
  margin: 0;
  align-self: end;
  font-size: 0.88rem;
}

.is-info {
  color: #475569;
}

.is-success {
  color: #15803d;
}

.is-error {
  color: #dc2626;
}

.rent-meta {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: #15803d;
  font-size: 0.85rem;
}

.product-tabs-wrap {
  margin-top: 26px;
}

.product-tabs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid #d8e0ed;
}

.product-tabs a {
  color: #64748b;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.product-tabs a.active {
  color: #001489;
  border-bottom-color: var(--brand-orange);
}

.product-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.product-data-grid h2 {
  margin: 0 0 12px;
  color: #001489;
}

.product-data-grid dl,
.product-data-grid ul {
  margin: 0;
  padding: 0;
}

.product-data-grid dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
}

.product-data-grid dd {
  margin: 0;
  font-weight: 600;
}

.product-data-grid ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.product-data-grid li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.product-data-grid li i {
  color: #16a34a;
  margin-top: 3px;
}

.related-wrap {
  margin-top: 28px;
}

.related-wrap .shop-strip-head a {
  color: var(--brand-orange);
  font-weight: 700;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 14px;
}

.related-grid article {
  background: #fff;
  border: 1px solid #dde5f1;
  border-radius: 14px;
  padding: 10px;
}

.related-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.related-grid h3 {
  margin: 8px 0 2px;
  color: #0f172a;
  font-size: 1rem;
}

.related-grid p {
  margin: 0;
  color: #001489;
  font-weight: 700;
}

.reservation-wrap {
  display: grid;
  gap: 22px;
}

.reservation-steps {
  background: #fff;
  border: 1px solid #dde5f1;
  border-radius: 16px;
  padding: 14px 18px;
}

.reservation-steps article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid #e4ebf5;
}

.reservation-steps article:last-child {
  border-bottom: 0;
}

.reservation-steps h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  color: #3f3f46;
}

.reservation-steps i {
  font-size: 2rem;
  color: #16a34a;
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 20px;
  align-items: start;
}

.reservation-delivery,
.reservation-summary {
  background: #fff;
  border: 1px solid #dde5f1;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.reservation-delivery h3,
.reservation-summary h3 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 1.8rem;
}

.delivery-option {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  cursor: pointer;
}

.delivery-option.active {
  border-color: var(--brand-orange);
  background: #fff8ee;
}

.delivery-option input {
  accent-color: var(--brand-orange);
}

.delivery-option .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #f5f7fb;
}

.reservation-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

.reservation-summary .summary-product {
  display: flex;
  gap: 10px;
  align-items: center;
}

.reservation-summary .summary-product img {
  width: 74px;
  height: 74px;
  border-radius: 10px;
  object-fit: cover;
}

.reservation-summary dl {
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

.reservation-summary dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 8px;
}

.reservation-summary dt {
  color: #64748b;
}

.reservation-summary dd {
  margin: 0;
  font-weight: 700;
}

.summary-note {
  margin: 12px 0 0;
  color: #64748b;
  font-size: 0.92rem;
}

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

:root[data-theme='dark'] {
  --bg-light: #0b1220;
  --text-dark: #e5e7eb;
  --text-muted: #9aa8bd;
  color-scheme: dark;
}

:root[data-theme='dark'] body {
  background: #0b1220;
  color: #e5e7eb;
}

:root[data-theme='dark'] .header {
  background: rgba(8, 12, 22, 0.88);
  border-bottom-color: rgba(71, 85, 105, 0.45);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

:root[data-theme='dark'] .nav-link,
:root[data-theme='dark'] .shop-breadcrumb,
:root[data-theme='dark'] .shop-head p,
:root[data-theme='dark'] .section-subtitle,
:root[data-theme='dark'] .consent,
:root[data-theme='dark'] .consent-meta {
  color: #b8c6da;
}

:root[data-theme='dark'] .section-subtitle.center,
:root[data-theme='dark'] .about-text p,
:root[data-theme='dark'] .contact-intro p,
:root[data-theme='dark'] .product-content p,
:root[data-theme='dark'] .step-card p,
:root[data-theme='dark'] .meta-item p,
:root[data-theme='dark'] .product-summary-card > p,
:root[data-theme='dark'] .summary-note,
:root[data-theme='dark'] .reservation-summary dt,
:root[data-theme='dark'] .contact-form-wrap > p {
  color: #9db0c8;
}

:root[data-theme='dark'] .icon-btn,
:root[data-theme='dark'] .theme-toggle,
:root[data-theme='dark'] .search-form,
:root[data-theme='dark'] .field input,
:root[data-theme='dark'] .field textarea,
:root[data-theme='dark'] .field select,
:root[data-theme='dark'] .field-inline input,
:root[data-theme='dark'] .field-inline textarea,
:root[data-theme='dark'] .shop-search-form input,
:root[data-theme='dark'] .btn-secondary,
:root[data-theme='dark'] .cookie-banner__content,
:root[data-theme='dark'] .legal-card,
:root[data-theme='dark'] .consent-settings__row {
  background: #111a2d;
  color: #e5e7eb;
  border-color: #324055;
}

:root[data-theme='dark'] .icon-btn:hover {
  background: rgba(226, 232, 240, 0.12);
  border-color: #64748b;
  color: #e5e7eb;
}

:root[data-theme='dark'] .content-card,
:root[data-theme='dark'] .meta-item,
:root[data-theme='dark'] .product-card,
:root[data-theme='dark'] .step-card,
:root[data-theme='dark'] .benefit,
:root[data-theme='dark'] .shop-categories,
:root[data-theme='dark'] .shop-strip,
:root[data-theme='dark'] .shop-products-wrap,
:root[data-theme='dark'] .shop-product-card,
:root[data-theme='dark'] .product-gallery-card,
:root[data-theme='dark'] .product-summary-card,
:root[data-theme='dark'] .rent-box,
:root[data-theme='dark'] .related-grid article,
:root[data-theme='dark'] .reservation-steps,
:root[data-theme='dark'] .reservation-delivery,
:root[data-theme='dark'] .reservation-summary,
:root[data-theme='dark'] .dialog-card {
  background: #111a2d;
  border-color: #2e3c55;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  color: #e5e7eb;
}

:root[data-theme='dark'] .contact-right {
  background: #111a2d;
}

:root[data-theme='dark'] .contact-left {
  background: linear-gradient(180deg, #041d78 0%, #071653 100%);
}

:root[data-theme='dark'] .product-image-wrap,
:root[data-theme='dark'] .shop-product-image,
:root[data-theme='dark'] .shop-mini-grid article,
:root[data-theme='dark'] .product-main-image,
:root[data-theme='dark'] .product-spec-grid article,
:root[data-theme='dark'] .rent-date-grid div,
:root[data-theme='dark'] .delivery-option .icon,
:root[data-theme='dark'] .view360 {
  background: #0f1729;
  border-color: #334155;
  color: #e5e7eb;
}

:root[data-theme='dark'] .product-category,
:root[data-theme='dark'] .shop-product-card dt,
:root[data-theme='dark'] .shop-product-card h3 a,
:root[data-theme='dark'] .shop-back-link,
:root[data-theme='dark'] .product-summary-card h1,
:root[data-theme='dark'] .product-data-grid h2,
:root[data-theme='dark'] .shop-categories h2,
:root[data-theme='dark'] .forestry-panel h2,
:root[data-theme='dark'] .inline-link,
:root[data-theme='dark'] .consent-link {
  color: #93b5ff;
}

:root[data-theme='dark'] .product-footer small,
:root[data-theme='dark'] .shop-product-card dd,
:root[data-theme='dark'] .shop-mini-grid span,
:root[data-theme='dark'] .shop-categories li,
:root[data-theme='dark'] .category-meta small,
:root[data-theme='dark'] .product-summary-card h1 span,
:root[data-theme='dark'] .product-rating,
:root[data-theme='dark'] .product-spec-grid small,
:root[data-theme='dark'] .rent-box-head small,
:root[data-theme='dark'] .product-tabs a,
:root[data-theme='dark'] .reservation-steps h2,
:root[data-theme='dark'] .consent,
:root[data-theme='dark'] .consent span,
:root[data-theme='dark'] .contact-info-item span,
:root[data-theme='dark'] .contact-info-item small {
  color: #a9b7ca;
}

:root[data-theme='dark'] .product-footer strong,
:root[data-theme='dark'] .shop-strip-head h2,
:root[data-theme='dark'] .shop-head h1,
:root[data-theme='dark'] .shop-product-card p,
:root[data-theme='dark'] .related-grid h3,
:root[data-theme='dark'] .reservation-delivery h3,
:root[data-theme='dark'] .reservation-summary h3,
:root[data-theme='dark'] .content-card h2,
:root[data-theme='dark'] .about h1,
:root[data-theme='dark'] .about h2,
:root[data-theme='dark'] .service-card h3,
:root[data-theme='dark'] .field span,
:root[data-theme='dark'] .contact-form-wrap h2,
:root[data-theme='dark'] .contact-info-item strong {
  color: #e5e7eb;
}

:root[data-theme='dark'] .field input,
:root[data-theme='dark'] .field textarea,
:root[data-theme='dark'] .field select {
  background: #0f1729;
  border-color: #3a4a67;
  color: #e5e7eb;
}

:root[data-theme='dark'] .search {
  background-color: rgba(2, 6, 23, 0.54);
}

:root[data-theme='dark'] .search-form i,
:root[data-theme='dark'] .search-input {
  color: #e2e8f0;
}

:root[data-theme='dark'] .search-input::placeholder,
:root[data-theme='dark'] .shop-search-form input::placeholder,
:root[data-theme='dark'] .field input::placeholder,
:root[data-theme='dark'] .field textarea::placeholder,
:root[data-theme='dark'] .field-inline input::placeholder,
:root[data-theme='dark'] .field-inline textarea::placeholder {
  color: #90a1bc;
}

:root[data-theme='dark'] .section-soft {
  background: linear-gradient(180deg, #111a2d 0%, #0b1220 100%);
}

:root[data-theme='dark'] .hero p {
  color: rgba(255, 255, 255, 0.93);
}

:root[data-theme='dark'] .hero-badge {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  color: #ffd7a1;
}

:root[data-theme='dark'] .btn-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

:root[data-theme='dark'] .product-cart {
  background: #1f325d;
}

:root[data-theme='dark'] .service-card {
  background: linear-gradient(180deg, #122038 0%, #0f1a2f 100%);
  border-color: #30425d;
}

:root[data-theme='dark'] .service-card .service-icon {
  background: rgba(147, 181, 255, 0.2);
  color: #b4caff;
}

:root[data-theme='dark'] .service-card p {
  color: #a9b7ca;
}

:root[data-theme='dark'] .forestry-panel {
  border-color: #30425d;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

:root[data-theme='dark'] .legal-card p,
:root[data-theme='dark'] .legal-card li,
:root[data-theme='dark'] .legal-card strong,
:root[data-theme='dark'] .legal-card a,
:root[data-theme='dark'] .cookie-banner__content p,
:root[data-theme='dark'] .consent-settings__meta,
:root[data-theme='dark'] .contact-status {
  color: #c6d5e9;
}

:root[data-theme='dark'] .legal-card a {
  color: #a9c4ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

:root[data-theme='dark'] .contact-info-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(148, 163, 184, 0.28);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-light: #0b1220;
    --text-dark: #e5e7eb;
    --text-muted: #9aa8bd;
  }

  body {
    background: #0b1220;
    color: #e5e7eb;
  }

  .header {
    background: rgba(8, 12, 22, 0.88);
    border-bottom-color: rgba(71, 85, 105, 0.45);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }

  .icon-btn {
    color: #e5e7eb;
    border-color: #334155;
    background: #0f1729;
  }

  .icon-btn:hover {
    background: rgba(226, 232, 240, 0.12);
    border-color: #64748b;
  }

  .theme-toggle {
    background: #0f1729;
    border-color: #334155;
    color: #e5e7eb;
  }

  .theme-toggle:hover {
    border-color: #64748b;
    color: #dbe7ff;
  }

  .nav-link {
    color: #e5e7eb;
  }

  .search {
    background-color: rgba(2, 6, 23, 0.54);
  }

  .search-form {
    background: #111c31;
    border: 1px solid #32425f;
  }

  .search-form i,
  .search-input {
    color: #e2e8f0;
  }

  .search-input::placeholder {
    color: #90a1bc;
  }

  .shop-search-form input {
    background: #0f1729;
    border-color: #334155;
    color: #e2e8f0;
  }

  .shop-search-form input::placeholder {
    color: #90a1bc;
  }

  .section-soft {
    background: linear-gradient(180deg, #111a2d 0%, #0b1220 100%);
  }

  .section-subtitle,
  .section-subtitle.center,
  .shop-breadcrumb,
  .shop-head p,
  .about-text p,
  .contact-intro p,
  .product-content p,
  .step-card p,
  .meta-item p,
  .product-summary-card > p,
  .summary-note,
  .reservation-summary dt,
  .contact-form-wrap > p {
    color: #9db0c8;
  }

  .content-card,
  .meta-item,
  .product-card,
  .step-card,
  .benefit,
  .shop-categories,
  .shop-strip,
  .shop-products-wrap,
  .shop-product-card,
  .product-gallery-card,
  .product-summary-card,
  .rent-box,
  .related-grid article,
  .reservation-steps,
  .reservation-delivery,
  .reservation-summary,
  .dialog-card {
    background: #111a2d;
    border-color: #2e3c55;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
    color: #e5e7eb;
  }

  .contact-right {
    background: #111a2d;
  }

  .contact-left {
    background: linear-gradient(180deg, #041d78 0%, #071653 100%);
  }

  .product-image-wrap,
  .shop-product-image,
  .shop-mini-grid article,
  .product-main-image,
  .product-spec-grid article,
  .rent-date-grid div,
  .delivery-option .icon,
  .view360 {
    background: #0f1729;
    border-color: #334155;
    color: #e5e7eb;
  }

  .product-category,
  .shop-product-card dt,
  .shop-product-card h3 a,
  .shop-back-link,
  .product-summary-card h1,
  .product-data-grid h2,
  .shop-categories h2,
  .forestry-panel h2,
  .inline-link,
  .consent-link {
    color: #93b5ff;
  }

  .product-footer small,
  .shop-product-card dd,
  .shop-mini-grid span,
  .shop-categories li,
  .category-meta small,
  .product-summary-card h1 span,
  .product-rating,
  .product-spec-grid small,
  .rent-box-head small,
  .product-tabs a,
  .reservation-steps h2,
  .consent,
  .consent span,
  .contact-info-item span,
  .contact-info-item small {
    color: #a9b7ca;
  }

  .product-footer strong,
  .shop-strip-head h2,
  .shop-head h1,
  .shop-product-card p,
  .related-grid h3,
  .reservation-delivery h3,
  .reservation-summary h3,
  .content-card h2,
  .about h1,
  .about h2,
  .service-card h3,
  .field span,
  .contact-form-wrap h2,
  .contact-info-item strong {
    color: #e5e7eb;
  }

  .product-cart {
    background: #1f325d;
  }

  .field input,
  .field textarea,
  .field select {
    background: #0f1729;
    border-color: #3a4a67;
    color: #e5e7eb;
  }

  .field-inline span {
    color: #b6c5d9;
  }

  .field-inline input,
  .field-inline textarea {
    background: #0f1729;
    border-color: #3a4a67;
    color: #e5e7eb;
  }

  .field input::placeholder,
  .field textarea::placeholder,
  .field-inline input::placeholder,
  .field-inline textarea::placeholder {
    color: #8fa0bb;
  }

  .btn-secondary {
    background: #17253e;
    color: #dbe6f6;
    border-color: #3a4a67;
  }

  .btn-secondary:hover {
    background: #213250;
  }

  .shop-categories li.active,
  .shop-categories li:hover,
  .delivery-option.active {
    background: rgba(147, 181, 255, 0.12);
    border-color: rgba(147, 181, 255, 0.5);
    color: #dbe7ff;
  }

  .product-tabs {
    border-bottom-color: #334155;
  }

  .product-tabs a.active {
    color: #dbe7ff;
  }

  .product-data-grid dl div,
  .reservation-summary dl div,
  .reservation-steps article,
  .shop-product-card,
  .delivery-option {
    border-color: #324055;
  }

  .service-card {
    background: linear-gradient(180deg, #122038 0%, #0f1a2f 100%);
    border-color: #30425d;
  }

  .service-card .service-icon {
    background: rgba(147, 181, 255, 0.2);
    color: #b4caff;
  }

  .service-card p {
    color: #a9b7ca;
  }

  .forestry-panel {
    border-color: #30425d;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  }

  .benefit img {
    filter: brightness(0) invert(1) saturate(0) contrast(1.05);
  }

  .dialog {
    background: rgba(1, 4, 11, 0.68);
  }

  .dialog-card {
    background: #101a2c;
    border: 1px solid #334155;
  }

  .cookie-banner__content,
  .legal-card,
  .consent-settings__row {
    background: #111a2d;
    border-color: #324055;
    color: #e5e7eb;
  }

  .cookie-banner__content h2,
  .legal-card h1,
  .legal-card h2 {
    color: #e5e7eb;
  }

  .cookie-banner__content p,
  .legal-card p,
  .legal-card li,
  .consent-settings__meta,
  .contact-status,
  .consent-meta {
    color: #b8c6da;
  }

  .dialog-card h4,
  .dialog-card p {
    color: #e5e7eb;
  }

  .dialog-close {
    background: var(--brand-orange);
    color: #fff;
  }

  .tool-empty,
  .shop-feedback.is-info,
  .rent-availability.is-info,
  .rent-feedback.is-info {
    color: #9db0c8;
  }

  .shop-feedback.is-success,
  .rent-availability.is-success,
  .rent-feedback.is-success {
    color: #22c55e;
  }

  .shop-feedback.is-error,
  .rent-availability.is-error,
  .rent-feedback.is-error,
  .availability.is-out {
    color: #f87171;
  }
}

@media (max-width: 1320px) {
  .about {
    width: min(80%, 1100px);
  }

  .forestry-inner {
    width: min(72%, 900px);
  }
}

@media (max-width: 1120px) {
  .steps {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    width: min(760px, 100%);
  }

  .product-row {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .benefit {
    width: min(280px, 100%);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    column-gap: 32px;
  }

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

  .shop-categories {
    position: static;
  }

  .shop-mini-grid {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }

  .shop-products-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }

  .rent-form-row {
    grid-template-columns: 1fr;
  }

  .field-inline-small {
    max-width: 100%;
  }

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

  .product-summary-card {
    position: static;
  }

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

@media (max-width: 1023px) {
  .nav {
    min-height: 72px;
  }

  .brand-logo {
    padding: 7px 10px 6px;
    border-radius: 7px;
    box-shadow: none;
  }

  .brand-text strong {
    font-size: 0.9rem;
    letter-spacing: 0.03em;
  }

  .brand-text small {
    margin-top: 4px;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(20, 41, 143, 0.15);
    padding: 84px 16px 64px;
    overflow-y: auto;
    transform: translateY(-115%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      transform 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s linear;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 34px;
    text-align: center;
  }

  .nav-link,
  .nav-link:hover,
  .nav-link.active {
    color: #111827;
  }

  .nav-close {
    display: inline-flex;
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 1.4rem;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 96px 0 80px;
  }

  .hero h1 {
    margin-bottom: 26px;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 14px;
    width: min(560px, 100%);
  }

  .forestry-inner {
    width: min(92%, 900px);
  }

  .forestry-grid {
    flex-direction: column;
  }

  .forestry-col-left,
  .forestry-col-right {
    width: 100%;
  }

  .about {
    width: min(92%, 1100px);
    gap: 48px;
  }

  .about-row {
    flex-direction: column-reverse;
  }

  .about-row.row-normal {
    flex-direction: column;
  }

  .contact {
    width: min(92%, 1100px);
  }

  .contact-main {
    min-height: auto;
  }

  .contact-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-left-inner {
    padding: 34px 22px;
    max-width: 100%;
  }

  .contact-right {
    padding: 34px 22px;
  }

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

  .footer-col {
    width: min(420px, 100%);
  }

  .icon-btn {
    color: #0f172a;
    width: 44px;
    height: 44px;
  }

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

  .product-detail-head {
    flex-direction: column;
    align-items: flex-start;
  }

  :root[data-theme='dark'] .nav-menu {
    background: #0f1729;
    border-top: 1px solid #334155;
  }

  :root[data-theme='dark'] .nav-link,
  :root[data-theme='dark'] .nav-link:hover,
  :root[data-theme='dark'] .nav-link.active,
  :root[data-theme='dark'] .nav-close {
    color: #e5e7eb;
  }
}

@media (max-width: 640px) {
  :root {
    --anchor-offset: 98px;
  }

  .hero {
    min-height: 510px;
    background-position: 60% center;
  }

  .steps {
    grid-template-columns: 1fr;
    width: min(420px, 100%);
  }

  .search {
    padding-top: 96px;
  }

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

  .hero-content {
    padding: 72px 0 54px;
    width: 100%;
    padding-inline: 10px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.4vw, 2.55rem);
    line-height: 1.12;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 0.94rem;
    line-height: 1.42;
    margin-bottom: 18px;
    max-width: 30ch;
  }

  .hero-badge {
    font-size: 0.74rem;
    padding: 5px 11px;
    margin-bottom: 10px;
  }

  .hero-scroll-hint {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .btn-hero,
  .btn-ghost {
    justify-content: center;
    width: auto;
    min-width: 220px;
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  .footer {
    padding: 52px 0 20px;
  }

  .page-hero {
    padding: 78px 0 56px;
  }

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

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

  .forestry-services {
    grid-template-columns: 1fr;
  }

  .forestry-hero-modern {
    min-height: 350px;
    background-position: 58% center;
  }

  .forestry-hero-content {
    padding: 34px 0 30px;
  }

  .forestry-hero-content p {
    max-width: 38ch;
  }

  .forestry-wrap {
    margin-top: -36px;
  }

  .forestry-panel {
    border-radius: 18px;
    padding: 1rem;
  }

  .forestry-cta .btn-primary {
    min-height: 44px;
    padding: 10px 16px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: .84rem;
  }

  .nav {
    min-height: 66px;
  }

  .brand-logo {
    padding: 7px 9px 6px;
  }

  .brand-text strong {
    font-size: 0.84rem;
  }

  .brand-text small {
    font-size: 0.56rem;
  }

  .shop-main {
    padding: 22px 0 54px;
  }

  .shop-strip,
  .shop-products-wrap,
  .product-gallery-card,
  .product-summary-card,
  .reservation-delivery,
  .reservation-summary {
    border-radius: 14px;
    padding: 12px;
  }

  .shop-strip-head h2 {
    font-size: 1.38rem;
  }

  .shop-search-form {
    grid-template-columns: 1fr;
  }

  .shop-mini-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .shop-products-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions .btn-primary,
  .cookie-banner__actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .product-summary-card h1 {
    font-size: clamp(1.8rem, 9vw, 2.3rem);
  }

  .product-summary-card h1 span {
    font-size: 1.25rem;
  }

  .product-spec-grid,
  .product-data-grid {
    grid-template-columns: 1fr;
  }

  .product-tabs {
    gap: 12px;
  }

  .reservation-steps h2 {
    font-size: 1.6rem;
  }

  .reservation-actions {
    flex-direction: column;
  }
}

@media (prefers-color-scheme: dark) and (max-width: 1023px) {
  .nav-menu {
    background: #0f1729;
    border-top: 1px solid #334155;
  }

  .icon-btn {
    color: #e5e7eb;
  }

  .icon-btn:hover {
    background: rgba(226, 232, 240, 0.12);
  }

  .nav-link,
  .nav-link:hover,
  .nav-link.active {
    color: #e5e7eb;
  }

  .nav-close {
    color: #e5e7eb;
  }
}



