/* ===== CSS Variables ===== */
:root {
  --color-dark: #0a0a0a;
  --color-dark-secondary: #1a1a1a;
  --color-accent: #4ade80;
  --color-accent-hover: #22c55e;
  --color-white: #ffffff;
  --color-gray: #d4d4d4;
  --color-warm: #fbbf24;

  --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--color-dark);
  color: var(--color-white);
  line-height: 1.6;
  min-height: 100vh;
}

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

ul {
  list-style: none;
}

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-video[data-loaded="true"] {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
}

/* ===== Header ===== */
.header {
  position: relative;
  z-index: auto;
  padding: 24px 0;
  overflow: visible;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(0.8);
  transition: all 0.3s ease;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #d4d4d4;
  transition: color 0.3s ease;
}

.logo:hover .logo-img {
  filter: brightness(0) invert(1);
}

.logo:hover .logo-text {
  color: var(--color-white);
}

/* ===== Burger Menu ===== */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-gray);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-btn.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.nav-mobile {
  display: none;
}

/* Mobile nav overlay - always present, toggled via .active */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-list {
  display: flex;
  gap: 32px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 8px;
}

.lang-globe-icon {
  width: 14px;
  height: 14px;
  color: var(--color-gray);
  opacity: 0.65;
  flex-shrink: 0;
  pointer-events: none;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--color-gray);
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 28px 5px 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23d4d4d4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.lang-select:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.lang-select:focus {
  outline: none;
  border-color: var(--color-accent);
  color: var(--color-white);
}

.lang-select option {
  background: #1c1c1c;
  color: var(--color-white);
  font-weight: 500;
}

.nav-list a {
  font-size: 0.9rem;
  color: var(--color-gray);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

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

.nav-list a:hover::after {
  width: 100%;
}

/* ===== Hero Content ===== */
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}

.hero-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-company {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
  -webkit-text-stroke: 2px rgba(74, 222, 128, 0.3);
  text-shadow:
    0 0 20px rgba(74, 222, 128, 0.5),
    0 0 40px rgba(74, 222, 128, 0.3),
    0 4px 8px rgba(0, 0, 0, 0.4);
}

/* ===== Business Direction Tabs ===== */
.business-tabs {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}

.business-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  color: var(--color-gray);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--font-main);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.business-tab:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  transform: translateY(-3px);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.business-tab.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.business-tab .tab-icon {
  width: 18px;
  height: 18px;
}

.business-tab .tab-icon svg {
  width: 18px;
  height: 18px;
}

.hero-slogan {
  font-family: var(--font-main);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-divider-glow {
  width: 180px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-accent) 30%,
    var(--color-accent) 70%,
    transparent 100%
  );
  border-radius: 1px;
  box-shadow:
    0 0 8px rgba(74, 222, 128, 0.4),
    0 0 15px rgba(74, 222, 128, 0.2);
  margin: 0;
}

.hero-desc {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-gray);
  line-height: 1.6;
  max-width: 500px;
}

.hero-gradient-bottom {
  display: none;
}

/* ===== Gradient Transition ===== */
.gradient-transition {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0) 0%,
    rgba(10, 10, 10, 0.3) 30%,
    rgba(10, 10, 10, 0.7) 60%,
    rgba(10, 10, 10, 1) 100%
  );
  z-index: 5;
  pointer-events: none;
}

@media (max-width: 768px) {
  .gradient-transition {
    height: 100px;
  }
}

/* ===== Buttons (Premium Style) ===== */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 10px;
}

.btn-primary {
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: var(--color-white);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover {
  background: rgba(74, 222, 128, 0.25);
  border-color: rgba(74, 222, 128, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 222, 128, 0.25);
}

/* ===== Section Titles ===== */
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 4px 8px rgba(0, 0, 0, 0.2),
    0 0 30px rgba(74, 222, 128, 0.1);
  text-transform: uppercase;
}

