@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #1a1a1a;
}

.site-header {
  background: rgba(26, 26, 26, 0.98);
  padding: 0.3rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo img {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.brand-name {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00ff9d;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #00ff9d;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.language-buttons {
  display: flex;
  gap: 0.5rem;
}

.language-btn {
  background: transparent;
  border: 1px solid #00ff9d;
  color: #00ff9d;
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  min-width: 40px;
}

.language-btn:hover {
  background: #00ff9d;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.language-btn.active {
  background: #00ff9d;
  color: #1a1a1a;
  box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
}

main {
  flex: 1;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 4rem 0;
  background: linear-gradient(to bottom, #1a1a1a, #2a2a2a);
  color: white;
  min-height: 90vh;
  gap: 2rem;
}

.hero-left {
  flex: 1;
  text-align: left;
  max-width: 600px;
  padding-right: 2rem;
  margin-left: 10rem;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tv-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tv-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

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

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-content .subtitle {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #00ff9d;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.hero-content .description {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: #e0e0e0;
}

.btn-test {
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  background-color: #25d366;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-test:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.productdisplay {
  display: flex;
  margin: 0 auto;
  padding: 2rem;
  max-width: 1200px;
  gap: 4rem;
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}

.productdisplay-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.productdisplay-img {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
}

.productdisplay-img img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.productdisplay-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.productdisplay-right h1 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 600;
}

.productdisplay-right-stock {
  color: #e0e0e0;
  font-size: 1.1rem;
}

.productdisplay-right-stock .in-stock {
  color: #00ff9d;
  font-weight: 600;
  margin-left: 0.5rem;
}

.productdisplay-right-description {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.productdisplay-right-buttons {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.add-to-cart-btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #00ff9d 0%, #00e88d 100%);
  border-radius: 30px;
  transition: all 0.3s ease;
  text-align: center;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 255, 157, 0.3);
}

.listings-container {
  padding: 4rem 2rem;
  background: #f5f5f5;
  min-height: 100vh;
}

.listings-section {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.listings-section:last-child {
  margin-bottom: 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 3rem;
  font-weight: 600;
}

.listings-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
}

.package-card {
  background: white;
  border-radius: 10px;
  padding: 2.5rem 2.5rem;
  text-align: center;
  width: 340px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.package-card.premium {
  background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
  color: white;
}

.package-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.package-card .price {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: inherit;
}

.package-card .price::after {
  content: '€';
  font-size: 1.4rem;
  margin-left: 2px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.package-card.premium .feature-icon {
  background-color: rgba(0, 255, 157, 0.2);
  color: #00ff9d;
}

.feature-text {
  color: inherit;
  opacity: 0.95;
}

.btn-contact {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-contact.premium {
  background-color: #00ff9d;
  color: #1a1a1a;
}

.btn-contact.premium:hover {
  background-color: #00e88d;
}

.package-card.premium[data-popular="true"]::after {
  content: 'Popular';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 255, 157, 0.2);
  color: #00ff9d;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-container {
  padding: 2rem 0;
  background: #1a1a1a;
  color: #ffffff;
}

.footer-container hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.footer-link {
  color: #00ff9d;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #00e88d;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 1200px) {
  .hero {
    padding: 7.5rem 1.5rem 0;
  }

  .hero-left {
    margin-left: 0;
    padding-right: 1rem;
  }
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column-reverse;
    padding: 6.75rem 1rem 2rem;
    text-align: center;
    gap: 1.5rem;
    min-height: auto;
  }

  .hero-left {
    padding-right: 0;
    max-width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content .subtitle {
    font-size: 1.5rem;
  }

  .hero-content .description {
    font-size: 1.1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    text-align: center;
  }

  .productdisplay {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.25rem;
    margin: 1rem auto 0;
    border-radius: 16px;
  }

  .productdisplay-img {
    max-width: 260px;
    padding: 0.5rem 0;
  }

  .productdisplay-right h1 {
    font-size: 2rem;
  }

  .listings-container {
    padding: 2.5rem 1rem;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .nav-logo img {
    height: 34px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    margin-top: 0.25rem;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.35rem 0 0.15rem;
  }

  .nav-links a {
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .nav-actions {
    margin-left: auto;
  }

  .language-buttons {
    gap: 0.3rem;
  }

  .language-btn {
    padding: 0.38rem 0.55rem;
    font-size: 0.76rem;
    min-width: 32px;
  }

  .listings-container {
    padding: 2rem 0.85rem;
  }

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

  .listings-grid {
    gap: 1.5rem;
  }

  .package-card {
    width: 100%;
    max-width: 100%;
    padding: 1.75rem 1.25rem;
  }

  .footer {
    padding: 0 0.85rem;
  }

  .footer-content h3 {
    font-size: 1.3rem;
  }

  .footer-link {
    font-size: 1rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .site-header {
    padding: 0.7rem 0.85rem;
  }

  .nav-logo a {
    gap: 0.6rem;
  }

  .nav-logo img {
    height: 30px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .nav-links {
    gap: 0.5rem;
  }

  .nav-links a {
    font-size: 0.78rem;
  }

  .language-btn {
    padding: 0.32rem 0.48rem;
    font-size: 0.72rem;
    min-width: 30px;
  }

  .hero {
    padding: 6.25rem 0.85rem 1.5rem;
    gap: 1.25rem;
  }

  .hero-content {
    width: 100%;
  }

  .productdisplay-right h1 {
    font-size: 1.8rem;
  }

  .productdisplay-right {
    gap: 1.25rem;
  }

  .productdisplay-right-stock,
  .productdisplay-right-description {
    font-size: 1rem;
  }

  .productdisplay-right-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .add-to-cart-btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
  }

  .listings-container {
    padding: 1.75rem 0.75rem;
  }

  .section-title {
    font-size: 1.65rem;
    margin-bottom: 1.5rem;
  }

  .package-card {
    padding: 1.5rem 1rem;
  }

  .package-card h3 {
    font-size: 1.35rem;
  }

  .package-card .price {
    font-size: 1.9rem;
  }

  .features-list {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .feature-item {
    font-size: 0.9rem;
    gap: 0.65rem;
  }

  .footer-container {
    padding: 1.5rem 0;
  }

  .footer-content {
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 5.9rem;
  }

  .hero-content h1 {
    font-size: 2.15rem;
  }

  .hero-content .subtitle {
    font-size: 1.08rem;
  }

  .hero-content .description {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .btn-test {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .productdisplay {
    padding: 1rem;
  }

  .productdisplay-right h1 {
    font-size: 1.65rem;
  }

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

  .package-card {
    padding: 1.35rem 0.9rem;
  }

  .footer-content h3 {
    font-size: 1.15rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }
}