/* ============================================
   Glow Ora OÜ - Main Stylesheet
   Dark Theme | Professional Design
   ============================================ */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #3CCF36;
  --primary-dark: #2db528;
  --primary-light: #6bdb66;
  --dark-color: #0A0A0A;
  --light-color: #FFFFFF;
  --gray-100: #1A1A1A;
  --gray-200: #2D2D2D;
  --gray-300: #404040;
  --gray-600: #A0A0A0;
  --gray-800: #E0E0E0;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.5);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.6);
  --transition: all 0.3s ease;
  --bg-gradient: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--dark-color);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--light-color);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-200);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ============================================
   Header & Navigation
   ============================================ */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid var(--gray-300);
}

.main-header .navbar {
  padding: 1rem 0;
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
}

.navbar-brand {
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--light-color);
}

.navbar-brand img {
    width: 200px;
    height: auto;
}

.logo-text {
  color: var(--primary-color);
}

.logo-sub {
  color: var(--light-color);
}

/* Navigation Links */
.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--gray-600);
  padding: 0.5rem 1rem;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--primary-color);
}

/* Dropdown Menu */
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 0.75rem 0;
  margin-top: 0.75rem;
  animation: fadeInUp 0.3s ease;
  background-color: var(--gray-100);
  border: 1px solid var(--gray-300);
}

.dropdown-item {
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  background-color: transparent;
}

.dropdown-item:hover {
  background-color: var(--gray-200);
  color: var(--primary-color);
  padding-left: 1.8rem;
}

/* Header Buttons */
.header-buttons {
  gap: 1rem;
}

.btn-signin,
.btn-getstarted {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-signin {
  color: var(--gray-600);
  background: transparent;
  border: 1px solid var(--gray-300);
}

.btn-signin:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-getstarted {
  background: var(--primary-color);
  color: white;
  border: none;
}

.btn-getstarted:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--light-color);
  cursor: pointer;
  padding: 0.5rem;
  display: none;
}

.mobile-header-icons {
  gap: 1rem;
}

.mobile-signin-icon,
.mobile-getstarted-icon {
  color: var(--gray-600);
  font-size: 1.25rem;
  text-decoration: none;
  padding: 0.5rem;
  transition: var(--transition);
}

.mobile-signin-icon:hover,
.mobile-getstarted-icon:hover {
  color: var(--primary-color);
}

/* Mobile Aside Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-aside-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100%;
  background: var(--gray-100);
  box-shadow: var(--shadow-xl);
  z-index: 1002;
  transition: left 0.3s ease;
  overflow-y: auto;
  border-right: 1px solid var(--gray-300);
}

.mobile-aside-menu.active {
  left: 0;
}

.aside-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-300);
}

.aside-logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--light-color);
}

.aside-logo img {
    width: 175px!important;
}

.aside-logo span {
  color: var(--primary-color);
}

.close-aside-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-600);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
}

.close-aside-btn:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.aside-menu-content {
  padding: 1.5rem;
}

.aside-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.aside-nav > li {
  margin-bottom: 0.5rem;
}

.aside-nav > li > a {
  display: flex;
  padding: 0.75rem 0;
  color: var(--gray-600);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.aside-nav > li > a:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.aside-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.aside-submenu {
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
  display: none;
}

.aside-submenu.active {
  display: block;
}

.aside-submenu li {
  margin-bottom: 0.5rem;
}

.aside-submenu li a {
  display: block;
  padding: 0.5rem 0;
  color: var(--gray-600);
  text-decoration: none;
  transition: var(--transition);
}

.aside-submenu li a:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.aside-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-300);
}

.aside-signin,
.aside-getstarted {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.aside-signin {
  background: transparent;
  border: 1px solid var(--gray-300);
  color: var(--gray-600);
}

.aside-signin:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.aside-getstarted {
  background: var(--primary-color);
  color: white;
}

.aside-getstarted:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ============================================
   Section Styles (100vh each)
   ============================================ */
section {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--bg-gradient);
}

.section-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(60, 207, 54, 0.15);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: var(--light-color);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
  margin-top: 0;
  padding-top: 0;
}

.hero-swiper {
  width: 100%;
  height: 100vh;
}

