/* ==================== MOBILE ECODOM STYLES ==================== */

/* Основные переменные из оригинального дизайна */
:root {
  /* Эко-палитра цветов */
  --primary-green: #4a7c59;
  --light-green: #7fb069;
  --accent-green: #90c695;
  --soft-beige: #f8f6f0;
  --cream-white: #fefefe;
  --warm-grey: #e8e6e0;
  --text-dark: #2c3e2d;
  --text-light: #6b7c6e;
  --shadow-light: rgba(74, 124, 89, 0.1);
  --shadow-medium: rgba(74, 124, 89, 0.2);
  --gradient-primary: linear-gradient(135deg, #4a7c59 0%, #7fb069 100%);
  --gradient-soft: linear-gradient(135deg, #f8f6f0 0%, #fefefe 100%);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Мобильные специфичные переменные */
  --safe-area-top: env(safe-area-inset-top, 0px);
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
  --header-height: 60px;
  --bottom-nav-height: 70px;
  --content-padding: 16px;
}

/* Базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Alegreya', serif;
  background: var(--cream-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: calc(var(--bottom-nav-height) + var(--safe-area-bottom));
}

/* ==================== HEADER ==================== */
.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(var(--header-height) + var(--safe-area-top));
  padding-top: var(--safe-area-top);
  background: rgba(248, 246, 240, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--warm-grey);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-height);
  padding: 0 var(--content-padding);
  max-width: 100%;
  gap: 16px;
  position: relative;
}

/* Центрирование логотипа и переключателя языка */
.header-content .logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-content .language-switcher {
  margin-left: 0;
}

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

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.logo-svg {
  width: 32px;
  height: 32px;
  fill: var(--primary-green);
  transition: var(--transition-smooth);
}

.company-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-green);
  transition: var(--transition-smooth);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-icon,
.favorites-icon {
  font-size: 1.2rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 8px;
}

.search-icon:hover,
.favorites-icon:hover {
  color: var(--primary-green);
  transform: scale(1.1);
}

/* ==================== MAIN CONTENT ==================== */
.main-content {
  margin-top: calc(var(--header-height) + var(--safe-area-top));
  min-height: calc(100vh - var(--header-height) - var(--safe-area-top) - var(--bottom-nav-height));
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  background: var(--gradient-soft);
  padding: 24px var(--content-padding);
  border-radius: 0 0 24px 24px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.company-description {
  text-align: left;
  margin-bottom: 20px;
}

.description-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 12px;
  display: block;
}

.description-short {
  display: inline;
}

.description-full {
  display: none;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: 'Alegreya', serif;
}

.read-more-btn:hover,
.read-more-btn:active {
  background: var(--primary-green);
  color: var(--cream-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-light);
}

.read-more-btn.expanded {
  background: var(--primary-green);
  color: var(--cream-white);
}

.btn-icon {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.read-more-btn.expanded .btn-icon {
  transform: rotate(180deg);
}

.hero-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-green);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

.hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow-light);
}

.hero-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ==================== SECTIONS ==================== */
.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding: 0 var(--content-padding);
}

/* ==================== FEATURED PRODUCTS SECTION ==================== */
.featured-products-section {
  padding: 32px 0;
  margin-bottom: 20px;
  margin-top: -50px;
}

.products-slider-container {
  position: relative;
  padding: 0 var(--content-padding);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  isolation: isolate;
}

.products-slider {
  display: flex;
  gap: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.3s ease;
  will-change: transform;
  position: relative;
  margin: 0;
  padding: 0;
  align-items: stretch;
}

.product-card-slide {
  flex: 0 0 100%;
  min-width: 0;
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  align-items: stretch;
}

.product-card-mobile {
  background: white;
  border: 1px solid #000;
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s ease;
  width: 90%;
  max-width: 90%;
  box-sizing: border-box;
  margin: 0 auto 0 3px;
}

.product-card-mobile:hover {
  box-shadow: 0 8px 24px var(--shadow-medium);
  border-color: var(--primary-green);
}

.product-image-mobile {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--warm-grey);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-mobile .no-image {
  color: var(--text-light);
  font-size: 0.9rem;
}

.no-products {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
  font-size: 1rem;
}

.product-info-mobile {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-name-mobile {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
}

.product-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: white;
  border: 1px solid #000;
  color: var(--primary-green);
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  font-family: 'Alegreya', serif;
  margin-top: auto;
}

.product-link-btn:hover,
.product-link-btn:active {
  background: var(--primary-green);
  color: white;
  box-shadow: 0 4px 12px var(--shadow-light);
  transform: translateY(-2px);
}

.product-link-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.product-link-btn:hover i,
.product-link-btn:active i {
  transform: translateX(4px);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.slider-indicators {
  display: flex;
  gap: 8px;
  align-items: center;
}

.indicator-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #000;
  background: white;
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.indicator.active {
  background: var(--primary-green);
  border-color: var(--primary-green);
  width: 24px;
  border-radius: 4px;
}

.indicator:hover {
  background: var(--light-green);
  border-color: var(--light-green);
}

.indicator-progress {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 2px;
  background: var(--primary-green);
  border-radius: 1px;
  transition: width 5s linear;
  z-index: 1;
}

.indicator-wrapper:has(.indicator.active) .indicator-progress {
  width: 24px;
}

/* ==================== NEW CATALOGS PROMO ==================== */
.new-catalogs-promo {
  padding: 24px 0;
  background: rgba(74, 124, 89, 0.05);
  margin-bottom: 20px;
}

.promo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--content-padding);
  margin-bottom: 16px;
}

