* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

:root {
  --main-color: #fb111a;
  --primary-color: #000000;
  --secondary-color: #fcfcfc;
  --tertiary-color: #bcbaba;
}

a {
  text-decoration: none !important;
}

p {
  color: var(--tertiary-color);
}

main {
  max-width: 1500px;
  margin: 0 auto;
  /* overflow: hidden; */
}

header {
  position: sticky;
  width: 100%;
  top: 0;
  background: var(--primary-color);
  z-index: 1000;
  border-bottom: 1px solid #00275b24;
  /* overflow: hidden; */
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  width: 180px;
}

.navigation-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--tertiary-color);
  font-weight: bold;
}
.nav-links a.login-sys {
  color: var(--main-color);
}

/* TOUR DROPDOWN */
.tour-drop {
  position: relative;
  cursor: pointer;
}

/* link + icon alignment */
.tour-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--tertiary-color);
}

/* icon animation */
.tour-link i {
  transition: 0.3s ease;
}

/* rotate icon */
.tour-drop:hover .tour-link i {
  transform: rotate(180deg);
}

/* DROPDOWN BOX */
.dropdown-tour {
  position: absolute;
  top: 130%;
  /* show below */
  left: 0;
  min-width: 240px;
  width: 100%;
  background: white;
  border-radius: 12px;
  padding: 10px 0;

  /* premium shadow */
  box-shadow:
    rgba(0, 0, 0, 0.15) 0px 15px 25px,
    rgba(0, 0, 0, 0.05) 0px 5px 10px;

  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* show dropdown */
.tour-drop:hover .dropdown-tour {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* dropdown links */
.dropdown-tour a {
  display: block;
  padding: 3px 20px;
  color: var(--text);
  text-decoration: none;
  transition: 0.2s;
  font-size: 14px;
}

/* hover effect */
.dropdown-tour a:hover {
  background: #00275b3b;
  padding-left: 25px;
  color: #00275b;
}

.contact-btn {
  padding: 3px 8px;
  border-radius: 50px;
  border: 1px solid var(--primary-color);

  display: flex;
  justify-content: space-between;
  gap: 5px;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  background: var(--secondary-color);
  color: white;
}

/* .contact-btn span {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50px;
} */

.contact-btn span i {
  font-size: 18px;
}

.contact-btn .user-text {
  margin-top: 1px !important;
  color: white;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--secondary-color);
}

/* Header Bottom for phone fixed */

.vxm-bottom-navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--secondary-color);
  border-top: 1px solid #dcdcdc;
  z-index: 9999;
  padding: 10px 0;
}

.vxm-bottom-navbar .vxm-nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vxm-bottom-navbar .vxm-nav-link {
  width: 20%;
  text-align: center;
  text-decoration: none;
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.vxm-bottom-navbar .vxm-nav-link i {
  font-size: 29px;
  line-height: 1;
  margin-bottom: 8px;
}

.vxm-bottom-navbar .vxm-nav-link span {
  font-size: 16px;
  font-weight: 400;
}

.vxm-bottom-navbar .vxm-nav-link.active {
  color: var(--main-color);
}

/* Header Bottom for phone fixed */

/*================================================ index page ================================================== */
/* HERO */
.vx-hero-section {
  padding: 0;
}

.vx-hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.vx-hero-slider .carousel-inner,
.vx-hero-slider .carousel-item {
  width: 100%;
  height: 100%;
}

.vx-hero-slider .carousel-item {
  position: relative;
}

.vx-hero-slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 6s ease;
}

.vx-hero-slider .carousel-item.active img {
  transform: scale(1.05);
}

/* overlay */
.vx-hero-slider .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.12) 100%
  );
  z-index: 1;
}

/* caption */
.vx-caption {
  position: absolute;
  z-index: 5;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 520px;
  color: #fff;
}

.vx-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 13px;
  margin-bottom: 18px;
}

.vx-caption h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}

.vx-caption p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
}

/* buttons */
.vx-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.vx-btn-primary {
  height: 52px;
  padding: 0 28px;
  border-radius: 50px;
  /* background: #fff; */
  background: var(--main-color);
  color: var(--secondary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
}

.vx-btn-primary:hover {
  transform: translateY(-3px);
  color: #000;
  background: var(--secondary-color);
}

.vx-btn-outline {
  height: 52px;
  padding: 0 28px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.vx-btn-outline:hover {
  background: #fff;
  color: #000;
}

/* arrows */
.vx-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 20;
  font-size: 20px;
  transition: 0.3s;
}

.vx-arrow:hover {
  background: #fff;
  color: #000;
}

.vx-prev {
  left: 18px;
}

.vx-next {
  right: 18px;
}

/* dots */
.vx-dots {
  bottom: 20px;
}

.vx-dots button {
  width: 10px !important;
  height: 10px !important;
  border: none !important;
  border-radius: 50px !important;
  background: rgba(255, 255, 255, 0.45) !important;
  margin: 0 5px !important;
  opacity: 1 !important;
  transition: 0.3s;
}

.vx-dots .active {
  width: 34px !important;
  background: #fff !important;
}

/* floating card */
.vx-floating-card {
  position: absolute;
  right: 4%;
  bottom: 7%;
  z-index: 10;
  width: 240px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: #fff;
}

.vx-floating-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.vx-floating-card p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: white;
}

.vx-mini-btn {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

/* hero Section */

/* SECTION */
.vx-enquiry-section {
  padding: 35px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.82)),
    url("../media/hero2.avif");
  background-size: cover;
  background-position: center;
}