.hero-slide {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1s ease;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-primary,
.btn-secondary,
.btn-primary-outline,
.btn-primary-large {
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-primary-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-primary-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-primary-large {
  background: var(--primary-color);
  color: white;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
}

.btn-primary-large:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   About Section
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content .section-tag {
  margin-bottom: 1rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  filter: brightness(0.9);
}

.about-image img:hover {
  transform: scale(1.02);
  filter: brightness(1);
}

/* ============================================
   Features Section
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: var(--gray-100);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--gray-300);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
  background: var(--gray-200);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(60, 207, 54, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light-color);
}

.feature-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   How It Works Section
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem;
  position: relative;
  background: var(--gray-100);
  border-radius: 20px;
  border: 1px solid var(--gray-300);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.step-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
}

.step-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light-color);
}

.step-card p {
  color: var(--gray-600);
}

/* ============================================
   Statistics Section
   ============================================ */
.statistics-section {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A2A3A 100%);
  position: relative;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-card .stat-number {
  font-size: 3rem;
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  color: var(--gray-600);
  font-size: 1rem;
}

/* ============================================
   Blog Section
   ============================================ */
.blog-swiper {
  padding: 1rem 0 3rem;
}

.blog-card {
  background: var(--gray-100);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin: 0 0.5rem;
  border: 1px solid var(--gray-300);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  filter: brightness(0.85);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
  filter: brightness(1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(60, 207, 54, 0.15);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  color: var(--light-color);
}

.blog-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--primary-light);
  padding-left: 0.5rem;
}

/* ============================================
   Explanation Section
   ============================================ */
.explanation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.explanation-content h2 {
  
  margin-bottom: 1.5rem;
}

.explanation-content p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.explanation-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.explanation-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-600);
}

.explanation-list li i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.explanation-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  filter: brightness(0.9);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  text-align: center;
}

.cta-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-wrapper h2 {
  
  color: white;
  margin-bottom: 1rem;
}

.cta-wrapper p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--gray-300);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--light-color);
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-brand p {
  margin: 1rem 0;
  line-height: 1.6;
  color: var(--gray-600);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.footer-links h4 {
  color: var(--light-color);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: var(--gray-600);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 0.25rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-300);
  color: var(--gray-600);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .about-grid,
  .explanation-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .navbar-collapse {
    display: none !important;
  }
  
  .section-container {
    padding: 3rem 1.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .features-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-primary-outline {
    padding: 0.75rem 1.5rem;
  }
}

/* Additional demo-specific styles using existing CSS classes */
    .demo-card {
      background: var(--gray-100);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      margin: 0 0.5rem;
      border: 1px solid var(--gray-300);
    }
    .demo-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary-color);
    }
    .demo-video-placeholder {
      width: 100%;
      height: 220px;
      background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
    }
    .demo-video-placeholder:hover {
      background: var(--gray-300);
    }
    .demo-video-placeholder i {
      font-size: 4rem;
      color: var(--primary-color);
      transition: var(--transition);
    }
    .demo-video-placeholder:hover i {
      transform: scale(1.1);
    }
    .commission-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--gray-100);
      border-radius: 16px;
      overflow: hidden;
    }
    .commission-table th,
    .commission-table td {
      padding: 1rem;
      text-align: left;
      border-bottom: 1px solid var(--gray-300);
      color: var(--gray-600);
    }
    .commission-table th {
      color: var(--primary-color);
      font-weight: 600;
      background: rgba(60, 207, 54, 0.08);
    }
    .commission-table tr:last-child td {
      border-bottom: none;
    }

/* Blog specific styles - using existing CSS variables */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post-card {
    background: var(--gray-100);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-300);
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .blog-post-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary-color);
        box-shadow: var(--shadow-lg);
    }

.blog-post-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

    .blog-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.blog-post-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--gray-600);
}

    .blog-post-meta i {
        color: var(--primary-color);
        margin-right: 0.3rem;
    }

.blog-post-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: var(--transition);
}

.blog-post-card:hover .blog-post-title {
    color: var(--primary-color);
}

.blog-post-excerpt {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--gray-300);
    padding-top: 1rem;
    margin-top: auto;
}

.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .read-more-link:hover {
        gap: 0.8rem;
        color: var(--primary-light);
    }

/* Featured Post (Large) */
.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid var(--gray-300);
}

