/* ==================== BASE STYLES ==================== */
html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #60843b;
  --primary-light: #7aa54d;
  --accent-pink: #f4daee;
  --accent-pink-light: #fae8f5;
  --background: #F6E2E1;
  --text-dark: #2c2c2c;
  --text-medium: #555;
  --text-light: #666;
  --white: #F3F0F0;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(244, 218, 238, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Century Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: clamp(16px, 2.5vw, 20px);
  padding-bottom: 70px;
}

/* ==================== HEADER ==================== */
.headerr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(246, 226, 225, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px var(--shadow);
}

.headerr.hidden {
  transform: translateY(-100%);
}

.headerr__container {
  max-width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 0 clamp(15px, 3vw, 30px);
  align-items: center;
  min-height: clamp(70px, 12vw, 90px);
  font-size: clamp(14px, 2vw, 18px);
}

.logo {
  grid-column: 2;
  height: clamp(50px, 10vw, 70px);
  width: clamp(100px, 20vw, 150px);
  object-fit: contain;
}

.menu__body:first-of-type {
  grid-column: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
}

.menu__body:last-of-type {
  grid-column: 3;
}

.menu__list {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  list-style: none;
}

.right-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2vw, 20px);
}

.lng-menu-bouquets,
.lng-menu-contacts,
.lng-menu-dostavka {
  color: rgb(0, 0, 0);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
  white-space: nowrap;
}

.lng-menu-bouquets::after,
.lng-menu-contacts::after,
.lng-menu-dostavka::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #f4a5ec, #c23eff);
  transition: width 0.3s ease;
  box-shadow: 0 2px 8px rgba(194, 62, 255, 0.3);
}

.lng-menu-bouquets:hover::after,
.lng-menu-contacts:hover::after,
.lng-menu-dostavka:hover::after {
  width: 100%;
}

.plase {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1vw, 8px);
}

.icons {
  display: flex;
  gap: 15px;
  position: relative;
}

.icon, .icon_2, .icon_3 {
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.icon {
  width: clamp(25px, 4vw, 30px);
  height: auto;
}

.icon_2 {
  width: clamp(30px, 4vw, 35px);
  height: auto;
}

.icon_3 {
  width: clamp(20px, 3vw, 25px);
  height: auto;
}

.icon:hover, .icon_2:hover, .icon_3:hover {
  transform: scale(1.1) translateY(-3px);
  filter: drop-shadow(0 4px 8px rgba(194, 62, 255, 0.4));
}

/* Badge for cart and favorites */
.badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #f4a5ec, #c23eff);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(194, 62, 255, 0.4);
  animation: pulse 2s infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.pereklad {
  appearance: none;
  background-color: #5a6d4b;
  color: white;
  padding: clamp(6px, 1.5vw, 8px) clamp(20px, 4vw, 30px) clamp(6px, 1.5vw, 8px) clamp(10px, 2vw, 15px);
  border: none;
  border-radius: 4px;
  font-size: clamp(14px, 2vw, 16px);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* ==================== BOTTOM NAVIGATION (MOBILE) ==================== */
.bottom-nav {
    display: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(246, 226, 225, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  padding: 6px 8px;
  transition: all 0.3s ease;
  position: relative;
}

.bottom-nav-item:active {
  transform: scale(0.95);
}

.bottom-nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #f4a5ec, #c23eff);
  transition: width 0.3s ease;
  border-radius: 0 0 3px 3px;
}

.bottom-nav-item:hover::before,
.bottom-nav-item:active::before {
  width: 60%;
}

.bottom-nav-icon {
  font-size: 24px;
  margin-bottom: 2px;
}

.bottom-nav-item span {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

/* Language selector in bottom nav */
.bottom-nav-lang {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  margin: 0 10px 0 10px;
  padding: 8px;
}

.bottom-nav-lang select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-size: 16px; /* важливо для iOS — без zoom */
}

/* Для iOS - робимо select знову клікабельним коли він в фокусі */
.bottom-nav-lang select:focus {
  pointer-events: auto;
}

.bottom-nav-lang .bottom-nav-icon {
  font-size: 24px;
  margin-bottom: 2px;
}

/* ==================== MAIN CONTENT ==================== */
.contentik {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

.main-content {
  width: 100%;
  margin-top: clamp(70px, 12vw, 87px);
}

/* ==================== VIDEO SECTION ==================== */
.main-content__video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: clamp(15px, 3vw, 25px);
  gap: clamp(15px, 3vw, 25px);
  max-height: 91vh;
  overflow: hidden;
}

.myVideo {
  width: clamp(300px, 46%, 800px);
  height: clamp(400px, 86vh, 86vh);
  object-fit: cover;
  border-radius: 10%;
  box-shadow: 7px 8px 15px #ab9f9f;
}

.video-overlay {
  width: clamp(300px, 46%, 800px);
  height: clamp(400px, 86vh, 86vh);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--white);
  padding: clamp(30px, 6vw, 70px);
  border-radius: 10%;
  box-shadow: 7px 8px 15px #ab9f9f;
}

.teck-vid {
  font-size: clamp(28px, 5vw, 55px);
  text-align: center;
  margin-bottom: clamp(20px, 4vw, 40px);
}

.video-catalog {
  width: clamp(150px, 60%, 300px);
  font-size: clamp(16px, 2.5vw, 18px);
  border-radius: 16px;
  padding: clamp(8px, 2vw, 10px) clamp(15px, 3vw, 20px);
  background-color: var(--white);
  color: #000000;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 15px #9dd791;
}

.video-catalog:hover {
  box-shadow: 3px 3px 15px #75ec81;
  transform: scale(1.05);
}

/* ==================== CONTENT BOXES ==================== */
.lng-zagol {
  font-size: clamp(32px, 6vw, 45px);
  text-align: center;
  padding: clamp(15px, 3vw, 20px) 0;
  width: 100%;
}

.gallery-container {
  position: relative;
  width: 100%;
}

.main-content__box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 20vw, 250px), 1fr));
  gap: clamp(10px, 2vw, 20px);
  padding: clamp(20px, 4vw, 40px) clamp(15px, 3vw, 30px);
  width: clamp(95%, 90%, 80%);
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.main-content__box::-webkit-scrollbar {
  display: none;
}