.section-title::after {
  content: '';
  display: block;
  width: 180px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-accent) 30%,
    var(--color-accent) 70%,
    transparent 100%
  );
  border-radius: 1px;
  box-shadow:
    0 0 8px rgba(74, 222, 128, 0.4),
    0 0 15px rgba(74, 222, 128, 0.2);
  margin: 16px auto 0;
}

/* Tobacco Section Titles - Blue Glow */
.tobacco-products .section-title,
.tobacco-about .section-title,
.tobacco-equipment .section-title,
.tobacco-partners .section-title,
.tobacco-contacts .section-title,
.tobacco-workflow .section-title {
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 4px 8px rgba(0, 0, 0, 0.2),
    0 0 30px rgba(87, 109, 128, 0.3);
}

.tobacco-products .section-title::after,
.tobacco-about .section-title::after,
.tobacco-equipment .section-title::after,
.tobacco-partners .section-title::after,
.tobacco-contacts .section-title::after,
.tobacco-workflow .section-title::after {
  background: linear-gradient(
    90deg,
    transparent 0%,
    #576D80 30%,
    #576D80 70%,
    transparent 100%
  );
  box-shadow:
    0 0 8px rgba(87, 109, 128, 0.6),
    0 0 15px rgba(87, 109, 128, 0.3);
}

/* ===== About Section ===== */
.about {
  position: relative;
  background: var(--color-dark);
  padding: 60px 0 60px;
}

.about::before {
  display: none;
}

.about-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.about-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.about-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.about-block:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(74, 222, 128, 0.2);
  transform: translateY(-4px);
}

.about-block-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  min-height: 80px;
}

.about-icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
}

.about-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(79%) sepia(16%) saturate(1465%) hue-rotate(78deg) brightness(95%) contrast(90%);
}

.about-block-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.about-block p {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.9;
  flex: 1;
}

.about-block strong {
  color: var(--color-white);
  font-weight: 500;
}

/* Documents Section */
.documents-section {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.documents-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.document-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.document-card:hover {
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.1);
}

.document-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 10px;
  flex-shrink: 0;
}

.document-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

.document-info {
  flex: 1;
  text-align: center;
}

.document-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}

.document-desc {
  font-size: 0.85rem;
  color: var(--color-gray);
  text-align: center;
}

.document-download {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 222, 128, 0.15);
  border-radius: 8px;
  opacity: 1;
  transition: all 0.3s ease;
}

.document-card:hover .document-download {
  opacity: 1;
}

.document-download svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

/* Contact Documents */
.contact-documents {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.doc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 8px;
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.doc-link:hover {
  background: rgba(74, 222, 128, 0.2);
  border-color: rgba(74, 222, 128, 0.4);
  transform: translateX(4px);
}

.doc-link svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

/* ===== Advantages Section ===== */
.advantages {
  position: relative;
  background: linear-gradient(
    to bottom,
    var(--color-dark) 0%,
    var(--color-dark-secondary) 20%,
    var(--color-dark-secondary) 100%
  );
  padding: 60px 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(74, 222, 128, 0.15);
  transform: translateY(-6px);
}

.advantage-card:nth-child(1),
.advantage-card:nth-child(2),
.advantage-card:nth-child(3) {
  grid-column: span 2;
}

.advantage-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.advantage-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.advantage-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
}

.advantage-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
}

.advantage-desc {
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.7;
}

.advantage-desc strong {
  color: var(--color-white);
  font-weight: 500;
}

/* ===== Products Section ===== */
.products {
  position: relative;
  background: linear-gradient(
    to bottom,
    var(--color-dark-secondary) 0%,
    var(--color-dark) 20%,
    var(--color-dark) 100%
  );
  padding: 60px 0;
}

/* Products Gallery */
.products-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 40px 16px 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
}

.products-category {
  margin-bottom: 50px;
}

.products-category:last-child {
  margin-bottom: 0;
}

.products-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.products-category-icon {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.product-card:hover {
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.2);
  transform: translateY(-3px);
}

.product-icon {
  width: 36px;
  height: 36px;
  color: var(--color-accent);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.product-card:hover .product-icon {
  opacity: 1;
  transform: scale(1.1);
}

.product-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-gray);
}