.featured-post-image {
    height: 100%;
    min-height: 380px;
}

    .featured-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.featured-post-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.featured-post-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 1rem;
}

.featured-post-excerpt {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--gray-300);
}

    .sidebar-widget h4 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
        color: var(--light-color);
        position: relative;
        padding-bottom: 0.75rem;
    }

        .sidebar-widget h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 3px;
        }

.search-box {
    display: flex;
    gap: 0.5rem;
}

    .search-box input {
        flex: 1;
        padding: 0.75rem 1rem;
        background: var(--gray-200);
        border: 1px solid var(--gray-300);
        border-radius: 50px;
        color: var(--light-color);
        font-family: "Montserrat", sans-serif;
    }

        .search-box input::placeholder {
            color: var(--gray-600);
        }

    .search-box button {
        background: var(--primary-color);
        border: none;
        padding: 0.75rem 1.25rem;
        border-radius: 50px;
        color: white;
        cursor: pointer;
        transition: var(--transition);
    }

        .search-box button:hover {
            background: var(--primary-dark);
        }

.category-list {
    list-style: none;
    padding: 0;
}

    .category-list li {
        margin-bottom: 0.75rem;
    }

        .category-list li a {
            color: var(--gray-600);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .category-list li a:hover {
                color: var(--primary-color);
                padding-left: 0.5rem;
            }

.category-count {
    background: var(--gray-200);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-300);
}

.recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}

.recent-post-info h5 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

    .recent-post-info h5 a {
        color: var(--light-color);
        text-decoration: none;
        transition: var(--transition);
    }

        .recent-post-info h5 a:hover {
            color: var(--primary-color);
        }

.recent-post-date {
    font-size: 0.7rem;
    color: var(--gray-600);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .tag-cloud a {
        background: var(--gray-200);
        color: var(--gray-600);
        padding: 0.4rem 1rem;
        border-radius: 50px;
        text-decoration: none;
        font-size: 0.75rem;
        transition: var(--transition);
    }

        .tag-cloud a:hover {
            background: var(--primary-color);
            color: white;
        }

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    color: var(--gray-600);
    text-decoration: none;
    transition: var(--transition);
}

    .pagination-item:hover,
    .pagination-item.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: white;
    }

@media (max-width: 992px) {
    .featured-post {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .blog-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .featured-post-title {
        font-size: 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact page specific styles */
.contact-form-wrapper {
    background: var(--gray-100);
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid var(--gray-300);
    transition: var(--transition);
}

    .contact-form-wrapper:hover {
        border-color: var(--primary-color);
        box-shadow: var(--shadow-lg);
    }

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--light-color);
        font-weight: 500;
        font-size: 0.9rem;
    }

        .form-group label i {
            color: var(--primary-color);
            margin-right: 0.5rem;
        }

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--gray-200);
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    color: var(--light-color);
    font-family: "Montserrat", sans-serif;
    transition: var(--transition);
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(60, 207, 54, 0.1);
    }

    .form-control::placeholder {
        color: var(--gray-600);
    }

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

    .submit-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.contact-info-card {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-300);
    height: 100%;
}

    .contact-info-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary-color);
    }

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(60, 207, 54, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

    .contact-icon i {
        font-size: 1.75rem;
        color: var(--primary-color);
    }

.contact-info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--light-color);
}

.contact-info-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    word-break: break-word;
}

.contact-info-card a {
    color: var(--gray-600);
    text-decoration: none;
    transition: var(--transition);
}

    .contact-info-card a:hover {
        color: var(--primary-color);
    }