.top-bloc {
  padding: clamp(5px, 1.5vw, 10px);
  text-align: center;
  background-color: var(--white);
  box-shadow: 0 4px 6px rgb(184, 184, 184);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
}

.top-bloc:hover {
  transform: translateY(-5px);
  box-shadow: 0 7px 12px rgba(0, 0, 0, 0.15);
}

.ic {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}

/* Gallery scroll buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(96, 132, 59, 0.8);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  transition: all 0.3s ease;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.scroll-btn:hover {
  background: rgba(96, 132, 59, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}

/* ==================== INFO SECTION ==================== */
.main-content__infi {
  width: 100%;
  padding: clamp(30px, 6vw, 60px) clamp(15px, 3vw, 30px);
}

.back {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.text-box {
  text-align: center;
  margin-bottom: clamp(30px, 6vw, 40px);
  padding: 0 clamp(15px, 3vw, 30px);
}

.zag-info {
  font-size: clamp(28px, 5vw, 36px);
  margin-bottom: clamp(15px, 3vw, 20px);
}

.zag-info__info {
  font-size: clamp(16px, 3vw, 25px);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: var(--text-medium);
}

.back__im {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 30vw, 350px), 1fr));
  gap: clamp(15px, 3vw, 20px);
  position: relative;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.back__im::-webkit-scrollbar {
  display: none;
}

.feature-card {
  display: flex;
  align-items: center;
  padding: clamp(10px, 2vw, 15px);
  border-radius: 12px;
  background-color: var(--accent-pink);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logotip {
  width: clamp(80px, 15vw, 100px);
  height: clamp(120px, 22vw, 150px);
  border-radius: 10px;
  object-fit: cover;
  margin-right: clamp(10px, 2vw, 20px);
  flex-shrink: 0;
}

.feature-content h2 {
  font-size: clamp(16px, 2.5vw, 18px);
  margin-bottom: 8px;
}

.feature-content p {
  font-size: clamp(13px, 2vw, 14px);
  line-height: 1.4;
}

/* ==================== YOU AND SECTION WITH GALLERY ==================== */
.you_and {
  width: clamp(95%, 90%, 95%);
  max-width: 1400px;
  margin: clamp(50px, 10vw, 100px) auto;
  padding: 0 clamp(15px, 3vw, 30px);
  position: relative;
}

.you_and__love {
  font-size: clamp(28px, 5vw, 36px);
  text-align: center;
  margin-bottom: clamp(30px, 6vw, 60px);
}

.you_and__phot {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 28vw, 300px), 1fr));
  gap: clamp(15px, 3vw, 20px);
  justify-items: center;
  position: relative;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.you_and__phot::-webkit-scrollbar {
  display: none;
}

.you-photo {
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 3/4;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
}

.you-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.photo-love {
  background-color: var(--primary-color);
  border-radius: 20px;
  color: white;
  padding: clamp(30px, 6vw, 40px);
  font-size: clamp(16px, 2.5vw, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
  scroll-snap-align: start;
}

/* ==================== HAPPY SECTION ==================== */
.happy {
  position: relative;
  width: 100%;
  min-height: clamp(500px, 80vh, 900px);
  margin: clamp(30px, 6vw, 40px) 0;
}

.happy-photo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.happy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f6e2e1cc;
  z-index: 1;
}

