/* ============================================ */
/* GENERATORS PAGE STYLES                       */
/* ============================================ */

.generators-page {
  position: relative;
  background-color: var(--light-color);
  color: var(--text-color-main);
}

/* ============================================ */
/* HERO SECTION WITH FORM (100vh)               */
/* ============================================ */
.generators-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.generators-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.generators-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.generators-hero .hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1400px;
  width: 100%;
  padding: 90px 0 30px;
  margin: 0 auto;
}

/* Hero Text Side */
.hero-text-side {
  flex: 1;
  max-width: 550px;
}

.generators-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--light-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.generators-hero .hero-subtitle {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.generators-hero .hero-description {
  font-size: 1.1rem;
  color: var(--secondary-light);
  line-height: 1.8;
  opacity: 0.9;
}

/* Hero Form Side */
.hero-form-side {
  flex: 0 0 450px;
}

.generator-form-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.form-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header h2 {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--light-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.form-header p {
  font-size: 0.95rem;
  color: var(--secondary-color);
}

/* Form Styles */
.generator-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.generator-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.generator-form label {
  font-size: 0.85rem;
  color: var(--light-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.generator-form .required-note {
  font-size: 0.75rem;
  color: var(--primary-color);
  font-weight: 400;
  font-style: italic;
}

.generator-form .optional-note {
  font-size: 0.75rem;
  color: var(--tertiary-color);
  font-weight: 400;
  font-style: italic;
}

.generator-form input[type="number"],
.generator-form select,
.generator-form textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--light-color);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.generator-form input[type="number"]::placeholder,
.generator-form textarea::placeholder {
  color: var(--tertiary-color);
}

.generator-form input[type="number"]:focus,
.generator-form select:focus,
.generator-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(0, 0, 0, 0.4);
}

.generator-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.generator-form select option {
  background: var(--shadow-color);
  color: var(--light-color);
}

.generator-form textarea {
  resize: vertical;
  min-height: 60px;
}

/* Submit Button */
.generator-form .btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 25px;
  background: var(--primary-color);
  color: var(--light-color);
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.generator-form .btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.generator-form .btn-submit i {
  font-size: 1.1rem;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
  animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-scroll-indicator i {
  font-size: 1.2rem;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ============================================ */
/* CTA SECTIONS                                 */
/* ============================================ */
.generators-cta-section {
  background: var(--light-color);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.generators-cta-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color),
    var(--tertiary-color)
  );
}

.generators-cta-section.cta-dark {
  background-color: var(--shadow-color);
}

.generators-cta-section.cta-dark .cta-content h2,
.generators-cta-section.cta-dark .cta-content p {
  color: var(--light-color);
}

.generators-cta-section.cta-dark .cta-content p {
  color: var(--secondary-color);
}

.generators-cta-section .cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.generators-cta-section .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.generators-cta-section .cta-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--tertiary-color);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Button styles */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
}

.btn-secondary {
  background: transparent;
  color: var(--text-color-main);
  border: 1px solid var(--secondary-color);
}

.generators-cta-section.cta-dark .btn-secondary {
  color: var(--light-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--shadow-light);
}

.btn-secondary:hover {
  background-color: var(--tertiary-dark);
  border-color: var(--secondary-light);
  color: var(--light-color);
}

/* ============================================ */
/* PRODUCTS SECTION - REDESIGNED               */
/* ============================================ */
.generators-products {
  background-color: var(--shadow-color);
  position: relative;
  min-height: 100vh;
  transition: background-color 0.3s ease;
}

.generators-products.theme-light {
  background-color: var(--light-color);
}

.generators-products::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color),
    var(--tertiary-color)
  );
}

/* ============================================ */
/* PRODUCTS NAVIGATION BAR                      */
/* ============================================ */
.products-nav {
  position: sticky;
  top: 80px;
  z-index: 10;
  background: var(--shadow-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    all 0.3s ease,
    transform 0.3s ease;
}

.products-nav.nav-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

.theme-light .products-nav {
  background: var(--light-color);
  border-bottom: 1px solid var(--secondary-color);
  box-shadow: 0 2px 10px var(--shadow-light);
}

.products-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1800px;
  margin: 0 auto;
  padding: 15px 30px;
}

/* Nav Left - Theme Toggle & Count */
.products-nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Theme Toggle */
.theme-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.theme-light .theme-toggle {
  background: var(--light-gray);
  border-color: var(--secondary-color);
}

.theme-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--tertiary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-btn:hover {
  color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.05);
}

.theme-light .theme-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.theme-btn.active {
  background: var(--primary-color);
  color: var(--light-color);
}

.products-count {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.products-count .count-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--light-color);
}

.theme-light .products-count {
  color: var(--tertiary-color);
}

.theme-light .products-count .count-number {
  color: var(--text-color-main);
}

/* Nav Center - Search */
.products-nav-center {
  flex: 1;
  max-width: 500px;
}

.products-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 15px;
  transition: all 0.3s ease;
}