.map-placeholder {
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    border-radius: 20px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-300);
}

    .map-placeholder i {
        font-size: 4rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

.success-message {
    background: rgba(60, 207, 54, 0.15);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: none;
}

.error-message {
    background: rgba(255, 68, 68, 0.15);
    border: 1px solid #ff4444;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #ff4444;
    display: none;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

.legal-content {
    background: var(--gray-100);
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid var(--gray-300);
    margin-bottom: 2rem;
}

    .legal-content h2 {
        font-size: 1.75rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }

    .legal-content h3 {
        font-size: 1.35rem;
        margin-top: 1.25rem;
        margin-bottom: 0.75rem;
        color: var(--light-color);
    }

    .legal-content p {
        color: var(--gray-600);
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    .legal-content ul {
        color: var(--gray-600);
        margin-bottom: 1rem;
        padding-left: 1.5rem;
    }

    .legal-content li {
        margin-bottom: 0.5rem;
    }

    .legal-content strong {
        color: var(--primary-color);
    }

.last-updated {
    background: rgba(60, 207, 54, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

    .cookie-table th, .cookie-table td {
        padding: 0.75rem;
        text-align: left;
        border-bottom: 1px solid var(--gray-300);
        color: var(--gray-600);
    }

    .cookie-table th {
        color: var(--primary-color);
        font-weight: 600;
        background: rgba(60, 207, 54, 0.05);
    }

@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem;
    }

    .cookie-table th, .cookie-table td {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

/* FAQ specific styles */
.faq-search-section {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--dark-color) 100%);
    border-radius: 28px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    border: 1px solid var(--gray-300);
}

.faq-search-box {
    max-width: 600px;
    margin: 1.5rem auto 0;
    display: flex;
    gap: 0.75rem;
}

    .faq-search-box input {
        flex: 1;
        padding: 1rem 1.5rem;
        background: var(--gray-200);
        border: 1px solid var(--gray-300);
        border-radius: 60px;
        color: var(--light-color);
        font-family: "Montserrat", sans-serif;
        font-size: 1rem;
    }

        .faq-search-box input:focus {
            outline: none;
            border-color: var(--primary-color);
        }

    .faq-search-box button {
        background: var(--primary-color);
        border: none;
        padding: 0 2rem;
        border-radius: 60px;
        color: white;
        font-weight: 600;
        transition: var(--transition);
    }

        .faq-search-box button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.faq-cat-btn {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: var(--gray-600);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

    .faq-cat-btn:hover, .faq-cat-btn.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: white;
    }

.faq-accordion {
    background: var(--gray-100);
    border-radius: 24px;
    border: 1px solid var(--gray-300);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--gray-300);
}

    .faq-item:last-child {
        border-bottom: none;
    }

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    background: var(--gray-100);
}

    .faq-question:hover {
        background: var(--gray-200);
    }

    .faq-question h4 {
        font-size: 1.1rem;
        margin: 0;
        color: var(--light-color);
        font-weight: 600;
    }

    .faq-question i {
        color: var(--primary-color);
        transition: transform 0.3s ease;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(60, 207, 54, 0.02);
}

    .faq-answer.active {
        max-height: 500px;
    }

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
}

    .faq-answer-content p {
        margin-bottom: 0.75rem;
    }

    .faq-answer-content ul, .faq-answer-content ol {
        margin: 0.75rem 0;
        padding-left: 1.5rem;
    }

    .faq-answer-content li {
        margin-bottom: 0.4rem;
    }

.contact-support-card {
    background: linear-gradient(135deg, rgba(60, 207, 54, 0.1) 0%, rgba(60, 207, 54, 0.05) 100%);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gray-300);
    margin-top: 2rem;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .faq-search-section {
        padding: 1.5rem;
    }

    .faq-search-box {
        flex-direction: column;
    }

    .faq-question {
        padding: 1rem;
    }

        .faq-question h4 {
            font-size: 0.95rem;
        }

    .faq-cat-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}


/* ============================================
   Amazon Affiliate Showcase Slider
   ============================================ */
.affiliate-showcase-section {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    padding: 5rem 0;
    overflow: hidden;
}

.showcase-swiper {
    width: 100%;
    padding: 2rem 1rem 4rem;
}

.showcase-slide {
    height: auto;
    display: flex;
    gap: 1.5rem;
}

.showcase-card {
    flex: 1;
    background: var(--gray-100);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-300);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

    .showcase-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary-color);
        box-shadow: var(--shadow-xl);
    }

.showcase-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

    .showcase-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.showcase-card:hover .showcase-card-image img {
    transform: scale(1.1);
}

.showcase-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.showcase-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 1.5rem 1rem 0.75rem;
}

    .showcase-card-overlay .amazon-logo {
        color: #FF9900;
        font-size: 1.25rem;
        font-weight: 800;
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }

        .showcase-card-overlay .amazon-logo i {
            font-size: 1rem;
        }

.showcase-card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .showcase-card-content h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--light-color);
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .showcase-card-content p {
        font-size: 0.85rem;
        color: var(--gray-600);
        margin-bottom: 1rem;
        line-height: 1.6;
        flex: 1;
    }