/* WRAPPER */
.vx-enquiry-wrapper {
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.vx-badge {
  width: fit-content;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vx-feature-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.vx-feature {
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

.vx-feature i {
  color: var(--main-color);
}

/* FORM */
.new-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vx-form-head {
  margin-bottom: 35px;
}

.vx-form-head h3 {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.vx-form-head h3 span {
  color: var(--main-color);
}

.vx-form-head p {
  color: #666;
  margin: 0;
  line-height: 1.7;
}

.vx-form-group {
  margin-bottom: 22px;
}

.vx-input {
  width: 100%;
  border: 1px solid #e8e8e8;
  background: #f8f8f8;
  border-radius: 18px;
  padding: 16px 20px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.vx-input:focus {
  border-color: var(--main-color);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(251, 17, 26, 0.08);
}

.vx-textarea {
  height: 140px;
  resize: none;
}

/* DESIGN OPTIONS */
.vx-design-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
}

.vx-design-options {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.vx-option {
  flex: 1;
}

.vx-option input {
  display: none;
}

.vx-option label {
  height: 62px;
  border-radius: 18px;
  border: 2px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  background: #fafafa;
}

.vx-option label i {
  opacity: 0;
  transition: 0.3s;
}

.vx-option input:checked + label {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.vx-option input:checked + label i {
  opacity: 1;
  color: var(--main-color);
}

/* BUTTON */
.vx-submit-btn {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 18px;
  background: var(--main-color);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: 0.3s;
  box-shadow: 0 14px 35px rgba(251, 17, 26, 0.28);
}

.vx-submit-btn:hover {
  transform: translateY(-3px);
  background: #d90b14;
}

/* Enquiry form Section */

/* categories section */

/* =========================
   XHIVA CATEGORIES SECTION
========================= */

.xh-category-section {
  /* padding: 70px 0; */
  background: var(--secondary-color);
  overflow: hidden;
}

.xh-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
  gap: 20px;
}

.xh-category-subtitle {
  color: var(--main-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.xh-category-head h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 6px;
  margin-bottom: 0;
  color: var(--primary-color);
}

.xh-category-view-btn {
  width: fit-content;
  padding: 11px 24px;
  background: var(--main-color);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid transparent;
}

.xh-category-view-btn:hover {
  background: transparent;
  border-color: var(--main-color);
  color: var(--main-color);
}

.xh-category-card {
  display: block;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  transition: 0.35s ease;
  border: 1px solid #ededed;
  height: 100%;
}

.xh-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.xh-category-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.xh-category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.xh-category-card:hover .xh-category-img img {
  transform: scale(1.08);
}

.xh-category-content {
  padding: 18px;
  text-align: center;
}

.xh-category-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.xh-category-content p {
  margin: 0;
  color: var(--tertiary-color);
  font-size: 14px;
  font-weight: 500;
}

/* categories section */

/* Cards Section */

.vs-products-heading {
  margin-bottom: 24px;
}

.vs-products-tag {
  display: inline-block;
  background: rgba(251, 17, 26, 0.08);
  color: var(--main-color);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
}

.vs-products-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 12px;
  line-height: 1.2;
}

.vs-products-title a i {
  font-size: 25px;
  font-weight: 800;
  color: var(--primary-color);
  margin-top: 12px;
  line-height: 1.2;
}

.vs-products-title span {
  color: var(--main-color);
}

.vs-products-para {
  max-width: 700px;
  margin: auto;
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

.vs-products-wrap {
  padding: 10px;
}

.vs-products-wrap .row {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}

/* DESKTOP 6 */
.vs-card-col {
  width: 16.666%;
}

.vs-card-col.col2 {
  width: 20%;
}

/* CARD */
.vs-product-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  overflow: hidden;
  padding: 10px;
  height: 100%;
  position: relative;
  border: 1px solid rgba(133, 133, 133, 0.322);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  transition: 0.35s ease;
}

.vs-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.vs-product-image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  background: #f8f8f8;
  position: relative;
}

.vs-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}
.vs-product-image i {
  padding: 3px 4px 1px;
  border-radius: 50%;
  border: 1px solid rgba(39, 39, 39, 0.404);
  color: rgba(54, 54, 54, 0.749);
  background: var(--secondary-color);
  position: absolute;
  font-size: 10px;
  top: 7px;
  right: 7px;
  cursor: pointer;
}
.vs-product-image i.active {
  color: red;
}

.vs-product-card:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.vs-product-content {
  padding: 12px 4px 4px;
  text-align: center;
}

.vs-product-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary-color);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 12px;
}

/* PRICE */
.vs-product-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--main-color);
  /* margin-bottom: 8px; */
}

.vs-product-price span {
  font-size: 13px;
  font-weight: 600;
  color: #ff5c63;
}

/* STARS */
.vs-rating {
  margin-bottom: 12px;
}

.vs-rating i {
  color: #ffb12a;
  font-size: 13px;
  margin: 0 1px;
}

/* BUTTON */
.vs-cart-btn {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 10px 25px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--main-color);

  /* background: linear-gradient(
      135deg,
      #ff7a00,
      var(--main-color)
    ); */

  box-shadow: 0 8px 20px rgba(251, 17, 26, 0.18);

  transition: 0.3s ease;
}

.vs-cart-btn:hover {
  transform: scale(0.98);
}

/* Cards Section */

.vx-rating {
  display: flex;
  gap: 8px;
  justify-content: start;
  align-items: center;
}

.vx-star {
  font-size: 40px;
  cursor: pointer;
  color: #d8d8d8;
  transition: 0.3s ease;
}

.vx-star:hover {
  transform: scale(1.15);
}

.vx-star.active {
  color: #ffc107;
}

.vx-rating-text {
  /* text-align:center; */
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

/* new section Section */

/* =========================
VEXON BENEFITS SECTION
========================= */

.vxsport9-benefit-wrap {
  padding: 75px 0;
  background: #050505;
  position: relative;
  overflow: hidden;
}

/* glow effect */

.vxsport9-benefit-wrap::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(251, 17, 26, 0.07);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(90px);
}

.vxsport9-benefit-wrap::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(251, 17, 26, 0.05);
  border-radius: 50%;
  bottom: -180px;
  right: -160px;
  filter: blur(80px);
}

/* =========================
HEADING
========================= */

.vxsport9-heading {
  margin-bottom: 42px;
  position: relative;
  z-index: 2;
}

