/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #6c5ce7;
  --secondary-color: #a29bfe;
  --accent-color: #fd79a8;
  --dark-bg: #2d3436;
  --darker-bg: #1e2124;
  --light-text: #ddd;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
  --gradient-accent: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
  --shadow-light: 0 4px 20px rgba(108, 92, 231, 0.1);
  --shadow-medium: 0 8px 30px rgba(108, 92, 231, 0.15);
  --shadow-heavy: 0 15px 40px rgba(108, 92, 231, 0.2);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --border-radius: 12px;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--darker-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* ===== TOP BANNER ===== */
.top-banner {
  background: var(--gradient-accent);
  padding: 10px 0;
  text-align: center;
  font-weight: 600;
  color: var(--white);
  position: relative;
  overflow: hidden;
  z-index: 9999;
}

/* ===== Sale BANNER ===== */
.top-banners {
  background: red;
  padding: 10px 0;
  text-align: center;
  font-size: 60px;
  font-weight: 600;
  align-content: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  z-index: 9999;
  height: 120px;
}

/* ===== NAVIGATION ===== */
.navbar {
  background: rgba(46, 52, 54, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(108, 92, 231, 0.2);
  padding: 15px 0;
  transition: var(--transition);

}

.navbar.scrolled {
  background: rgba(46, 52, 54, 0.98);
  padding: 10px 0;
}

.logo-img {
  height: 85px;
  width: 140px;
  transition: var(--transition);
}

.logo-img:hover {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  color: var(--light-text) !important;
  font-weight: 500;
  margin: 0 15px;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

/* Dropdown Styles */
.dropdown-menu {
  background: rgba(46, 52, 54, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(108, 92, 231, 0.2);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.dropdown-item {
  color: var(--light-text);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateX(5px);
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  left: 100%;
  top: 0;
  margin-left: 1px;
}

/* Search Input */
.search-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: 25px;
  padding: 8px 15px;
  color: var(--light-text);
  width: 200px;
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
}

.search-input::placeholder {
  color: rgba(221, 221, 221, 0.7);
}

/* ===== MAIN CONTENT ===== */
.main-content {
  margin-top: 90px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  padding: 100px 0;
  background: radial-gradient(ellipse at center, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: grain 20s linear infinite;
  pointer-events: none;
}

@keyframes grain {

  0%,
  100% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-5%, -5%);
  }

  20% {
    transform: translate(-10%, 5%);
  }

  30% {
    transform: translate(5%, -10%);
  }

  40% {
    transform: translate(-5%, 15%);
  }

  50% {
    transform: translate(-10%, 5%);
  }

  60% {
    transform: translate(15%, 0%);
  }

  70% {
    transform: translate(0%, 10%);
  }

  80% {
    transform: translate(-15%, 0%);
  }

  90% {
    transform: translate(10%, 5%);
  }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.bg-highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(221, 221, 221, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(var(--shadow-heavy));
  transition: var(--transition);
  animation: float 6s ease-in-out infinite;
}

.hero-image img:hover {
  transform: scale(1.05) rotateY(5deg);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* ===== SECTION STYLES ===== */
.section-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(221, 221, 221, 0.8);
  margin-bottom: 30px;
}

/* ===== BRANDS SECTION ===== */
.brands-section {
  padding: 80px 0;
  background: rgba(108, 92, 231, 0.05);
}

.logo-marquee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  white-space: nowrap;
  animation: scroll-brands 30s linear infinite;
}

.brand-logo {
  height: 60px;
  width: 300px;
  opacity: 0.7;
}

.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

@keyframes scroll-brands {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ===== QUALITY, E-LIQUIDS, DISPOSABLES SECTIONS ===== */
.quality-section,
.eliquids-section,
.disposables-section {
  padding: 100px 0;
  position: relative;
}

.quality-section::before,
.eliquids-section::before,
.disposables-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(108, 92, 231, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.quality-image img,
.eliquids-image img,
.disposables-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.quality-image img:hover,
.eliquids-image img:hover,
.disposables-image img:hover {
  transform: scale(1.02) rotateY(2deg);
  box-shadow: var(--shadow-heavy);
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  padding: 100px 0;
  background: rgba(253, 121, 168, 0.02);
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 25px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(108, 92, 231, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.1), transparent);
  transition: left 0.5s;
}

.product-card:hover::before {
  left: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  transition: var(--transition);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.product-subtitle {
  color: rgba(221, 221, 221, 0.7);
  font-size: 0.9rem;
}

.product-link {
  text-decoration: none;
  color: inherit;
}

.btn-view-all {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}

.btn-view-all::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-view-all:hover::before {
  left: 100%;
}

.btn-view-all:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  color: var(--white);
  text-decoration: none;
}

/* ===== CAROUSEL SECTION ===== */
.carousel-section {
  padding: 100px 0;
  background: rgba(108, 92, 231, 0.03);
}

.carousel-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.carousel-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-images img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  flex-shrink: 0;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(108, 92, 231, 0.8);
  color: var(--white);
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-arrow {
  left: 15px;
}

.right-arrow {
  right: 15px;
}

.arrow:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.dots-container {
  text-align: center;
  margin-top: 20px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(108, 92, 231, 0.3);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active,
.dot:hover {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--darker-bg);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(108, 92, 231, 0.2);
  margin-top: 100px;
}

.contact-info,
.social-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--light-text);
  text-decoration: none;
  transition: var(--transition);
  padding: 10px;
  border-radius: var(--border-radius);
}

.contact-item:hover {
  color: var(--primary-color);
  background: rgba(108, 92, 231, 0.1);
  transform: translateX(10px);
}

.contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.address-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.address-label {
  font-weight: 600;
  color: var(--primary-color);
}

.address-text {
  color: rgba(221, 221, 221, 0.8);
}

.copyright {
  color: rgba(221, 221, 221, 0.6);
  font-size: 0.9rem;
  margin-top: 20px;
}

.map-container {
  position: relative;
  height: 200px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%);
  transition: var(--transition);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  transition: var(--transition);
}

