:root {
  --light-bg: #0f0f13;
  --lighter-bg: #08080b;
  --primary: #6e00ff;
  --primary-hover: #8a35ff;
  --secondary: #9d4edd;
  --form: #e7c6ff;
  --tertiary: #c77dff;
  --text: #f0f0f0;
  --text-secondary: #b0b0b0;
  --text-black: #000000;
  --accent-blue: #0d6efd;
  --accent-green: #198754;
  --success: #00c853;
  --warning: #ffab00;
  --danger: #ff1744;
  --card-bg: #1a1a24;
  --card-hover: #242433;
  --border-radius: 12px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--light-bg);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

::placeholder { /* Standard syntax */
  color: var(--text-secondary) !important;
  font-style: italic;
  opacity: 1; /* Firefox reduces opacity by default */
}

::-webkit-input-placeholder { /* Chrome/Safari */
  color: var(--text-secondary) !important;
  font-style: italic;
}

::-moz-placeholder { /* Firefox 18- */
  color: var(--text-secondary) !important;
  font-style: italic;
  opacity: 1; /* Firefox reduces opacity by default */
}

:-ms-input-placeholder { /* IE 10-11 */
  color: var(--text-secondary) !important;
  font-style: italic;
}

:-moz-placeholder { /* Firefox 19- */
  color: var(--text-secondary) !important;
  font-style: italic;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--lighter-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

.pagination {
  justify-content: center;
  padding: 1.5rem;
}

.page-item.active .page-link {
  background-color: var(--primary);
  border-color: var(--primary-hover);
}

.page-link {
  color: var(--primary);
}

.navbar-toggler {
  color: #fff !important;
  background-color: var(--primary-hover) !important;
}

/* Navbar Styles */
.navbar {
  background-color: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(110, 0, 255, 0.1);
  box-shadow: 0 5px 20px rgba(110, 0, 255, 0.1);
}

.navbar-brand {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 5vw, 1.8rem); /* Fluid sizing */
  color: var(--primary) !important;
  position: relative;
  display: inline-block;
  font-style: italic;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  margin-right: 0.5rem;
  transition: var(--transition);
  -webkit-text-stroke: 1px var(--primary); /* Text outline */
  text-shadow: 0 0 10px rgba(110, 0, 255, 0.2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Colored part with different outline */
.navbar-brand span {
  color: var(--secondary);
  text-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
}

/* Hover effects */
.navbar-brand:hover {
  animation: neon-pulse 1.5s infinite alternate;
  transform: scale(1.05);
}

/* Background highlight on hover */
.navbar-brand::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(
    135deg,
    rgba(110, 0, 255, 0.05) 0%,
    rgba(157, 78, 221, 0.03) 100%
  );
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.navbar-brand:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

.navbar-brand::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar-brand:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Animation for neon effect */
@keyframes neon-pulse {
  0% {
    text-shadow: 0 0 10px rgba(110, 0, 255, 0.2);
  }
  100% {
    text-shadow: 0 0 20px rgba(110, 0, 255, 0.4),
      0 0 30px rgba(157, 78, 221, 0.2);
  }
}

.offcanvas-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 5vw, 1.5rem);
  color: var(--primary);
  font-style: italic;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80%;
}

.offcanvas-title span {
  color: var(--secondary);
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  margin: 0 12px;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.breadcrumb {
  background-color: transparent;
  padding: 0.75rem 0;
}

.breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--text-secondary);
}

/* Add this to your existing CSS */
.dropdown-menu {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(110, 0, 255, 0.1) !important;
  box-shadow: 0 10px 30px rgba(110, 0, 255, 0.15);
}

.dropdown-item {
  color: var(--text) !important;
  transition: var(--transition);
  padding: 8px 15px !important;
}

.dropdown-item:hover {
  background-color: rgba(110, 0, 255, 0.08) !important;
  transform: translateX(5px);
}

.dropdown-divider {
  border-color: rgba(110, 0, 255, 0.1) !important;
  margin: 8px 0 !important;
}

