@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --primary: #244c3f;
  --primary-strong: #18352c;
  --secondary: #8fa894;
  --light: #f8f7f2;
  --surface: #ffffff;
  --surface-soft: #f2efe7;
  --text: #20342d;
  --text-soft: #5f6f68;
  --line: rgba(36, 76, 63, 0.12);
  --shadow: 0 18px 40px rgba(24, 53, 44, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #fbfaf6 0%, #f5f2ea 100%);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
}

body.modal-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.page-shell {
  padding: 28px 0 60px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--primary-strong);
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
}

h3 {
  font-size: clamp(24px, 2.5vw, 30px);
}

p {
  margin: 0 0 16px;
  color: var(--text-soft);
  line-height: 1.65;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(248, 247, 242, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.logo img {
  height: 72px;
  width: auto;
  border-radius: 0px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  font-weight: 700;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--primary-strong);
  margin: 5px 0;
}

.site-footer {
  padding: 42px 0;
  background: linear-gradient(180deg, #1f4035 0%, #163129 100%);
  color: rgba(255, 255, 255, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.entry-screen {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry-inner {
  width: min(760px, 100%);
  text-align: center;
  padding: 40px 20px;
}

.entry-logo {
  width: min(510px, 90vw);
  margin: 0 auto 22px;
  display: block;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.entry-lead {
  max-width: 680px;
  margin: 0 auto 26px;
  font-size: 18px;
}

.entry-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}


.entry-btn,
.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.entry-btn:hover,
.btn:hover {
  transform: translateY(-2px);
}

.entry-btn-primary,
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}

.entry-btn-primary:hover,
.btn-primary:hover {
  background: var(--primary-strong);
}

.entry-btn-secondary,
.btn-secondary {
  background: #fff;
  color: var(--primary-strong);
  border: 1px solid var(--line);
}

.entry-btn-secondary:hover,
.btn-secondary:hover {
  background: var(--surface-soft);
}

.btn-outline,
.btn-ghost {
  background: transparent;
  color: var(--primary-strong);
  border: 1px solid rgba(36, 76, 63, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 44px;
}

.hero-image img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 28px;
  background: var(--surface-soft);
  border: 1px solid rgba(36, 76, 63, 0.1);
  box-shadow:
    0 24px 54px rgba(24, 53, 44, 0.1),
    0 4px 14px rgba(24, 53, 44, 0.05);
  display: block;
}

.hero-quick-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.call-panel {
  margin-top: 18px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.call-panel-title {
  font-weight: 700;
  color: var(--primary-strong);
  margin-bottom: 8px;
}

.call-number {
  display: inline-block;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.call-panel-note {
  margin-bottom: 0;
}

.hidden {
  display: none !important;
}

.section-head {
  margin-bottom: 22px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: start;
}

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

.product-card,
.cart-card,
.feature-card,
.doc-section,
.b2b-form-section {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--surface-soft);
}

.product-card-body {
  padding: 18px;
}

.product-meta {
  margin-bottom: 14px;
}

.price {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

.product-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.qty-input {
  width: 64px;
  height: 40px;
  border: 0;
  text-align: center;
  font-weight: 700;
}

.cart-card {
  padding: 22px;
  position: sticky;
  top: 110px;
}

.cart-items {
  margin: 18px 0;
}

.cart-empty {
  margin: 0;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(36, 76, 63, 0.08);
}

.cart-item-meta {
  color: var(--text-soft);
  font-size: 14px;
}

.cart-item-right {
  text-align: right;
}

.remove-btn {
  margin-top: 6px;
  border: 0;
  background: transparent;
  color: #b42318;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.cart-summary {
  padding: 12px 0 18px;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-buttons {
  display: grid;
  gap: 12px;
}

.b2b-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 22px;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 40, 0.58);
}

.modal-content {
  position: relative;
  width: min(760px, calc(100% - 24px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--surface-soft);
  font-size: 28px;
  cursor: pointer;
}

.modal-text {
  margin-bottom: 22px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--primary-strong);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

.summary-box {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
}

.summary-line + .summary-line {
  margin-top: 8px;
}

.consent-box {
  margin-top: 4px;
}

.consent-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.consent-line input {
  margin-top: 3px;
  width: auto;
  min-height: auto;
}

.full-btn {
  width: 100%;
}

.form-message {
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
}

.form-message.success {
  background: rgba(215, 242, 227, 0.9);
  color: #0f4a2e;
}

.form-message.error {
  background: rgba(253, 236, 234, 0.95);
  color: #842029;
}

.doc-section {
  padding: 28px;
}

.doc-section ul {
  padding-left: 18px;
}

@media (max-width: 980px) {
  .hero,
  .catalog-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .b2b-features,
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cart-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(248, 247, 242, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 24px 24px;
    transition: right var(--transition);
    border-left: 1px solid var(--line);
  }

  .nav.open {
    right: 0;
  }

  .nav-toggle {
    display: block;
  }

  .entry-actions,
  .hero-quick-actions,
  .product-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .entry-btn,
  .btn {
    width: 100%;
  }

  .product-grid,
  .b2b-features,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 24px 18px;
  }

  .logo img {
    height: 62px;
  }
}
.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 6px;
}

.time-slot-btn {
  min-height: 52px;
  border: 1px solid rgba(36, 76, 63, 0.12);
  border-radius: 16px;
  background: #fff;
  color: var(--primary-strong);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 24px rgba(24, 53, 44, 0.04);
}

.time-slot-btn:hover {
  transform: translateY(-2px);
  background: #f8f7f2;
  border-color: rgba(36, 76, 63, 0.2);
}

.time-slot-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 14px 28px rgba(36, 76, 63, 0.16);
}

.pretty-date {
  min-height: 54px !important;
  border-radius: 16px !important;
  background: #fff !important;
  border: 1px solid rgba(36, 76, 63, 0.12) !important;
  box-shadow: 0 8px 24px rgba(24, 53, 44, 0.04);
  font-weight: 600;
}

.pretty-date:focus {
  outline: none;
  border-color: rgba(36, 76, 63, 0.28) !important;
  box-shadow: 0 0 0 4px rgba(36, 76, 63, 0.08);
}

@media (max-width: 720px) {
  .time-slot-grid {
    grid-template-columns: 1fr;
  }
}
.nav-policy-link {
  font-weight: 800;
  color: var(--primary-strong);
  position: relative;
}

.nav-policy-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  opacity: 0.9;
}

.footer-title-accent {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.usage-blocks {
  display: grid;
  gap: 20px;
}

.usage-main-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.b2b-products-section {
  margin-top: 42px;
}

.b2b-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.b2b-product-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.b2b-product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--surface-soft);
}

.b2b-product-body {
  padding: 18px;
}

.blog-grid-section {
  margin-top: 10px;
  margin-bottom: 42px;
}

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

.blog-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.blog-card-body {
  padding: 24px;
}

.blog-note {
  margin-top: 12px;
  color: var(--primary);
  font-weight: 700;
}

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

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

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.card-hover {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 44px rgba(24, 53, 44, 0.12);
  border-color: rgba(36, 76, 63, 0.18);
}

.hero-text,
.hero-image,
.catalog-section,
.usage-section,
.b2b-features,
.b2b-products-section,
.blog-grid-section,
.doc-section {
  transition: opacity 0.4s ease;
}

@media (max-width: 980px) {
  .b2b-products-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .b2b-products-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.logo-animated img,
.logo-drop {
  animation: logoAppear 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes logoAppear {
  0% {
    opacity: 0;
    transform: translateY(-18px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.footer-title-accent {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service-note {
  display: inline-flex;
  margin: 8px 0 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(36, 76, 63, 0.08);
  color: var(--primary-strong);
  font-weight: 800;
}

.min-order-note,
.delivery-note {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--primary-strong);
  font-weight: 700;
}

.order-service-note {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(36, 76, 63, 0.08);
  color: var(--primary-strong);
}

.privacy-link-strong {
  font-weight: 800;
  color: var(--primary-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

input::placeholder,
textarea::placeholder {
  color: #96a29d;
}

.b2b-product-link {
  display: block;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 800;
}

.product-detail-page {
  margin-top: 10px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: start;
}

.product-detail-image {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-detail-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  background: var(--surface-soft);
}

.product-detail-info {
  padding: 10px 0;
}

.product-detail-description {
  font-size: 18px;
}

.product-detail-text-block {
  margin-top: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .product-detail-image img {
    height: 320px;
  }
}
.calendar-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.calendar-month-label {
  font-weight: 800;
  color: var(--primary-strong);
  font-size: 18px;
  letter-spacing: 0.01em;
}

.calendar-nav-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(36, 76, 63, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--primary-strong);
  font-size: 24px;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.calendar-nav-btn:hover {
  transform: translateY(-1px);
  background: #f8f7f2;
  border-color: rgba(36, 76, 63, 0.2);
  box-shadow: 0 10px 20px rgba(24, 53, 44, 0.06);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-soft);
  padding: 8px 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-day {
  min-height: 48px;
  border: 1px solid rgba(36, 76, 63, 0.08);
  border-radius: 14px;
  background: #fff;
  color: var(--primary-strong);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.calendar-day:hover:not(.disabled):not(.other-month) {
  transform: translateY(-1px);
  background: #f8f7f2;
  border-color: rgba(36, 76, 63, 0.16);
  box-shadow: 0 8px 18px rgba(24, 53, 44, 0.05);
}

.calendar-day.today {
  border-color: rgba(36, 76, 63, 0.28);
  color: var(--primary);
}

.calendar-day.selected {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 14px 28px rgba(36, 76, 63, 0.16);
}

.calendar-day.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.calendar-day.other-month {
  opacity: 0.28;
  cursor: default;
  background: #fbfaf6;
}

@media (max-width: 720px) {
  .calendar-day {
    min-height: 42px;
    border-radius: 12px;
    font-size: 14px;
  }

  .calendar-card {
    padding: 14px;
  }

  .calendar-weekdays {
    gap: 6px;
  }

  .calendar-grid {
    gap: 6px;
  }
}
.header-center-only {
  justify-content: center;
}

.home-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.catalog-page {
  margin-top: 10px;
}

@media (max-width: 980px) {
  .home-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .home-info-grid {
    grid-template-columns: 1fr;
  }
}
.footer-settings-btn {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-settings-btn:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 400;
}

.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(36, 76, 63, 0.12);
  border-radius: 22px;
  box-shadow: 0 24px 56px rgba(24, 53, 44, 0.16);
}

.cookie-banner-text strong {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary-strong);
  font-size: 18px;
}

.cookie-banner-text p {
  margin: 0;
  max-width: 820px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-modal-content {
  width: min(860px, calc(100% - 24px));
}

.cookie-settings-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 24px;
}

.cookie-setting-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
}

.cookie-setting-card h3 {
  margin-bottom: 6px;
}

.cookie-setting-card p {
  margin: 0;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.switch {
  position: relative;
  display: inline-flex;
  width: 58px;
  height: 34px;
  flex: 0 0 auto;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d5ddd9;
  transition: 0.25s ease;
  cursor: pointer;
}

.switch-slider::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  left: 4px;
  top: 4px;
  background: #fff;
  border-radius: 999px;
  transition: 0.25s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.switch input:checked + .switch-slider {
  background: var(--primary);
}

.switch input:checked + .switch-slider::before {
  transform: translateX(24px);
}

.switch-disabled {
  opacity: 0.7;
}

@media (max-width: 900px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-setting-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-modal-actions {
    justify-content: stretch;
  }

  .cookie-modal-actions .btn,
  .cookie-banner-actions .btn {
    width: 100%;
  }
}
.cookie-banner-actions {
  gap: 12px;
}

.cookie-banner-actions .btn {
  min-height: 58px;
  min-width: 190px;
  padding: 0 24px;
  font-size: 21px;
  font-weight: 800;
  border-radius: 999px;
}

@media (max-width: 720px) {
  .cookie-banner-actions .btn {
    min-width: 100%;
    min-height: 52px;
    font-size: 17px;
    padding: 0 18px;
  }
}
.entry-inner {
  padding-top: 40px;
}

.entry-logo {
  margin: 0 auto 6px;
}

.entry-screen h1 {
  margin-top: 0;
  margin-bottom: 6px;
}

.entry-lead {
  margin: 0 auto 26px;
}

.entry-actions {
  gap: 16px;
  margin-top: 10px;
}

.entry-btn {
  min-height: 64px;
  padding: 0 30px;
  font-size: 24px;
  font-weight: 800;
  border-radius: 999px;
}

@media (max-width: 720px) {
  .entry-logo {
    margin: 0 auto 14px;
  }

  .entry-screen h1 {
    margin-bottom: 14px;
  }

  .entry-lead {
    margin: 0 auto 22px;
  }

  .entry-btn {
    min-height: 56px;
    padding: 0 22px;
    font-size: 18px;
  }
}
.error-page {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0 60px;
  overflow: hidden;
}

.error-card {
  position: relative;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 64px 40px 42px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(36, 76, 63, 0.12);
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(24, 53, 44, 0.1);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.error-code {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(86px, 12vw, 180px);
  line-height: 0.9;
  color: rgba(36, 76, 63, 0.16);
  margin-bottom: 10px;
  animation: errorFloat 4s ease-in-out infinite;
}

.error-card h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
  margin-bottom: 20px;
}

.error-text {
  max-width: 700px;
  margin: 0 auto 28px;
  font-size: 22px;
  line-height: 1.55;
  color: var(--text-soft);
}

.error-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.error-actions .btn {
  min-height: 58px;
  padding: 0 28px;
  font-size: 19px;
}

.error-note {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(36, 76, 63, 0.7);
}

.error-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.35;
  z-index: 1;
  animation: glowMove 8s ease-in-out infinite;
}

.error-glow-1 {
  width: 280px;
  height: 280px;
  background: rgba(143, 168, 148, 0.45);
  top: 12%;
  left: 12%;
}

.error-glow-2 {
  width: 220px;
  height: 220px;
  background: rgba(36, 76, 63, 0.18);
  right: 10%;
  bottom: 14%;
  animation-delay: 1.2s;
}

.error-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.leaf {
  position: absolute;
  display: block;
  width: 28px;
  height: 52px;
  border: 2px solid rgba(36, 76, 63, 0.22);
  border-radius: 100% 0 100% 0;
  background: rgba(255, 255, 255, 0.35);
  transform-origin: center;
  animation: leafFloat 5s ease-in-out infinite;
}

.leaf-1 {
  top: 42px;
  left: 68px;
  transform: rotate(-18deg);
}

.leaf-2 {
  top: 84px;
  right: 78px;
  transform: rotate(22deg);
  animation-delay: 0.8s;
}

.leaf-3 {
  bottom: 46px;
  left: 120px;
  transform: rotate(12deg);
  animation-delay: 1.4s;
}

@keyframes errorFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes leafFloat {
  0% {
    transform: translateY(0px) rotate(-18deg);
  }
  50% {
    transform: translateY(-10px) rotate(-12deg);
  }
  100% {
    transform: translateY(0px) rotate(-18deg);
  }
}

@keyframes glowMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(18px, -12px) scale(1.06);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@media (max-width: 720px) {
  .error-card {
    padding: 42px 22px 28px;
    border-radius: 24px;
  }

  .error-text {
    font-size: 18px;
    margin: 0 auto 22px;
  }

  .error-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .error-actions .btn {
    width: 100%;
    min-height: 54px;
    font-size: 17px;
  }

  .leaf {
    width: 22px;
    height: 42px;
  }

  .leaf-1 {
    top: 24px;
    left: 28px;
  }

  .leaf-2 {
    top: 58px;
    right: 26px;
  }

  .leaf-3 {
    bottom: 28px;
    left: 42px;
  }
}
.error-page-server .error-code {
  color: rgba(36, 76, 63, 0.18);
  animation: errorFloatServer 4.6s ease-in-out infinite;
}

.error-page-server .error-card {
  box-shadow: 0 28px 80px rgba(24, 53, 44, 0.12);
}

@keyframes errorFloatServer {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}
.hero-quick-actions {
  gap: 16px;
  margin-top: 24px;
}

.hero-quick-actions .btn {
  min-height: 60px;
  padding: 0 28px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 999px;
}

@media (max-width: 720px) {
  .hero-quick-actions .btn {
    min-height: 54px;
    padding: 0 22px;
    font-size: 16px;
  }
}
.call-panel {
  margin-top: 18px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-origin: top;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    max-height 0.35s ease,
    margin-top 0.35s ease,
    padding-top 0.35s ease,
    padding-bottom 0.35s ease;
}

.call-panel-collapsed {
  opacity: 0;
  transform: translateY(-10px);
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  box-shadow: none;
  pointer-events: none;
}

.call-panel:not(.call-panel-collapsed) {
  opacity: 1;
  transform: translateY(0);
  max-height: 220px;
}
.home-catalog-more {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
}

.home-catalog-more .btn {
  min-height: 56px;
  padding: 0 28px;
  font-size: 17px;
  font-weight: 800;
}

@media (max-width: 720px) {
  .home-catalog-more {
    justify-content: stretch;
  }

  .home-catalog-more .btn {
    width: 100%;
  }
}
.product-card-link,
.product-title-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-title-link h3 {
  transition: color var(--transition);
}

.product-title-link:hover h3 {
  color: var(--primary);
}

.product-more-btn {
  min-height: 46px;
  padding: 0 18px;
  white-space: nowrap;
}

.product-actions {
  align-items: center;
}
.product-card-clickable {
  cursor: pointer;
}

.product-card-clickable h3 {
  transition: color var(--transition);
}

.product-card-clickable:hover h3 {
  color: var(--primary);
}

.product-card-clickable:focus-visible {
  outline: 2px solid rgba(36, 76, 63, 0.28);
  outline-offset: 4px;
}

.home-catalog-more {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
}

.home-catalog-more .btn {
  min-height: 56px;
  padding: 0 28px;
  font-size: 17px;
  font-weight: 800;
}

@media (max-width: 720px) {
  .home-catalog-more {
    justify-content: stretch;
  }

  .home-catalog-more .btn {
    width: 100%;
  }
}
.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 6px;
  font-weight: 700;
  color: var(--primary-strong);
  transition:
    color var(--transition),
    transform var(--transition),
    text-shadow var(--transition);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: -2px;
  height: 2px;
  border-radius: 999px;
  background: rgba(36, 76, 63, 0.9);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.28s ease;
  opacity: 0;
}

.nav a:hover {
  color: var(--primary);
  transform: translateY(-1px);
  text-shadow: 0 0 10px rgba(36, 76, 63, 0.12);
}

.nav a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav a.is-active {
  color: var(--primary);
  text-shadow: 0 0 14px rgba(36, 76, 63, 0.16);
}

.nav a.is-active::after {
  transform: scaleX(1);
  opacity: 1;
  height: 3px;
  background: linear-gradient(90deg, rgba(36, 76, 63, 0.75), rgba(56, 116, 89, 1), rgba(36, 76, 63, 0.75));
  box-shadow: 0 0 14px rgba(56, 116, 89, 0.22);
}
.cart-buttons .btn {
  min-height: 66px;
  font-size: 16px;
  font-weight: 800;
}

.hero-quick-actions .btn {
  min-height: 64px;
  font-size: 16px;
  font-weight: 800;
}

.time-slot-btn {
  font-size: 20px;
  font-weight: 800;
}

.full-btn {
  min-height: 64px;
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 720px) {
  .cart-buttons .btn,
  .hero-quick-actions .btn,
  .full-btn {
    min-height: 56px;
    font-size: 17px;
  }

  .time-slot-btn {
    font-size: 17px;
  }
}
.b2b-form-section {
  margin-top: 44px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(36, 76, 63, 0.1);
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(24, 53, 44, 0.08);
}

.b2b-form-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.b2b-form-head {
  margin-bottom: 26px;
}

.b2b-form-head .eyebrow {
  margin-bottom: 8px;
}

.b2b-form-head h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
}

.b2b-form-head p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.58;
  color: #5f6f68;
}

.b2b-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 18px;
  align-items: start;
}

.b2b-form-section .form-group {
  display: flex;
  flex-direction: column;
}

.b2b-form-section .form-group label {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 800;
  color: #18352c;
}

.b2b-form-section .form-group input,
.b2b-form-section .form-group textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(36, 76, 63, 0.12);
  border-radius: 18px;
  background: #fff;
  color: #20342d;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.b2b-form-section .form-group input {
  min-height: 56px;
  padding: 0 18px;
  font-size: 16px;
}

.b2b-form-section .form-group textarea {
  min-height: 140px;
  padding: 16px 18px;
  resize: vertical;
  font-size: 16px;
  line-height: 1.55;
}

.b2b-form-section .form-group input::placeholder,
.b2b-form-section .form-group textarea::placeholder {
  color: #97a39d;
}

.b2b-form-section .form-group input:focus,
.b2b-form-section .form-group textarea:focus {
  outline: none;
  border-color: rgba(36, 76, 63, 0.28);
  box-shadow: 0 0 0 4px rgba(36, 76, 63, 0.08);
}

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

.b2b-consent-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(36, 76, 63, 0.08);
  border-radius: 16px;
  background: rgba(36, 76, 63, 0.04);
  cursor: pointer;
}