.happy-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: clamp(500px, 80vh, 900px);
  padding: clamp(20px, 4vw, 40px);
  text-align: center;
}

.happy-content span {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: bold;
  margin-bottom: clamp(20px, 4vw, 30px);
  max-width: 800px;
  line-height: 1.4;
}

.happy-button {
  padding: clamp(12px, 2vw, 15px) clamp(35px, 6vw, 50px);
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 30px;
  font-size: clamp(16px, 2.5vw, 18px);
  cursor: pointer;
  transition: all 0.3s;
}

.happy-button:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.05);
}

/* ==================== FAQ SECTION ==================== */
.FAQ {
  width: clamp(95%, 90%, 95%);
  max-width: 1400px;
  margin: clamp(60px, 12vw, 120px) auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(300px, 40%, 500px), 1fr));
  gap: clamp(20px, 4vw, 40px);
  padding: 0 clamp(15px, 3vw, 30px);
}

.FAQ-photo {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 870px;
  object-fit: cover;
  border-radius: 20px;
}

.FAQ-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: white;
  padding: clamp(30px, 6vw, 60px);
  border-radius: 20px;
}

.FAQ-zagol {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: bold;
  margin-bottom: clamp(20px, 4vw, 40px);
}

.FAQ-content {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2vw, 12px);
}

.FAQ-item {
  border-bottom: 1px solid #f0f0f0;
}

.FAQ-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(12px, 2.5vw, 15px) 0;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.FAQ-question:hover {
  color: var(--primary-color);
  padding-left: 10px;
  background-color: rgba(244, 218, 238, 0.3);
}

.FAQ-text {
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 500;
  flex: 1;
}

.FAQ-arrow {
  font-size: clamp(12px, 2vw, 14px);
  transition: transform 0.3s ease;
  margin-left: 10px;
  color: var(--primary-color);
}

.FAQ-item.active .FAQ-arrow {
  transform: rotate(180deg);
}

.FAQ-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 clamp(6px, 1.6vw, 10px);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  color: var(--text-medium);
  white-space: pre-line;
}

.FAQ-answer.active {
  max-height: 1000px;
  padding: clamp(10px, 2vw, 15px) clamp(10px, 2vw, 15px) clamp(15px, 3vw, 20px);
}

.FAQ-answer p {
  margin-bottom: clamp(8px, 1.5vw, 12px);
}

.FAQ-answer p:last-child {
  margin-bottom: 0;
}

.FAQ-answer ul {
  margin: clamp(8px, 1.5vw, 12px) 0;
  padding-left: clamp(20px, 3vw, 25px);
}

.FAQ-answer li {
  margin-bottom: clamp(6px, 1vw, 8px);
}

.FAQ-answer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.FAQ-answer a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.FAQ-answer .clickable,
.FAQ-answer .geo-link {
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline;
  padding: 2px 4px;
  border-radius: 3px;
}

.FAQ-answer .clickable:hover,
.FAQ-answer .geo-link:hover {
  background-color: rgba(96, 132, 59, 0.1);
  text-decoration: underline;
}

/* ==================== DELIVERY SECTION ==================== */
.inportt {
  margin: clamp(50px, 10vw, 100px) clamp(15px, 3vw, 20px);
}

.inportt__content {
  display: flex;
  justify-content: space-around;
  margin-bottom: clamp(20px, 4vw, 40px);
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
}

.inportt__info {
  width: 100%;
  max-width: 600px;
  flex: 1;
  min-width: 280px;
}

.info-green {
  background-color: #3E502B;
  color: white;
  padding: clamp(20px, 4vw, 25px);
  border-radius: clamp(20px, 4vw, 30px);
  flex: 1;
  width: auto;
  margin-bottom: clamp(18px, 3vw, 22px);
  font-size: clamp(14px, 2vw, 16px);
}

.info-white {
  padding: clamp(20px, 4vw, 25px);
  flex: 1;
  margin-bottom: clamp(18px, 3vw, 22px);
  font-size: clamp(14px, 2vw, 16px);
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: clamp(15px, 3vw, 20px);
}

.dis {
  display: flex;
  gap: clamp(30px, 10vw, 90px);
  flex-wrap: wrap;
  margin: clamp(10px, 2vw, 15px) 0;
}

.distans, .var {
  white-space: pre-line;
  flex: 1;
  min-width: 100px;
}

.inportt__photo {
  width: 100%;
  max-width: 650px;
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 3vw, 20px);
}