.product-card:hover .product-name {
  color: var(--color-white);
}

/* ===== Quality Control & Warehouse Section ===== */
.quality-warehouse {
  position: relative;
  background: linear-gradient(
    to bottom,
    var(--color-dark) 0%,
    var(--color-dark-secondary) 20%,
    var(--color-dark-secondary) 100%
  );
  padding: 60px 0;
  overflow: hidden;
}

.qw-block {
  margin-bottom: 80px;
}

.qw-block:last-child {
  margin-bottom: 0;
}

.qw-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.qw-block-reverse .qw-content {
  grid-template-columns: 1.2fr 1fr;
}

.qw-block-reverse .qw-text {
  order: 2;
}

.qw-block-reverse .qw-gallery {
  order: 1;
}

.qw-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.qw-icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qw-icon svg {
  width: 48px;
  height: 48px;
}

.qw-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qw-description {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.8;
}

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

.qw-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.qw-gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 222, 128, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.qw-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.qw-gallery-item:hover img {
  transform: scale(1.05);
}

/* Quality & Warehouse Animations */
.qw-animate-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.qw-animate-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.qw-animate-left.visible,
.qw-animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
  .quality-warehouse {
    padding: 60px 0 80px;
  }

  .qw-block {
    margin-bottom: 60px;
  }

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

  .qw-block-reverse .qw-content {
    grid-template-columns: 1fr;
  }

  .qw-block-reverse .qw-text {
    order: 1;
  }

  .qw-block-reverse .qw-gallery {
    order: 2;
  }

  .qw-title {
    font-size: 1.5rem;
  }

  .qw-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ===== Geography Section ===== */
.geography {
  position: relative;
  background: linear-gradient(
    to bottom,
    var(--color-dark-secondary) 0%,
    var(--color-dark) 20%,
    var(--color-dark) 100%
  );
  padding: 60px 0;
}

.geography-subtitle {
  text-align: center;
  color: var(--color-gray);
  font-size: 1.1rem;
  margin-top: -20px;
  margin-bottom: 50px;
}

.map-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.world-map-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.map-markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.marker {
  position: absolute;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  pointer-events: auto;
}

.marker::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px var(--color-accent);
}

.marker::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    width: 10px;
    height: 10px;
    opacity: 0.8;
  }
  100% {
    width: 35px;
    height: 35px;
    opacity: 0;
  }
}

.marker:hover::before {
  width: 14px;
  height: 14px;
  background: var(--color-white);
  box-shadow: 0 0 15px var(--color-accent);
}

.map-tooltip {
  position: absolute;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 100;
  max-width: 280px;
}

.map-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

