/* Változók */
:root {
  --aurora-green: #00f5a0;
  --aurora-blue: #00d9f5;
  --dark-blue: #00264b;
  --primary-font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

/* Alapvető stílusok */
body {
  font-family: var(--primary-font);
  line-height: 1.6;
  color: #4b5563;
}

/* Aurora effektusok */
.gradient-text {
  background: linear-gradient(
    to right,
    var(--aurora-green),
    var(--aurora-blue)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline;
}

.aurora-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(0, 245, 160, 0.2) 0%,
    rgba(0, 217, 245, 0.15) 25%,
    rgba(0, 38, 75, 0.1) 50%,
    transparent 70%
  );
  opacity: 0.8;
  mix-blend-mode: screen;
  animation: aurora-shift 15s infinite;
}

@keyframes aurora-shift {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.5);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* Grid pattern */
.bg-grid-pattern {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Animációk */
.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-spin-slow {
  animation: spin 15s linear infinite;
}

.animate-bounce-slow {
  animation: bounce 4s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulse 3s ease-in-out infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

/* Gombok */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  background: linear-gradient(
    to right,
    var(--aurora-green),
    var(--aurora-blue)
  );
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 217, 245, 0.2),
    0 2px 4px -1px rgba(0, 245, 160, 0.12);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 217, 245, 0.3),
    0 4px 6px -2px rgba(0, 245, 160, 0.15);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.link-with-arrow {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--aurora-blue);
  transition: all 0.3s ease;
}

.link-with-arrow i {
  margin-left: 0.375rem;
  transition: transform 0.3s ease;
}

.link-with-arrow:hover {
  color: var(--aurora-green);
}

.link-with-arrow:hover i {
  transform: translateX(3px);
}

/* Kategória kártyák */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.category-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aurora-green), var(--aurora-blue));
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 217, 245, 0.5);
}

/* Akciós termék kártyák */
.deal-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  height: 100%;
}

.deal-img {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
  background-color: #f9fafb;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deal-img img {
  max-height: 200px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.deal-card:hover .deal-img img {
  transform: scale(1.05);
}

.discount-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--aurora-green), var(--aurora-blue));
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0, 217, 245, 0.3);
  animation: pulse 2s infinite;
}

.deal-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.product-category {
  display: inline-block;
  font-size: 0.75rem;
  background-color: rgba(0, 217, 245, 0.1);
  color: var(--aurora-blue);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 500;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0.75rem 0;
  line-height: 1.4;
}

.product-title a {
  color: inherit;
  transition: color 0.3s ease;
}

.product-title a:hover {
  color: var(--aurora-blue);
}

.product-desc {
  color: #6b7280;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  background: linear-gradient(135deg, var(--aurora-green), var(--aurora-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.original-price {
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: line-through;
  margin-left: 0.75rem;
}

.countdown-timer {
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
}

.countdown-title {
  display: flex;
  align-items: center;
  color: #4b5563;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.countdown-title i {
  color: var(--aurora-blue);
  margin-right: 0.375rem;
}

.countdown-units {
  display: flex;
  justify-content: space-between;
}

.countdown-unit {
  text-align: center;
  min-width: 3rem;
}

.unit-value {
  display: block;
  background: linear-gradient(135deg, var(--aurora-green), var(--aurora-blue));
  color: white;
  font-weight: 600;
  border-radius: 0.375rem;
  padding: 0.25rem 0;
  font-size: 1rem;
}

.unit-label {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
  display: block;
}