.b2b-consent-line input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: #244c3f;
}

.b2b-consent-line span {
  font-size: 15px;
  line-height: 1.5;
  color: #20342d;
  font-weight: 600;
}

.b2b-submit-btn {
  width: 100%;
  min-height: 60px;
  border: 0;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(36, 76, 63, 0.14);
}

.b2b-submit-btn:hover {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .b2b-form-section {
    padding: 26px 22px;
  }

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

  .b2b-form-head h2 {
    font-size: clamp(32px, 6vw, 46px);
  }

  .b2b-form-head p {
    font-size: 16px;
  }
}

@media (max-width: 720px) {
  .b2b-form-section {
    margin-top: 30px;
    padding: 20px 16px;
    border-radius: 22px;
  }

  .b2b-form-inner {
    max-width: 100%;
  }

  .b2b-form-head {
    margin-bottom: 20px;
  }

  .b2b-form-head h2 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.06;
  }

  .b2b-form-section .form-group input {
    min-height: 52px;
    padding: 0 16px;
    font-size: 16px;
  }

  .b2b-form-section .form-group textarea {
    min-height: 120px;
    padding: 14px 16px;
    font-size: 16px;
  }

  .b2b-consent-line {
    padding: 12px 14px;
  }

  .b2b-consent-line span {
    font-size: 14px;
  }

  .b2b-submit-btn {
    min-height: 56px;
    font-size: 17px;
    border-radius: 16px;
  }
}
.b2b-consent-row {
  margin-top: 2px;
}

