body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.button {
  background: linear-gradient(135deg, #094204e5 0%, #035304d7 100%);
  border-radius: 6px;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  margin-top: 5px;
  color: white;
  border: 0;
}

.main-wrapper {
  width: 95vw;
  padding-bottom: 70px;
}

.bg-image {
  position: fixed;
  inset: -40px;
  background-image: url(../assets/background.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(6px) brightness(0.42) saturate(0.95);
  z-index: -2;
  pointer-events: none;
}

h1,
h2 {
  color: white;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      ellipse at top,
      rgba(255, 140, 60, 0.12) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, rgba(13, 8, 5, 0.35) 0%, rgba(13, 8, 5, 0.62) 100%);
  z-index: -1;
  pointer-events: none;
}

.barlow-condensed-medium {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.main-wrapper {
  display: block;
  margin: 10vh auto;
}

.product-thumb {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.logo {
  display: block;
  margin-bottom: 2vh;
  width: 150px;
  height: auto;
}

.products-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.product-thumb {
  background-color: black;
  color: white;
  text-decoration: none;
}

.product-thumb-info {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-name {
  letter-spacing: 1px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.product-thumb-price {
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 10px;
}

.product-price-digit {
  font-size: 13px;
}

.product-video-thumb {
  height: 20vh;
  object-fit: cover;
  display: block;
}

:root {
  --main-color: rgb(212, 171, 100);
  --darker-main-color: rgb(165, 131, 77);
}

.product-tag {
  transform: none;
  display: inline-block;
  align-self: flex-start;
  background: linear-gradient(
    135deg,
    var(--main-color) 40%,
    var(--darker-main-color) 100%
  );
  color: white;
  padding: 3px 9px;
  border-radius: 6px;
  border: none;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-page-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.swiper.product-swiper {
  height: 65vh;
  width: 100%;
}

.swiper video {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.product-swiper .swiper-button-next,
.product-swiper .swiper-button-prev {
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  width: 20px;
  height: 20px;
  border-radius: 50%;

  box-shadow: rgba(255, 255, 255, 0.524) 0 0 5px;
  padding: 5px;
}

.product-gallery-image {
  display: block;
  width: 100%;
  object-fit: contain;
  height: 100%;
}

.product-info {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.product-feature {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  align-items: center;

  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 5px;
  margin: 5px 0;
  box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.15);

  position: relative;
}

.product-feature .product-tag {
  position: absolute;
  top: -10px;
}

.product-price,
.product-quantity {
  display: block;
  font-size: 16px;
}

.product-price-wrapper {
  width: 95%;
  padding: 2.5%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
}

.product-price {
  color: #1c8607c7;
  font-size: 18px;
}

.product-name.mobile-only {
  position: absolute;
  right: 5%;
  top: 15%;
  color: white;
}

.mobile-hide {
  display: none;
}

@media (min-width: 1000px) {
  .mobile-only {
    display: none;
  }

  .mobile-hide {
    display: unset;
  }

  .main-wrapper {
    width: 70vw;
    margin: 0 auto;
  }

  .products-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }

  .logo {
    transform: translateX(-20%);
  }

  .product-page-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 20px;
  }
}

.tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(
    180deg,
    rgba(25, 20, 18, 0.8) 0%,
    rgba(5, 5, 5, 0.95) 100%
  );
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  gap: 5px;
  width: 33%;
}

.tab-item img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

/* Info Widgets Styles */
.contact-buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0;
}

.contact-btn {
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  background: #333;
}

.btn-signal {
  background: #3c72d6;
}
.btn-telegram {
  background: #28a0d4;
}

.btn-icon {
  font-size: 24px;
  margin-right: 15px;
}

.btn-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.btn-title {
  font-weight: bold;
  font-size: 16px;
}

.btn-subtitle {
  font-size: 12px;
  opacity: 0.8;
}

.btn-arrow {
  font-size: 24px;
  opacity: 0.8;
}

.info-block {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(255, 140, 60, 0.15);
  padding: 20px;
  margin-bottom: 20px;
  color: white;
}

.info-block-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-block-icon {
  font-size: 24px;
  color: white;
}

.info-block-title {
  margin: 0;
  font-size: 16px;
  letter-spacing: 1px;
  color: white;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.check-icon {
  color: white;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

@media (min-width: 600px) {
  .payment-methods-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.payment-method {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.pm-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
}

.pm-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pm-title {
  font-weight: bold;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pm-tag {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
}

.pm-tag-green {
  background: var(--darker-main-color);
  color: rgba(255, 255, 255, 0.9);
}
.pm-tag-orange {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.pm-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.info-alert {
  background: rgba(255, 255, 255, 0.1);
  border-left: 3px solid white;
  padding: 10px 15px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.reviews-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
}

@media (max-width: 768px) {
  .reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
