/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #6f51a3;
  --primary-color-rgb: 111, 81, 163;
  --secondary-color: #3a7bd5;
  --secondary-color-rgb: 58, 123, 213;
  --accent-color: #ff6b6b;
  --accent-color-rgb: 255, 107, 107;
  --dark-color: #0c0c0d;
  --dark-color-rgb: 10, 13, 39;
  --light-color: #f8f9fa;
  --light-color-rgb: 248, 249, 250;
  --gray-color: #6c757d;
  --gray-color-rgb: 108, 117, 125;
  --white-color: #ffffff;
  --white-color-rgb: 255, 255, 255;
  --card-bg: #0f0f10;
  --card-bg-rgb: 21, 24, 53;

  --font-primary: "Poppins", sans-serif;
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--white-color);
  background-color: var(--dark-color);
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--white-color);
}

p {
  color: rgba(var(--white-color-rgb), 0.8);
  line-height: 1.7;
}

.section-padding {
  padding: 100px 0;
}

.highlight {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.section-header p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: var(--dark-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.spinner {
  width: 60px;
  height: 60px;
  position: relative;
  margin-bottom: 20px;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  animation-delay: -1.0s;
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0.0);
  }
  50% {
    transform: scale(1.0);
  }
}

.preloader-logo {
  width: 80px;
  height: 80px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(var(--primary-color-rgb), 0.3);
}

.back-to-top:hover {
  background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  transform: translateY(-3px);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.navbar {
  padding: 20px 0;
  transition: var(--transition);
  background-color: transparent;
}

.navbar-scrolled {
    padding: 25px 0;
    background-color: #0f0f10de;
    backdrop-filter: blur(10px);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--white-color);
}

.navbar-brand:hover {
  color: var(--white-color);
}

.logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.navbar-nav {
  margin-left: auto;
}

.nav-item {
  margin: 0 5px;
}

.nav-link {
  color: var(--white-color) !important;
  font-weight: 500;
  padding: 10px 15px !important;
  position: relative;
  transition: var(--transition);
}

.nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover:before,
.nav-link.active:before {
  width: 70%;
}

.nav-button {
  margin-left: 15px;
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
  background-image: none !important;
  position: relative;
}

.navbar-toggler-icon:before,
.navbar-toggler-icon:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--white-color);
  left: 0;
  transition: var(--transition);
}

.navbar-toggler-icon:before {
  top: 8px;
}

.navbar-toggler-icon:after {
  bottom: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
  top: 11px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
  bottom: 11px;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn {
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover:before {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border: none;
  color: var(--white-color);
  box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(var(--white-color-rgb), 0.2);
  color: var(--white-color);
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
  border-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  background-color: var(--dark-color);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge-container {
  margin-bottom: 20px;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(var(--primary-color-rgb), 0.1);
  border: 1px solid rgba(var(--primary-color-rgb), 0.2);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
}

.badge i {
  margin-right: 5px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.floating-animation {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(var(--primary-color-rgb), 0.2) 0%,
    rgba(var(--secondary-color-rgb), 0.1) 50%,
    rgba(var(--dark-color-rgb), 0) 70%
  );
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(40px);
}

.hero-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 1;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats-section {
  padding: 80px 0;
  background-color: var(--card-bg);
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 20px;
  transition: var(--transition);
  border-radius: var(--border-radius);
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.1), rgba(var(--secondary-color-rgb), 0.1));
  color: var(--primary-color);
  font-size: 28px;
  transition: var(--transition);
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  box-shadow: 0 10px 20px rgba(var(--primary-color-rgb), 0.3);
}

.stat-item h3 {
  font-size: 36px;
  margin-bottom: 10px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.stat-item p {
  font-size: 16px;
  margin-bottom: 0;
  color: rgba(var(--white-color-rgb), 0.7);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features-section {
  padding: 100px 0;
  position: relative;
  background-color: var(--dark-color);
}

.feature-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  z-index: 1;
}

.feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.05), rgba(var(--secondary-color-rgb), 0.05));
  z-index: -1;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover:before {
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.1), rgba(var(--secondary-color-rgb), 0.1));
  color: var(--primary-color);
  font-size: 28px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  transform: rotateY(360deg);
  transition: transform 0.8s;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.feature-card p {
  margin-bottom: 0;
  color: rgba(var(--white-color-rgb), 0.7);
}

/*--------------------------------------------------------------
# Shop Section
--------------------------------------------------------------*/
.shop-section {
  padding: 100px 0;
  background-color: var(--card-bg);
  position: relative;
}

.shop-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 10px;
}

.filter-btn {
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid rgba(var(--white-color-rgb), 0.1);
  border-radius: 50px;
  color: var(--white-color);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-color: transparent;
  color: var(--white-color);
}

.product-container {
  margin-top: 20px;
}

.product-item {
  margin-bottom: 30px;
}

.product-card {
  background-color: var(--dark-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  height: 100%;
  border: 1px solid rgba(var(--white-color-rgb), 0.05);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(var(--primary-color-rgb), 0.2);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.product-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.product-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-details {
  padding: 20px;
}

.product-details h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.product-details p {
  margin-bottom: 20px;
  color: rgba(var(--white-color-rgb), 0.7);
  font-size: 14px;
}

.product-details .btn {
  width: 100%;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-section {
  padding: 100px 0;
  background-color: var(--dark-color);
  position: relative;
}

.testimonial-slider {
  position: relative;
  padding: 30px 0;
}

.testimonial-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  margin: 15px;
  transition: var(--transition);
  border: 1px solid rgba(var(--white-color-rgb), 0.05);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--primary-color-rgb), 0.2);
}