.b2b-consent-line {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(36, 76, 63, 0.08);
  border-radius: 16px;
  background: rgba(36, 76, 63, 0.04);
  box-sizing: border-box;
  cursor: pointer;
}

.b2b-consent-line input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 18px;
  accent-color: #244c3f;
}

.b2b-consent-line span {
  display: block;
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #20342d;
  font-weight: 600;
}

.b2b-submit-btn {
  width: 100%;
  min-height: 60px;
  border: 0;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(36, 76, 63, 0.14);
}

.b2b-form-section .form-group > .b2b-consent-line {
  margin-bottom: 0;
}

.b2b-form-section .form-group > label.b2b-consent-line {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.b2b-form-section .consent-box,
.b2b-form-section .consent-line,
.b2b-form-section .full-btn {
  all: unset;
}

.b2b-form-section .b2b-consent-line {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(36, 76, 63, 0.08);
  border-radius: 16px;
  background: rgba(36, 76, 63, 0.04);
  box-sizing: border-box;
  cursor: pointer;
}

.b2b-form-section .b2b-consent-line input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 18px;
  accent-color: #244c3f;
}

.b2b-form-section .b2b-consent-line span {
  display: block;
  font-size: 15px;
  line-height: 1.45;
  color: #20342d;
  font-weight: 600;
}