.showcase-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-300);
}

.showcase-commission {
    background: rgba(60, 207, 54, 0.15);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.showcase-arrow {
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.showcase-card:hover .showcase-arrow {
    transform: translateX(5px);
}

/* Swiper Navigation Customization */
.showcase-swiper .swiper-button-next,
.showcase-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: var(--gray-100);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    transition: var(--transition);
}

    .showcase-swiper .swiper-button-next:hover,
    .showcase-swiper .swiper-button-prev:hover {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    .showcase-swiper .swiper-button-next::after,
    .showcase-swiper .swiper-button-prev::after {
        font-size: 1rem;
        font-weight: 700;
    }

.showcase-swiper .swiper-pagination-bullet {
    background: var(--gray-600);
    opacity: 0.5;
}

.showcase-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .showcase-slide {
        flex-direction: column;
        gap: 1rem;
    }

    .showcase-card-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .showcase-card-image {
        height: 160px;
    }

    .showcase-card-content h3 {
        font-size: 1rem;
    }
}

/* ============================================
   E-Commerce Partners Showcase Slider
   ============================================ */
.ecommerce-partners-section {
  background: linear-gradient(135deg, #0A0A0A 0%, #111111 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.ecommerce-partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(60, 207, 54, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(255, 153, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.partners-swiper {
  width: 100%;
  padding: 1rem 0.5rem 3rem;
}

.partner-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-card {
  background: var(--gray-100);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-300);
  transition: var(--transition);
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(60, 207, 54, 0.05), transparent);
  transition: left 0.5s ease;
}

.partner-card:hover::before {
  left: 100%;
}

.partner-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: var(--gray-200);
}

.partner-logo-wrapper {
  width: 120px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.partner-logo-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.9) grayscale(20%);
  transition: var(--transition);
}

.partner-card:hover .partner-logo-wrapper img {
  filter: brightness(1) grayscale(0%);
  transform: scale(1.08);
}

.partner-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.partner-card:hover .partner-name {
  color: var(--primary-color);
}

.partner-rank {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--primary-color);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 2;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.partner-card:hover .partner-rank {
  opacity: 1;
  transform: scale(1);
}

.partner-badge {
  display: inline-block;
  background: rgba(255, 153, 0, 0.15);
  color: #FF9900;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 0.25rem;
  position: relative;
  z-index: 1;
}

/* Top 3 Highlight */
.partner-card.top-rank {
  border-color: rgba(60, 207, 54, 0.3);
  background: linear-gradient(135deg, var(--gray-100) 0%, rgba(60, 207, 54, 0.05) 100%);
}

.partner-card.top-rank .partner-rank {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  opacity: 1;
  transform: scale(1);
}

.partner-card.top-rank .partner-name {
  color: var(--primary-color);
  font-weight: 700;
}

/* Swiper Navigation */
.partners-swiper .swiper-button-next,
.partners-swiper .swiper-button-prev {
  color: var(--primary-color);
  background: var(--gray-100);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  transition: var(--transition);
}

.partners-swiper .swiper-button-next:hover,
.partners-swiper .swiper-button-prev:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.partners-swiper .swiper-button-next::after,
.partners-swiper .swiper-button-prev::after {
  font-size: 0.9rem;
  font-weight: 700;
}

.partners-swiper .swiper-pagination-bullet {
  background: var(--gray-600);
  opacity: 0.4;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.partners-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

/* Auto-scroll progress bar */
.partners-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--primary-color);
  border-radius: 0 3px 3px 0;
  transition: width 0.1s linear;
  z-index: 10;
}

/* Responsive */
@media (max-width: 1024px) {
  .partner-card {
    padding: 1.5rem 1rem;
    height: 180px;
  }
  
  .partner-logo-wrapper {
    width: 100px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .partner-card {
    height: 160px;
    border-radius: 16px;
  }
  
  .partner-logo-wrapper {
    width: 90px;
    height: 50px;
  }
  
  .partner-name {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .partner-card {
    height: 140px;
    padding: 1rem;
    border-radius: 14px;
  }
  
  .partner-logo-wrapper {
    width: 75px;
    height: 45px;
  }
  
  .partner-name {
    font-size: 0.7rem;
  }
}