/* ==========================================================================
   MEDCANN B2B LANDING PAGE MASTER STYLESHEET
   FIGMA-AUTHENTIC & FULLY RESPONSIVE (DESKTOP, TABLET, MOBILE)
   ========================================================================== */

/* ==================== TYPOGRAPHY / FONTS ==================== */
@font-face {
  	font-family: 'Neutral Face';
  	src: url('assets/fonts/NeutralFace.otf') format('opentype');
  	font-weight: 300;
  	font-style: normal;
  	font-display: swap;
}

@font-face {
  	font-family: 'Neutral Face';
  	src: url('assets/fonts/NeutralFace.otf') format('opentype');
  	font-weight: 300 !important;
  	font-style: normal;
  	font-display: swap;
}

@font-face {
  	font-family: 'Neutral Face';
  	src: url('assets/fonts/NeutralFace-Bold.otf') format('opentype');
  	font-weight: 700;
  	font-style: normal;
  	font-display: swap;
}

/* Force Neutral Face to always use 300 weight and 0% letter spacing */
h1, h2, h3, h4, h5, h6,
.h23 h2, .cbd-, .cbd-2, .products-title, .categories-title, .blog-title, .faq-title,
.about-3-hero-title h1, .bighead3, .bighead3 span, .timeline-item .div68,
.footer-col-title, .footer-phone, .prod-title, .div51, .about-card .div51 {
  font-family: 'Neutral Face', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
}

/* Ensure Inter font is applied to all text with authentic Figma tracking */
body, html, p, span, a, div, input, button, label {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.div58, .div50, .cat-accordion-text, .about-3-tagline, .about-3-bottom-desc,
.products-desc, .prod-sub, .blog-row-desc, .faq-answer, .faq-bottom-text {
  font-family: 'Inter', sans-serif !important;
  letter-spacing: -0.05em !important;
}

/* ==================== GLOBAL RESET & SCROLL FIX ==================== */
html {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: clip !important;
  -webkit-overflow-scrolling: touch !important;
  box-sizing: border-box !important;
  background-color: #f0f0f0;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: clip !important;
  box-sizing: border-box !important;
  background-color: #f0f0f0;
}

*, *::before, *::after {
  box-sizing: border-box !important;
}

.desktop-2, .desktop-subpage {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip !important;
  position: relative !important;
  border-radius: 0 !important;
}

/* ==================== UNIVERSAL SCROLL REVEAL (SMOOTH FADE-UP) ==================== */
.fade-up {
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-loaded .fade-up:not(.is-visible) {
  opacity: 0 !important;
  transform: translateY(50px) !important;
}
.js-loaded .fade-up.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Staggered entry for cards inside sections when visible */
.js-loaded .about.is-visible .about-card:nth-child(1) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both; }
.js-loaded .about.is-visible .about-card:nth-child(2) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both; }
.js-loaded .about.is-visible .about-card:nth-child(3) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both; }
.js-loaded .about.is-visible .about-card:nth-child(4) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both; }

.js-loaded .products.is-visible .prod-card:nth-child(1) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both; }
.js-loaded .products.is-visible .prod-card:nth-child(2) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both; }
.js-loaded .products.is-visible .prod-card:nth-child(3) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both; }

.js-loaded .categories.is-visible .cat-card:nth-child(1) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both; }
.js-loaded .categories.is-visible .cat-card:nth-child(2) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both; }
.js-loaded .categories.is-visible .cat-card:nth-child(3) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both; }
.js-loaded .categories.is-visible .cat-card:nth-child(4) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both; }
.js-loaded .categories.is-visible .cat-card:nth-child(5) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.48s both; }

.js-loaded .prod-process-section.is-visible .prod-step-card:nth-child(1) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both; }
.js-loaded .prod-process-section.is-visible .prod-step-card:nth-child(2) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.14s both; }
.js-loaded .prod-process-section.is-visible .prod-step-card:nth-child(3) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both; }
.js-loaded .prod-process-section.is-visible .prod-step-card:nth-child(4) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.30s both; }
.js-loaded .prod-process-section.is-visible .prod-step-card:nth-child(5) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both; }
.js-loaded .prod-process-section.is-visible .prod-step-card:nth-child(6) { animation: cardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.46s both; }

@keyframes cardIn {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}


/* ==================== BASE DESKTOP LAYOUT (HEADER & HERO) ==================== */
.desktop-2 {
  width: 100%;
  position: relative;
  background-color: #f0f0f0;
  overflow-x: clip;
  text-align: left;
  font-family: Inter, sans-serif;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 114px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 128px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-icon {
  width: 172px;
  height: 32px;
  object-fit: contain;
}
.menu2 {
  display: flex;
  align-items: center;
}
.div65 {
  display: flex;
  align-items: center;
  gap: 32px;
}
.menu-link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #000000 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.menu-link:hover,
.menu-link.active {
  color: #3f892c !important;
}
.menu-link:hover {
  opacity: 0.8;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.phone {
  text-decoration: none;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
}
.button5 {
  position: relative;
  width: 206px;
  height: 55px;
  background-color: #3f892c;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.button-child5 {
  display: none;
}
.button5:hover {
  background-color: #357a24;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(63, 137, 44, 0.32);
}
.button5:active {
  background-color: #2b681c;
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(63, 137, 44, 0.2);
}
.medcann3 {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 55px;
}
html {
  scrollbar-gutter: stable;
}

.burger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 51px;
  height: 34px;
  flex-shrink: 0;
}
.burger-icon {
  width: 51px;
  height: 34px;
  object-fit: contain;
}
.close-btn {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 51px !important;
  height: 34px !important;
  flex-shrink: 0;
}

/* Base Desktop Hero */
.hero {
  position: relative;
  width: 100%;
  height: 897px;
  margin-top: 114px;
  margin-bottom: 128px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero .back-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}
.flower-icon {
  position: absolute;
  bottom: 0;
  right: 82px;
  width: 80px;
  height: 391px;
  z-index: 3;
  object-fit: contain;
  object-position: bottom;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 4;
  padding-left: 128px;
  max-width: 1550px;
}
.hero .div61 {
  margin-bottom: 74px;
}
.hero .div62 {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.07em;
  font-weight: 300 !important;
  color: #ffffff;
}
.hero .div60 {
  margin-bottom: 52px;
}
.hero .cbd-2 {
  font-family: 'Neutral Face', sans-serif;
  font-weight: 300 !important;
  font-size: clamp(48px, 5.2vw, 100px);
  line-height: 1.04;
  letter-spacing: 0;
  color: #ffffff;
  text-transform: uppercase;
}
.cbd-title-line {
  display: block;
  white-space: nowrap;
}
.button4 {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  cursor: pointer;
}
.button4 .div15 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #ffffff;
}
.button-child3 {
  position: relative;
  width: 91px;
  height: 91px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.button4:hover .button-child3 {
  transform: scale(1.08);
}
.button-child4 {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Base Desktop About */
.about {
  width: calc(100% - 256px);
  max-width: 1664px;
  margin: 0 auto 128px auto;
  display: flex;
  flex-direction: column;
}
.about .h23 {
  margin-bottom: 24px;
}
.about .cbd- {
  font-family: 'Neutral Face', sans-serif;
  font-size: 60px;
  line-height: 70px;
  font-weight: 300 !important;
  letter-spacing: 0;
}
.about .text3 {
  margin-bottom: 48px;
  max-width: 1100px;
}
.about .div58 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  line-height: 36px;
  font-weight: 300 !important;
  letter-spacing: -0.07em;
  color: #191919;
}

.about-cards {
  	display: grid;
  	grid-template-columns: repeat(4, 1fr);
  	gap: 24px;
  	width: 100%;
  	align-items: stretch;
}
.about-card {
  	background: #ffffff;
  	border-radius: 20px;
  	padding: 40px 28px 44px 28px;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	text-align: center;
  	box-shadow: 0px 8px 24px rgba(45, 45, 45, 0.08);
  	transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  	cursor: pointer;
  	position: relative;
}
.about-card:hover {
  	transform: translateY(-12px);
  	box-shadow: 0px 16px 36px rgba(45, 45, 45, 0.18);
}
.about-card .icon-4 {
  	width: 172px;
  	height: 200px;
  	object-fit: contain;
  	margin-bottom: 24px;
  	transition: transform 0.4s ease;
}
.about-card:hover .icon-4 {
  	transform: scale(1.05);
}
.about-card .div51 {
  	font-family: 'Neutral Face', sans-serif !important;
  	font-weight: 300 !important;
  	letter-spacing: 0 !important;
  	font-size: 22px;
  	line-height: 1.3;
  	color: #000000;
  	margin-bottom: 16px;
  	min-height: 56px;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	transition: color 0.3s ease;
}
.about-card:hover .div51 {
  	color: #268b0d;
}
.about-card .div50 {
  	font-family: Inter, sans-serif;
  	font-size: 16px;
  	line-height: 24px;
  	color: #666666;
  	letter-spacing: -0.02em;
  	text-align: center;
}

/* ==================== SECTION 3: TIMELINE (CBD ПО ВСЕМУ МИРУ) ==================== */
.about-2 {
  	position: relative;
  	width: calc(100% - 256px);
  	max-width: 1664px;
  	min-height: 638px;
  	margin: 0 auto 128px auto;
  	border-radius: 30px;
  	overflow: hidden;
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
  	padding: 64px 84px;
  	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}
.timeline-bg-wrap {
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	border-radius: 30px;
  	overflow: hidden;
  	z-index: 1;
}
.timeline-video-bg {
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	object-fit: cover;
  	transform: scale(1.5);
  	transform-origin: center center;
  	z-index: 1;
}
.timeline-overlay {
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(10, 32, 16, 0.6) 100%);
  	z-index: 2;
  	pointer-events: none;
}
.bighead3 {
  	position: relative;
  	z-index: 3;
  	width: 520px;
  	font-size: 76px;
  	line-height: 1.08;
  	font-family: 'Neutral Face', sans-serif;
  	color: #fff;
}
.cbd-container {
  	position: relative;
  	width: 100%;
}
.cbd-highlight {
  	color: #4ade80;
  	font-size: 76px;
  	line-height: 1.08;
}
.span6 {
  	color: #fff;
  	font-size: 76px;
  	line-height: 1.08;
}
.timeline-grid {
  	position: relative;
  	z-index: 3;
  	display: grid;
  	grid-template-columns: 1fr 1fr;
  	gap: 48px 56px;
  	max-width: 820px;
  	width: 55%;
}
.timeline-item {
  	position: relative;
  	display: flex;
  	flex-direction: column;
}
.timeline-item .div68,
.timeline-item .cbd-2 {
  	font-size: 48px;
  	font-family: 'Neutral Face', sans-serif;
  	color: #fff;
  	line-height: 1;
  	margin: 0 0 14px 0;
  	letter-spacing: -0.02em;
}
.timeline-item .cbd8,
.timeline-item .wada,
.timeline-item .div67 {
  	font-size: 16px;
  	line-height: 24px;
  	font-family: Inter, sans-serif;
  	color: rgba(255, 255, 255, 0.95);
  	letter-spacing: -0.03em;
  	margin: 0;
}