@media (max-width: 720px) {
  .b2b-consent-line {
    align-items: flex-start;
    padding: 13px 14px;
  }

  .b2b-consent-line span {
    font-size: 14px;
  }

  .b2b-submit-btn {
    min-height: 56px;
    font-size: 17px;
    border-radius: 16px;
  }
}
.b2b-usp-section {
  margin-top: 8px;
  margin-bottom: 56px;
}

.b2b-usp-head {
  margin-bottom: 26px;
}

.b2b-usp-head h2 {
  max-width: 1100px;
  line-height: 1.02;
}

.b2b-usp-head p {
  max-width: 860px;
  font-size: 19px;
  line-height: 1.65;
}

.b2b-usp-card {
  padding: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,247,242,0.92) 100%);
  border: 1px solid rgba(36, 76, 63, 0.12);
  border-radius: 30px;
  box-shadow: 0 20px 48px rgba(24, 53, 44, 0.08);
}

.b2b-usp-main {
  max-width: 980px;
  margin-bottom: 28px;
}

.b2b-usp-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(36, 76, 63, 0.08);
  color: #18352c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.b2b-usp-main h3 {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  margin-bottom: 14px;
}

.b2b-usp-main p {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.65;
  color: #5f6f68;
}

.b2b-usp-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.b2b-usp-point {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(36, 76, 63, 0.08);
  box-shadow: 0 12px 28px rgba(24, 53, 44, 0.05);
}