.utility-icon {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-left: 18px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.utility-icon:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Hero Section */
/* .hero {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(248, 249, 250, 0.5) 100%
  );
  height: 90vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
} */

.hero {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  height: 90vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://fundleinnovate.com/uploads/background.png")
    no-repeat center center;
  background-size: cover;
  filter: blur(0.1px);
  opacity: 0.6;
  z-index: -1;
}

.hero-content {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
  z-index: 2;
  position: relative;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  border: none;
  padding: 14px 35px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(110, 0, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(110, 0, 255, 0.35);
  color: white;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--tertiary));
  border: none;
  padding: 14px 35px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(157, 78, 221, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(157, 78, 221, 0.35);
  color: white;
}

.btn-outline-light {
  border: 2px solid var(--primary);
  color: var(--text) !important;
  padding: 12px 30px;
  font-weight: 600;
  transition: var(--transition);
  border-radius: 50px;
  background: transparent;
}

.btn-outline-light:hover {
  color: #fff !important;
  border-color: var(--primary-hover);
  background: var(--primary) !important;
  transform: translateY(-3px);
}

/* Floating Elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: -1;
}

.floating-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: 10%;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

.floating-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  bottom: 15%;
  right: 10%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(20px);
  }
}

/* Products Section */
.section-title {
  position: relative;
  margin-bottom: 4rem;
  text-align: center;
}

.section-title h2 {
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
  color: var(--text);
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.product-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(110, 0, 255, 0.1);
  transition: var(--transition);
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(110, 0, 255, 0.2);
  background-color: var(--card-hover);
  border-color: rgba(110, 0, 255, 0.2);
}

.product-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(110, 0, 255, 0.3);
}

.product-badge.new {
  background: linear-gradient(135deg, var(--secondary), var(--tertiary));
}

.product-badge.hot {
  background: linear-gradient(135deg, var(--danger), #ff5252);
}

.product-badge.sale {
  background: linear-gradient(135deg, var(--warning), #ffc107);
}

.product-body {
  padding: 25px;
}

.product-title {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.1rem;
}

.product-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.3rem;
}

.product-old-price {
  text-decoration: line-through;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-left: 8px;
}

.product-rating {
  color: #ffc107;
  margin: 12px 0;
  font-size: 0.9rem;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.product-actions .btn {
  flex: 1;
  padding: 8px;
  font-size: 0.9rem;
  border-radius: 8px;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--lighter-bg) 0%,
    rgba(110, 0, 255, 0.02) 100%
  );
  position: relative;
  overflow: hidden;
}