/* ==================== SECTION 4: PRODUCT CATEGORIES ==================== */
.categories {
  	position: relative;
  	width: calc(100% - 256px);
  	max-width: 1664px;
  	min-height: auto;
  	margin: 128px auto 128px auto;
  	border-radius: 30px;
  	background-color: #ffffff;
  	padding: 80px 100px;
  	display: flex;
  	justify-content: space-between;
  	align-items: flex-start;
  	gap: 60px;
  	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}
.categories-left {
  	width: 420px;
  	flex-shrink: 0;
  	display: flex;
  	flex-direction: column;
}
.categories-header-group {
  	display: flex;
  	flex-direction: column;
  	gap: 24px;
}
.categories-title {
  	margin: 0;
  	font-family: 'Neutral Face', sans-serif;
  	font-weight: 300 !important;
  	font-size: 56px;
  	line-height: 1.1;
  	color: #000;
  	text-transform: uppercase;
}
.categories-subtitle {
  	margin: 0;
  	font-family: Inter, sans-serif;
  	font-size: 22px;
  	line-height: 32px;
  	color: #333;
  	letter-spacing: -0.03em;
  	max-width: 380px;
}
.categories-accordion {
  	flex: 1;
  	max-width: 1040px;
  	display: flex;
  	flex-direction: column;
  	margin-top: 4px;
}
.cat-accordion-item {
  	border-bottom: 1px solid #dbdbdb;
  	transition: border-color 0.3s ease;
}
.cat-accordion-item:first-child .cat-accordion-header {
  	padding-top: 0;
}
.cat-accordion-header {
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	padding: 24px 0;
  	min-height: 48px;
  	cursor: pointer;
  	user-select: none;
}
.cat-accordion-title {
  	font-family: Inter, sans-serif;
  	font-weight: 300 !important;
  	font-size: 32px;
  	line-height: 40px;
  	color: #111;
  	transition: color 0.25s ease;
  	letter-spacing: -0.05em;
  	text-transform: none;
  	margin: 0;
}
.cat-accordion-header:hover .cat-accordion-title,
.cat-accordion-item.active .cat-accordion-title {
  	color: #268b0d;
}
.cat-accordion-toggle {
  	width: 28px;
  	height: 28px;
  	position: relative;
  	flex-shrink: 0;
}
.cat-accordion-toggle::before {
  	content: '';
  	position: absolute;
  	top: 13px;
  	left: 0;
  	width: 28px;
  	height: 2px;
  	background-color: #268b0d;
}
.cat-accordion-toggle::after {
  	content: '';
  	position: absolute;
  	top: 0;
  	left: 13px;
  	width: 2px;
  	height: 28px;
  	background-color: #268b0d;
  	transition: opacity 0.3s ease, transform 0.3s ease;
}
.cat-accordion-item.active .cat-accordion-toggle::after {
  	opacity: 0;
  	transform: rotate(90deg);
}
.cat-accordion-body {
  	max-height: 0;
  	overflow: hidden;
  	opacity: 0;
  	display: flex;
  	justify-content: space-between;
  	align-items: flex-end;
  	gap: 40px;
  	padding-bottom: 0;
  	transform: translateY(8px);
  	transition: max-height 0.65s cubic-bezier(0.16, 1, 0.3, 1), 
  	            opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
  	            transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  	will-change: max-height, opacity, transform;
}
.cat-accordion-item.active .cat-accordion-body {
  	max-height: 1200px !important;
  	opacity: 1 !important;
  	transform: translateY(0) !important;
  	padding-top: 16px;
  	padding-bottom: 24px;
}
.cat-accordion-content {
  	max-width: 520px;
  	padding-bottom: 36px;
}
.cat-accordion-text {
  	font-family: Inter, sans-serif;
  	font-size: 16px;
  	line-height: 25px;
  	color: #333;
  	margin: 0 0 28px 0;
  	letter-spacing: -0.02em;
}
.cat-text-lead {
  	font-weight: 500;
  	color: #111;
}
.cat-accordion-btn {
  	display: inline-flex;
  	align-items: center;
  	justify-content: center;
  	padding: 14px 36px;
  	border-radius: 30px;
  	background-color: #268b0d;
  	color: #ffffff;
  	font-family: Inter, sans-serif;
  	font-size: 18px;
  	font-weight: 500;
  	text-decoration: none;
  	transition: background-color 0.25s ease, transform 0.25s ease;
}
.cat-accordion-btn:hover {
  	background-color: #1e700a;
  	transform: translateY(-2px);
}
.cat-accordion-media {
  	width: 320px;
  	height: 480px;
  	display: flex;
  	align-items: flex-end;
  	justify-content: center;
  	flex-shrink: 0;
  	align-self: flex-end;
  	margin-bottom: 0px;
  	line-height: 0;
}
.cat-accordion-img {
  	max-width: 100%;
  	max-height: 100%;
  	width: auto;
  	height: auto;
  	object-fit: contain;
  	display: block;
}

/* ==================== SECTION 5: ABOUT-3 (СЫРЬЕ №1) ==================== */
.about-3 {
  	position: relative;
  	width: calc(100% - 256px);
  	max-width: 1664px;
  	margin: 0 auto 128px auto;
  	border-radius: 30px;
  	overflow: hidden;
  	background-color: #ffffff;
  	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}