.map-container:hover .map-iframe {
  filter: grayscale(0%);
}

.map-container:hover .map-overlay {
  background: rgba(108, 92, 231, 0.1);
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-links span {
  color: rgba(221, 221, 221, 0.6);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.footer-links span:hover {
  color: var(--primary-color);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .main-content {
    margin-top: 70px;
  }

  .hero-section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 3rem;
    text-align: center;
  }

  .hero-description {
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .quality-section,
  .eliquids-section,
  .disposables-section,
  .products-grid,
  .carousel-section {
    padding: 60px 0;
  }

  .navbar-nav .nav-link {
    margin: 0 10px;
  }

  .search-input {
    width: 100%;
    margin-top: 10px;
  }

  .logo-marquee {
    gap: 30px;
  }

  .brand-logo {
    height: 40px;
  }

  .product-card {
    margin-bottom: 30px;
  }

  .footer-links {
    justify-content: center;
  }

  .contact-info,
  .social-info {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .hero-description,
  .section-description {
    font-size: 1rem;
  }

  .product-card {
    padding: 20px;
  }

  .carousel-images img {
    height: 250px;
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .left-arrow {
    left: 10px;
  }

  .right-arrow {
    right: 10px;
  }
}

/* ===== ANIMATIONS & TRANSITIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

[data-aos="fade-up"] {
  animation: fadeInUp 0.8s ease-out;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* ===== SELECTION STYLING ===== */
::selection {
  background: var(--primary-color);
  color: var(--white);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white);
}

/* ===== FOCUS STYLES ===== */
button:focus,
a:focus,
input:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ===== LOADING ANIMATION ===== */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glassmorphism {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hover-lift {
  transition: var(--transition);
}

.hover-lift:hover {
  transform: translateY(-5px);
}

/* ===== PRINT STYLES ===== */
@media print {

  .navbar,
  .footer,
  .carousel-section {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}


iframe {
  border-radius: var(--border-radius) !important;
  box-shadow: var(--shadow-heavy);
  transition: var(--transition);
}

iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(108, 92, 231, 0.3);
}

.highlight {
  background: var(--gradient-accent) !important;
  color: var(--white) !important;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: var(--shadow-light);
}

/* Loading animation */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.loading {
  background: linear-gradient(90deg, var(--dark-bg) 25%, var(--primary-color) 50%, var(--dark-bg) 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}