.feature-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(110, 0, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(110, 0, 255, 0.2);
  border-color: rgba(110, 0, 255, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card h4 {
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--text);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Product Overlay */
.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.quick-view-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
}

/* Section Subtitle */
.section-subtitle {
  color: var(--text);
  font-size: 1.1rem;
  margin-top: 15px;
  margin-bottom: 30px;
}

/* Hero Buttons */
.hero-buttons .btn-outline-light {
  border: 2px solid rgba(110, 0, 255, 0.1);
  color: white;
  background: rgba(110, 0, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-light:hover {
  background: rgba(110, 0, 255, 0.25);
  color: white;
}

/* Product Gallery */
.product-gallery {
  position: relative;
  /* margin-bottom: 30px; */
}

.main-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 1rem;
  height: 400px;
  background-color: var(--lighter-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(110, 0, 255, 0.1);
  border-radius: 0.5rem;
}

.main-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.thumbnail-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(110, 0, 255, 0.1);
}

.thumbnail img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.thumbnail.active,
.thumbnail:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* Product Details */
.product-details {
  background-color: var(--lighter-bg);
  border-radius: var(--border-radius);
  padding: 1rem;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.product-title-2 {
  font-size: 2rem;
  font-weight: 600;
  /* margin-bottom: 15px; */
  line-height: 1.2;
}

.product-availability {
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
}

.product-meta {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.product-price-2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.product-old-price-2 {
  text-decoration: line-through;
  color: var(--gray);
  font-size: 1.25rem;
  margin-left: 0.5rem;
}

.discount-badge {
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
  color: white;
}

.product-badge {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  background-color: var(--primary);
  color: white;
}

.product-short-description p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text) !important;
}

.product-description {
  color: var(--text-secondary);
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.product-features {
  margin-bottom: 30px;
}

.product-features ul {
  list-style: none;
  padding-left: 0;
}

.product-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.product-features i {
  margin-right: 10px;
  color: var(--primary);
  font-size: 0.9rem;
}

/* Product Actions */
.product-actions-2 {
  display: flex;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.quantity-selector {
  display: flex;
  align-items: center;
  background-color: var(--lighter-bg);
  border-radius: 0.375rem;
  overflow: hidden;
  border: 1px solid rgba(110, 0, 255, 0.1);
}

.quantity-btn {
  width: 45px;
  height: 45px;
  border: none;
  background-color: var(--primary);
  color: var(--tertiary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.quantity-btn:hover {
  background-color: var(--primary-hover);
  color: white;
}

.quantity-input {
  width: 60px;
  text-align: center;
  background-color: transparent;
  border: none !important;
  color: var(--primary);
  font-weight: 600;
  height: 40px;
}

.action-buttons {
  display: flex;
  gap: 10px;
  flex-grow: 1;
}

.btn-add-to-cart {
  flex-grow: 1;
  height: auto;
  font-weight: 600;
  border-radius: 8px;
}

.wishlist-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(110, 0, 255, 0.1);
  border: none;
  color: var(--text);
  transition: var(--transition);
}

.wishlist-btn:hover,
.wishlist-btn.active {
  color: var(--danger);
  background-color: rgba(255, 23, 68, 0.1);
}

/* Product Meta Info */
.product-meta-info {
  border-radius: 0.5rem;
}

.meta-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #64748b;
}

.meta-icon {
  font-size: 1.25rem;
}

.meta-item i {
  margin-right: 10px;
  color: var(--primary);
  width: 20px;
  text-align: center;
}

/* Product Tabs */
.product-tabs {
  margin-top: 60px;
}

.product-tabs .nav-tabs {
  border-bottom: none;
}

.nav-tabs .nav-link {
  color: #64748b;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: var(--transition);
  font-family: "Manrope", sans-serif;
  border-radius: 0;
  position: relative;
}

.nav-tabs .nav-link.active {
  color: var(--primary);
  background-color: transparent;
}

.product-tabs .nav-link.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
}

.nav-tabs .nav-link:hover {
  color: var(--dark);
}

.tab-content {
  border-radius: 0 0.5rem 0.5rem 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  /* padding: 30px 0; */
}

.tab-content h4 {
  margin-bottom: 20px;
  color: var(--dark);
}

.tab-content h5 {
  color: var(--dark);
  margin-top: 25px;
  margin-bottom: 15px;
}

.tab-content p {
  color: #64748b;
  margin-bottom: 20px;
}

.tab-content ul {
  padding-left: 20px;
  color: #64748b;
}

.tab-content li {
  margin-bottom: 10px;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, var(--light-bg), var(--lighter-bg));
  position: relative;
  overflow: hidden;
}

.feature-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--box-shadow);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(110, 0, 255, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card h4 {
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  color: var(--text);
  font-size: 0.95rem;
}

/* Footer */
footer {
  background: linear-gradient(
    135deg,
    var(--lighter-bg) 0%,
    rgba(110, 0, 255, 0.03) 100%
  );
  padding: 80px 0 20px;
  border-top: 1px solid rgba(110, 0, 255, 0.1);
  position: relative;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
  color: var(--text);
}

.footer-logo span {
  color: var(--primary);
}

.footer-about p {
  color: var(--text-secondary);
  margin-bottom: 25px;
}

.footer-links h5,
.footer-contact h5 {
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: var(--text);
}

.footer-links h5::after,
.footer-contact h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--text);
  transform: translateX(5px);
}

.footer-contact p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary);
  min-width: 20px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(110, 0, 255, 0.1);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-icons a:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: white;
  transform: translateY(-5px);
}

.copyright {
  border-top: 1px solid rgba(110, 0, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
}

.copyright a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.copyright a:hover {
  color: var(--primary);
  text-decoration: none;
}

/* Floating Cart Button */
.floating-cart-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(110, 0, 255, 0.3);
  z-index: 999;
  transition: var(--transition);
  border: none;
}

.floating-cart-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 40px rgba(110, 0, 255, 0.4);
}

.floating-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--danger);
  color: white;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Offcanvas Menu for Mobile */
.offcanvas {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(110, 0, 255, 0.1);
}

/* .offcanvas-title {
  color: var(--primary);
} */

.offcanvas-header {
  border-bottom: 1px solid rgba(110, 0, 255, 0.1);
}

.offcanvas-header .btn-close {
  font-size: 0.8rem;
}

.offcanvas-body {
  padding: 20px;
  color: var(--text);
}

.mobile-menu-nav .nav-link {
  padding: 12px 0;
  border-bottom: 1px solid rgba(110, 0, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text) !important;
}