.promo-header .section-title {
  padding: 0;
  margin-bottom: 0;
}

.view-all-link {
  font-size: 0.85rem;
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
}

.catalogs-horizontal-scroll {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 4px var(--content-padding) 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.catalogs-horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.catalog-promo-card {
  flex: 0 0 240px;
  background: white;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid var(--warm-grey);
}

.catalog-promo-icon {
  width: 50px;
  height: 50px;
  background: rgba(74, 124, 89, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.catalog-promo-icon i {
  font-size: 1.5rem;
  color: var(--primary-green);
}

.promo-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gradient-primary);
  color: white;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 8px;
}

.catalog-promo-info {
  flex: 1;
  overflow: hidden;
}

.catalog-promo-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo-download-btn {
  font-size: 0.75rem;
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==================== CONTACTS SECTION ==================== */
.contacts-section {
  padding: 32px 0;
  margin-bottom: 20px;
}

.contact-block {
  background: white;
  border-radius: 25px;
  padding: 20px;
  margin-bottom: 16px;
  transition: box-shadow 0.3s ease;
}

.contact-block:hover {
  box-shadow: 0 4px 12px var(--shadow-light);
}

.contact-block-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-block-title i {
  font-size: 1rem;
  color: var(--primary-green);
}

.contact-items-mobile {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item-mobile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--soft-beige);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.contact-item-mobile:hover,
.contact-item-mobile:active {
  background: white;
  border-color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-light);
}

.contact-item-mobile.address-item {
  padding-right: 12px;
}

.contact-icon-mobile {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1rem;
}

.contact-info-mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.contact-value-mobile {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.contact-label-mobile {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.3;
}

.map-link-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #000;
  background: white;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
}

.map-link-btn:hover,
.map-link-btn:active {
  background: var(--primary-green);
  color: white;
  box-shadow: 0 4px 12px var(--shadow-light);
  transform: scale(1.1);
}


/* ==================== BOTTOM NAVIGATION ==================== */
.bottom-navigation {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(var(--bottom-nav-height) + var(--safe-area-bottom));
  background: rgba(248, 246, 240, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--warm-grey);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-bottom: var(--safe-area-bottom);
  z-index: 1000;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--text-light);
  transition: var(--transition-smooth);
  border-radius: 12px;
  min-width: 60px;
}

.nav-item i {
  font-size: 1.2rem;
}

.nav-item span {
  font-size: 0.7rem;
  font-weight: 500;
  text-align: center;
}

.nav-item.active {
  color: var(--primary-green);
  background: rgba(74, 124, 89, 0.1);
}

.nav-item:hover {
  color: var(--primary-green);
  transform: translateY(-2px);
}