.vxsport9-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(251, 17, 26, 0.08);
  border: 1px solid rgba(251, 17, 26, 0.2);
  color: var(--main-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.vxsport9-heading h2 {
  color: white;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}

.vxsport9-heading p {
  color: var(--tertiary-color);
  font-size: 14px;
  max-width: 620px;
  margin: auto;
  line-height: 1.8;
}

/* =========================
CARD
========================= */

.vxsport9-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 24px;
  height: 100%;
  transition: 0.4s;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

/* top border hover */

.vxsport9-card::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--main-color);
  top: 0;
  left: 0;
  transition: 0.5s;
}

.vxsport9-card:hover::before {
  width: 100%;
}

/* hover */

.vxsport9-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 17, 26, 0.25);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* =========================
ICON
========================= */

.vxsport9-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vxsport9-icon i {
  font-size: 22px;
}

/* icon colors */

.vxsport9-red {
  background: rgba(251, 17, 26, 0.1);
  color: #fb111a;
}

.vxsport9-green {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
}

.vxsport9-blue {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
}

.vxsport9-orange {
  background: rgba(243, 156, 18, 0.1);
  color: #f39c12;
}

.vxsport9-purple {
  background: rgba(155, 89, 182, 0.1);
  color: #9b59b6;
}

.vxsport9-cyan {
  background: rgba(26, 188, 156, 0.1);
  color: #1abc9c;
}

/* =========================
TEXT
========================= */

.vxsport9-card h4 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.vxsport9-card p {
  color: var(--tertiary-color);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* =========================
RESPONSIVE
========================= */

/* new section Section */

/* faq section */

/* =========================
PREMIUM FAQ
========================= */

.zxqfaq-premium-wrap {
  padding: 110px 0;
  background: #050505;
  position: relative;
  overflow: hidden;
}

/* glow */

.zxqfaq-premium-wrap::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(251, 17, 26, 0.08);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(90px);
}

.zxqfaq-premium-wrap::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(251, 17, 26, 0.05);
  border-radius: 50%;
  bottom: -220px;
  right: -180px;
  filter: blur(90px);
}

/* =========================
HEADING
========================= */

.zxqfaq-heading {
  margin-bottom: 70px;
}

.zxqfaq-tag {
  background: rgba(251, 17, 26, 0.1);
  color: var(--main-color);
  border: 1px solid rgba(251, 17, 26, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.zxqfaq-heading h2 {
  color: white;
  font-size: 58px;
  font-weight: 800;
  margin-bottom: 18px;
}

.zxqfaq-heading p {
  color: var(--tertiary-color);
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  line-height: 1.9;
}

/* =========================
LEFT CARD
========================= */

.zxqfaq-left-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 35px;
  padding: 45px;
  height: 100%;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 30px;
}

.zxqfaq-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(251, 17, 26, 0.1);
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(251, 17, 26, 0.2);
}

.zxqfaq-badge i {
  color: var(--main-color);
}

.zxqfaq-left-card h3 {
  color: white;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 22px;
}

.zxqfaq-left-card p {
  color: var(--tertiary-color);
  line-height: 1.9;
  margin-bottom: 35px;
}

/* help items */

.zxqfaq-help-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.zxqfaq-help-item {
  display: flex;
  gap: 18px;
  align-items: center;
}