.deal-actions {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.btn-add-to-cart {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(
    to right,
    var(--aurora-green),
    var(--aurora-blue)
  );
  color: white;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-wishlist {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  color: #9ca3af;
  margin-left: 0.75rem;
  transition: all 0.3s ease;
}

.btn-wishlist:hover {
  color: #ef4444;
  border-color: #fecaca;
  background-color: #fef2f2;
}

/* Slider navigation */
.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background-color: white;
  color: #4b5563;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-nav-btn:hover {
  background-color: var(--aurora-blue);
  color: white;
}

.slider-nav-btn i {
  font-size: 1.5rem;
}

/* Termék kártyák */
.product-card {
  position: relative;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.product-badge.discount {
  background: linear-gradient(135deg, var(--aurora-green), var(--aurora-blue));
  color: white;
}

.wishlist-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 2rem;
  height: 2rem;
  background-color: white;
  color: #9ca3af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
}

.product-card:hover .wishlist-btn {
  opacity: 1;
}

.wishlist-btn:hover {
  color: #ef4444;
  transform: scale(1.1);
}

.quick-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  padding: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  transform: translateY(100%);
  transition: all 0.3s ease;
  z-index: 20;
}

.product-card:hover .quick-actions {
  transform: translateY(0);
}

.quick-action-btn {
  width: 2.5rem;
  height: 2.5rem;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  transition: all 0.3s ease;
}

.quick-action-btn:hover {
  color: var(--aurora-blue);
  transform: translateY(-3px);
}

.quick-action-btn.cart {
  width: auto;
  border-radius: 9999px;
  padding: 0 1rem;
  background: linear-gradient(135deg, var(--aurora-green), var(--aurora-blue));
  color: white;
}

.quick-action-btn.cart span {
  margin-left: 0.375rem;
  font-weight: 500;
}

.product-img-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: #f9fafb;
  display: block;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.product-img.primary {
  opacity: 1;
}

.product-img.secondary {
  opacity: 0;
}

.product-card:hover .product-img.primary {
  opacity: 0;
}

.product-card:hover .product-img.secondary {
  opacity: 1;
}

.product-info {
  padding: 1rem;
}

.rating {
  display: flex;
  align-items: center;
  color: #fbbf24;
  font-size: 0.875rem;
}

.rating i {
  margin-left: 0.125rem;
}

.stock-info {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}

.stock {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 500;
}

.stock i {
  margin-right: 0.25rem;
}

