:root {
  --primary-color: #3bb11d; /* Groagr Green */
  --primary-dark: #2a8c14;
  --text-dark: #1a1a1a;
  --text-light: #555555;
  --bg-light: #f9f9f9;
  --white: #ffffff;
  --footer-bg: #1c2329;
  --footer-text: #a0a0a0;
  --gradient-overlay: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-desc {
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 177, 29, 0.3);
}

.btn-block {
  display: block;
  width: 100%;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
}

.logo img {
  height: 40px;
  width: auto;
}

.logo-accent {
  color: var(--text-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-item {
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--primary-color);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 0;
  display: flex;
  align-items: center;
}

.lang-btn img {
  opacity: 0.4;
  transition: opacity 0.3s, transform 0.3s, filter 0.3s;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.1);
  filter: grayscale(80%);
}

.lang-btn:hover img {
  opacity: 0.8;
  filter: grayscale(20%);
}

.lang-btn.active img {
  opacity: 1;
  transform: scale(1.15);
  filter: grayscale(0%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.lang-separator {
  color: #ccc;
  font-size: 0.8rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 95vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  margin-top: 80px; /* Header height */
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero-bg video {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 60%
  );
}

.hero-content {
  color: var(--white);
  max-width: 1200px;
  position: relative;
  z-index: 1;
  margin-top: 220px;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 15px;
  /*text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);*/
  line-height: 0.9;
}

.hero-content p {
  font-size: 2.1rem;
  font-weight: 300;
  opacity: 0.9;
  line-height: 1;
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--white);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  max-width: 600px;
}

.about-text h2 {
  margin-bottom: 30px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.feature-list {
  margin: 30px 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 500;
}

.feature-list i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.tractor-divider {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  margin-top: 40px;
  font-size: 2rem;
}

.divider-line {
  height: 3px;
  background-color: var(--primary-color);
  flex-grow: 1;
  margin-left: 10px;
  border-radius: 2px;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 8px;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
}

.about-image img.animate-on-scroll {
  transform: translateX(100px);
}

.about-image img.animate-on-scroll.animated {
  animation: slideInFromRight 0.8s ease-out forwards;
}

.sq-1.animate-on-scroll {
  transform: translateY(-50px);
}

.sq-1.animate-on-scroll.animated {
  animation: slideInFromTop 0.8s ease-out 0.2s forwards;
}

.sq-2.animate-on-scroll {
  transform: translateY(50px);
}

.sq-2.animate-on-scroll.animated {
  animation: slideInFromBottom 0.8s ease-out 0.4s forwards;
}

/* Product Cards Animation */
.product-card.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
}

.product-card.animate-on-scroll.animated {
  animation: slideInFromBottom 0.8s ease-out forwards;
}

.products-grid .product-card:nth-child(1).animate-on-scroll.animated {
  animation-delay: 0s;
}

.products-grid .product-card:nth-child(2).animate-on-scroll.animated {
  animation-delay: 0.2s;
}

/* Feature Items Animation */
.feature-icon.animate-icon {
  opacity: 0;
  transform: scale(0.8);
}

.feature-icon.animate-icon.animated {
  animation: scaleUp 0.8s ease-out forwards;
}

.feature-item:nth-child(1) .feature-icon.animate-icon.animated {
  animation-delay: 0s;
}

.feature-item:nth-child(2) .feature-icon.animate-icon.animated {
  animation-delay: 0.2s;
}

.feature-item:nth-child(3) .feature-icon.animate-icon.animated {
  animation-delay: 0.4s;
}

.feature-item:nth-child(4) .feature-icon.animate-icon.animated {
  animation-delay: 0.6s;
}

.animate-text {
  opacity: 0;
  transform: translateX(-50px);
}

.animate-text.animated {
  animation: slideInFromLeft 0.8s ease-out forwards;
}

.feature-item:nth-child(1) .animate-text.animated {
  animation-delay: 0.2s;
}

.feature-item:nth-child(2) .animate-text.animated {
  animation-delay: 0.4s;
}

.feature-item:nth-child(3) .animate-text.animated {
  animation-delay: 0.6s;
}

.feature-item:nth-child(4) .animate-text.animated {
  animation-delay: 0.8s;
}

.product-card.animate-on-scroll.animated {
  animation: slideInFromBottom 0.8s ease-out forwards;
}

.products-grid .product-card:nth-child(1).animate-on-scroll.animated {
  animation-delay: 0s;
}

.products-grid .product-card:nth-child(2).animate-on-scroll.animated {
  animation-delay: 0.2s;
}
.products-grid .product-card:nth-child(3).animate-on-scroll.animated {
  animation-delay: 0.4s;
}
/* Feature Items Animation */
.feature-icon.animate-icon {
  opacity: 0;
  transform: scale(0.8);
}

.feature-icon.animate-icon.animated {
  animation: scaleUp 0.8s ease-out forwards;
}

.feature-item:nth-child(1) .feature-icon.animate-icon.animated {
  animation-delay: 0s;
}

.feature-item:nth-child(2) .feature-icon.animate-icon.animated {
  animation-delay: 0.2s;
}

.feature-item:nth-child(3) .feature-icon.animate-icon.animated {
  animation-delay: 0.4s;
}

.feature-item:nth-child(4) .feature-icon.animate-icon.animated {
  animation-delay: 0.6s;
}

.animate-text {
  opacity: 0;
  transform: translateX(-50px);
}

.animate-text.animated {
  animation: slideInFromLeft 0.8s ease-out forwards;
}

.feature-item:nth-child(1) .animate-text.animated {
  animation-delay: 0.2s;
}

.feature-item:nth-child(2) .animate-text.animated {
  animation-delay: 0.4s;
}

.feature-item:nth-child(3) .animate-text.animated {
  animation-delay: 0.6s;
}

.feature-item:nth-child(4) .animate-text.animated {
  animation-delay: 0.8s;
}

.floating-square {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  z-index: -1;
}

.sq-1 {
  top: -20px;
  right: -20px;
  opacity: 0.2;
}

.sq-2 {
  bottom: -20px;
  left: -20px;
  opacity: 0.2;
}

/* Products Section */
.products {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

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

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-info {
  padding: 30px;
}

.product-info h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.product-info p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.learn-more {
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.learn-more:hover {
  text-decoration: underline;
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--primary-color);
  color: var(--white);
}

.features .section-subtitle,
.features .section-desc {
  color: rgba(255, 255, 255, 0.9);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  text-align: left;
}

.feature-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.feature-item h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.feature-item p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* Contact Section */
.contact {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-top: 50px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--text-light);
}

.business-hours {
  background-color: #e6f7e2;
  padding: 25px;
  border-radius: 8px;
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.business-hours i {
  font-size: 1.5rem;
  color: var(--text-dark);
}

.contact-form {
  background: var(--white);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo {
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  max-width: 300px;
  margin-bottom: 30px;
}

.copyright {
  font-size: 0.8rem;
  opacity: 0.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 20px;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .nav.active {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .nav-item {
    padding: 10px 0;
  }
.hero-content p {
  font-size: 1.5rem;
  font-weight: 100;
  line-height: 1;
}
  .lang-switcher {
    margin-top: 15px;
    margin-left: 0;
    margin-bottom: 20px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

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

/* ==================== */
/* Impressum Page       */
/* ==================== */

.impressum-hero {
  background: linear-gradient(135deg, #1c2329 0%, #2a3a2e 50%, #1c2329 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.impressum-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(59, 177, 29, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(59, 177, 29, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.impressum-hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.impressum-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
}

.impressum-content {
  padding: 80px 0 100px;
  background-color: var(--bg-light);
}

.impressum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.impressum-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.impressum-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.impressum-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.impressum-card-wide {
  grid-column: 1 / -1;
}

.impressum-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(59, 177, 29, 0.1), rgba(59, 177, 29, 0.2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.impressum-card h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.impressum-card-body {
  color: var(--text-light);
  line-height: 1.8;
}

.impressum-company-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.impressum-company-sub {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 16px;
}

.impressum-address {
  padding: 16px 20px;
  background: var(--bg-light);
  border-radius: 10px;
  border-left: 3px solid var(--primary-color);
}

.impressum-address p {
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.impressum-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: var(--bg-light);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.impressum-contact-item:hover {
  background: rgba(59, 177, 29, 0.06);
}

.impressum-contact-item:last-child {
  margin-bottom: 0;
}

.impressum-contact-item i {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.impressum-contact-item div {
  display: flex;
  flex-direction: column;
}

.impressum-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.impressum-contact-item a {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.impressum-contact-item a:hover {
  color: var(--primary-color);
}

.impressum-card-body h3 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.impressum-card-body h3:first-child {
  margin-top: 0;
}

.impressum-card-body p {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .impressum-hero {
    padding: 140px 0 60px;
  }

  .impressum-hero h1 {
    font-size: 2.2rem;
  }

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

  .impressum-card {
    padding: 28px;
  }

  .impressum-content {
    padding: 40px 0 60px;
  }
}

/* 2K Screens & Ultrawide */
@media (min-width: 1920px) {
  .container {
    max-width: 1536px;
  }
  .hero-content {
    max-width: 1536px;
  }
  .hero-content h1 {
    font-size: 5.5rem;
  }
  .hero-content p {
    font-size: 2.8rem;
  }
}

/* 4K Screens */
@media (min-width: 3840px) {
  .container {
    max-width: 3000px;
  }
  .hero-content {
    max-width: 3000px;
  }
  .hero-content h1 {
    font-size: 10rem;
    margin-bottom: 40px;
  }
  .hero-content p {
    font-size: 5rem;
  }
}

/* ==================== */
/* Product Popup Modal  */
/* ==================== */

.product-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 9999;
  overflow-y: auto;
  padding: 40px 20px;
}

.product-popup-overlay.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.product-popup {
  background: var(--white);
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  position: relative;
  padding: 50px 40px 40px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  animation: popupSlideIn 0.35s ease-out;
  margin: auto;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--bg-light);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.2s;
  color: var(--text-dark);
  z-index: 2;
}

.popup-close:hover {
  background: #e0e0e0;
  transform: rotate(90deg);
}

.popup-header {
  text-align: center;
  margin-bottom: 36px;
}

.popup-header h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.popup-header p {
  color: var(--text-light);
  font-size: 1rem;
}

.popup-products-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.popup-product-item {
  display: flex;
  gap: 28px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popup-product-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.popup-product-img {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.popup-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.popup-product-item:hover .popup-product-img img {
  transform: scale(1.05);
}

.popup-product-details {
  flex: 1;
}

.popup-product-details h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.popup-product-details > p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 14px;
}

.popup-additional-info {
  background: var(--white);
  border-radius: 10px;
  padding: 14px 18px;
  border-left: 3px solid var(--primary-color);
}

.popup-additional-info h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.popup-additional-info ul {
  list-style: none;
}

.popup-additional-info li {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 5px;
  padding-left: 14px;
  position: relative;
}

.popup-additional-info li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
}

/* Popup scrollbar styling */
.product-popup::-webkit-scrollbar {
  width: 6px;
}

.product-popup::-webkit-scrollbar-track {
  background: transparent;
}

.product-popup::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

@media (max-width: 768px) {
  .product-popup {
    padding: 40px 20px 24px;
    border-radius: 16px;
  }

  .popup-product-item {
    flex-direction: column;
    gap: 16px;
    padding: 18px;
  }

  .popup-product-img {
    width: 100%;
    height: 180px;
  }

  .popup-header h2 {
    font-size: 1.5rem;
  }

  .product-popup-overlay {
    padding: 20px 12px;
  }
}

/* Coming Soon Popup Content */
.popup-coming-soon {
  text-align: center;
  padding: 60px 30px;
}

.coming-soon-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 177, 29, 0.1), rgba(59, 177, 29, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2.8rem;
  color: var(--primary-color);
  animation: comingSoonPulse 2s ease-in-out infinite;
}

@keyframes comingSoonPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.popup-coming-soon h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.popup-coming-soon > p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 30px;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.coming-soon-badge i {
  font-size: 1.1rem;
}