.about-3-hero {
  	position: relative;
  	width: 100%;
  	height: 680px;
  	overflow: hidden;
}
.about-3-bg {
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	object-fit: cover;
  	object-position: center 30%;
}
.about-3-hero-overlay {
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	background: linear-gradient(180deg, rgba(14, 22, 16, 0.72) 0%, rgba(14, 22, 16, 0.25) 45%, rgba(10, 18, 12, 0.88) 100%);
}
.about-3-hero-content {
  	position: relative;
  	z-index: 2;
  	height: 100%;
  	padding: 60px 80px 50px 80px;
  	display: flex;
  	flex-direction: column;
  	justify-content: space-between;
}
.about-3-taglines {
  	max-width: 820px;
  	display: flex;
  	flex-direction: column;
  	gap: 20px;
}
.about-3-tagline {
  	font-family: Inter, sans-serif;
  	font-size: 26px;
  	font-weight: 300 !important;
  	line-height: 1.35;
  	letter-spacing: -0.04em;
  	margin: 0;
}
.about-3-tagline-green {
  	color: #44bf57;
}
.about-3-tagline-white {
  	color: #ffffff;
  	opacity: 0.95;
}
.about-3-hero-title h1,
.about-3-hero-title h2 {
  	margin: 0;
  	font-family: 'Neutral Face', sans-serif;
  	font-weight: 300 !important;
  	font-size: 130px;
  	line-height: 0.95;
  	color: #ffffff;
  	text-transform: uppercase;
  	letter-spacing: -0.02em;
}
.about-3-bottom {
  	background-color: #ffffff;
  	display: flex;
  	justify-content: flex-start;
  	align-items: flex-start;
  	margin-top: 0;
  	padding: 70px 80px 100px 80px;
  	gap: 120px;
  	border-radius: 0 0 30px 30px;
}
.about-3-bottom-desc {
  	width: 360px;
  	flex-shrink: 0;
  	font-family: Inter, sans-serif;
  	font-size: 24px;
  	line-height: 36px;
  	color: #222222;
  	letter-spacing: -0.03em;
}
.about-3-items-grid {
  	flex: 1;
  	max-width: 1040px;
  	display: grid;
  	grid-template-columns: 1fr 1fr;
  	gap: 60px 80px;
}
.about-3-item {
  	display: flex;
  	flex-direction: column;
  	cursor: pointer;
}
.about-3-item-icon {
  	width: 48px;
  	height: 48px;
  	transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.about-3-item:hover .about-3-item-icon {
  	transform: rotate(360deg) scale(1.2);
}
.about-3-item-text {
  	font-family: 'Neutral Face', sans-serif !important;
  	font-weight: 300 !important;
  	font-size: 26px !important;
  	line-height: 1.3 !important;
  	color: #000000;
  	margin-top: 24px;
  	text-transform: uppercase !important;
  	letter-spacing: 0 !important;
  	transition: color 0.3s ease;
}
.about-3-item:hover .about-3-item-text {
  	color: #268b0d;
}

/* ==================== SECTION 6: PRODUCTS (ВЫПУСКАЕМЫЕ ПРОДУКТЫ) ==================== */
.products {
  	position: relative;
  	width: calc(100% - 256px);
  	max-width: 1664px;
  	margin: 0 auto 128px auto;
  	background: transparent;
  	padding: 0;
}
.products-header {
  	display: flex;
  	justify-content: space-between;
  	align-items: flex-start;
  	margin-bottom: 48px;
}
.products-title {
  	margin: 0;
  	font-family: 'Neutral Face', sans-serif;
  	font-weight: 300 !important;
  	font-size: 56px;
  	line-height: 1.1;
  	color: #000000;
  	text-transform: uppercase;
}
.products-header-right {
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	gap: 24px;
  	max-width: 440px;
}
.products-desc {
  	font-family: Inter, sans-serif;
  	font-size: 22px;
  	line-height: 32px;
  	color: #333333;
  	letter-spacing: -0.03em;
}
.products-more-btn {
  	display: inline-flex;
  	align-items: center;
  	gap: 16px;
  	text-decoration: none;
  	color: #000000;
  	font-family: Inter, sans-serif;
  	font-size: 20px;
  	font-weight: 500;
  	transition: color 0.25s ease;
}
.products-more-btn:hover {
  	color: #268b0d;
}
.products-more-circle {
  	width: 60px;
  	height: 60px;
  	border-radius: 50%;
  	background-color: #268b0d;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.products-more-btn:hover .products-more-circle {
  	transform: scale(1.08);
  	box-shadow: 0 6px 18px rgba(38, 139, 13, 0.35);
}
.products-more-circle img {
  	width: 20px;
  	height: 20px;
}

/* Products Grid & Enlarged Packaging Sitting at Bottom Edge */
.products-grid {
  	display: grid;
  	grid-template-columns: repeat(3, 1fr);
  	gap: 32px;
  	align-items: stretch;
}
.prod-card {
  	background: #ffffff;
  	border-radius: 30px;
  	padding: 24px;
  	border: 1px solid #eef2ed;
  	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  	transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  	cursor: pointer;
  	display: flex;
  	flex-direction: column;
  	justify-content: space-between;
  	text-decoration: none !important;
  	color: inherit;
}
.prod-card:hover {
  	transform: translateY(-20px);
  	box-shadow: 0px 20px 40px rgba(45, 45, 45, 0.16);
  	border-color: rgba(38, 139, 13, 0.35);
}
.prod-card:hover .prod-title {
  	color: #268b0d;
}
.prod-card:hover .prod-arrow {
  	background-color: #268b0d;
  	transform: scale(1.06);
}
.prod-card:hover .prod-arrow .arrow-svg {
  	filter: brightness(0) invert(1);
}
.prod-img-wrap {
  	width: 100%;
  	height: 440px;
  	border-radius: 20px;
  	overflow: hidden;
  	background-color: #d9e7d5;
  	display: flex;
  	align-items: flex-end;
  	justify-content: center;
  	padding: 0 16px;
}
.prod-img {
  	max-width: 96%;
  	max-height: 98%;
  	height: 96%;
  	width: auto;
  	object-fit: contain;
  	object-position: bottom center;
  	transition: transform 0.4s ease;
  	display: block;
}
.prod-card:hover .prod-img {
  	transform: scale(1.04);
}
.prod-info {
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	margin-top: 24px;
}
.prod-title {
  	margin: 0 0 6px 0;
  	font-family: 'Neutral Face', sans-serif;
  	font-weight: 300 !important;
  	font-size: 26px;
  	color: #000000;
  	transition: color 0.3s ease;
}
.prod-sub {
  	margin: 0;
  	font-family: Inter, sans-serif;
  	font-size: 18px;
  	color: #666666;
  	letter-spacing: -0.02em;
}
.prod-arrow {
  	width: 56px;
  	height: 56px;
  	border-radius: 50%;
  	background-color: #d9e7d5;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	transition: all 0.3s ease;
  	flex-shrink: 0;
}
.prod-arrow .arrow-svg {
  	width: 22px;
  	height: 22px;
  	transition: filter 0.3s ease;
}

/* ==================== SECTION 7: BLOG (ПИШЕМ О CBD ИНДУСТРИИ) ==================== */
.blog {
  	position: relative;
  	width: calc(100% - 256px);
  	max-width: 1664px;
  	margin: 0 auto 128px auto;
  	background: #ffffff;
  	border-radius: 30px;
  	overflow: hidden;
  	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  	display: flex;
  	flex-direction: column;
}
.blog-main {
  	padding: 60px 60px 40px 60px;
  	display: flex;
  	justify-content: space-between;
  	align-items: flex-start;
  	gap: 40px;
}
.blog-left {
  	width: clamp(260px, 22vw, 360px);
  	flex-shrink: 0;
}
.blog-title {
  	margin: 0;
  	font-family: 'Neutral Face', sans-serif;
  	font-weight: 300 !important;
  	font-size: clamp(36px, 3.2vw, 56px);
  	line-height: 1.1;
  	color: #000000;
  	text-transform: uppercase;
}
.blog-right {
  	flex: 1;
  	max-width: 1040px;
  	min-width: 0;
  	display: flex;
  	flex-direction: column;
  	gap: 36px;
}
.blog-row {
  	display: flex;
  	align-items: center;
  	gap: 30px;
  	padding: 16px 0;
  	border-bottom: 1px solid #f0f0f0;
  	cursor: pointer;
  	transition: all 0.3s ease;
}
.blog-row-img-wrap {
  	width: clamp(190px, 16vw, 280px);
  	aspect-ratio: 296 / 218;
  	height: auto;
  	border-radius: 15px;
  	overflow: hidden;
  	flex-shrink: 0;
  	background: #eef2ed;
  	transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.blog-row-img {
  	width: 100%;
  	height: 100%;
  	object-fit: cover;
}
.blog-row-content {
  	flex: 1 1 auto;
  	min-width: 0;
  	display: flex;
  	flex-direction: column;
  	gap: 12px;
}
.blog-row-title {
  	margin: 0;
  	font-family: Inter, sans-serif;
  	font-size: clamp(20px, 1.8vw, 30px);
  	font-weight: 300 !important;
  	line-height: 1.25;
  	color: #000000;
  	letter-spacing: -0.04em;
  	transition: color 0.3s ease;
  	overflow-wrap: break-word !important;
  	word-break: normal;
}
.blog-row-desc {
  	margin: 0;
  	font-family: Inter, sans-serif;
  	font-size: 15px;
  	line-height: 23px;
  	color: #555555;
  	letter-spacing: -0.02em;
  	overflow-wrap: break-word !important;
}
.blog-row-btn {
  	width: 125px;
  	height: 55px;
  	border-radius: 30px;
  	background: #d9e7d5;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	font-family: Inter, sans-serif;
  	font-size: 20px;
  	font-weight: 500;
  	color: #268b0d;
  	transition: all 0.3s ease;
  	margin-top: 6px;
}
/* Exact Figma Hover Effect */
.blog-row:hover .blog-row-title {
  	color: #268b0d;
}
.blog-row:hover .blog-row-img-wrap {
  	transform: rotate(-4.83deg) scale(1.04);
}
.blog-row:hover .blog-row-btn {
  	background: #268b0d;
  	color: #ffffff;
}

/* Centered More Button */
.blog-more-btn {
  	display: inline-flex;
  	align-items: center;
  	justify-content: center;
  	gap: 16px;
  	margin: 10px auto 50px auto;
  	align-self: center;
  	text-decoration: none;
  	color: #000000;
  	font-family: Inter, sans-serif;
  	font-size: 20px;
  	font-weight: 500;
  	transition: color 0.25s ease;
}
.blog-more-btn:hover {
  	color: #268b0d;
}
.blog-more-circle {
  	width: 60px;
  	height: 60px;
  	border-radius: 50%;
  	background: #d9e7d5;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  	flex-shrink: 0;
}
.blog-more-btn:hover .blog-more-circle {
  	background: #268b0d;
  	transform: scale(1.08);
}
.blog-more-circle img {
  	width: 25px;
  	height: 15px;
  	display: block;
  	margin: 0;
}
.blog-more-btn:hover .blog-more-circle img {
  	filter: brightness(0) invert(1);
}

/* Subscribe Banner with Figma Underline Input */
.blog-subscribe {
  	background: #146642;
  	padding: 60px 80px;
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	gap: 40px;
}
.subscribe-title {
  	font-family: 'Neutral Face', sans-serif;
  	font-size: 38px;
  	font-weight: 300 !important;
  	line-height: 1.15;
  	color: #ffffff;
  	text-transform: uppercase;
}
.subscribe-form {
  	display: flex;
  	align-items: center;
  	gap: 36px;
  	max-width: 780px;
  	flex: 1;
  	justify-content: flex-end;
}
.subscribe-input {
  	flex: 1;
  	max-width: 480px;
  	height: 48px;
  	background: transparent;
  	border: none;
  	border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  	border-radius: 0;
  	padding: 8px 0;
  	color: #ffffff;
  	font-family: Inter, sans-serif;
  	font-size: 20px;
  	outline: none;
  	transition: border-bottom-color 0.25s ease;
}
.subscribe-input::placeholder {
  	color: rgba(255, 255, 255, 0.55);
}
.subscribe-input:focus {
  	border-bottom-color: #ffffff;
}
.subscribe-btn {
  	height: 60px;
  	padding: 0 44px;
  	background: #ffffff;
  	color: #268b0d;
  	border: none;
  	border-radius: 100px;
  	font-family: Inter, sans-serif;
  	font-size: 18px;
  	font-weight: 500;
  	cursor: pointer;
  	transition: all 0.25s ease;
  	white-space: nowrap;
}
.subscribe-btn:hover {
  	background: #d9e7d5;
}

/* ==================== SECTION 8: FAQ (ЧАСТЫЕ ВОПРОСЫ) ==================== */
.faq {
  	position: relative;
  	width: calc(100% - 256px);
  	max-width: 1664px;
  	margin: 0 auto;
}
.faq-layout {
  	display: flex;
  	justify-content: space-between;
  	align-items: flex-start;
  	gap: 60px;
}
.faq-left {
  	width: 420px;
  	flex-shrink: 0;
}
.faq-title {
  	margin: 0;
  	font-family: 'Neutral Face', sans-serif;
  	font-weight: 300 !important;
  	font-size: 56px;
  	line-height: 1.1;
  	color: #000000;
  	text-transform: uppercase;
}
.faq-right {
  	flex: 1;
  	max-width: 1040px;
  	display: flex;
  	flex-direction: column;
}
.faq-accordion {
  	display: flex;
  	flex-direction: column;
}
.faq-item {
  	border-bottom: 1px solid #dbdbdb;
  	transition: border-color 0.3s ease;
}
.faq-item:first-child .faq-header {
  	padding-top: 0;
}
.faq-header {
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	padding: 24px 0;
  	min-height: 48px;
  	cursor: pointer;
  	user-select: none;
}
.faq-question {
  	font-family: Inter, sans-serif;
  	font-weight: 300 !important;
  	font-size: 28px;
  	line-height: 38px;
  	color: #111111;
  	transition: color 0.25s ease;
  	letter-spacing: -0.04em;
  	margin: 0;
}
.faq-header:hover .faq-question,
.faq-item.active .faq-question {
  	color: #268b0d;
}
.faq-toggle {
  	width: 28px;
  	height: 28px;
  	position: relative;
  	flex-shrink: 0;
}
.faq-toggle::before {
  	content: '';
  	position: absolute;
  	top: 13px;
  	left: 0;
  	width: 28px;
  	height: 2px;
  	background-color: #268b0d;
}
.faq-toggle::after {
  	content: '';
  	position: absolute;
  	top: 0;
  	left: 13px;
  	width: 2px;
  	height: 28px;
  	background-color: #268b0d;
  	transition: opacity 0.3s ease, transform 0.3s ease;
}
.faq-item.active .faq-toggle::after {
  	opacity: 0;
  	transform: rotate(90deg);
}
.faq-body {
  	max-height: 0;
  	overflow: hidden;
  	opacity: 0;
  	transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}
.faq-item.active .faq-body {
  	max-height: 600px;
  	opacity: 1;
}
.faq-answer {
  	padding: 0 0 28px 0;
  	font-family: Inter, sans-serif;
  	font-size: 18px;
  	line-height: 28px;
  	color: #444444;
  	letter-spacing: -0.02em;
  	text-align: left;
}
.faq-answer p {
  	margin: 0 0 12px 0;
}
.faq-answer p:last-child {
  	margin-bottom: 0;
}
.faq-bottom {
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
  	margin-top: 48px;
  	padding-top: 32px;
}
.faq-bottom-text {
  	font-family: Inter, sans-serif;
  	font-size: 20px;
  	color: #666666;
  	letter-spacing: -0.02em;
}
.faq-bottom-btn {
  	height: 54px;
  	padding: 0 36px;
  	border-radius: 45px;
  	background-color: #268b0d;
  	color: #ffffff;
  	font-family: Inter, sans-serif;
  	font-size: 18px;
  	font-weight: 500;
  	border: none;
  	cursor: pointer;
  	transition: background-color 0.25s ease, transform 0.25s ease;
}
.faq-bottom-btn:hover {
  	background-color: #1e700a;
  	transform: translateY(-2px);
}

/* ==================== SECTION 9: FOOTER ==================== */
.footer {
  	position: relative;
  	width: 100% !important;
  	max-width: 100% !important;
  	margin: 128px 0 0 0 !important;
  	border-radius: 0 !important;
  	border-bottom-left-radius: 0 !important;
  	border-bottom-right-radius: 0 !important;
  	border-top-left-radius: 0 !important;
  	border-top-right-radius: 0 !important;
  	background-color: #191919;
  	padding: 80px 128px 40px 128px;
  	font-family: 'Inter', sans-serif;
  	color: #6b6b6b;
  	display: flex;
  	flex-direction: column;
  	box-sizing: border-box !important;
}
.footer-top {
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	padding-bottom: 40px;
  	width: 100%;
}
.footer-partners {
  	display: flex;
  	align-items: center;
  	gap: 50px;
  	flex-wrap: wrap;
}
.partner-logo-item img {
  	height: 38px;
  	width: auto;
  	max-width: 180px;
  	object-fit: contain;
  	filter: brightness(0) invert(1);
  	opacity: 0.9;
  	transition: opacity 0.3s ease;
}
.partner-logo-item:hover img {
  	opacity: 1;
}
.footer-partner-btn {
  	height: 54px;
  	padding: 0 36px;
  	border-radius: 999px;
  	background: #ffffff;
  	color: #000000;
  	font-family: 'Inter', sans-serif;
  	font-size: 17px;
  	font-weight: 500;
  	border: none;
  	cursor: pointer;
  	transition: all 0.25s ease;
  	letter-spacing: -0.04em;
  	white-space: nowrap;
  	flex-shrink: 0;
}
.footer-partner-btn:hover {
  	background: #3f892c;
  	color: #ffffff;
}
.footer-divider {
  	width: 100%;
  	height: 1px;
  	background: rgba(255, 255, 255, 0.1);
  	margin: 0 0 50px 0;
}
.footer-main {
  	display: flex;
  	justify-content: space-between;
  	align-items: flex-start;
  	gap: 60px;
  	margin-bottom: 50px;
  	width: 100%;
}
.footer-menu {
  	display: flex;
  	gap: 50px;
  	flex-wrap: wrap;
}
.footer-col {
  	display: flex;
  	flex-direction: column;
  	gap: 16px;
}
.footer-col-title {
  	font-family: 'Neutral Face', sans-serif !important;
  	font-weight: 300 !important;
  	font-size: 22px;
  	line-height: 26px;
  	color: #888888;
  	margin-bottom: 12px;
  	text-transform: uppercase;
}
.footer-col-links {
  	display: flex;
  	flex-direction: column;
  	gap: 14px;
}
.footer-col-links a {
  	font-family: 'Inter', sans-serif;
  	font-size: 15px;
  	line-height: 22px;
  	color: #ffffff;
  	opacity: 0.75;
  	text-decoration: none;
  	letter-spacing: -0.04em;
  	transition: opacity 0.2s ease, color 0.2s ease;
}
.footer-col-links a:hover,
.footer-col-links a.footer-assoc-link:hover {
  	color: #3f892c;
  	opacity: 1;
}
.footer-contacts {
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	gap: 18px;
  	width: 320px;
  	flex-shrink: 0;
}
.footer-phone {
  	font-family: 'Neutral Face', sans-serif !important;
  	font-size: 28px;
  	line-height: 34px;
  	font-weight: 300 !important;
  	color: #ffffff;
  	text-decoration: none;
  	transition: color 0.2s ease;
}
.footer-phone:hover {
  	color: #3f892c;
}
.footer-address {
  	font-family: 'Inter', sans-serif;
  	font-size: 15px;
  	line-height: 24px;
  	color: #ffffff;
  	opacity: 0.85;
  	letter-spacing: -0.04em;
}
.footer-socials {
  	margin-top: 8px;
  	display: flex;
  	align-items: center;
  	gap: 16px;
}
.footer-social-link {
  	color: #ffffff;
  	display: inline-flex;
  	align-items: center;
  	justify-content: center;
  	text-decoration: none;
  	transition: color 0.25s ease, transform 0.25s ease;
}
.footer-social-link:hover {
  	color: #268b0d;
  	transform: translateY(-2px);
}
.footer-social-link svg {
  	display: block;
}
.footer-bottom {
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	padding-top: 36px;
  	border-top: 1px solid rgba(255, 255, 255, 0.08);
  	font-family: 'Inter', sans-serif;
  	font-size: 14px;
  	color: #6b6b6b;
  	width: 100%;
}
.footer-credits {
  	display: flex;
  	align-items: center;
  	gap: 16px;
  	flex-wrap: wrap;
}
.footer-disclaimer-text {
  	letter-spacing: -0.04em;
}
.footer-more-link {
  	color: #3f892c;
  	text-decoration: none;
}
.footer-more-link:hover {
  	text-decoration: underline;
}
.footer-copy {
  	color: #6b6b6b;
  	margin-left: 16px;
}
.footer-payments img {
  	height: 24px;
  	width: auto;
  	display: block;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (AS IN B2B.THECBD.RU: LAPTOP, TABLET, MOBILE)
   ========================================================================== */

/* Laptop / Small Desktop (1200px - 1440px) */
@media (max-width: 1440px) {
  	.header, .footer {
    		padding-left: 80px;
    		padding-right: 80px;
  	}
  	.hero-content {
    		padding-left: 80px;
    		padding-right: 80px;
  	}
  	.about, .about-2, .categories, .about-3, .products, .blog, .faq {
    		width: calc(100% - 160px);
  	}
  	.drop-menu-content {
    		padding: 50px 80px;
  	}
  	.hero {
    		min-height: 800px;
    		padding-left: 0 !important;
    		padding-right: 0 !important;
  	}
  	.cbd-2 {
    		font-size: 64px;
  	}
  	.about-3-hero-title h1 {
    		font-size: 100px;
  	}
  	.blog-main {
    		flex-direction: column !important;
    		padding: 48px 48px 30px 48px !important;
    		gap: 36px !important;
  	}
  	.blog-left {
    		width: 100% !important;
  	}
  	.blog-title {
    		font-size: 44px !important;
  	}
  	.blog-right {
    		width: 100% !important;
    		max-width: 100% !important;
  	}
  	.blog-row {
    		width: 100% !important;
    		gap: 28px !important;
  	}
  	.blog-row-img-wrap {
    		width: 240px !important;
    		height: 175px !important;
    		flex-shrink: 0 !important;
  	}
  	.blog-row-content {
    		flex: 1 1 auto !important;
    		min-width: 0 !important;
  	}
  	.blog-row-title {
    		font-size: 24px !important;
    		overflow-wrap: break-word !important;
  	}
  	.blog-subscribe {
    		padding: 40px 60px;
  	}
}

/* Tablet Landscape / Netbook (992px - 1199px) */
@media (max-width: 1199px) {
  	.header, .footer {
    		padding-left: 48px;
    		padding-right: 48px;
  	}
  	.hero-content {
    		padding-left: 48px;
    		padding-right: 48px;
  	}
  	.about, .about-2, .categories, .about-3, .products, .blog, .faq {
    		width: calc(100% - 96px);
    		margin-bottom: 96px;
  	}
  	.drop-menu-content {
    		padding: 40px 48px;
  	}
  	.footer {
    		margin-top: 96px;
  	}
  	.div65 {
    		gap: 18px;
  	}
  	.menu-link {
    		font-size: 16px;
  	}
  	.phone {
    		font-size: 17px;
  	}
  	.button5 {
    		width: 170px;
    		height: 48px;
  	}
  	.button-child5 {
    		width: 170px;
    		height: 48px;
  	}
  	.button5 .medcann3 {
    		line-height: 48px;
    		font-size: 14px;
  	}
  	.hero {
    		min-height: 720px;
    		margin-bottom: 96px;
  	}
  	.cbd-2 {
    		font-size: 56px;
  	}
  	.div62 {
    		font-size: 22px;
    		line-height: 30px;
  	}
  	.about-cards {
    		grid-template-columns: repeat(2, 1fr);
    		gap: 20px;
  	}
  	.about-2 {
    		flex-direction: column;
    		align-items: flex-start;
    		gap: 40px;
    		padding: 48px 56px;
  	}
  	.bighead3 {
    		width: 100%;
    		font-size: 56px;
  	}
  	.cbd-highlight, .span6 {
    		font-size: 56px;
  	}
  	.timeline-grid {
    		width: 100%;
    		max-width: 100%;
  	}
  	.categories {
    		padding: 60px 60px;
    		gap: 40px;
  	}
  	.categories-left {
    		width: 320px;
  	}
  	.categories-title {
    		font-size: 44px;
  	}
  	.about-3-hero-title h1 {
    		font-size: 80px;
  	}
  	.about-3-bottom {
    		background-color: #ffffff;
    		padding: 50px 60px 70px 60px;
    		gap: 40px;
  	}
  	.about-3-bottom-desc {
    		width: 320px;
    		font-size: 20px;
    		line-height: 30px;
  	}
  	.products-grid {
    		gap: 20px;
  	}
  	.prod-img-wrap {
    		height: 380px;
  	}
  	.blog-main {
    		flex-direction: column !important;
    		padding: 48px 36px !important;
    		gap: 32px !important;
  	}
  	.blog-left {
    		width: 100% !important;
  	}
  	.blog-title {
    		font-size: 40px !important;
  	}
  	.blog-right {
    		width: 100% !important;
    		max-width: 100% !important;
  	}
  	.blog-row {
    		width: 100% !important;
    		gap: 28px !important;
  	}
  	.blog-row-img-wrap {
    		width: 220px !important;
    		height: 160px !important;
    		flex-shrink: 0 !important;
  	}
  	.blog-row-content {
    		flex: 1 1 auto !important;
    		min-width: 0 !important;
  	}
  	.blog-row-title {
    		font-size: clamp(20px, 2.2vw, 26px) !important;
  	}
  	.faq-left {
    		width: 320px;
  	}
  	.faq-title {
    		font-size: 44px;
  	}
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
  	.header {
    		height: 90px;
    		padding: 0 32px;
  	}
  	.menu2 {
    		display: none;
  	}
  	.phone {
    		display: none;
  	}
  	.dark-overlay {
    		top: 90px;
    		height: calc(100vh - 90px);
  	}
  	.drop-menu {
    		top: 90px;
    		height: auto;
    		max-height: calc(100vh - 90px);
    		overflow-y: auto;
  	}
  	.drop-menu-content {
    		flex-direction: column;
    		padding: 40px 32px;
    		gap: 40px;
  	}
  	.drop-menu-right {
    		align-items: flex-start;
    		max-width: 100%;
    		gap: 28px;
  	}
  	.drop-menu .phone-block {
    		text-align: left;
  	}
  	.drop-menu .phone-number {
    		font-size: 40px;
    		line-height: 48px;
  	}
  	.hero {
    		margin-top: 90px;
    		padding: 60px 0;
    		min-height: 640px;
    		margin-bottom: 80px;
  	}
  	.hero-content {
    		padding-left: 32px;
    		padding-right: 32px;
  	}
  	.flower-icon {
    		display: none;
  	}
  	.about, .about-2, .categories, .about-3, .products, .blog, .faq {
    		width: calc(100% - 64px);
    		margin-bottom: 80px;
  	}
  	.footer {
    		margin-top: 80px;
    		padding: 60px 32px 40px 32px;
  	}
  	.cbd-2 {
    		font-size: 48px;
  	}
  	.div62 {
    		font-size: 20px;
    		line-height: 28px;
  	}
  	.button4 .button-child3 {
    		width: 60px;
    		height: 60px;
  	}
  	.cbd- {
    		font-size: 42px;
    		line-height: 1.2;
  	}
  	.text3 {
    		margin-bottom: 40px;
  	}
  	.about-2 {
    		padding: 40px 36px;
  	}
  	.bighead3 {
    		font-size: 48px;
  	}
  	.cbd-highlight, .span6 {
    		font-size: 48px;
  	}
  	.categories {
    		flex-direction: column;
    		padding: 50px 36px;
    		gap: 32px;
  	}
  	.categories-left {
    		width: 100%;
  	}
  	.categories-accordion {
    		width: 100%;
    		max-width: 100%;
  	}
  	.cat-accordion-body {
    		flex-direction: column-reverse;
    		align-items: flex-start;
    		gap: 20px;
  	}
  	.cat-accordion-item.active .cat-accordion-body {
    		max-height: 800px;
  	}
  	.cat-accordion-media {
    		width: 100%;
    		height: 320px;
    		align-self: center;
  	}
  	.about-3-hero {
    		height: 560px;
  	}
  	.about-3-hero-content {
    		padding: 40px 36px;
  	}
  	.about-3-hero-title h1 {
    		font-size: 64px;
    		line-height: 1;
  	}
  	.about-3-tagline {
    		font-size: 22px;
  	}
  	.about-3-bottom {
    		background-color: #ffffff;
    		flex-direction: column;
    		padding: 40px 36px 60px 36px;
    		gap: 32px;
  	}
  	.about-3-bottom-desc {
    		width: 100%;
  	}
  	.about-3-items-grid {
    		width: 100%;
    		max-width: 100%;
    		gap: 36px 32px;
  	}
  	.products-header {
    		flex-direction: column;
    		gap: 24px;
  	}
  	.products-title {
    		font-size: 44px;
  	}
  	.products-grid {
    		grid-template-columns: 1fr;
    		gap: 28px;
  	}
  	.prod-img-wrap {
    		height: 400px;
  	}
  	.blog-main {
    		flex-direction: column;
    		padding: 40px 36px;
    		gap: 32px;
  	}
  	.blog-left {
    		width: 100%;
  	}
  	.blog-title {
    		font-size: 44px;
  	}
  	.blog-right {
    		width: 100%;
    		max-width: 100%;
  	}
  	.blog-subscribe {
    		flex-direction: column;
    		align-items: flex-start;
    		padding: 40px 36px;
    		gap: 28px;
  	}
  	.subscribe-form {
    		width: 100%;
    		max-width: 100%;
    		justify-content: flex-start;
    		flex-wrap: wrap;
  	}
  	.subscribe-input {
    		max-width: 100%;
  	}
  	.faq-layout {
    		flex-direction: column;
    		gap: 32px;
  	}
  	.faq-left {
    		width: 100%;
  	}
  	.faq-title {
    		font-size: 44px;
  	}
  	.faq-right {
    		width: 100%;
    		max-width: 100%;
  	}
  	.footer-top {
    		flex-direction: column;
    		align-items: flex-start;
    		gap: 28px;
  	}
  	.footer-partners {
    		flex-wrap: wrap;
    		gap: 32px;
  	}
  	.footer-main {
    		flex-direction: column;
    		gap: 40px;
  	}
  	.footer-menu {
    		flex-wrap: wrap;
    		gap: 40px 60px;
  	}
}

/* Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
  	.header {
    		height: 72px;
    		padding: 0 16px;
    		box-sizing: border-box;
    		max-width: 100vw;
  	}
  	.logo-icon {
    		width: clamp(115px, 30vw, 140px);
    		height: auto;
    		flex-shrink: 0;
  	}
  	.header-right {
    		gap: 8px;
    		display: flex;
    		align-items: center;
  	}
  	.button5 {
    		width: auto;
    		min-width: 0;
    		height: 36px;
    		padding: 0 12px;
    		border-radius: 999px;
    		flex-shrink: 0;
  	}
  	.button-child5 {
    		width: 100%;
    		height: 100%;
    		border-radius: 999px;
  	}
  	.button5 .medcann3 {
    		line-height: 36px;
    		font-size: 12px;
    		white-space: nowrap;
    		padding: 0;
  	}
  	.burger-btn {
    		width: 40px;
    		height: 40px;
    		flex-shrink: 0;
    		display: flex;
    		align-items: center;
    		justify-content: center;
  	}
  	.dark-overlay {
    		top: 72px;
    		height: calc(100vh - 72px);
  	}
  	.drop-menu {
    		top: 72px;
    		max-height: calc(100vh - 72px);
  	}
  	.drop-menu-content {
    		padding: 30px 20px;
    		gap: 32px;
  	}
  	.drop-menu .menu {
    		gap: 16px;
  	}
  	.drop-menu-link {
    		font-size: 26px;
  	}
  	.drop-menu .phone-label {
    		font-size: 18px;
    		line-height: 26px;
  	}
  	.drop-menu .phone-number {
    		font-size: 32px;
    		line-height: 38px;
  	}
  	.drop-menu-btn {
    		width: 100%;
    		height: 56px;
    		font-size: 17px;
  	}
  	.hero {
    		margin-top: 76px;
    		padding: 40px 20px;
    		min-height: 540px;
    		margin-bottom: 64px;
  	}
  	.about, .about-2, .categories, .about-3, .products, .blog, .faq {
    		width: calc(100% - 32px);
    		margin-bottom: 64px;
  	}
  	.footer {
    		margin-top: 64px;
    		padding: 48px 20px 32px 20px;
  	}
  	.cbd-2 {
    		font-size: 36px;
    		line-height: 1.1;
  	}
  	.div62 {
    		font-size: 17px;
    		line-height: 24px;
  	}
  	.button4 {
    		gap: 16px;
  	}
  	.button4 .button-child3 {
    		width: 52px;
    		height: 52px;
  	}
  	.button-child4 {
    		width: 14px;
    		height: 14px;
  	}
  	.div15 {
    		font-size: 17px;
  	}
  	.cbd- {
    		font-size: 30px;
    		line-height: 1.2;
  	}
  	.div58 {
    		font-size: 16px;
    		line-height: 26px;
  	}
  	.about-cards {
    		grid-template-columns: 1fr;
    		gap: 16px;
  	}
  	.about-card {
    		padding: 32px 20px 36px 20px;
    		border-radius: 20px;
  	}
  	.about-card .icon-4 {
    		width: 130px;
    		height: 150px;
    		margin-bottom: 20px;
  	}
  	.about-card .div51 {
    		font-size: 18px;
    		min-height: auto;
  	}
  	.about-2 {
    		padding: 32px 20px;
    		border-radius: 20px;
  	}
  	.bighead3 {
    		font-size: 36px;
  	}
  	.cbd-highlight, .span6 {
    		font-size: 36px;
  	}
  	.timeline-grid {
    		grid-template-columns: 1fr;
    		gap: 28px;
  	}
  	.timeline-item .div68 {
    		font-size: 36px;
  	}
  	.categories {
    		padding: 36px 20px;
    		border-radius: 20px;
  	}
  	.categories-title {
    		font-size: 32px;
  	}
  	.categories-subtitle {
    		font-size: 17px;
    		line-height: 26px;
  	}
  	.cat-accordion-title {
    		font-size: 22px;
    		line-height: 30px;
  	}
  	.cat-accordion-header {
    		padding: 18px 0;
  	}
  	.cat-accordion-media {
    		height: 260px;
  	}
  	.cat-accordion-btn {
    		width: 100%;
    		padding: 14px 24px;
  	}
  	.about-3 {
    		border-radius: 20px;
  	}
  	.about-3-hero {
    		height: 480px;
  	}
  	.about-3-hero-content {
    		padding: 32px 20px 24px 20px;
  	}
  	.about-3-hero-title h1 {
    		font-size: 44px;
  	}
  	.about-3-tagline {
    		font-size: 18px;
  	}
  	.about-3-bottom {
    		background-color: #ffffff;
    		padding: 32px 20px 48px 20px;
    		border-radius: 0 0 20px 20px;
  	}
  	.about-3-bottom-desc {
    		font-size: 17px;
    		line-height: 26px;
  	}
  	.about-3-items-grid {
    		grid-template-columns: 1fr;
    		gap: 28px;
  	}
  	.about-3-item-text {
    		font-size: 18px !important;
    		margin-top: 14px;
  	}
  	.products-title {
    		font-size: 32px;
  	}
  	.products-desc {
    		font-size: 17px;
    		line-height: 26px;
  	}
  	.prod-card {
    		padding: 18px;
    		border-radius: 20px;
  	}
  	.prod-img-wrap {
    		height: 320px;
    		border-radius: 16px;
  	}
  	.prod-title {
    		font-size: 22px;
  	}
  	.prod-sub {
    		font-size: 16px;
  	}
  	.blog {
    		border-radius: 20px;
  	}
  	.blog-main {
    		padding: 32px 20px;
  	}
  	.blog-title {
    		font-size: 32px;
  	}
  	.blog-row {
    		flex-direction: column;
    		align-items: flex-start;
    		gap: 16px;
  	}
  	.blog-row-img-wrap {
    		width: 100%;
    		height: 200px;
  	}
  	.blog-row-title {
    		font-size: 20px;
    		line-height: 28px;
  	}
  	.blog-row-desc {
    		font-size: 15px;
    		line-height: 22px;
  	}
  	.blog-subscribe {
    		padding: 32px 20px;
  	}
  	.subscribe-title {
    		font-size: 26px;
  	}
  	.subscribe-form {
    		flex-direction: column;
    		align-items: stretch;
    		gap: 20px;
  	}
  	.subscribe-input {
    		width: 100%;
    		font-size: 17px;
  	}
  	.subscribe-btn {
    		width: 100%;
    		height: 52px;
    		font-size: 16px;
  	}
  	.faq-title {
    		font-size: 32px;
  	}
  	.faq-question {
    		font-size: 20px;
    		line-height: 28px;
  	}
  	.faq-answer {
    		font-size: 15px;
    		line-height: 24px;
  	}
  	.faq-bottom {
    		flex-direction: column;
    		align-items: stretch;
    		gap: 16px;
    		text-align: center;
  	}
  	.faq-bottom-btn {
    		width: 100%;
  	}
  	.footer {
    		padding: 48px 16px 32px 16px !important;
    		box-sizing: border-box !important;
    		overflow: hidden;
  	}
  	.footer-top {
    		flex-direction: column;
    		align-items: flex-start;
    		gap: 24px;
    		width: 100%;
  	}
  	.footer-partners {
    		gap: 16px;
    		justify-content: flex-start;
    		width: 100%;
  	}
  	.footer-partner-btn {
    		width: 100%;
  	}
  	.footer-menu {
    		flex-direction: column;
    		gap: 28px;
    		width: 100%;
  	}
  	.footer-contacts {
    		width: 100%;
  	}
  	.footer-phone {
    		font-size: 24px !important;
    		line-height: 30px !important;
  	}
  	.footer-bottom {
    		flex-direction: column;
    		align-items: flex-start;
    		gap: 16px;
    		width: 100%;
  	}
  	.footer-copy {
    		margin-left: 0;
  	}
  	.footer-payments {
    		max-width: 100% !important;
    		width: 100% !important;
    		overflow: hidden;
  	}
  	.footer-payments img {
    		max-width: 100% !important;
    		height: auto !important;
    		display: block;
  	}
}


.highlight-box {
  background-color: #d9e7d5 !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  display: inline !important;
  color: #000000 !important;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}


/* ==================== PHONE HANDSET ICON AT 1173PX ==================== */
.phone-handset-icon {
  display: none;
}

@media (max-width: 1173px) {
  .phone-handset-icon {
    display: block;
    width: 22px;
    height: 22px;
  }
  .phone-text {
    display: none;
  }
  .header {
    padding-left: 36px;
    padding-right: 36px;
  }
  .div65 {
    gap: 18px;
  }
  .menu-link {
    font-size: 15px;
  }
  .about-3-hero-title h1 {
    font-size: 70px !important; /* Reduced by 10px */
  }
}

/* ==================== GLOBAL TYPOGRAPHY REFINEMENTS ==================== */
body, html, p, span, a, div, input, button, label {
  font-family: 'Inter', sans-serif;
  font-weight: 300 !important;
  letter-spacing: -0.07em;
}

h1, h2, h3, h4, h5, h6,
.h23 h2, .cbd-, .cbd-2, .products-title, .categories-title, .blog-title, .faq-title,
.about-3-hero-title h1, .bighead3, .timeline-item .div68,
.footer-col-title, .footer-phone, .prod-title, .div51, .about-card .div51 {
  font-family: 'Neutral Face', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
}

.blog-row-btn {
  font-size: 18px !important;
  letter-spacing: -0.07em !important;
}

/* ==================== MOBILE HERO & SECTIONS ==================== */
@media (max-width: 1199px) {
  .hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-radius: 0 !important;
  }
  .hero-content {
    padding-left: 48px !important;
    padding-right: 48px !important;
    max-width: 100% !important;
  }
}

@media (max-width: 991px) {
  .hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-radius: 0 !important;
    margin-top: 80px !important;
    min-height: 580px !important;
    height: auto !important;
  }
  .hero-content {
    padding-left: 32px !important;
    padding-right: 32px !important;
    width: 100% !important;
  }
  .hero .div61 {
    margin-bottom: 40px !important;
  }
  .hero .div62 {
    font-size: 20px !important;
    line-height: 28px !important;
  }
  .hero .div60 {
    margin-bottom: 32px !important;
  }
  .hero .cbd-2 {
    font-size: clamp(32px, 5vw, 48px) !important;
  }
}

@media (max-width: 767px) {
  .hero {
    position: relative !important;
    width: 100% !important;
    min-height: calc(100svh - 70px) !important;
    height: auto !important;
    margin-top: 70px !important;
    margin-bottom: 48px !important;
    padding: 36px 20px 48px 20px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    overflow: hidden !important;
  }
  .hero .back-icon {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1 !important;
  }
  .hero::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 100%) !important;
    z-index: 2 !important;
  }
  .flower-icon {
    display: block !important;
    position: absolute !important;
    bottom: 0 !important;
    right: 8px !important;
    height: 140px !important;
    width: auto !important;
    z-index: 3 !important;
    pointer-events: none !important;
    opacity: 0.65 !important;
  }
  .hero-content {
    position: relative !important;
    z-index: 4 !important;
    margin-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .hero .div61 {
    margin-bottom: 32px !important;
    width: 100% !important;
  }
  .hero .div62 {
    font-size: 16px !important;
    line-height: 22px !important;
    letter-spacing: -0.04em !important;
    color: #ffffff !important;
    font-weight: 300 !important;
    font-family: 'Inter', sans-serif !important;
    text-align: left !important;
  }
  .hero .div60 {
    margin-bottom: 28px !important;
    width: 100% !important;
  }
  .hero .cbd-2 {
    font-size: clamp(24px, 6.8vw, 34px) !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
    color: #ffffff !important;
    font-weight: 300 !important;
    font-family: 'Neutral Face', sans-serif !important;
    text-transform: uppercase !important;
    text-align: left !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    margin: 0 !important;
  }
  .cbd-title-line {
    display: block !important;
    white-space: normal !important;
    word-break: normal !important;
  }
  .button4 {
    margin-top: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
  }
  .button4 .button-child3 {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .button4 .button-child4 {
    width: 14px !important;
    height: 14px !important;
  }
  .button4 .div15 {
    font-size: 16px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
  }

  /* Section 2 (About) Left Alignment */
  .about {
    align-items: flex-start !important;
    text-align: left !important;
  }
  .about .h23 {
    text-align: left !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }
  .about .cbd- {
    font-size: 32px !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    font-weight: 300 !important;
    text-align: left !important;
    text-transform: none !important;
  }
  .about .text3 {
    text-align: left !important;
    margin-left: 0 !important;
    margin-bottom: 36px !important;
    width: 100% !important;
  }
  .about .div58 {
    font-size: 22px !important;
    line-height: 32px !important;
    letter-spacing: -0.07em !important;
    font-weight: 300 !important;
    text-align: left !important;
  }
  .about-card {
    align-items: flex-start !important;
    text-align: left !important;
  }
  .about-card .icon-4 {
    height: 92px !important;
    width: auto !important;
    margin-bottom: 16px !important;
  }
  .about-card .div51 {
    text-align: left !important;
    justify-content: flex-start !important;
    font-size: 18px !important;
    min-height: auto !important;
  }
  .about-card .div50 {
    text-align: left !important;
    font-size: 16px !important;
    letter-spacing: -0.07em !important;
  }

  /* Section 3 (Timeline) */
  .timeline-item .div68 {
    font-size: 32px !important;
    letter-spacing: 0 !important;
  }
  .timeline-item .cbd8, .timeline-item .wada, .timeline-item .div67 {
    font-size: 18px !important;
    line-height: 25px !important;
    letter-spacing: -0.07em !important;
  }

  /* Section 4 (Categories) */
  .cat-accordion-title {
    font-size: 24px !important;
    text-transform: none !important;
    letter-spacing: -0.07em !important;
  }
  .cat-accordion-text {
    font-size: 18px !important;
    line-height: 26px !important;
    letter-spacing: -0.07em !important;
  }

  /* Section 6 (Products): Horizontal Scroll & Reduced Height */
  .products-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding: 10px 4px 20px 4px !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100% !important;
  }
  .prod-card {
    flex: 0 0 300px !important;
    min-width: 280px !important;
    max-width: 320px !important;
    scroll-snap-align: start !important;
  }
  .prod-img-wrap {
    height: 280px !important;
    padding: 0 8px !important;
  }
  .prod-img {
    max-width: 98% !important;
    height: 98% !important;
  }
}