.tooltip-country {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.tooltip-products {
  font-size: 0.85rem;
  color: var(--color-gray);
  line-height: 1.5;
}

.regions-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.region {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.region:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(74, 222, 128, 0.2);
}

.region-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.region-countries {
  font-size: 0.85rem;
  color: var(--color-gray);
  line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .lang-switcher {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .nav-desktop {
    display: none;
  }

  .nav-mobile {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-mobile.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-list a {
    display: block;
    padding: 18px 0;
    font-size: 1.1rem;
  }

  .nav-list a::after {
    display: none;
  }

  /* Language switcher inside mobile menu */
  .lang-switcher-mobile {
    display: flex;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-center {
    padding: 0 20px;
  }

  .business-tabs {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .business-tab {
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .hero-gradient-bottom {
    height: 150px;
  }

  .about {
    padding: 60px 0 80px;
  }

  .about-blocks {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-block {
    padding: 24px 20px;
  }

  .documents-section {
    margin-top: 40px;
    padding-top: 30px;
  }

  .documents-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .document-card {
    padding: 16px;
  }

  .document-icon {
    width: 40px;
    height: 40px;
  }

  .document-icon svg {
    width: 24px;
    height: 24px;
  }

  .advantages {
    padding: 60px 0 80px;
  }

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

  .advantage-card:nth-child(1),
  .advantage-card:nth-child(2),
  .advantage-card:nth-child(3),
  .advantage-card:nth-child(4),
  .advantage-card:nth-child(5) {
    grid-column: span 1;
  }

  .advantage-card {
    padding: 28px 24px;
  }

  .products {
    padding: 60px 0 80px;
  }

  .products-category {
    margin-bottom: 40px;
  }

  .products-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 40px;
  }

  .gallery-overlay {
    opacity: 1;
    padding: 30px 12px 12px;
  }

  .gallery-overlay span {
    font-size: 0.85rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
  }

  .product-card {
    padding: 18px 12px;
    gap: 10px;
  }

  .product-icon {
    width: 30px;
    height: 30px;
  }

  .geography {
    padding: 60px 0 80px;
  }

  .geography-subtitle {
    margin-bottom: 30px;
  }

  .map-container {
    margin-bottom: 40px;
  }

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

  .region {
    padding: 16px;
  }

  .region:last-child {
    grid-column: span 2;
  }
}

/* ===== Partners Section ===== */
.partners {
  position: relative;
  background: linear-gradient(
    to bottom,
    var(--color-dark-secondary) 0%,
    var(--color-dark) 20%,
    var(--color-dark) 100%
  );
  padding: 60px 0;
}

.partners-subtitle {
  text-align: center;
  color: var(--color-gray);
  font-size: 1.1rem;
  margin-top: -20px;
  margin-bottom: 50px;
}

/* Partners Carousel */
.partners-carousel {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  color: var(--color-gray);
  transition: color 0.3s ease;
}

.carousel-btn:hover svg {
  color: var(--color-white);
}

.partners-track-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 140px;
  isolation: isolate;
}

.partners-track-wrapper::before,
.partners-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 76px;
  pointer-events: none;
  z-index: 2;
}

.partners-track-wrapper::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.98) 0%,
    rgba(10, 10, 10, 0.88) 42%,
    rgba(10, 10, 10, 0) 100%
  );
}

.partners-track-wrapper::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(10, 10, 10, 0.98) 0%,
    rgba(10, 10, 10, 0.88) 42%,
    rgba(10, 10, 10, 0) 100%
  );
}

.partners-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding: 10px 0;
  height: 100%;
  align-items: center;
}

.partners-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.partner-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-width: 200px;
  min-height: 120px;
  flex-shrink: 0;
}

.partner-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(74, 222, 128, 0.2);
}

.partner-logo {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
  transform: scale(1.05);
}

/* Partners Responsive */
@media (max-width: 768px) {
  .partners {
    padding: 60px 0 80px;
  }

  .partners-subtitle {
    margin-bottom: 30px;
  }

  .partners-carousel {
    gap: 12px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn svg {
    width: 20px;
    height: 20px;
  }

  .partners-track {
    gap: 12px;
  }

  .partners-track-wrapper::before,
  .partners-track-wrapper::after {
    width: 48px;
  }

  .partner-card {
    padding: 16px;
    min-width: 150px;
    min-height: 90px;
  }

  .partner-logo {
    max-height: 55px;
  }
}

/* ===== Contacts Section ===== */
.contacts {
  position: relative;
  background: linear-gradient(
    to bottom,
    var(--color-dark) 0%,
    var(--color-dark-secondary) 20%,
    var(--color-dark-secondary) 100%
  );
  padding: 60px 0 40px;
}

.contacts-subtitle {
  text-align: center;
  color: var(--color-gray);
  font-size: 1.1rem;
  margin-top: -20px;
  margin-bottom: 50px;
}

/* Контактная информация сверху */
.contacts-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

/* Нижняя часть контактов: Форма и Карта */
.contacts-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

/* Яндекс Карта справа */
.yandex-map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.yandex-map-wrapper iframe {
  display: block;
}

.contact-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(74, 222, 128, 0.15);
  transform: translateY(-4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
}

.contact-content {
  width: 100%;
}

.contact-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 10px;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.7;
}

.contact-value a {
  color: var(--color-gray);
  transition: color 0.3s ease;
}