.mobile-menu-nav .nav-link i {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Glide Slider Styles */
.glide__arrow {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(110, 0, 255, 0.3);
}

.glide__arrow:hover {
  background: var(--primary-hover);
  transform: scale(1.1);
}

.glide__arrow--left {
  left: -25px;
}

.glide__arrow--right {
  right: -25px;
}

/* Form Controls */
.form-control {
  border: 1px solid rgba(110, 0, 255, 0.2);
  color: var(--text);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(110, 0, 255, 0.25);
}

/* Additional cart-specific styles */
.cart-page {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.cart-header {
  border-bottom: 1px solid var(--primary-hover);
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.cart-item {
  background: var(--lighter-bg);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(110, 0, 255, 0.1);
}

.cart-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(110, 0, 255, 0.1);
  border-color: rgba(110, 0, 255, 0.1);
}

.cart-item-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.quantity-control {
  width: 120px;
}

.quantity-control .btn {
  width: 36px;
}

.cart-summary {
  background: var(--lighter-bg);
  border-radius: 10px;
  padding: 25px;
  border: 1px solid rgba(110, 0, 255, 0.1);
  position: sticky;
  top: 20px;
}

.summary-divider {
  border-top: 1px dashed rgba(110, 0, 255, 0.1);
  margin: 15px 0;
}

.empty-cart {
  text-align: center;
  padding: 60px 0;
}

.empty-cart-icon {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.continue-shopping-btn {
  margin-top: 20px;
}

.cart-item-remove {
  color: var(--danger);
  transition: all 0.2s;
}

.cart-item-remove:hover {
  color: #ff6b81;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 991px) {
  .hero {
    height: 80vh;
    min-height: 600px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .product-img {
    height: 180px;
  }

  .navbar-collapse {
    padding: 20px 0;
  }

  .utility-icons {
    margin-top: 15px;
    justify-content: center;
  }

  .search-box {
    margin: 0 auto 15px !important;
    max-width: 100% !important;
  }

  .product-title-2 {
    font-size: 1.75rem;
  }

  .main-image {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 70vh;
    min-height: 500px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form .form-control {
    border-radius: 50px;
    margin-bottom: 10px;
  }

  .newsletter-form .btn {
    border-radius: 50px;
    width: 100%;
  }

  .footer-links,
  .footer-contact {
    margin-top: 40px;
  }

  .product-card {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-actions {
    flex-direction: column;
  }

  .wishlist-btn {
    width: 100%;
    margin-top: 10px;
    border-radius: 8px !important;
  }

  footer {
    text-align: center;
  }

  .footer-links h5::after,
  .footer-contact h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    justify-content: center;
  }

  .main-image {
    height: 300px;
  }

  .product-title {
    font-size: 1.8rem;
  }

  .product-title-2 {
    font-size: 1.5rem;
  }

  .product-price {
    font-size: 1.6rem;
  }

  .product-price-2 {
    font-size: 1.5rem;
  }

  .product-old-price-2 {
    font-size: 1.1rem;
  }

  .product-actions-2 .btn {
    padding: 0.75rem;
  }

  .product-details {
    padding: 25px;
  }

  .quantity-selector {
    width: 100%;
  }

  .action-buttons {
    width: 100%;
  }

  .btn-add-to-cart,
  .wishlist-btn {
    width: 100%;
  }

  .thumbnail-container {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .cart-item-img {
    width: 80px;
    height: 80px;
  }

  .cart-item-details {
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .navbar-brand {
    font-size: clamp(0.9rem, 6vw, 1.5rem);
    -webkit-text-stroke: 0.8px var(--primary);
    padding: 0.15rem 0.3rem;
    max-width: 180px;
  }
  
  .navbar-brand span {
    -webkit-text-stroke: 0.8px var(--secondary);
  }
}

@media (max-width: 575px) {
  .hero {
    padding-top: 80px;
    height: auto;
    min-height: 100vh;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .product-card {
    margin-bottom: 20px;
  }

  .quick-view-actions {
    flex-direction: column;
  }

  .quick-view-actions .btn {
    width: 100%;
  }

  .hero-content {
    padding-bottom: 50px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px !important;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .main-image {
    height: 250px;
  }

  .thumbnail {
    width: 60px;
    height: 60px;
  }

  .product-tabs .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}
