/* ================================
   U7 DISCOVER + FAQ SECTION
================================ */

.ux7-discover-section {
  background: #000000;
  padding-right: 16px;
  padding-bottom: 50px;
  padding-left: 16px;
  font-family: 'Inter', system-ui, sans-serif;
}

.ux7-discover-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* LEFT */
.ux7-discover-title {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.ux7-discover-title span {
  color: #ff6a00;
}

.ux7-discover-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #a3b0c3;
  max-width: 520px;
}

/* FAQ */
.ux7-faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ux7-faq-item {
  background: #181818;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
  overflow: hidden;
}

/* HEADER */
.ux7-faq-header {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
}

.ux7-faq-header:hover {
  background: transparent;
}

/* ARROW */
.ux7-faq-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: rotate(-45deg);
  transition: transform .3s ease;
}

/* BODY */
.ux7-faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  transition: all .35s ease;
}

/* ACTIVE */
.ux7-faq-item.active .ux7-faq-body {
  max-height: 200px;
  padding: 0 22px 18px;
}

.ux7-faq-item.active .ux7-faq-arrow {
  transform: rotate(135deg);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ux7-discover-container {
    grid-template-columns: 1fr;
  }

  .ux7-discover-title {
    font-size: 26px;
  }
}


/* ===============================
   CATEGORY SCROLL (MOBILE)
================================ */

.uix-cat-section {
  background: black;
  padding: 20px 0;
}

/* WRAPPER */
.uix-cat-scroll {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;

  background: #ffffff;
  border-radius: 16px;

  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 12px;
}

/* ITEM */
.uix-cat-item {
  text-decoration: none;
  color: #0f172a;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  padding: 10px 6px;
  border-radius: 12px;
  transition: all .25s ease;
}

.uix-cat-item:hover {
  background: #f9fafb;
  transform: translateY(-4px);
}

.uix-cat-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.uix-cat-item span {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}


/* ===============================
   MOBILE: HORIZONTAL SCROLL
================================ */
@media (max-width: 768px) {
  .uix-cat-scroll {
    display: flex;
    gap: 14px;

    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    padding: 16px 12px;
  }

  .uix-cat-item {
    min-width: 80px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  /* HIDE SCROLLBAR */
  .uix-cat-scroll::-webkit-scrollbar {
    display: none;
  }
}


/* ===============================
   CUSTOMER REVIEW SECTION (RVX)
================================ */

.rvx-review-section {
  background: black;
  padding-right: 16px;
  padding-bottom: 72px;
  padding-left: 16px;
  font-family: 'Inter', system-ui, sans-serif;
}

.rvx-review-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.rvx-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.rvx-review-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.rvx-review-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: white;
}

/* STARS */
.rvx-stars {
  display: flex;
  gap: 3px;
}

.rvx-star {
  width: 14px;
  height: 14px;
  background: #d1d5db;
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%,
    68% 57%, 79% 91%, 50% 70%,
    21% 91%, 32% 57%, 2% 35%,
    39% 35%
  );
}

.rvx-stars-green .rvx-star {
  background: #00b67a;
}

.rvx-star-half {
  background: linear-gradient(90deg, #00b67a 50%, #d1d5db 50%);
}

.rvx-review-count strong {
  font-weight: 600;
}

/* GRID */
.rvx-review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* CARD */
.rvx-review-card {
  background: #181818;
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 14px 36px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.rvx-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0,0,0,.08);
}

/* TOP */
.rvx-review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rvx-review-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

/* COUNTRY */
.rvx-review-country {
  margin: 8px 0 14px;
  font-size: 13px;
  color: white;
}

/* TEXT */
.rvx-review-card p {
  font-size: 14px;
  line-height: 1.65;
  color: white;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .rvx-review-grid {
    grid-template-columns: 1fr;
  }

  .rvx-review-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .rvx-review-header h2 {
    font-size: 24px;
  }
}