.b2b-usp-point-title {
  margin-bottom: 10px;
  color: #18352c;
  font-size: 22px;
  font-weight: 800;
  font-family: 'Cormorant Garamond', serif;
}

.b2b-usp-point p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

.b2b-usp-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(36, 76, 63, 0.08);
}

.b2b-usp-result {
  flex: 1 1 520px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(36, 76, 63, 0.05);
  color: #20342d;
  font-size: 17px;
  line-height: 1.6;
}

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

.b2b-usp-actions .btn {
  min-height: 58px;
  padding: 0 26px;
  font-size: 17px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .b2b-usp-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .b2b-usp-card {
    padding: 22px 16px;
    border-radius: 24px;
  }

  .b2b-usp-head p,
  .b2b-usp-main p {
    font-size: 16px;
  }

  .b2b-usp-main h3 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .b2b-usp-point {
    padding: 18px;
    border-radius: 18px;
  }

  .b2b-usp-point-title {
    font-size: 20px;
  }

  .b2b-usp-actions {
    width: 100%;
  }

  .b2b-usp-actions .btn {
    width: 100%;
  }
}
.usage-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 52px;
}

.usage-hero-text p {
  max-width: 760px;
  font-size: 19px;
  line-height: 1.68;
}

.usage-hero-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid rgba(36, 76, 63, 0.1);
  box-shadow: 0 24px 54px rgba(24, 53, 44, 0.1);
  background: var(--surface-soft);
}

