:root {
  --primary: #4361ee;
  --secondary: #3f37c9;
  --accent: #4cc9f0;
  --dark: #0a0a0a;
  --light: #f8f9fa;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);

  --ns-accent: #4cc9f0;
  --ns-dark: #0a0a0a;
  --ns-darker: #050505;
  --ns-light: #f8f9fa;
  --ns-lighter: #ffffff;
  --ns-gray: #6c757d;
  --ns-purple: #7209b7;
  --ns-gradient: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--ns-purple) 100%
  );
  --ns-glass: rgba(255, 255, 255, 0.1);
  --ns-glass-border: rgba(255, 255, 255, 0.2);
  --ns-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --ns-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --ns-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --ns-shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
  --ns-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ol-hero {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.ns-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ol-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.ol-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(67, 97, 238, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  margin-left: 8px;
  animation: pulse 2s infinite;
}

.ol-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-family: "Manrope", sans-serif;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ol-hero-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.6;
}

.ol-hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  background: var(--gradient);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(67, 97, 238, 0.4);
}

.cta-primary i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.cta-primary:hover i {
  transform: translateX(5px);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  background: white;
  color: var(--dark);
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cta-secondary:hover {
  background: #f1f3f5;
}

.cta-secondary i {
  margin-right: 8px;
  color: var(--primary);
  font-size: 1.1rem;
}

.ol-hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #6c757d;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
}

.ol-hero-visual {
  position: relative;
  perspective: 1000px;
}

.hero-product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  width: 320px;
  transform: rotateY(-10deg) rotateX(5deg);
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
}

.ol-hero-visual:hover .hero-product-card {
  transform: rotateY(0) rotateX(0);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details {
  padding: 1.5rem;
}

.product-details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.rating {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #ffc107;
}

.rating span {
  color: #6c757d;
  font-size: 0.8rem;
  margin-left: 8px;
}

.add-to-cart {
  width: 100%;
  padding: 0.8rem;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.add-to-cart i {
  margin-right: 8px;
}

.ai-assistant-bubble {
  position: absolute;
  bottom: -30px;
  right: 0;
  background: white;
  padding: 1rem;
  border-radius: 20px 20px 20px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 220px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.bubble-content {
  display: flex;
  align-items: center;
}

.bubble-text {
  font-size: 0.9rem;
  margin-right: 0.8rem;
}

.bubble-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.bubble-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(67, 97, 238, 0.05);
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 50px;
  right: 100px;
  background: rgba(76, 201, 240, 0.1);
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 100px;
  right: -30px;
  background: rgba(63, 55, 201, 0.1);
}

.woocommerce-section {
  max-width: 100%;
  margin: 3rem auto;
  padding: 4rem 8rem;
  display: flex;
  gap: 2rem;
  background-color: var(--light);
}

/* Header Section */
.section-header {
  max-width: 50%;
  margin-bottom: 2.5rem;
}
.section-header img {
  max-width: 100%;
  height: 450px;
  margin-bottom: 1rem;
}

.section-header h1 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Divider Line */
.divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 2.5rem 0;
}

/* Feature Blocks */
.feature-block {
  margin-bottom: 2.5rem;
}

.feature-block h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.feature-block p {
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Highlight Box */
.highlight-box {
  background-color: var(--light);
  border-radius: 8px;
  padding: 1.8rem;
  margin: 2.5rem 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary);
}

.highlight-box h2 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.ns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ns-gradient);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--ns-transition);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: var(--ns-shadow-md);
  position: relative;
  overflow: hidden;
}

.ns-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--ns-shadow-lg);
}

.ns-btn:active {
  transform: translateY(1px);
}

.ns-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: var(--ns-transition);
}

.ns-btn:hover::after {
  opacity: 1;
}

/* Showcase Section */
.ns-store-showcase {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.ns-store-showcase__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ns-store-showcase__image {
  position: relative;
  perspective: 1000px;
}

.ns-store-showcase__image-container {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--ns-shadow-xl);
  transform: rotateY(5deg) rotateX(5deg);
  transform-style: preserve-3d;
  transition: var(--ns-transition);
}

.ns-store-showcase__image-container:hover {
  transform: rotateY(0) rotateX(0);
}

.ns-store-showcase__image img {
  width: 100%;
  display: block;
}

.ns-store-showcase__text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--ns-dark);
}

.ns-store-showcase__text p {
  color: var(--ns-gray);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.ns-store-showcase__list {
  list-style: none;
  margin-bottom: 2rem;
}

.ns-store-showcase__list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.ns-store-showcase__list i {
  color: var(--secondary);
  margin-right: 0.75rem;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}


/* Why Choose Us Section */
.ns-why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.ns-why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(108, 77, 255, 0.03)" d="M0,0 L100,0 L100,100 Q50,80 0,100"></path></svg>');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom;
}

.ns-why-choose-us h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1c2e;
    font-weight: 800;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.ns-why-choose-us h2::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(108, 77, 255, 0.2);
    z-index: -1;
    border-radius: 20px;
}

.ns-why-choose-us p {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 60px;
}

.ns-why-choose-us__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ns-feature {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(60, 176, 231, 0.15);
}

.ns-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(60, 176, 231, 0.15);
}

.ns-feature i {
    font-size: 2.5rem;
    color: #2665A9;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2665A9, #1f67b4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.ns-feature:hover i {
    transform: scale(1.2);
}

.ns-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1c2e;
}

.ns-feature p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

/* Get Started Section */
.ns-get-started {
    padding: 100px 0;
    background: linear-gradient(135deg, #2665A9, #145eae);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ns-get-started::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: ns-pulse 8s infinite alternate;
}

@keyframes ns-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.ns-get-started h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.ns-get-started p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.nvps-btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nvps-btn--large {
    padding: 18px 45px;
    font-size: 1.2rem;
}

.nvps-btn {
    background: white;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.nvps-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8faff;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nvps-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.nvps-btn:hover::before {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .ns-why-choose-us h2 {
        font-size: 2.2rem;
    }
    
    .ns-why-choose-us p,
    .ns-get-started p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .ns-why-choose-us__features {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .ns-get-started h2 {
        font-size: 2rem;
    }
}
/* Responsive Adjustments */
@media (max-width: 600px) {
  .ns-container {
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
  }
  .woocommerce-section {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
  }
  .section-header {
    max-width: 100%;
    text-align: center;
  }
  .section-header h1 {
    font-size: 1.8rem;
  }
}

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

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

@media (max-width: 992px) {
  .ol-hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ns-store-showcase__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ol-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .ol-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .ol-hero-cta {
    justify-content: center;
  }

  .ol-hero-stats {
    justify-content: center;
  }

  .ol-hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .ol-hero {
    padding: 100px 0;
  }

  .ol-hero-title {
    font-size: 2.5rem;
  }

  .ol-hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .ai-assistant-bubble {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .ol-hero-title {
    font-size: 2rem;
  }

  .ol-hero-subtitle {
    font-size: 1.1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}