/* ==================== RESPONSIVE ADJUSTMENTS ==================== */
@media (max-width: 375px) {
  :root {
    --content-padding: 12px;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .product-card-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
  
  .product-image-mobile {
    height: 160px;
  }
  
  .product-name-mobile {
    font-size: 0.9rem;
  }
  
  .product-link-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

@media (min-width: 768px) {
  .product-card-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
  
  .product-image-mobile {
    height: 200px;
  }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section {
  animation: fadeInUp 0.6s ease-out;
}

/* ==================== TOUCH OPTIMIZATIONS ==================== */
.nav-item {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.main-content {
  will-change: scroll-position;
}

/* ==================== LANGUAGE SWITCHER (MOBILE) ==================== */
.language-switcher {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.lang-toggle {
  position: relative;
  display: inline-block;
}

.lang-checkbox {
  display: none;
}

.lang-label {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(74, 124, 89, 0.3);
  border-radius: 18px;
  padding: 2px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(74, 124, 89, 0.15);
  width: 70px;
  height: 30px;
  -webkit-tap-highlight-color: transparent;
}

.lang-label:active {
  transform: scale(0.97);
}

.lang-option {
  font-size: 0.7rem;
  font-weight: 600;
  color: #6c757d;
  padding: 6px 8px;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1;
  text-align: center;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-option.active {
  color: white;
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.lang-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 32px;
  height: 26px;
  background: linear-gradient(135deg, #4a7c59 0%, #7fb069 100%);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 2px 8px rgba(74, 124, 89, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.lang-checkbox:checked + .lang-label .lang-slider {
  transform: translateX(32px);
  background: linear-gradient(135deg, #7fb069 0%, #90c695 100%);
}

.lang-checkbox:checked + .lang-label .lang-ru {
  color: #6c757d;
  font-weight: 600;
  text-shadow: none;
}

.lang-checkbox:checked + .lang-label .lang-en {
  color: white;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.lang-checkbox:not(:checked) + .lang-label .lang-ru {
  color: white;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.lang-checkbox:not(:checked) + .lang-label .lang-en {
  color: #6c757d;
  font-weight: 600;
  text-shadow: none;
}

/* Уведомления о смене языка */
.lang-notification {
  font-family: 'Alegreya', serif;
}

.notification-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-text {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ==================== UPDATE MODAL (MOBILE) ==================== */
.ecodom-update-modal-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ecodom-update-modal-mobile .update-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 45, 0.55);
  backdrop-filter: blur(10px);
}

.update-modal-content-mobile {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(160%);
  border-radius: 26px 26px 0 0;
  border-top: 1px solid #000;
  padding: 32px 24px calc(32px + var(--safe-area-bottom));
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
  transform: translateY(100%);
  animation: slideUpMobile 0.5s cubic-bezier(0.32, 1, 0.67, 1) forwards;
  z-index: 10001;
  overflow: hidden;
}

.update-modal-content-mobile::before {
  content: '';
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(135deg, rgba(47, 111, 78, 0.22) 0%, rgba(47, 111, 78, 0.00) 55%),
    linear-gradient(45deg, rgba(127, 176, 105, 0.16) 0%, rgba(127, 176, 105, 0.00) 60%);
  pointer-events: none;
  z-index: 0;
}

.update-modal-content-mobile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.04) 0px,
    rgba(0, 0, 0, 0.04) 1px,
    rgba(0, 0, 0, 0.00) 10px,
    rgba(0, 0, 0, 0.00) 18px
  );
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.update-modal-content-mobile > * {
  position: relative;
  z-index: 1;
}

@keyframes slideUpMobile {
  to { transform: translateY(0); }
}

@keyframes slideDownMobile {
  from { transform: translateY(0); }
  to { transform: translateY(100%); }
}

.update-modal-header-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.update-icon-mobile {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.update-icon-mobile img.update-logo-mobile {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.update-icon-mobile i {
  font-size: 2rem;
  color: white;
  display: block;
}

.update-modal-header-mobile h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-green);
}

.update-modal-body-mobile p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 24px;
}

.update-modal-footer-mobile {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.update-btn-apply-mobile {
  background: #fff;
  color: var(--primary-green);
  border: 1px solid #000;
  padding: 16px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
}

.update-btn-apply-mobile i {
  color: var(--primary-green);
}

.update-btn-apply-mobile:active {
  transform: scale(0.98);
  opacity: 0.95;
}

.update-btn-apply-mobile:hover {
  background: var(--primary-green);
  color: #fff;
}

.update-btn-apply-mobile:hover i {
  color: #fff;
}

.update-btn-apply-mobile i {
  font-size: 1.1rem;
  display: inline-block;
}

.update-btn-close-mobile {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-weight: 600;
  padding: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.update-btn-close-mobile:active {
  opacity: 0.7;
}

/* ==================== COOKIE CONSENT (MOBILE) ==================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--warm-grey);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 20px 16px calc(20px + var(--safe-area-bottom));
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-consent-banner.show {
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-consent-text {
  flex: 1;
}

.cookie-consent-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 0 0 10px 0;
}

.cookie-consent-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}

.cookie-consent-link {
  color: var(--primary-green);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-consent-link:hover {
  text-decoration: none;
}

.cookie-consent-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-consent-btn {
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-family: 'Alegreya', serif;
}

.cookie-consent-accept {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--primary-green);
}

.cookie-consent-accept:active {
  transform: scale(0.98);
  opacity: 0.9;
}

.cookie-consent-necessary {
  background: white;
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.cookie-consent-necessary:active {
  background: var(--warm-grey);
  transform: scale(0.98);
}

.cookie-consent-decline {
  background: white;
  color: #e74c3c;
  border-color: #e74c3c;
}

.cookie-consent-decline:active {
  background: #fee;
  transform: scale(0.98);
}

.cookie-notification {
  position: fixed;
  top: 80px;
  left: 16px;
  right: 16px;
  background: var(--gradient-primary);
  color: white;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cookie-notification.show {
  opacity: 1;
  transform: translateY(0);
}

.cookie-notification i {
  font-size: 1.2rem;
}

/* ==================== DELIVERY PROMO (MOBILE) ==================== */
.delivery-promo-mobile {
  padding: 0 var(--content-padding);
  margin: 20px 0 32px;
}

.delivery-promo-card {
  background: var(--gradient-soft);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--warm-grey);
  box-shadow: 0 10px 30px var(--shadow-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.delivery-promo-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: var(--primary-green);
  opacity: 0.03;
  border-radius: 50%;
}

.delivery-promo-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.delivery-promo-icon {
  width: 54px;
  height: 54px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 16px var(--shadow-medium);
}

.delivery-promo-icon i {
  color: white;
  font-size: 1.5rem;
}

.delivery-promo-text .section-title {
  padding: 0;
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.delivery-promo-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0;
}

.delivery-details-btn {
  background: white;
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  padding: 14px;
  border-radius: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.delivery-details-btn:active {
  background: var(--primary-green);
  color: white;
  transform: scale(0.98);
}

.delivery-details-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.delivery-details-btn:active i {
  transform: translateX(4px);
}