.usage-benefits,
.usage-scenarios,
.usage-tips,
.usage-cta {
  margin-bottom: 52px;
}

.usage-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.usage-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.usage-photo-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.usage-photo-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: var(--surface-soft);
}

.usage-photo-body {
  padding: 22px;
}

.usage-photo-body h3 {
  margin-bottom: 10px;
}

.usage-photo-body p {
  margin-bottom: 0;
}

.usage-tips-grid {
  display: grid;
  gap: 18px;
}

.usage-tip-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.usage-tip-number {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(36, 76, 63, 0.08);
  color: var(--primary-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
}

.usage-tip-card h3 {
  margin-bottom: 8px;
}

.usage-tip-card p {
  margin-bottom: 0;
}

.usage-cta-card {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 22px;
  align-items: center;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,247,242,0.96) 100%);
  border: 1px solid rgba(36, 76, 63, 0.12);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(24, 53, 44, 0.08);
}

.usage-cta-text p {
  max-width: 760px;
  margin-bottom: 0;
}

.usage-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .usage-hero,
  .usage-cta-card {
    grid-template-columns: 1fr;
  }

  .usage-benefits-grid,
  .usage-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .usage-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .usage-benefits-grid,
  .usage-cards-grid {
    grid-template-columns: 1fr;
  }

  .usage-tip-card {
    grid-template-columns: 1fr;
  }

  .usage-tip-number {
    width: 54px;
    height: 54px;
    font-size: 26px;
  }

  .usage-hero-image img {
    min-height: 260px;
  }

  .usage-photo-card img {
    height: 220px;
  }

  .usage-cta-actions .btn {
    width: 100%;
  }
}
.blog-about-card {
  position: relative;
  padding: 34px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,247,242,0.96) 100%);
  border: 1px solid rgba(36, 76, 63, 0.1);
  border-radius: 30px;
  box-shadow: 0 20px 48px rgba(24, 53, 44, 0.08);
  overflow: hidden;
}