.theme-light .products-search {
  background: var(--white);
  border-color: var(--secondary-color);
}

.products-search:focus-within {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
}

.theme-light .products-search:focus-within {
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 200, 16, 46), 0.1);
}

.products-search i {
  color: var(--tertiary-color);
  font-size: 0.9rem;
}

.products-search input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 0;
  color: var(--light-color);
  font-size: 0.95rem;
  outline: none;
}

.theme-light .products-search input {
  color: var(--text-color-main);
}

.products-search input::placeholder {
  color: var(--tertiary-color);
}

/* Nav Right - Sort & Filters */
.products-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-color);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.theme-light .nav-btn {
  background: var(--white);
  border-color: var(--secondary-color);
  color: var(--text-color-main);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.theme-light .nav-btn:hover {
  background: var(--light-gray);
  border-color: var(--tertiary-color);
}

.nav-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-color);
}

.nav-btn .chevron {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-btn.active .chevron {
  transform: rotate(180deg);
}

.filter-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--light-color);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 0 6px;
}

/* Sort Dropdown */
.sort-dropdown {
  position: relative;
}

.sort-dropdown__menu {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  min-width: 220px;
  background: var(--shadow-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.theme-light .sort-dropdown__menu {
  background: var(--light-color);
  border-color: var(--secondary-color);
  box-shadow: 0 10px 40px var(--shadow-light);
}

.sort-dropdown__menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sort-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--secondary-color);
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.theme-light .sort-dropdown__item {
  color: var(--tertiary-color);
  border-bottom-color: var(--secondary-light);
}

.sort-dropdown__item:last-child {
  border-bottom: none;
}

.sort-dropdown__item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--light-color);
}

.theme-light .sort-dropdown__item:hover {
  background: var(--light-gray);
  color: var(--text-color-main);
}

.sort-dropdown__item.active {
  background: rgba(var(--primary-rgb, 200, 16, 46), 0.15);
  color: var(--light-color);
}

.theme-light .sort-dropdown__item.active {
  background: rgba(var(--primary-rgb, 200, 16, 46), 0.1);
  color: var(--primary-color);
}

.sort-dropdown__item i {
  width: 18px;
  text-align: center;
  font-size: 0.85rem;
}

/* Feature filters wrapper */
.feature-filters-wrapper {
  position: relative;
}

/* ============================================ */
/* PRODUCTS GRID - FULL WIDTH, NO GAPS          */
/* ============================================ */
.products-grid-fullwidth {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0;
}

/* Product Card - Dark Theme (Default) */
.product-card {
  background: var(--shadow-color);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-right: none;
  border-bottom: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* Light Theme Cards */
.theme-light .product-card {
  background: var(--light-color);
  border-color: var(--secondary-color);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 2;
}

.product-card:hover {
  background: var(--shadow-dark);
  z-index: 1;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.theme-light .product-card:hover {
  background: var(--light-color);
  box-shadow: 0 10px 40px var(--shadow-light);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.card-image {
  height: 200px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.theme-light .card-image {
  background: transparent;
  border-bottom-color: var(--secondary-color);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.3s ease;
  filter: brightness(0.95);
}

.theme-light .card-image img {
  filter: none;
}

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

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.4;
}

.card-title a {
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.theme-light .card-title a {
  color: var(--text-color-main);
}

.card-title a:hover {
  color: var(--primary-color);
}

.card-manufacturer {
  font-size: 0.8rem;
  color: var(--tertiary-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 15px;
}

.card-features .feature-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.theme-light .card-features .feature-item {
  border-bottom-color: var(--light-gray);
}

.feature-label {
  color: var(--tertiary-color);
}

.card-features .feature-value {
  color: var(--secondary-color);
  font-weight: 500;
}

.theme-light .card-features .feature-value {
  color: var(--text-color-main);
}

.card-features .feature-value small {
  font-weight: 400;
  color: var(--tertiary-color);
  margin-left: 2px;
}

.card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.card-button:hover {
  background: var(--primary-color);
  color: var(--light-color);
}

.card-button i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.card-button:hover i {
  transform: translateX(4px);
}

/* No Products Found */
.no-products-found {
  grid-column: 1 / -1;
  text-align: center;
  padding: 100px 20px;
  color: var(--tertiary-color);
}

.no-products-found i {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--tertiary-dark);
}

.no-products-found p {
  font-size: 1.1rem;
}

/* Loading State */
.products-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  color: var(--tertiary-color);
}

.loading-spinner {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.products-loading p {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 40px 20px;
  max-width: 1800px;
  margin: 0 auto;
}

/* Pagination Container */
.pagination-container {
  width: 100%;
  background: var(--shadow-dark);
  border-top: 1px solid var(--secondary-color);
}

.theme-light .pagination-container {
  background: var(--light-color);
}

/* Pagination Buttons */
.pagination-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--secondary-color);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.theme-light .pagination-btn {
  border-color: var(--secondary-color);
  color: var(--tertiary-color);
}

.pagination-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--secondary-color);
  color: var(--light-color);
}

.theme-light .pagination-btn:hover {
  background: var(--white);
  color: var(--text-color-main);
}

.pagination-numbers {
  display: flex;
  gap: 5px;
}

.pagination-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--secondary-color);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-light .pagination-number {
  border-color: var(--secondary-color);
  color: var(--tertiary-color);
}