.stock.in-stock {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.stock.low-stock {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.stock.out-of-stock {
  background-color: rgba(107, 114, 128, 0.1);
  color: #6b7280;
}

/* Előnyök kártyák */
.benefit-card {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aurora-green), var(--aurora-blue));
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.benefit-desc {
  color: #6b7280;
}

/* Szolgáltatás kártyák */
.service-card {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-image {
  height: 10rem;
  background: linear-gradient(135deg, var(--aurora-green), var(--aurora-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.service-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.service-content {
  padding: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.service-desc {
  color: #6b7280;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--aurora-blue);
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-link i {
  margin-left: 0.375rem;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: var(--aurora-green);
}

.service-link:hover i {
  transform: translateX(3px);
}

/* Tab navigáció */
.tab-container {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid #e5e7eb;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tab-container::-webkit-scrollbar {
  display: none;
}

.tab-button {
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  color: #6b7280;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-button.active {
  color: var(--aurora-blue);
  border-bottom-color: var(--aurora-blue);
}

.tab-button:hover:not(.active) {
  color: #4b5563;
  border-bottom-color: #d1d5db;
}

/* Új termék kártyák */
.new-product-card {
  position: relative;
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.new-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.new-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #10b981;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  z-index: 10;
}

.new-product-img-container {
  padding-top: 75%;
  position: relative;
  overflow: hidden;
  background-color: #f9fafb;
  display: block;
}

.new-product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.5s ease;
}

.new-product-card:hover .new-product-img {
  transform: scale(1.1);
}

.new-product-info {
  padding: 1rem;
}

.new-product-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.8rem;
}

.new-product-title a {
  color: inherit;
  transition: color 0.3s ease;
}

.new-product-title a:hover {
  color: var(--aurora-blue);
}

.new-product-price {
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.new-product-cart-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem;
  background: linear-gradient(
    to right,
    var(--aurora-green),
    var(--aurora-blue)
  );
  color: white;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.new-product-cart-btn:hover {
  opacity: 0.9;
}

/* Hírlevél blokk */
.newsletter-container {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.newsletter-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter-text {
  flex: 1;
  padding: 2rem;
}

.newsletter-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.newsletter-desc {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  width: 100%;
}

.newsletter-input-container {
  display: flex;
  margin-bottom: 0.5rem;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.newsletter-input:focus {
  border-color: var(--aurora-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 217, 245, 0.2);
}

.newsletter-submit {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    to right,
    var(--aurora-green),
    var(--aurora-blue)
  );
  color: white;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.newsletter-submit:hover {
  opacity: 0.9;
}

.newsletter-submit i {
  margin-left: 0.5rem;
}

.newsletter-privacy {
  font-size: 0.875rem;
  color: #6b7280;
}

.newsletter-privacy-link {
  color: var(--aurora-blue);
  transition: color 0.3s ease;
}

.newsletter-privacy-link:hover {
  color: var(--aurora-green);
}

.newsletter-decoration {
  position: relative;
  flex: 0 0 40%;
  display: none;
  md: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 15rem;
}

.newsletter-circle {
  position: absolute;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aurora-green), var(--aurora-blue));
  opacity: 0.2;
}

.newsletter-icon {
  font-size: 6rem;
  color: #e5e7eb;
  position: relative;
  z-index: 10;
}

/* Testimonial slider */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 1rem;
}

.testimonial-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-family: serif;
  color: #f3f4f6;
  line-height: 1;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

.testimonial-avatar {
  flex: 0 0 auto;
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
}

.testimonial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(0, 217, 245, 0.2);
}

.testimonial-text {
  flex: 1;
}

.testimonial-rating {
  display: flex;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.testimonial-rating i {
  margin-right: 0.25rem;
}

.testimonial-review {
  color: #6b7280;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: #1f2937;
}

.testimonial-position {
  color: #6b7280;
  font-size: 0.875rem;
}

.testimonial-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background-color: white;
  color: #4b5563;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 20;
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  background-color: var(--aurora-blue);
  color: white;
}

.testimonial-nav-btn.prev {
  left: 1rem;
}

.testimonial-nav-btn.next {
  right: 1rem;
}

.testimonial-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #e5e7eb;
  transition: all 0.3s ease;
}

.testimonial-indicator.active {
  width: 2rem;
  border-radius: 9999px;
  background: linear-gradient(
    to right,
    var(--aurora-green),
    var(--aurora-blue)
  );
}

/* Üzleti megoldások szekció */
.business-solution-container {
  display: grid;
  grid-template-columns: 1fr;
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.business-solution-image {
  background: linear-gradient(135deg, var(--aurora-green), var(--aurora-blue));
  padding: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.business-solution-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 0;
}

.business-solution-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.business-solution-desc {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  position: relative;
  z-index: 10;
}

.business-solution-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: white;
  color: var(--aurora-blue);
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.business-solution-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.business-solution-content {
  padding: 2rem;
}

.business-solution-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.business-solution-benefits {
  margin-bottom: 1.5rem;
}

.business-solution-benefit {
  display: flex;
  margin-bottom: 0.75rem;
}

.business-solution-benefit i {
  color: var(--aurora-blue);
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.business-solution-contact {
  display: flex;
  align-items: center;
  background-color: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
}

.business-solution-contact i {
  font-size: 2rem;
  color: var(--aurora-blue);
  margin-right: 1rem;
}

.business-solution-contact-title {
  font-weight: 600;
  color: #1f2937;
}

.business-solution-contact-data {
  color: #6b7280;
}

/* Blog kártyák */
.blog-card {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.blog-img-link {
  display: block;
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}

.blog-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.blog-date,
.blog-author {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.blog-date i,
.blog-author i {
  margin-right: 0.375rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-title a {
  color: inherit;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--aurora-blue);
}

.blog-excerpt {
  color: #6b7280;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  color: var(--aurora-blue);
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-read-more i {
  margin-left: 0.375rem;
  transition: transform 0.3s ease;
}

.blog-read-more:hover {
  color: var(--aurora-green);
}

.blog-read-more:hover i {
  transform: translateX(3px);
}

/* Partnerek slider */
.partners-slider {
  position: relative;
  overflow: hidden;
  margin: 0 -1rem;
}

.partners-track {
  display: flex;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partner-logo {
  flex: 0 0 auto;
  margin: 0 1.5rem;
  height: 3rem;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

.partner-logo img {
  height: 100%;
  width: auto;
}

/* GYIK akkordion */
.faq-item {
  background-color: white;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  font-weight: 500;
  color: #1f2937;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--aurora-blue);
}

.faq-question.active {
  color: var(--aurora-blue);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question i.rotate-180 {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem 1.25rem;
  color: #6b7280;
  border-top: 1px solid #f3f4f6;
}

.faq-list {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.faq-list li {
  margin-bottom: 0.25rem;
}

/* Kapcsolat kártyák */
.contact-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aurora-green), var(--aurora-blue));
  color: white;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.contact-info {
  color: #6b7280;
  margin-bottom: 1rem;
}

.contact-hours {
  font-size: 0.875rem;
  color: #9ca3af;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  color: var(--aurora-blue);
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.contact-link i {
  margin-left: 0.375rem;
  transition: transform 0.3s ease;
}

.contact-link:hover {
  color: var(--aurora-green);
}

.contact-link:hover i {
  transform: translateX(3px);
}

.contact-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    to right,
    var(--aurora-green),
    var(--aurora-blue)
  );
  color: white;
  font-weight: 500;
  border-radius: 0.5rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.contact-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* CTA gombok */
.cta-btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background-color: white;
  color: var(--aurora-blue);
}

.cta-btn.primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Reszponzív javítások */
@media (max-width: 768px) {
  .slider-nav-btn {
    width: 2.5rem;
    height: 2.5rem;
  }

  .testimonial-nav-btn {
    width: 2.5rem;
    height: 2.5rem;
  }

  .newsletter-decoration {
    display: none;
  }

  .deal-card {
    flex-direction: column;
  }

  .deal-img {
    width: 100%;
  }
}
/* Google Értékelések stílusok */
.google-review-card {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.google-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.google-review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.google-review-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 0.875rem;
  flex-shrink: 0;
}

.google-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.google-reviewer-name {
  font-weight: 600;
  color: #202124;
  font-size: 1rem;
  line-height: 1.4;
}

.google-review-meta {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  color: #5f6368;
}

.google-review-date {
  margin-right: 0.5rem;
}

.google-review-rating {
  display: flex;
  margin-bottom: 0.875rem;
  font-size: 1rem;
}

.google-review-text {
  color: #202124;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.google-badge {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  color: #5f6368;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f3f4;
}

.google-logo {
  height: 1rem;
  width: auto;
  margin-right: 0.5rem;
}

.google-review-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background-color: white;
  color: #5f6368;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.3s ease;
}

.google-review-nav-btn:hover {
  background-color: #f8f9fa;
  color: #202124;
  transform: translateY(-50%) scale(1.05);
}

.google-review-nav-btn.prev {
  left: -1rem;
}

.google-review-nav-btn.next {
  right: -1rem;
}

.google-review-nav-btn i {
  font-size: 1.5rem;
}

.google-review-link {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background-color: white;
  color: #4285f4;
  font-weight: 500;
  border-radius: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.google-review-link:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.google-review-link i:first-child {
  margin-right: 0.5rem;
  color: #4285f4;
}

@media (max-width: 768px) {
  .google-review-nav-btn {
    width: 2.5rem;
    height: 2.5rem;
  }

  .google-review-nav-btn.prev {
    left: 0;
  }

  .google-review-nav-btn.next {
    right: 0;
  }
}