.blog-about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(36, 76, 63, 0),
    rgba(36, 76, 63, 0.18),
    rgba(36, 76, 63, 0)
  );
}

.blog-about-card p {
  max-width: 1080px;
  font-size: 18px;
  line-height: 1.82;
  color: #4f615a;
}

.blog-about-card p + p {
  margin-top: 18px;
}

@media (max-width: 720px) {
  .blog-about-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .blog-about-card::before {
    left: 18px;
    right: 18px;
  }

  .blog-about-card p {
    font-size: 16px;
    line-height: 1.72;
  }
}
.blog-about-card {
  position: relative;
  margin-top: 6px;
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
  border: 1px solid rgba(36, 76, 63, 0.12);
  border-radius: 34px;
  box-shadow:
    0 28px 70px rgba(24, 53, 44, 0.10),
    0 6px 18px rgba(24, 53, 44, 0.04);
  overflow: hidden;
}

.blog-about-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, rgba(36, 76, 63, 0.95) 0%, rgba(143, 168, 148, 0.75) 100%);
}

.blog-about-card-top {
  padding: 30px 34px 22px 40px;
  background: linear-gradient(180deg, rgba(36, 76, 63, 0.03) 0%, rgba(36, 76, 63, 0.00) 100%);
  border-bottom: 1px solid rgba(36, 76, 63, 0.08);
}

.blog-about-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(36, 76, 63, 0.08);
  color: #18352c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-about-card-top h3 {
  margin: 16px 0 0;
  max-width: 980px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.blog-about-card-body {
  padding: 28px 34px 34px 40px;
}

.blog-about-card-body p {
  margin: 0;
  max-width: 1120px;
  font-size: 18px;
  line-height: 1.86;
  color: #50625b;
}

.blog-about-card-body p + p {
  margin-top: 18px;
}

@media (max-width: 720px) {
  .blog-about-card {
    border-radius: 24px;
  }

  .blog-about-card::before {
    width: 4px;
  }

  .blog-about-card-top {
    padding: 22px 18px 16px 22px;
  }

  .blog-about-card-top h3 {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.12;
  }

  .blog-about-card-body {
    padding: 20px 18px 24px 22px;
  }

  .blog-about-card-body p {
    font-size: 16px;
    line-height: 1.74;
  }
}
.blog-article-section .doc-section {
  padding: 30px 34px;
  box-sizing: border-box;
  overflow: hidden;
}