.zxqfaq-help-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 20px;
  background: rgba(251, 17, 26, 0.1);
  border: 1px solid rgba(251, 17, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.zxqfaq-help-icon i {
  color: var(--main-color);
  font-size: 28px;
}

.zxqfaq-help-item h5 {
  color: white;
  margin-bottom: 5px;
  font-size: 20px;
}

.zxqfaq-help-item span {
  color: var(--tertiary-color);
  font-size: 15px;
}

/* button */

.zxqfaq-contact-btn {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  background: var(--main-color);
  color: white;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.4s;
}

.zxqfaq-contact-btn:hover {
  background: #d60d16;
  transform: translateY(-4px);
}

/* =========================
ACCORDION
========================= */

.zxqfaq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.zxqfaq-item {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 24px !important;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: 0.4s;
}

.zxqfaq-item:hover {
  border-color: rgba(251, 17, 26, 0.4) !important;
  transform: translateY(-2px);
}

/* button */

.zxqfaq-btn {
  background: transparent !important;
  color: white !important;
  padding: 30px 32px !important;
  font-size: 20px;
  font-weight: 600;
  box-shadow: none !important;
}

.zxqfaq-btn:not(.collapsed) {
  background: rgba(251, 17, 26, 0.05) !important;
}

/* arrow */

.zxqfaq-btn::after {
  filter: brightness(0) invert(1);
}

/* body */

.zxqfaq-body {
  color: var(--tertiary-color);
  padding: 0 32px 32px;
  line-height: 1.9;
  font-size: 16px;
}

/* faq section */
/* PRODUCT SECTION */

/* =========================
   SHOP TOPBAR
========================= */

.vx-shop-topbar {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.vx-mobile-filter-btn {
  display: none;
  height: 50px;
  padding: 0 18px;
  border: none;
  background: var(--main-color);
  color: #fff;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  /* display: flex; */
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(251, 17, 26, 0.15);
}

.vx-search-box {
  flex: 1;
  height: 52px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ededed;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.vx-search-box input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 18px;
  font-size: 15px;
}

.vx-search-box button {
  width: 58px;
  height: 100%;
  border: none;
  background: var(--main-color);
  color: #fff;
  font-size: 17px;
}

/* =========================
   SHOP LAYOUT
========================= */

.vx-shop-layout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* =========================
   FILTER
========================= */

.vx-premium-filter {
  width: 260px;
  min-width: 260px;
  background: #fff;
  border-radius: 24px;
  padding: 18px;
  border: 1px solid #ededed;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 100px;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
  /* overflow-y: scroll; */
}

.vx-filter-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.vx-filter-top h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.vx-filter-top button {
  width: 34px;
  height: 34px;
  border: none;
  background: #f5f5f5;
  border-radius: 10px;
  display: none;
}

.vx-filter-item {
  border-bottom: 1px solid #f1f1f1;
  padding: 14px 0;
}

.vx-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.vx-filter-head span {
  font-size: 15px;
  font-weight: 600;
}

.vx-filter-head i {
  transition: 0.3s;
}

.vx-filter-item.active .vx-filter-head i {
  transform: rotate(180deg);
}

.vx-filter-body {
  display: none;
  padding-top: 14px;
}

.vx-filter-item.active .vx-filter-body {
  display: block;
}

.vx-filter-body label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #666;
}

.vx-filter-body input {
  accent-color: var(--main-color);
}

.vx-filter-btns {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.vx-clear-btn,
.vx-apply-btn {
  flex: 1;
  height: 48px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
}

.vx-clear-btn {
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
}

.vx-apply-btn {
  border: none;
  background: var(--main-color);
  color: #fff;
  box-shadow: 0 10px 20px rgba(251, 17, 26, 0.18);
}

/* =========================
   PRODUCTS
========================= */

.vx-shop-products {
  flex: 1;
}

/* PRODUCT SECTION */

/* ====================================================index page===============================================  */

/* Product Detail Page */

.vxd-wrap {
  padding: 30px 0 80px;
}

.vxd-card {
  background: white;

  border-radius: 24px;

  padding: 25px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* gallery */

.vxd-gallery {
  display: flex;

  gap: 15px;
}

.vxd-thumb-wrap {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.vxd-thumb {
  width: 70px;

  height: 70px;

  border: 1px solid #eee;

  border-radius: 12px;

  padding: 6px;

  cursor: pointer;
}

.vxd-thumb img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}
.vxd-thumb video {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.vxd-main {
  height: 500px;

  background: #fafafa;

  border-radius: 20px;

  padding: 25px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;
}

.vxd-main img {
  max-height: 85%;

  max-width: 85%;

  object-fit: contain;
}

.vxd-off {
  position: absolute;

  top: 15px;

  left: 15px;

  background: var(--main-color);

  color: white;

  padding: 7px 14px;

  border-radius: 50px;

  font-size: 13px;
}

/* details */

.vxd-title {
  font-size: 30px;

  font-weight: 700;
}

.vxd-rating {
  background: green;

  padding: 4px 10px;

  border-radius: 50px;

  color: white;

  font-size: 13px;
}

.vxd-price {
  font-size: 34px;

  font-weight: 800;

  color: var(--main-color);
}

.vxd-old {
  font-size: 18px;

  text-decoration: line-through;

  color: gray;
}

.vxd-save {
  color: green;

  font-size: 15px;
}

.vxd-table {
  margin: 20px 0;
}

.vxd-table td {
  padding: 14px;

  font-size: 14px;
}

.vxd-btn1 {
  background: linear-gradient(135deg, orange, purple);

  border: 0;

  color: white;

  padding: 15px 20px;

  border-radius: 50px;

  font-weight: 700;
}

.vxd-btn2 {
  background: linear-gradient(135deg, red, deeppink);

  border: 0;

  color: white;

  padding: 15px 35px;

  border-radius: 50px;

  font-weight: 700;
}

.vxd-feature {
  background: #fafafa;

  padding: 16px;

  border-radius: 14px;

  text-align: center;
}

.vxd-tab {
  background: white;

  padding: 30px;

  margin-top: 25px;

  border-radius: 20px;

  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
}

.vxd-review {
  border: 1px solid #eee;

  padding: 20px;

  border-radius: 14px;

  margin-bottom: 20px;
}

.vxd-review img {
  width: 50px;

  height: 50px;

  border-radius: 50%;
}

.vxd-faq {
  border: 1px solid #eee;

  border-radius: 12px;

  margin-bottom: 10px;

  overflow: hidden;
}

/* Product Detail Page */

/* Gallery Page */

/* MAIN WRAPPER */
.gallery-section .gallery-masonry {
  column-count: 4;
  column-gap: 16px;
}

/* ITEM */
.gallery-section .gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

/* IMAGE */
.gallery-section .gallery-item img {
  width: 100%;
  display: block;
  border-radius: 18px;
  transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.gallery-section .gallery-item:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.gallery-section .gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  opacity: 0;
  transition: 0.3s;
}

.gallery-section .gallery-item:hover::after {
  opacity: 1;
}

/* Gallery Page */

body {
  background: #f5f5f5;
}

.pcart-section {
  padding: 80px 0;
}

/* header */

.pcart-head {
  display: flex;

  justify-content: space-between;

  margin-bottom: 25px;

  align-items: center;
}

.pcart-head h2 {
  font-size: 30px;

  font-weight: 800;
}

.pcart-head span {
  font-size: 13px;

  color: var(--main-color);

  font-weight: 700;
}

/* item */

.pcart-item {
  background: white;

  border-radius: 12px;

  padding: 20px;

  display: flex;

  gap: 18px;

  margin-bottom: 18px;

  align-items: center;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.pcart-img {
  width: 120px;

  height: 120px;

  overflow: hidden;

  border-radius: 18px;

  background: #f4f4f4;
}

.pcart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pcart-content {
  flex: 1;
}

.pcart-content h4 {
  font-size: 18px;

  font-weight: 700;
}

.pcart-rating {
  font-size: 12px;

  color: orange;

  margin: 8px 0;
}

.pcart-content p {
  font-size: 13px;

  color: #666;

  margin-bottom: 10px;
}

.pcart-stock {
  font-size: 12px;

  color: green;

  font-weight: 700;
}

/* action */

.pcart-action {
  text-align: right;

  min-width: 130px;
}

.pcart-action h3 {
  font-size: 26px;

  font-weight: 800;

  color: var(--main-color);
}

.pcart-qty {
  display: flex;

  justify-content: center;

  gap: 10px;

  margin: 15px 0;
}

.pcart-qty button {
  width: 32px;

  height: 32px;

  border: none;

  border-radius: 10px;

  background: #f2f2f2;
}

.pcart-qty input {
  width: 30px;

  border: none;

  text-align: center;

  background: none;
}

.pcart-remove {
  border: none;

  background: none;

  font-size: 13px;

  color: #888;
}

/* sidebar */

.pcart-sidebar {
  background: white;

  padding: 30px;

  border-radius: 12px;

  position: sticky;

  top: 100px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.pcart-sidebar h5 {
  font-size: 22px;

  font-weight: 800;

  margin-bottom: 25px;
}

.pcart-line {
  display: flex;

  justify-content: space-between;

  padding: 15px 0;

  border-bottom: 1px solid #eee;

  font-size: 14px;
}

.pcart-total {
  padding: 25px 0;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.pcart-total h3 {
  font-size: 30px;

  font-weight: 800;

  color: var(--main-color);
}

.pcart-checkout {
  width: 100%;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  background: linear-gradient(135deg, #fb111a, #ff4d4d);

  font-size: 15px;

  font-weight: 700;

  color: white;
}

.pcart-safe {
  margin-top: 20px;

  font-size: 13px;

  text-align: center;

  color: green;
}

/* Cart Page */

/* Contact Page */

/* ==================
SECTION
================== */

.vx-contact {
  padding: 70px 0;

  overflow: hidden;
}

/* ==================
HEADER
================== */

.vx-head {
  text-align: center;
  margin-bottom: 50px;
}

.vx-badge {
  display: inline-block;

  padding: 7px 18px;

  background: rgba(251, 17, 26, 0.08);

  border-radius: 50px;

  font-size: 11px;

  font-weight: 700;

  color: var(--main-color);
}

.vx-head h2 {
  font-size: 34px;

  font-weight: 800;

  margin: 18px 0 12px;

  line-height: 1.3;
}

.vx-head p {
  font-size: 13px;

  color: #666;

  max-width: 600px;

  margin: auto;
}

/* ==================
LEFT CARD
================== */

.vx-card {
  background: white;

  padding: 18px;

  border-radius: 20px;

  display: flex;

  gap: 14px;

  align-items: center;

  margin-bottom: 16px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);

  transition: 0.3s;
}

.vx-card:hover {
  transform: translateY(-5px);
}

.vx-icon {
  width: 48px;

  height: 48px;

  background: var(--main-color);

  border-radius: 14px;

  display: flex;

  justify-content: center;

  align-items: center;

  color: white;

  font-size: 18px;

  flex-shrink: 0;
}

.vx-card h5 {
  font-size: 15px;

  font-weight: 700;

  margin-bottom: 4px;
}

.vx-card p {
  font-size: 12px;

  margin: 0;

  color: #777;
}

/* ==================
SOCIAL
================== */

.vx-social {
  background: white;

  padding: 20px;

  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);

  margin-top: 18px;
}

.vx-social h4 {
  font-size: 16px;

  font-weight: 700;

  margin-bottom: 15px;
}

.vx-social a {
  width: 42px;

  height: 42px;

  display: inline-flex;

  justify-content: center;

  align-items: center;

  border-radius: 12px;

  background: #f5f5f5;

  color: black;

  font-size: 15px;

  text-decoration: none;

  margin-right: 8px;

  transition: 0.3s;
}

.vx-social a:hover {
  background: var(--main-color);

  color: white;
}

/* ==================
FORM
================== */

.vx-form {
  background: white;

  padding: 30px;

  border-radius: 24px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);

  height: 100%;
}

.vx-form h3 {
  font-size: 22px;

  font-weight: 800;

  margin-bottom: 22px;
}

.vx-form input,
.vx-form textarea {
  width: 100%;

  padding: 14px;

  font-size: 13px;

  border: 1px solid #eee;

  border-radius: 14px;

  margin-bottom: 16px;

  outline: none;

  transition: 0.3s;
}

.vx-form input:focus,
.vx-form textarea:focus {
  border-color: var(--main-color);
}

.vx-form textarea {
  height: 120px;

  resize: none;
}

.vx-btn {
  width: 100%;

  height: 52px;

  border: none;

  border-radius: 60px;

  background: linear-gradient(135deg, #fb111a, #ff5050);

  font-size: 13px;

  font-weight: 700;

  color: white;
}

.vx-btn:hover {
  transform: translateY(-2px);
}

/* ==================
MAP
================== */

.vx-map-section {
  margin-top: 60px;
}

.vx-map-head {
  text-align: center;

  margin-bottom: 20px;
}

.vx-map-head h3 {
  font-size: 26px;

  font-weight: 800;

  margin-bottom: 8px;
}

.vx-map-head p {
  font-size: 13px;

  color: #666;
}

.vx-map {
  overflow: hidden;

  border-radius: 24px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.vx-map iframe {
  width: 100%;

  height: 360px;

  border: 0;
}

/* Contact Page */

/* Authentication Page */

.vx-auth-section {
  padding: 20px;

  background: linear-gradient(135deg, #000, #111, #1a1a1a);

  display: flex;

  justify-content: center;

  align-items: center;
}

.vx-auth-card {
  max-width: 460px;

  width: 100%;

  padding: 40px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.vx-auth-logo {
  text-align: center;

  font-size: 34px;

  font-weight: 700;

  color: white;

  margin-bottom: 8px;
}

.vx-auth-logo span {
  color: #fb111a;
}

.vx-auth-subtitle {
  text-align: center;

  color: #aaa;

  margin-bottom: 30px;
}


@keyframes vxFade {
  from {
    opacity: 0;

    transform: translateY(15px);
  }

  to {
    opacity: 1;

    transform: none;
  }
}

.vx-auth-form h2 {
  color: white;

  font-size: 28px;

  margin-bottom: 5px;
}

.vx-auth-form p {
  color: #aaa;

  margin-bottom: 20px;

  font-size: 14px;
}

.vx-auth-input {
  position: relative;

  margin-bottom: 18px;
}

.vx-auth-input input {
  width: 100%;

  padding: 15px 50px 15px 18px;

  background: rgba(255, 255, 255, 0.08);

  border: none;

  outline: none;

  border-radius: 14px;

  color: white;
}

.vx-auth-input input::placeholder {
  color: #999;
}

.vx-auth-input i {
  position: absolute;

  right: 18px;

  top: 50%;

  transform: translateY(-50%);

  cursor: pointer;

  color: #999;
}

.vx-auth-btn {
  width: 100%;

  padding: 15px;

  border: none;

  border-radius: 14px;

  background: #fb111a;

  color: white;

  font-weight: 600;

  transition: 0.3s;
}

.vx-auth-btn:hover {
  transform: translateY(-3px);

  background: #d30d14;
}

.vx-auth-link {
  margin-top: 18px;

  text-align: center;

  font-size: 14px;

  color: #aaa;

  cursor: pointer;
}

.vx-auth-link span {
  color: #fb111a;

  font-weight: 600;
}

.vx-auth-otp {
  display: flex;

  justify-content: center;

  gap: 10px;

  margin: 25px 0;
}

.vx-auth-otp input {
  width: 52px;

  height: 60px;

  background: rgba(255, 255, 255, 0.08);

  border: none;

  outline: none;

  border-radius: 14px;

  text-align: center;

  font-size: 24px;

  color: white;
}

@media (max-width: 576px) {
  .video-box iframe {
    height: 250px;
  }
  .vx-enquiry-section {
    padding: 12px;
  }
  .vx-auth-card {
    padding: 25px;
  }

  .vx-auth-otp input {
    width: 42px;

    height: 50px;
  }
}

/* Authentication Page */

/* Footer Section */

/* =========================
FOOTER
========================= */

.vxn9-footer-wrap {
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
  padding: 90px 0 30px;
  color: var(--secondary-color);
}

/* red curve */

.vxn9-footer-wrap::after {
  content: "";
  position: absolute;
  width: 130%;
  height: 250px;
  border: 2px solid rgba(251, 17, 26, 0.6);
  border-radius: 50%;
  left: -15%;
  bottom: -220px;
}

/* glow */

.vxn9-footer-wrap::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(251, 17, 26, 0.08);
  border-radius: 50%;
  top: -250px;
  left: -200px;
  filter: blur(80px);
}

/* =========================
LOGO
========================= */

.vxn9-footer-logo {
  width: 240px;
  margin-bottom: 25px;
}

.vxn9-footer-desc {
  color: var(--tertiary-color);
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 30px;
}

/* =========================
SOCIAL
========================= */

.vxn9-socials {
  display: flex;
  gap: 14px;
}

.vxn9-socials a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 19px;
  text-decoration: none;
  transition: 0.4s;
}

.vxn9-socials a:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  transform: translateY(-5px);
}

/* =========================
HEADINGS
========================= */

.vxn9-footer-links h4,
.vxn9-footer-contact h4 {
  font-size: 23px;
  margin-bottom: 35px;
  font-weight: 700;
  position: relative;
}

.vxn9-footer-links h4::after,
.vxn9-footer-contact h4::after {
  content: "";
  width: 45px;
  height: 3px;
  background: var(--main-color);
  position: absolute;
  left: 0;
  bottom: -12px;
}

/* =========================
LINKS
========================= */

.vxn9-footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.vxn9-footer-links ul li {
  margin-bottom: 18px;
}

.vxn9-footer-links ul li a {
  color: var(--tertiary-color);
  text-decoration: none;
  font-size: 16px;
  transition: 0.4s;
  position: relative;
  padding-left: 18px;
}

.vxn9-footer-links ul li a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--main-color);
  font-size: 22px;
  top: -9px;
}

.vxn9-footer-links ul li a:hover {
  color: white;
  padding-left: 24px;
}

/* =========================
CONTACT
========================= */

.vxn9-contact-box {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.vxn9-contact-box i {
  color: var(--main-color);
  font-size: 21px;
  margin-top: 2px;
}

.vxn9-contact-box span,
.vxn9-contact-box a {
  color: var(--tertiary-color);
  text-decoration: none;
  line-height: 1.8;
  font-size: 16px;
}

/* =========================
NEWSLETTER
========================= */

.vxn9-newsletter {
  margin-top: 70px;
  padding: 45px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.vxn9-news-left {
  display: flex;
  gap: 25px;
  align-items: center;
}

.vxn9-news-icon {
  width: 95px;
  height: 95px;
  min-width: 95px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vxn9-news-icon i {
  color: var(--main-color);
  font-size: 42px;
}

.vxn9-news-left h3 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.vxn9-news-left p {
  color: var(--tertiary-color);
  line-height: 1.8;
  margin: 0;
}

.vxn9-news-form {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 70px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vxn9-news-form input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 28px;
  color: white;
  outline: none;
  font-size: 16px;
}

.vxn9-news-form button {
  border: none;
  background: var(--main-color);
  color: white;
  font-weight: 700;
  padding: 0 45px;
  transition: 0.4s;
}

.vxn9-news-form button:hover {
  background: #d40d16;
}

/* =========================
BOTTOM
========================= */

.vxn9-footer-bottom {
  margin-top: 55px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* secure */

.vxn9-secure-box {
  display: flex;
  gap: 16px;
  align-items: center;
}

.vxn9-secure-icon {
  width: 75px;
  height: 75px;
  border: 1px solid rgba(251, 17, 26, 0.4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vxn9-secure-icon i {
  color: var(--main-color);
  font-size: 34px;
}

.vxn9-secure-box h5 {
  font-size: 17px;
  margin-bottom: 6px;
}

.vxn9-secure-box p {
  color: var(--tertiary-color);
  margin: 0;
  line-height: 1.7;
}

/* copy */

.vxn9-copy p {
  color: var(--tertiary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.vxn9-policy-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 15px;
}

.vxn9-policy-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.vxn9-policy-links a:hover {
  color: var(--main-color);
}

.vxn9-copy h6 {
  color: var(--tertiary-color);
  font-size: 15px;
}

/* payments */

.vxn9-payment-wrap h5 {
  margin-bottom: 18px;
  font-size: 20px;
}

.vxn9-payments {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vxn9-payments div {
  background: white;
  color: black;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  min-width: 85px;
  text-align: center;
}

/* Footer Section */

/* =========================Footer Bottom======================== */

/* wrapper */

.ae90-footer-bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  /* flex-wrap: wrap; */
}

/* left */

.ae90-footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ae90-footer-left p {
  margin: 0;

  font-size: 14px;
  font-weight: 500;

  color: rgba(255, 255, 255, 0.85);

  letter-spacing: 0.2px;
}

.ae90-footer-left span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.ae90-footer-left span a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;

  transition: 0.3s ease;
}

.ae90-footer-left span a:hover {
  color: var(--main-color);
}

/* right */

.ae90-footer-right {
  display: flex;
  align-items: center;
  gap: 22px;

  flex-wrap: wrap;
}

.ae90-footer-right a {
  position: relative;

  text-decoration: none;

  font-size: 14px;
  font-weight: 500;

  color: rgba(255, 255, 255, 0.78);

  transition: 0.3s ease;
}

/* hover line */

.ae90-footer-right a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0%;
  height: 1.5px;

  background: var(--main-color);

  transition: 0.3s ease;
}

.ae90-footer-right a:hover {
  color: #fff;
}

.ae90-footer-right a:hover::after {
  width: 100%;
}

/* =========================Footer Bottom======================== */

/* =========================================Responsive Style Css==================================== */

/* TABLET 4 */
@media (max-width: 1199px) {
  .vs-card-col {
    width: 25%;
  }

  .vs-card-col.col2 {
    width: 25%;
  }

  .gallery-section .gallery-masonry {
    column-count: 3;
  }
}

@media (min-width: 992px) {
  /* bottom header */

  .vxm-bottom-navbar {
    display: none;
  }

  /* bottom header */
}

@media (max-width: 992px) {
  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: -200%;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    transition: 0.3s;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
  }

  .nav-links.active {
    left: -1px;
  }

  .dropdown-tour {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 15px;
  }

  .tour-drop.active .dropdown-tour {
    display: block;
  }

  .hamburger {
    display: block;
  }

  /* index page  */
  /* hero section  */
  .vx-hero-slider {
    aspect-ratio: 16/10;
  }

  .vx-caption {
    left: 30px;
    right: 30px;
    max-width: 100%;
  }

  .vx-caption h1 {
    font-size: 38px;
  }

  .vx-caption p {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .vx-floating-card {
    display: none;
  }

  /* hero section  */
  /* Enquiry Form section  */

  /* Card section  */

  .vs-products-title {
    font-size: 34px;
  }

  .vs-products-para {
    font-size: 14px;
  }

  /* Card section  */

  .vxn9-news-form {
    margin-top: 10px;
  }

  .vxn9-copy {
    text-align: center;
  }

  .vxn9-payment-wrap {
    text-align: center;
  }

  .vxn9-payments {
    justify-content: center;
  }

  .vxsport9-heading h2 {
    font-size: 28px;
  }

  .vxsport9-card {
    padding: 22px;
  }

  .xh-category-head h2 {
    font-size: 26px;
  }

  .xh-category-img {
    height: 210px;
  }

  .zxqfaq-left-card {
    position: relative;
    top: 0;
  }

  .zxqfaq-heading h2 {
    font-size: 42px;
  }

  /* index page  */

  /* Product Page */

  .vx-shop-layout {
    flex-direction: column;
  }

  .vx-premium-filter {
    position: fixed;
    left: 200%;
    /* bottom: -100%; */
    width: 100%;
    min-width: 100%;
    border-radius: 28px 28px 0 0;
    z-index: 9999;
    transition: 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
  }

  .vx-premium-filter.active {
    left: 0;
  }

  .vx-filter-top button {
    display: block;
  }

  .vx-shop-products {
    width: 100%;
  }

  .vx-shop-products .vs-card-col {
    width: 33.33%;
  }

  .vs-card-col.col2 {
    width: 33.33%;
  }

  .vx-mobile-filter-btn {
    height: 48px;
    padding: 0 15px;
    font-size: 13px;
    display: block;
  }

  /* Product Page */

  .pcart-item {
    flex-direction: column;

    align-items: start;
  }

  .pcart-action {
    width: 100%;

    text-align: left;
  }

  .pcart-sidebar {
    position: static;
  }

  .vx-form {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .ae90-footer-bottom {
    padding: 18px 0;
  }

  .ae90-footer-bottom-wrap {
    flex-direction: column;
    /* align-items: flex-start; */
    gap: 16px;
  }

  .ae90-footer-left p {
    font-size: 13px;
    line-height: 1.7;
  }

  .ae90-footer-left span {
    font-size: 12px;
  }

  .ae90-footer-right {
    gap: 14px;
  }

  .ae90-footer-right a {
    font-size: 13px;
  }

  /* cards section  */
  .vs-card-col {
    width: 50%;
  }

  .vs-products-wrap {
    padding: 6px;
  }

  .vs-products-wrap .row {
    --bs-gutter-x: 8px;
    --bs-gutter-y: 8px;
  }

  .vs-product-card {
    padding: 8px;
    border-radius: 20px;
  }

  .vs-product-image {
    border-radius: 15px;
  }

  .vs-product-content {
    padding-top: 10px;
  }

  .vs-product-title {
    font-size: 14px;
    /* min-height: 40px; */
    margin-bottom: 7px;
  }

  .vs-product-price {
    font-size: 17px;
    margin-bottom: 7px;
  }

  .vs-product-price span {
    font-size: 12px;
  }

  .vs-rating {
    margin-bottom: 10px;
  }

  .vs-rating i {
    font-size: 12px;
  }

  .vs-cart-btn {
    /* padding: 9px; */
    font-size: 12px;
  }

  /* cards section  */

  .vxsport9-benefit-wrap {
    padding: 60px 0;
  }

  .vxsport9-heading {
    margin-bottom: 35px;
  }

  .vxsport9-heading h2 {
    font-size: 24px;
  }

  .vxsport9-heading p {
    font-size: 13px;
  }

  .vxsport9-card {
    padding: 20px;
    border-radius: 18px;
  }

  .vxsport9-card h4 {
    font-size: 16px;
  }

  .vxsport9-card p {
    font-size: 13px;
  }

  .vxsport9-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .vxsport9-icon i {
    font-size: 20px;
  }

  .zxqfaq-premium-wrap {
    padding: 80px 0;
  }

  .zxqfaq-heading {
    margin-bottom: 45px;
  }

  .zxqfaq-heading h2 {
    font-size: 34px;
  }

  .zxqfaq-heading p {
    font-size: 15px;
  }

  .zxqfaq-left-card {
    padding: 30px;
    border-radius: 25px;
  }

  .zxqfaq-left-card h3 {
    font-size: 30px;
  }

  .zxqfaq-btn {
    font-size: 17px;
    padding: 24px !important;
  }

  .zxqfaq-body {
    padding: 0 24px 24px;
  }

  .vxn9-newsletter {
    padding: 30px;
  }

  .vxn9-news-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .vxn9-news-left h3 {
    font-size: 26px;
  }

  .vxn9-news-form {
    flex-direction: column;
    border-radius: 25px;
  }

  .vxn9-news-form button {
    width: 100%;
    padding: 18px;
  }

  .vxn9-footer-logo {
    width: 190px;
  }

  .vxn9-footer-desc {
    font-size: 15px;
  }

  .xh-category-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
  }

  .xh-category-head h2 {
    font-size: 22px;
  }

  .xh-category-view-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .xh-category-img {
    height: 170px;
  }

  .xh-category-content {
    padding: 14px;
  }

  .xh-category-content h4 {
    font-size: 15px;
  }

  .xh-category-content p {
    font-size: 12px;
  }

  .vx-search-box {
    height: 48px;
  }

  .vx-search-box input {
    font-size: 14px;
  }

  .vxd-gallery {
    flex-direction: column-reverse;
  }

  .vxd-thumb-wrap {
    flex-direction: row;

    overflow: auto;
  }

  .vxd-main {
    height: 320px;
  }

  .vxd-title {
    font-size: 24px;
  }

  .vx-contact {
    padding: 50px 0;
  }

  .vx-head h2 {
    font-size: 26px;
  }

  .vx-head p {
    font-size: 12px;
  }

  .vx-form {
    padding: 22px;
  }

  .vx-form h3 {
    font-size: 20px;
  }

  .vx-map-head h3 {
    font-size: 22px;
  }

  .vx-map iframe {
    height: 260px;
  }

  .gallery-section .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  /* header Bottom */

  .vxm-bottom-navbar {
    padding: 8px 0;
  }

  .vxm-bottom-navbar .vxm-nav-link i {
    font-size: 26px;
    margin-bottom: 6px;
  }

  .vxm-bottom-navbar .vxm-nav-link span {
    font-size: 14px;
  }

  /* header Bottom */

  /* Index Page */

  .vx-hero-slider {
    aspect-ratio: 16/12;
    overflow: hidden;
  }

  .vx-hero-slider .carousel-item::after {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.35) 45%,
      rgba(0, 0, 0, 0.1) 100%
    );
  }

  .vx-caption {
    left: 18px;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    max-width: 100%;
  }

  .vx-badge {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 14px;
  }

  .vx-caption h1 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .vx-caption p {
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .vx-btns {
    gap: 10px;
    justify-content: center;
  }

  .vx-btn-primary,
  .vx-btn-outline {
    /* width: 100%; */
    height: 42px;
    font-size: 12px;
    border-radius: 50px;
    justify-content: center;
  }

  .vx-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
    top: 58%;
    background: rgba(255, 255, 255, 0.18);
  }

  .vx-prev {
    left: 10px;
  }

  .vx-next {
    right: 10px;
  }

  .vx-dots {
    bottom: 12px;
  }

  .vx-dots button {
    width: 8px !important;
    height: 8px !important;
  }

  .vx-dots .active {
    width: 24px !important;
  }

  .vx-floating-card {
    display: none;
  }

  /* Hero Section */

  /* Enquiry Form Section */

  .vx-enquiry-wrapper {
    border-radius: 24px;
  }

  .vx-feature {
    width: 100%;
    font-size: 13px;
  }

  .vx-form-head h3 {
    font-size: 26px;
  }

  .vx-form-head p {
    font-size: 13px;
  }

  .vx-input {
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 14px;
  }

  .vx-design-options {
    flex-direction: column;
  }

  .vx-option label {
    height: 56px;
    font-size: 13px;
  }

  .vx-submit-btn {
    height: 56px;
    border-radius: 14px;
  }

  /* Enquiry Form Section */

  /* Cards Section */
  .vs-products-heading {
    margin-bottom: 18px;
  }

  .vs-products-tag {
    font-size: 11px;
    padding: 7px 14px;
    margin-bottom: 10px;
  }

  .vs-products-title {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .vs-products-para {
    font-size: 13px;
    line-height: 1.6;
    padding: 0 8px;
  }

  /* Cards Section */

  .vxsport9-benefit-wrap {
    padding: 50px 0;
  }

  .vxsport9-heading h2 {
    font-size: 22px;
  }

  .vxsport9-tag {
    font-size: 10px;
    padding: 7px 14px;
  }

  .vxsport9-card {
    padding: 18px;
  }

  .zxqfaq-heading h2 {
    font-size: 28px;
  }

  .zxqfaq-tag {
    font-size: 13px;
  }

  .zxqfaq-left-card h3 {
    font-size: 25px;
  }

  .zxqfaq-help-item {
    align-items: flex-start;
  }

  .zxqfaq-btn {
    font-size: 15px;
    line-height: 1.6;
  }

  .zxqfaq-contact-btn {
    width: 100%;
  }

  .vxn9-footer-wrap {
    padding: 70px 0 30px;
  }

  .vxn9-socials a {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .vxn9-footer-links h4,
  .vxn9-footer-contact h4 {
    font-size: 20px;
  }

  .vxn9-news-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }

  .vxn9-news-icon i {
    font-size: 32px;
  }

  .vxn9-news-left h3 {
    font-size: 22px;
  }

  .vxn9-policy-links {
    flex-wrap: wrap;
  }

  .vx-shop-products .vs-card-col {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .vx-shop-topbar {
    gap: 10px;
  }

  .gallery-section .gallery-masonry {
    column-count: 1;
  }
}

.vx-enquiry-left {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center !important;
  align-items: center !important;
}

.vx-enquiry-left img {
  width: 100%;
  height: 100%;
}

.youtube-section {
  background: #f7f7f7;
}

.video-box {
  transition: 0.4s;
}

.video-box:hover {
  transform: translateY(-8px);
}

.video-box iframe {
  width: 100%;
  height: 450px;
  border-radius: 18px;
  border: 0;
}