/* ==================== CLEAN MOBILE HEADER (430PX) ==================== */
@media (max-width: 767px) {
  .header {
    height: 70px !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .logo-icon {
    width: 135px !important;
    height: 24px !important;
  }
  .header-right {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .header-right .phone {
    display: none !important;
  }
  .button5 {
    width: 130px !important;
    height: 38px !important;
  }
  .button-child5 {
    width: 130px !important;
    height: 38px !important;
    border-radius: 20px !important;
  }
  .button5 .medcann3 {
    line-height: 38px !important;
    font-size: 12px !important;
  }
  .burger-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .burger-icon {
    width: 32px !important;
    height: 22px !important;
  }
  .dark-overlay {
    top: 70px !important;
    height: calc(100vh - 70px) !important;
  }
  .drop-menu {
    top: 70px !important;
    max-height: calc(100vh - 70px) !important;
  }
}


/* ==================== BURGER MENU & OVERLAY (ALWAYS FIXED & DISPLAY:NONE WHEN CLOSED) ==================== */
.dark-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background-color: rgba(0, 0, 0, 0.4) !important;
  z-index: 99998 !important;
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.35s ease !important;
}
.dark-overlay.active {
  display: block !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.drop-menu {
  position: fixed !important;
  top: 114px !important;
  left: 0 !important;
  width: 100vw !important;
  height: 530px !important;
  z-index: 99999 !important;
  display: none !important;
  opacity: 0 !important;
  transform: translateY(-20px) !important;
  pointer-events: none !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease !important;
  overflow: hidden !important;
}
.drop-menu.active {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

@media (max-width: 991px) {
  .drop-menu {
    top: 70px !important;
    height: auto !important;
    max-height: calc(100vh - 70px) !important;
    overflow-y: auto !important;
  }
}

/* ==================== HEADER AT 1173PX (PHONE ICON ON BUTTON) ==================== */
.btn-phone-icon {
  display: none;
}
.phone-handset-icon {
  display: none !important;
}

@media (max-width: 1173px) and (min-width: 992px) {
  .button5 .medcann3 {
    display: none !important;
  }
  .btn-phone-icon {
    display: block !important;
    position: relative;
    z-index: 2;
  }
  .button5 {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .button-child5 {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
  }
  .header {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .div65 {
    gap: 20px !important;
  }
  .menu-link {
    font-size: 15px !important;
  }
  .phone {
    display: block !important;
  }
  .phone .div64 {
    display: inline !important;
  }
  .about-3-hero-title h1 {
    font-size: 70px !important; /* reduced by 10px from 80px */
  }
}


/* Global box-sizing */
*, *::before, *::after {
  box-sizing: border-box !important;
}

/* Category titles must be Inter (NOT Neutral Face which is all-caps) */
.cat-accordion-title {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: -0.05em !important;
}

@media (max-width: 767px) {
  .cat-accordion-title {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }
  .hero .cbd-2 {
    font-size: 26px !important;
    line-height: 1.15 !important;
    word-break: normal !important;
    white-space: normal !important;
  }
}


/* ==================== 2027 STAR LOGO (INTERSECT.SVG) ==================== */
.year-star-title {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}
.year-star-title .intersect-icon {
  width: auto !important;
  height: 46px !important;
  object-fit: contain !important;
  display: inline-block !important;
}
@media (max-width: 767px) {
  .year-star-title {
    gap: 3px !important;
  }
  .year-star-title .intersect-icon {
    width: auto !important;
    height: 31px !important;
  }
}


/* ==================== DESKTOP ABOUT CENTER ALIGNMENT ==================== */
@media (min-width: 768px) {
  .about {
    align-items: center !important;
    text-align: center !important;
  }
  .about .h23 {
    text-align: center !important;
    width: 100% !important;
  }
  .about .cbd- {
    text-align: center !important;
    font-family: 'Neutral Face', sans-serif !important;
    font-weight: 300 !important;
    letter-spacing: 0 !important;
  }
  .about .text3 {
    text-align: center !important;
    margin: 0 auto 48px auto !important;
  }
  .about .div58 {
    text-align: center !important;
  }
  .about-card {
    align-items: center !important;
    text-align: center !important;
  }
  .about-card .div51 {
    text-align: center !important;
    justify-content: center !important;
  }
  .about-card .div50 {
    text-align: center !important;
  }
}

/* ==================== CATEGORIES REGULAR FONT ==================== */
.cat-accordion-title {
  font-family: 'Inter', sans-serif !important;
  font-weight: 300 !important;
  text-transform: none !important;
  letter-spacing: -0.05em !important;
}

/* ==================== SECTION 5 (СЫРЬЕ №1) 26PX ALL CAPS ==================== */
.about-3-item-text {
  letter-spacing: 0 !important;
  font-family: 'Neutral Face', sans-serif !important;
  font-weight: 300 !important;
  font-size: 26px !important;
  line-height: 1.3 !important;
  text-transform: uppercase !important;
}

/* ==================== HORIZONTAL PRODUCT CARDS (WIDE / LANDSCAPE) ==================== */
.prod-card {
  background: #ffffff;
  border-radius: 24px !important;
  padding: 20px !important;
  border: 1px solid #eef2ed;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.prod-img-wrap {
  width: 100% !important;
  height: 270px !important; /* Horizontal landscape proportion */
  border-radius: 18px !important;
  overflow: hidden;
  background-color: #d9e7d5 !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  padding: 0 16px !important;
}
.prod-img {
  max-width: 95% !important;
  max-height: 98% !important;
  height: 95% !important;
  object-fit: contain !important;
  object-position: bottom center !important;
}
@media (max-width: 991px) {
  .prod-card {
    flex: 0 0 320px !important;
    min-width: 300px !important;
    max-width: 340px !important;
    padding: 16px !important;
  }
  .prod-img-wrap {
    height: 180px !important; /* Horizontal landscape on mobile */
  }
}

/* ==================== COMPLETE BURGER DROPDOWN MENU (FIGMA 63-351) ==================== */
.dark-overlay {
  position: fixed !important;
  top: 114px !important;
  left: 0 !important;
  width: 100vw !important;
  height: calc(100vh - 114px) !important;
  background-color: rgba(0, 0, 0, 0.4) !important;
  z-index: 9998 !important;
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.35s ease !important;
}
.dark-overlay.active {
  display: block !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.drop-menu {
  position: fixed !important;
  top: 114px !important;
  left: 0 !important;
  width: 100vw !important;
  height: 530px !important;
  z-index: 9999 !important;
  display: none !important;
  opacity: 0 !important;
  transform: translateY(-20px) !important;
  pointer-events: none !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(60px) !important;
  -webkit-backdrop-filter: blur(60px) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
  overflow: hidden !important;
}
.drop-menu.active {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.drop-menu-content {
  max-width: 1664px !important;
  width: calc(100% - 256px) !important;
  margin: 0 auto !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 60px 0 !important;
  box-sizing: border-box !important;
}

.drop-menu .menu {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}
.drop-menu-link {
  font-family: 'Inter', sans-serif !important;
  font-size: 36px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.07em !important;
  font-weight: 400 !important;
  color: #b9b9b9 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 16px !important;
  transition: color 0.25s ease !important;
}
.drop-menu-link:hover,
.drop-menu-link.active {
  color: #3f892c !important;
  font-weight: 400 !important;
}
.menu-dots {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  opacity: 0;
  width: 0;
  overflow: hidden;
  margin-right: -16px;
  transition: opacity 0.25s ease, width 0.25s ease, margin-right 0.25s ease !important;
  flex-shrink: 0 !important;
}
.drop-menu-link:hover .menu-dots,
.drop-menu-link.active .menu-dots {
  opacity: 1 !important;
  width: 34px !important;
  margin-right: 0 !important;
  overflow: visible !important;
}
.dot-active {
  width: 13px !important;
  height: 13px !important;
  border-radius: 50% !important;
  background-color: #3f892c !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
}
.dot-outline {
  width: 13px !important;
  height: 13px !important;
  border-radius: 50% !important;
  border: 1.5px solid #3f892c !important;
  background-color: transparent !important;
  display: inline-block !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
}
/* If legacy markup has dot-active and dot-outline without .menu-dots wrapper */
.drop-menu-link .dot-active,
.drop-menu-link .dot-outline {
  opacity: 0;
  display: none !important;
  transition: opacity 0.25s ease !important;
}
.drop-menu-link:hover .dot-active,
.drop-menu-link.active .dot-active,
.drop-menu-link:hover .dot-outline,
.drop-menu-link.active .dot-outline {
  opacity: 1 !important;
  display: inline-block !important;
}

.drop-menu-right {
  display: flex !important;
  flex-direction: column !important;
  gap: 48px !important;
  max-width: 620px !important;
}
.phone-block {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}
.phone-label {
  font-family: 'Inter', sans-serif !important;
  font-size: 28px !important;
  line-height: 40px !important;
  letter-spacing: -0.07em !important;
  color: #000000 !important;
}
.phone-number {
  font-family: 'Neutral Face', sans-serif !important;
  font-weight: 300 !important;
  font-size: 60px !important;
  line-height: 70px !important;
  letter-spacing: 0 !important;
  color: #000000 !important;
  text-decoration: none !important;
}
.drop-menu-btn {
  width: 392px !important;
  height: 73px !important;
  border-radius: 45px !important;
  background-color: #3f892c !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 24px !important;
  letter-spacing: -0.07em !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background-color 0.25s ease !important;
}
.drop-menu-btn:hover {
  background-color: #2f6b21 !important;
}
.drop-menu-address-wrap {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}
.drop-menu-address-label {
  font-family: 'Inter', sans-serif !important;
  font-size: 20px !important;
  line-height: 28px !important;
  letter-spacing: -0.04em !important;
  color: #888888 !important;
}
.drop-menu-address-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 24px !important;
  line-height: 32px !important;
  letter-spacing: -0.04em !important;
  color: #000000 !important;
}

.close-btn {
  width: 51px !important;
  height: 34px !important;
  position: relative !important;
  cursor: pointer !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}
.close-btn::before,
.close-btn::after {
  content: '' !important;
  position: absolute !important;
  width: 32px !important;
  height: 2.5px !important;
  background-color: #000000 !important;
  border-radius: 2px !important;
}
.close-btn::before {
  transform: rotate(45deg) !important;
}
.close-btn::after {
  transform: rotate(-45deg) !important;
}

@media (max-width: 991px) {
  .dark-overlay {
    top: 70px !important;
    height: calc(100vh - 70px) !important;
  }
  .drop-menu {
    top: 70px !important;
    height: auto !important;
    max-height: calc(100vh - 70px) !important;
    overflow-y: auto !important;
    padding: 30px 20px !important;
  }
  .drop-menu-content {
    width: 100% !important;
    padding: 0 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 36px !important;
  }
  .drop-menu-link {
    font-size: 24px !important;
  }
  .phone-label {
    font-size: 16px !important;
    line-height: 22px !important;
  }
  .phone-number {
    font-size: 32px !important;
    line-height: 40px !important;
  }
  .drop-menu-address-label {
    font-size: 14px !important;
    line-height: 20px !important;
  }
  .drop-menu-address-text {
    font-size: 16px !important;
    line-height: 22px !important;
  }
  .drop-menu-btn {
    width: 100% !important;
    max-width: 320px !important;
    height: 56px !important;
    font-size: 18px !important;
  }
}

/* ==================== GREEN SITE PRELOADER (FIGMA 63-3135) ==================== */
.site-preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: #146642;
  z-index: 999999;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, visibility 0.6s ease;
}
.site-preloader.fade-out {
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-flower-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 114px;
  height: 557px;
  pointer-events: none;
  will-change: transform;
  animation: preloaderFlowerRise 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.preloader-flower-icon {
  width: 100%;
  height: 100%;
  display: block;
}
.preloader-counter {
  position: absolute;
  bottom: clamp(30px, 6vh, 62px);
  right: clamp(24px, 4.3vw, 82px);
  font-family: 'Neutral Face', sans-serif;
  font-size: clamp(36px, 3.125vw, 60px);
  color: #ffffff;
  line-height: 1;
  text-align: right;
  letter-spacing: -0.02em;
  user-select: none;
}

@keyframes preloaderFlowerRise {
  0% {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

@media (max-height: 700px) {
  .preloader-flower-wrap {
    transform-origin: bottom center;
    transform: translateX(-50%) scale(0.75);
    animation-name: preloaderFlowerRiseSmall;
  }
  @keyframes preloaderFlowerRiseSmall {
    0% {
      transform: translate(-50%, 100%) scale(0.75);
      opacity: 0;
    }
    15% {
      opacity: 1;
    }
    100% {
      transform: translate(-50%, 0) scale(0.75);
      opacity: 1;
    }
  }
}
@media (max-width: 768px) {
  .preloader-flower-wrap {
    transform-origin: bottom center;
    transform: translateX(-50%) scale(0.65);
    animation-name: preloaderFlowerRiseMobile;
  }
  @keyframes preloaderFlowerRiseMobile {
    0% {
      transform: translate(-50%, 100%) scale(0.65);
      opacity: 0;
    }
    15% {
      opacity: 1;
    }
    100% {
      transform: translate(-50%, 0) scale(0.65);
      opacity: 1;
    }
  }
  .preloader-counter {
    bottom: 30px;
    right: 24px;
    font-size: 38px;
  }
}

/* ==================== FLOATING COOKIE CONSENT BANNER ==================== */
.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 99999;
  width: calc(100% - 48px);
  max-width: 820px;
  background: rgba(25, 25, 25, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 20px 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-banner-text {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #cccccc;
}
.cookie-banner-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-accept-btn {
  flex-shrink: 0;
  padding: 10px 24px;
  background: #268b0d;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cookie-accept-btn:hover {
  background: #1f700a;
  transform: scale(1.03);
}
@media (max-width: 600px) {
  .cookie-banner {
    bottom: 16px;
    padding: 16px 20px;
  }
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cookie-accept-btn {
    width: 100%;
    text-align: center;
  }
}

/* ==================== PRODUCT ORDER / COMMERCIAL PROPOSAL MODAL (FIGMA 63:1581) ==================== */
.order-modal-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
  box-sizing: border-box;
}
.order-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.order-modal-card {
  position: relative;
  width: 1164px;
  max-width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 64px 80px 70px 80px;
  box-sizing: border-box;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.order-modal-backdrop.active .order-modal-card {
  transform: translateY(0) scale(1);
}
.order-modal-close {
  position: absolute;
  top: 36px;
  right: 40px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 5;
}
.order-modal-close:hover {
  transform: scale(1.1);
  opacity: 0.7;
}
.order-modal-title {
  font-family: 'Neutral Face', sans-serif !important;
  font-weight: 300 !important;
  font-size: 40px;
  line-height: 1.16;
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 44px 0;
  max-width: 960px;
  letter-spacing: -0.02em;
}
.order-modal-title span.order-modal-product-name {
  color: #000000;
  display: inline;
}
.order-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.order-form-field {
  display: flex;
  flex-direction: column;
  position: relative;
}
.order-form-label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #b9b9b9;
  margin-bottom: 6px;
}
.order-form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #dbdbdb;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  color: #000000;
  padding: 8px 0 12px 0;
  background: transparent;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.order-form-input:focus {
  border-bottom-color: #3f892c;
}
.order-form-input::placeholder {
  color: #b9b9b9;
  font-weight: 400;
}
.order-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
}
.order-form-weight-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dbdbdb;
  padding: 8px 0 12px 0;
  max-width: 440px;
}
.order-form-weight-label {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  color: #b9b9b9;
}
.order-form-weight-input {
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  color: #000000;
  text-align: right;
  width: 160px;
  background: transparent;
}
.order-form-bottom {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 24px;
}
.order-form-submit-btn {
  width: 341px;
  height: 73px;
  background-color: #3f892c;
  border-radius: 45px;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.order-form-submit-btn:hover {
  background-color: #357a24;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(63, 137, 44, 0.3);
}
.order-form-submit-btn:active {
  transform: translateY(0);
  background-color: #2b681c;
}
.order-form-consent {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.order-form-checkbox {
  width: 36px;
  height: 36px;
  border: 2px solid #d9d9d9;
  border-radius: 7px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
  background-color: #ffffff;
}
.order-form-checkbox:checked {
  background-color: #3f892c;
  border-color: #3f892c;
}
.order-form-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 11px;
  top: 6px;
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.order-form-consent-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.35;
  color: #888888;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 400px;
}
@media (max-width: 900px) {
  .order-modal-card {
    padding: 48px 36px;
    border-radius: 24px;
  }
  .order-modal-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 32px;
  }
  .order-form-row-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .order-form-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .order-form-submit-btn {
    width: 100%;
    height: 60px;
    font-size: 20px;
  }
  .order-form-input, .order-form-weight-label, .order-form-weight-input {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .order-modal-card {
    padding: 36px 20px;
    border-radius: 20px;
  }
  .order-modal-title {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 24px;
  }
  .order-form-submit-btn {
    height: 52px;
    font-size: 17px;
  }
  .order-form-input, .order-form-weight-label, .order-form-weight-input {
    font-size: 16px;
  }
  .order-form-consent-text {
    font-size: 14px;
  }
}



/* --- ANIMATED HEADER BURGER CLOSE BUTTON --- */
.close-btn {
  width: 44px !important;
  height: 44px !important;
  position: relative !important;
  cursor: pointer !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  background: rgba(0, 0, 0, 0.04) !important;
  border-radius: 50% !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.1) !important;
  transform: rotate(90deg) scale(1.08) !important;
}

.close-btn::before,
.close-btn::after {
  content: '' !important;
  position: absolute !important;
  width: 20px !important;
  height: 2px !important;
  background-color: #000000 !important;
  border-radius: 2px !important;
  transition: background-color 0.2s ease !important;
}

.close-btn::before {
  transform: rotate(45deg) !important;
}

.close-btn::after {
  transform: rotate(-45deg) !important;
}