.testimonial-rating {
  margin-bottom: 20px;
  color: #ffc107;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--primary-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.testimonial-info h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.testimonial-info p {
  font-size: 14px;
  margin-bottom: 0;
  color: rgba(var(--white-color-rgb), 0.7);
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  color: var(--white-color) !important;
  transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  background: var(--white-color);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-section {
  padding: 100px 0;
  background-color: var(--card-bg);
  position: relative;
}

.accordion-item {
  background-color: var(--dark-color);
  border: 1px solid rgba(var(--white-color-rgb), 0.05);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--white-color);
  background-color: var(--dark-color);
  border: none;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--white-color);
  background: linear-gradient(to right, rgba(var(--primary-color-rgb), 0.1), rgba(var(--secondary-color-rgb), 0.1));
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(var(--primary-color-rgb), 0.2);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.accordion-body {
  padding: 20px;
  color: rgba(var(--white-color-rgb), 0.7);
  background-color: var(--dark-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
  padding: 100px 0;
  background-color: var(--dark-color);
  position: relative;
}

.contact-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 40px;
  margin-bottom: 30px;
  transition: var(--transition);
  border: 1px solid rgba(var(--white-color-rgb), 0.05);
}

.contact-info {
  text-align: center;
  padding: 20px;
  height: 100%;
  transition: var(--transition);
}

.contact-info:hover {
  transform: translateY(-10px);
}

.contact-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.1), rgba(var(--secondary-color-rgb), 0.1));
  color: var(--primary-color);
  font-size: 32px;
  transition: var(--transition);
}

.contact-info:hover .contact-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  transform: rotateY(360deg);
  transition: transform 0.8s;
}

.contact-info h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 20px;
  color: rgba(var(--white-color-rgb), 0.7);
}

.contact-info .btn {
  margin-top: 10px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--card-bg);
  color: var(--white-color);
  position: relative;
}

.footer-top {
  padding: 80px 0 40px;
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 20px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.footer-widget p {
  margin-bottom: 20px;
  color: rgba(var(--white-color-rgb), 0.7);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--white-color-rgb), 0.05);
  border-radius: 50%;
  color: var(--white-color);
  font-size: 18px;
  transition: var(--transition);
}

.social-links a:hover {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  transform: translateY(-3px);
}

.footer-widget h4 {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(var(--white-color-rgb), 0.7);
  transition: var(--transition);
  display: inline-block;
  position: relative;
}

.footer-links a:before {
  content: "→";
  margin-right: 8px;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 20px;
}

.footer-links a:hover:before {
  opacity: 1;
  transform: translateX(0);
}

.newsletter-form {
  margin-top: 20px;
}

.newsletter-form .form-control {
  height: 50px;
  background-color: rgba(var(--white-color-rgb), 0.05);
  border: 1px solid rgba(var(--white-color-rgb), 0.1);
  color: var(--white-color);
  border-radius: 50px 0 0 50px;
  padding-left: 20px;
}

.newsletter-form .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.form-control::placeholder {
  color: rgba(var(--white-color-rgb), 0.5);
}

.newsletter-form .btn {
  border-radius: 0 50px 50px 0;
  height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(var(--white-color-rgb), 0.05);
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(var(--white-color-rgb), 0.7);
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(var(--white-color-rgb), 0.7);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 15px;
  }

  .nav-item {
    margin: 5px 0;
  }

  .nav-button {
    margin-top: 15px;
    margin-left: 0;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 50px;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 150px 0 80px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .feature-card,
  .product-card,
  .testimonial-card,
  .contact-card {
    padding: 20px;
  }

  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .shop-filter {
    flex-direction: column;
  }

  .filter-btn {
    width: 100%;
  }

  .contact-card {
    padding: 20px;
  }

  .footer-top {
    padding: 50px 0 20px;
  }
}

section.terms-section{
    padding: 180px 0;
    background-color: var(--dark-color);
}


.terms-section .hero-content {
    margin-bottom: 50px;
    display: flex
;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.terms-section h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.terms-section p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(var(--white-color-rgb), 0.8);
}

.terms-section .terms-content h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.terms-section .terms-content h2 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #fff;
}

.terms-section .terms-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(var(--white-color-rgb), 0.8);
}

.vouches-section {
    padding: 100px 0;
    background: #0f0f10;
  }

  .vouches-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .section-title {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    font-size: 18px;
    color: #999;
    margin-bottom: 60px;
  }
  
  .vouches-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
  }
  
  .vouch-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .vouch-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  }
  
  .vouch-top {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .vouch-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .vouch-name {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }
  
  .vouch-meta {
    font-size: 13px;
    color: #aaa;
    margin-top: 2px;
    margin-bottom: 0;
  }
  
  .vouch-rating {
    color: #facc15;
    font-size: 16px;
    letter-spacing: 2px;
  }
  
  .vouch-text {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
  }
  