.pagination-number:hover {
  border-color: var(--secondary-color);
  color: var(--light-color);
}

.theme-light .pagination-number:hover {
  background: var(--white);
  color: var(--text-color-main);
}

.pagination-number.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-color);
}

.pagination-dots {
  padding: 0 5px;
  color: var(--tertiary-color);
}

/* Power Table in Card */
.card-power-table {
  width: 100%;
  margin-bottom: 12px;
  border-collapse: collapse;
}

.card-power-table th,
.card-power-table td {
  padding: 8px 10px;
  font-size: 0.8rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.theme-light .card-power-table th,
.theme-light .card-power-table td {
  border-color: var(--light-gray);
}

.card-power-table th {
  background: rgba(255, 255, 255, 0.05);
  color: var(--secondary-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.7rem;
}

.theme-light .card-power-table th {
  background: var(--light-gray);
  color: var(--tertiary-color);
}

.card-power-table td {
  color: var(--light-color);
  font-weight: 500;
}

.theme-light .card-power-table td {
  color: var(--text-color-main);
}

.card-power-table .row-label {
  text-align: left;
  color: var(--tertiary-color);
  font-weight: 400;
  background: rgba(255, 255, 255, 0.02);
  width: 60px;
}

.theme-light .card-power-table .row-label {
  background: rgba(0, 0, 0, 0.02);
}

.card-power-table td small {
  color: var(--tertiary-color);
  font-weight: 400;
  margin-left: 2px;
}

/* Card Engine Info */
.card-engine-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 15px;
}

.card-engine-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.theme-light .card-engine-row {
  border-bottom-color: var(--light-gray);
}

.card-engine-row .engine-label {
  color: var(--tertiary-color);
}

.card-engine-row .engine-value {
  color: var(--secondary-color);
  font-weight: 500;
}

.theme-light .card-engine-row .engine-value {
  color: var(--text-color-main);
}

/* ============================================ */
/* RESPONSIVE - Products Section                */
/* ============================================ */
@media (max-width: 1200px) {
  .products-grid-fullwidth {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .generators-hero .hero-container {
    gap: 40px;
    padding: 90px 30px 30px;
  }

  .generators-hero .hero-title {
    font-size: 3rem;
  }

  .hero-form-side {
    flex: 0 0 380px;
  }
}

@media (max-width: 992px) {
  .products-nav-inner {
    flex-wrap: wrap;
    gap: 15px;
  }

  .products-nav-center {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
  }

  .products-grid-fullwidth {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }

  .nav-btn .btn-text {
    display: none;
  }

  .nav-btn {
    padding: 10px 12px;
  }

  .generators-hero .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 100px 20px 60px;
  }

  .hero-text-side {
    max-width: 100%;
  }

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

  .hero-form-side {
    flex: none;
    width: 100%;
    max-width: 450px;
  }

  .generator-form-card {
    padding: 25px;
  }

  .generators-cta-section .cta-content h2 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .products-nav {
    top: 70px;
  }

  .products-nav-inner {
    padding: 12px 15px;
  }

  .products-nav-left {
    gap: 10px;
  }

  .products-count {
    display: none;
  }

  .products-grid-fullwidth {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-image {
    height: 160px;
  }

  .card-content {
    padding: 15px;
  }

  .pagination {
    padding: 30px 15px;
  }

  .pagination-numbers {
    display: none;
  }

  .generators-hero {
    min-height: auto;
  }

  .generators-hero .hero-container {
    padding: 80px 15px 50px;
  }

  .generators-hero .hero-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

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

  .generator-form-card {
    padding: 20px 15px;
  }

  .form-header h2 {
    font-size: 1.2rem;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .generators-cta-section,
  .generators-products {
    padding: 60px 0;
  }

  .generators-cta-section .cta-content h2 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cards-filters {
    flex-direction: column;
    gap: 15px;
  }

  .filter-group {
    justify-content: center;
  }

  .filter-results-item {
    margin-left: 0;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .pagination {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .products-grid-fullwidth {
    grid-template-columns: 1fr;
  }

  .theme-toggle {
    display: none;
  }

  .card-image {
    height: 180px;
  }

  .generators-hero .hero-title {
    font-size: 1.8rem;
  }

  .generators-hero .hero-subtitle {
    font-size: 1rem;
  }

  .generators-hero .hero-description {
    font-size: 0.95rem;
  }

  .generator-form-card {
    padding: 15px 12px;
  }

  .generator-form input[type="number"],
  .generator-form select,
  .generator-form textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .generator-form .btn-submit {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .generators-cta-section,
  .generators-products {
    padding: 40px 0;
  }

  .generators-cta-section .cta-content h2 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .pagination-numbers {
    display: none;
  }
}