.contact-value a:hover {
  color: var(--color-accent);
}

.contact-value strong {
  color: var(--color-white);
  font-weight: 500;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 28px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #ffffff;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.whatsapp-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.whatsapp-link:hover {
  background: rgba(37, 211, 102, 0.25);
  border-color: rgba(37, 211, 102, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  color: #ffffff;
}

.whatsapp-link:hover::before {
  left: 100%;
}

.whatsapp-link:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.whatsapp-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(37, 211, 102, 0.3));
}

.telegram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 28px;
  background: rgba(38, 162, 226, 0.15);
  border: 1px solid rgba(38, 162, 226, 0.4);
  color: #ffffff;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(38, 162, 226, 0.2);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.telegram-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(38, 162, 226, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.telegram-link:hover {
  background: rgba(38, 162, 226, 0.25);
  border-color: rgba(38, 162, 226, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(38, 162, 226, 0.3);
  color: #ffffff;
}

.telegram-link:hover::before {
  left: 100%;
}

.telegram-link:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(38, 162, 226, 0.25);
}

.telegram-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(38, 162, 226, 0.3));
}

/* Contact Form */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.form-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.form-group {
  flex: 1;
}

.form-row {
  display: flex;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--color-white);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-gray);
  opacity: 0.7;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(74, 222, 128, 0.05);
}

/* Consent Checkbox */
.checkbox-group {
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--color-gray);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0 0;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label:hover {
  color: var(--color-white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-form {
  width: 100%;
  margin-top: 6px;
}


/* ===== Footer ===== */
.footer {
  position: relative;
  background: var(--color-dark);
  padding: 30px 0;
  text-align: center;
}

.footer::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--color-dark) 100%
  );
  pointer-events: none;
}

.footer-text {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin: 0;
}

/* Contacts Responsive */
@media (max-width: 768px) {
  .contacts {
    padding: 60px 0 40px;
  }

  .footer::before {
    top: -60px;
    height: 60px;
  }

  .footer {
    padding: 20px 0;
  }

  .contacts-subtitle {
    margin-bottom: 30px;
  }

  .contacts-info {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }

  .contacts-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .yandex-map-wrapper {
    min-height: 350px;
  }

  .contact-item {
    padding: 24px 20px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .contact-icon svg {
    width: 24px;
    height: 24px;
  }

  .contact-form-wrapper {
    padding: 24px 20px;
    height: auto;
  }

  .form-row {
    flex-direction: column;
    gap: 14px;
  }

  .yandex-map-full {
    height: 300px;
  }

  .footer-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ===== Floating Buttons ===== */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.whatsapp-btn,
.telegram-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: visible;
}

.whatsapp-btn::before,
.telegram-btn::before {
  content: attr(data-text);
  position: absolute;
  right: 70px;
  background: rgba(10, 10, 10, 0.95);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-btn:hover::before,
.telegram-btn:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.telegram-btn {
  background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.telegram-btn:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 30px rgba(0, 136, 204, 0.6);
}

.whatsapp-btn svg,
.telegram-btn svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .whatsapp-btn,
  .telegram-btn {
    width: 54px;
    height: 54px;
  }

  .whatsapp-btn svg,
  .telegram-btn svg {
    width: 28px;
    height: 28px;
  }
}

/* ===== Scroll to Top Button ===== */
.scroll-top-btn {
  position: fixed;
  bottom: 170px;
  right: 35px;
  width: 50px;
  height: 50px;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
}

.scroll-top-btn svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  transition: color 0.3s ease;
}

.scroll-top-btn:hover svg {
  color: var(--color-white);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 150px;
    right: 25px;
    width: 44px;
    height: 44px;
  }

  .scroll-top-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* ===== Scroll Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Product Icons */
.product-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  stroke: currentColor;
  fill: none;
  color: var(--color-accent);
}

.product-category h3 .product-icon {
  width: 36px;
  height: 36px;
  margin-right: 14px;
}

.product-category li {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.product-category li .product-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