.inport__photo {
  width: 100%;
  height: auto;
  max-height: 690px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: clamp(18px, 3vw, 22px);
}

.inportt__text {
  text-align: center;
  background-color: #3E502B;
  border-radius: 20px;
  color: white;
  padding: clamp(15px, 3vw, 20px);
  max-width: 1100px;
  margin: 0 auto;
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.5;
}

/* ==================== FOOTER ==================== */
.footer {
  background-color: #3E502B;
  color: white;
  padding: clamp(30px, 6vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 25%, 250px), 1fr));
  gap: clamp(20px, 4vw, 30px);
  margin-bottom: 0;
}

.location {
  font-size: clamp(15px, 2.5vw, 17px);
}

.location h2 {
  margin-bottom: clamp(10px, 2vw, 15px);
  font-size: clamp(18px, 3vw, 22px);
}

.location span {
  display: block;
  margin: clamp(6px, 1.5vw, 8px) 0;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px;
  border-radius: 4px;
}

.location span:hover {
  transform: scale(1.03) translateX(5px);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Footer link styling */
.footer-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.footer-link span {
  display: block;
  margin: clamp(6px, 1.5vw, 8px) 0;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px;
  border-radius: 4px;
}

.footer-link:hover span {
  transform: scale(1.03) translateX(5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.clickable::after {
  content: '📋';
  margin-left: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}

.clickable:hover::after {
  opacity: 1;
}

.geo-link::after {
  content: '📍';
  margin-left: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}

.geo-link:hover::after {
  opacity: 1;
}

/* ==================== MODAL ==================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.modal-content {
  background-color: white;
  color: #333;
  padding: clamp(30px, 6vw, 40px);
  border-radius: 15px;
  max-width: min(90%, 800px);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: clamp(25px, 5vw, 30px);
  cursor: pointer;
  color: #3E502B;
  transition: transform 0.2s;
}

.close-btn:hover {
  transform: rotate(90deg) scale(1.2);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(150px, 25vw, 200px), 1fr));
  gap: clamp(15px, 3vw, 20px);
  margin-top: clamp(15px, 3vw, 20px);
}

.catalog-item {
  padding: clamp(15px, 3vw, 20px);
  background-color: #f5f5f5;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: clamp(14px, 2vw, 16px);
}

.catalog-item:hover {
  background-color: #3E502B;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ==================== NOTIFICATION ==================== */
.notification {
  position: fixed;
  top: clamp(15px, 3vw, 20px);
  right: clamp(15px, 3vw, 20px);
  background-color: #3E502B;
  color: white;
  padding: clamp(12px, 2vw, 15px) clamp(20px, 3vw, 25px);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 3000;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.4s ease;
  font-size: clamp(14px, 2vw, 16px);
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

/* ==================== MOBILE SPECIFIC ==================== */
@media (max-width: 768px) {
  .menu__body:first-of-type {
    display: none;
  }
  .menu__body:last-of-type {
    display: none;
  }
  .bottom-nav {
    display: flex;
  }
  .right-side{
    display: none !important;
  }
  .pereklad {
    display: none !important;
  }

  /* Show scroll buttons on mobile */
  .scroll-btn {
    display: flex;
  }

  .main-content__video {
    flex-direction: column;
    max-height: none;
  }

  .myVideo {
    width: 90%;
    max-width: 400px;
    max-height: 450px;
  }

  .video-overlay {
    display: none !important;
  }

  /* Mobile scrolling - one item at a time */
  .main-content__box {
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    grid-template-columns: none;
    padding-left: 7.5%;
    padding-right: 7.5%;
  }

  .back__im {
    grid-auto-flow: column;
    grid-auto-columns: 90%;
    grid-template-columns: none;
    padding-left: 5%;
    padding-right: 5%;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
  }
  .logo {
    position: static !important;
    transform: none !important;
    margin: 0 auto;
    display: block;
  }
  
  .headerr__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  

  .logotip {
    margin: 0 0 15px 0;
  }

  .you_and__phot {
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    grid-template-columns: none;
    padding-left: 7.5%;
    padding-right: 7.5%;
  }

  .FAQ {
    grid-template-columns: 1fr;
  }

  .FAQ-photo {
    min-height: 300px;
    max-height: 400px;
  }
  
  .inport__photo {
    display: none;
  }
  
  .inportt__content {
    flex-direction: column;
  }
  
  .inportt__info,
  .inportt__photo {
    width: 100%;
    max-width: 100%;
  }
  
  .dis {
    gap: 20px;
  }
  
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer .location {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .footer .location:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .photo-love {
    order: -1;
  }
}

@media (min-width: 769px) {
  .bottom-nav {
    display: none !important;
  }
  
  body {
    padding-bottom: 0;
  }
}
/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}