body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #bc97e050;
  overflow-x: hidden;
  scroll-behavior: smooth; /* за убав scroll до секции */
}

.tabs-menu {
  gap: 30px;
  cursor: pointer;
}
.tab-item {
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}
.tab-item.active {
  color: #7e2ecf;
}
.tab-underline {
  height: 3px;
  background: #7e2ecf;
  width: 100px;
  transition: transform 0.3s ease, left 0.3s ease;
  margin-bottom: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.tab-content .tab-pane {
  display: none;
}
.tab-content .tab-pane.active {
  display: block;
}

.product-card-img {
  height: 250px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: all 0.6s ease-in-out;
}
.img-front {
  opacity: 1;
  z-index: 2;
}
.img-back {
  opacity: 0;
  z-index: 1;
}
.product-card-img:hover .img-front {
  opacity: 0;
}
.product-card-img:hover .img-back {
  opacity: 1;
}

/* VIDEO */

/* Hero video container responsive fullscreen */
.hero-video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Video fullscreen и responsive */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay текст на дното */
.hero-overlay-bottom {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  max-width: 90%;
}

.hero-overlay-bottom h1 {
  font-size: 1.3rem;
  color: #d8b9f0;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 8px;
  line-height: 1.2;
}

/* Overlay копче */
.hero-overlay-bottom a.btn {
  margin-top: 15px;
  font-size: 1.1rem;
  padding: 0.6rem 1.2rem;
}

/* Стрелки за промена на видео */
.hero-arrow-left,
.hero-arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.hero-arrow-left:hover,
.hero-arrow-right:hover {
  color: #fff;
}

.hero-arrow-left {
  left: 25px;
}
.hero-arrow-right {
  right: 25px;
}

/* Долна стрелка за скрол */
.hero-scroll-down {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  animation: bounce 2s infinite;
  z-index: 3;
}

/* Bounce анимација */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-12px);
  }
  60% {
    transform: translateX(-50%) translateY(-6px);
  }
}

/* Responsive за tablet */
@media (max-width: 992px) {
  .hero-video-container {
    height: 100vh;
  }
  .hero-overlay-bottom h2 {
    font-size: 1rem;
  }
  .hero-overlay-bottom a.btn {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
  .hero-arrow-left,
  .hero-arrow-right {
    font-size: 3rem;
  }
}

/* Responsive за mobile */
@media (max-width: 576px) {
  .hero-video-container {
    height: 100vh;
  }
  .hero-overlay-bottom h2 {
    font-size: 1rem;
  }
  .hero-overlay-bottom a.btn {
    font-size: 0.95rem;
    padding: 0.45rem 0.9rem;
  }
  .hero-arrow-left,
  .hero-arrow-right {
    font-size: 2.5rem;
  }
  .hero-scroll-down {
    font-size: 2rem;
  }
}

/* cards 
 .............
  */
/* Card Base */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  border-radius: 25px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 110%;
  cursor: pointer;
  background-color: #d7b0f0c2;
}
h5 {
  font-size: 1.7rem;
  margin-bottom: 15px;
}
.this {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
  font-size: 1.2rem;
}

.space {
  margin-bottom: 200px; /* растојание меѓу редови на картички */
}

/* Glowing gradient edges */
.card::before,
.card::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ff75, #3700ff, #ff0062df);
  top: 0;
  left: 0;
  transition: all 0.15s;
}
.card::after {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  background: linear-gradient(270deg, #00ff75, #3700ff, #06000b);
}
.card:hover::before,
.card:hover::after {
  width: 100%;
}

/* Hover shadow and slight scale */
.card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(126, 46, 207, 0.6);
}

/* Image container */
.product-card-img {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* Front & Back images */
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.6s ease-in-out;
}
.img-front {
  opacity: 1;
  z-index: 2;
}
.img-back {
  opacity: 0;
  z-index: 1;
}

/* Hover image switch */
.product-card-img:hover .img-front {
  opacity: 0;
}
.product-card-img:hover .img-back {
  opacity: 1;
}

.marg {
  margin-bottom: 20px;
}
/* Button inside card */
.btn-inside {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 40px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.8);
  color: #bfa66b;
  text-decoration: none;
  transition: 0.3s ease;
}
.btn-inside:hover {
  background: #bfa66b;
  color: white;
}

/* Responsive */
