/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #1a73e8;
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #1a73e8;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #1a73e8;
}

.nav-extras {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switcher {
  display: flex;
  gap: 10px;
}

.lang-link {
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.3s ease;
  font-size: 14px;
}

.lang-link.active {
  background: #1a73e8;
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Main Content */
.main-content {
  margin-top: 70px;
  min-height: calc(100vh - 70px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-primary {
  background: #1a73e8;
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: #1557b0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

/* Enhanced button styling for fullscreen hero */
.fullscreen-hero .btn-primary {
  background: rgba(26, 115, 232, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fullscreen-hero .btn-primary:hover {
  background: rgba(21, 87, 176, 0.95);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #1a73e8;
  border: 2px solid #1a73e8;
}

.btn-secondary:hover {
  background: #1a73e8;
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 80px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}

/* Full Screen Hero Slider */
.fullscreen-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.background-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.background-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.background-slider .slide.active {
  opacity: 1;
}

.slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  top: -50vh;
  left: -50vw;
  right: -50vw;
  bottom: -50vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.fullscreen-hero .hero-content {
  margin-bottom: 60px;
}

.fullscreen-hero .hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.fullscreen-hero .hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: -100px;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  font-size: 14px;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.scroll-indicator i {
  font-size: 18px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Image Slider */
.image-slider {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.dot.active {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Sections */
.about,
.services,
.products,
.partners-intro,
.contact-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Grid */
.features-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card,
.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon,
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i,
.service-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card h3,
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.feature-card p,
.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.product-category {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-category:hover {
  transform: translateY(-5px);
}

.category-header {
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  color: white;
  padding: 30px;
  text-align: center;
}

.category-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.category-icon i {
  font-size: 1.5rem;
}

.category-header h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.category-header p {
  opacity: 0.9;
  font-size: 0.95rem;
}

.product-list {
  padding: 30px;
}

.product-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.product-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.product-item h4 {
  color: #333;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.product-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Partners */
.partners-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.partner-item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-3px);
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.benefit-card {
  text-align: center;
  padding: 30px;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon i {
  font-size: 1.8rem;
  color: white;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e1e5e9;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #1a73e8;
}

.form-control.error {
  border-color: #e74c3c;
}

.error-message {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  padding: 40px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-text h4 {
  color: #333;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-text p {
  color: #666;
  line-height: 1.5;
}

/* Alerts */
.alert {
  padding: 15px 20px;
  border-radius: 5px;
  margin-bottom: 25px;
  font-weight: 500;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* CTA Section */
.cta,
.partner-cta {
  background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Process Steps */
.process {
  background: #f8f9fa;
  padding: 80px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.step {
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step h4 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.step p {
  color: #666;
  line-height: 1.6;
}

/* Quality Section */
.quality-section {
  background: #f8f9fa;
  padding: 80px 0;
  text-align: center;
}

.quality-content h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 20px;
}

.quality-content p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px;
}

.certifications {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: white;
  border-radius: 50px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.cert-item i {
  color: #1a73e8;
  font-size: 1.2rem;
}

.cert-item span {
  font-weight: 600;
  color: #333;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #1a73e8;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ecf0f1;
}

.footer-section p {
  line-height: 1.6;
  color: #bdc3c7;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #34495e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: #1a73e8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #1a73e8;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 20px;
  text-align: center;
  color: #bdc3c7;
}

/* Footer Contact Items Styling */
.footer .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(52, 73, 94, 0.3);
  border-radius: 8px;
  border-left: 4px solid #1a73e8;
  transition: all 0.3s ease;
}

.footer .contact-item:hover {
  background: rgba(52, 73, 94, 0.5);
  transform: translateX(5px);
}

.footer .contact-item i {
  font-size: 1.2rem;
  color: #1a73e8;
  margin-right: 15px;
  margin-top: 2px;
  min-width: 20px;
}

.footer .contact-item span {
  color: #ecf0f1;
  line-height: 1.5;
  font-size: 0.95rem;
}

.footer .contact-item:nth-child(1) i {
  color: #e74c3c;
}

.footer .contact-item:nth-child(2) i {
  color: #27ae60;
}

.footer .contact-item:nth-child(3) i {
  color: #f39c12;
}

/* Map Placeholder */
.map-placeholder {
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  margin-top: 30px;
}

.map-info i {
  font-size: 3rem;
  color: #6c757d;
  margin-bottom: 15px;
}

.map-info p {
  color: #6c757d;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .image-slider {
    height: 250px;
  }

  .fullscreen-hero {
    min-height: 70vh;
    height: 70vh;
  }

  .fullscreen-hero .hero-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .fullscreen-hero .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .slide-bg {
    background-attachment: scroll;
  }

  .scroll-indicator {
    bottom: -100px;
    font-size: 12px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid,
  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .partners-container {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .certifications {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .hero {
    padding: 60px 0;
  }

  .fullscreen-hero {
    min-height: 60vh;
    height: 60vh;
  }

  .fullscreen-hero .hero-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .fullscreen-hero .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .slider-dots {
    gap: 10px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .contact-form,
  .contact-info {
    padding: 30px 20px;
  }

  .partners-container {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

/* Product Gallery Styles */
.product-filter {
  background: #f8f9fa;
  padding: 40px 0;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  color: #666;
  border: 2px solid #e1e5e9;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
  background: #1a73e8;
  color: white;
  border-color: #1a73e8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.product-gallery {
  padding: 60px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.gallery-item {
  transition: all 0.3s ease;
}

.gallery-item.hidden {
  display: none;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.zoom-btn {
  background: rgba(26, 115, 232, 0.9);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-btn:hover {
  background: #1557b0;
  transform: scale(1.1);
}

.product-info {
  padding: 20px;
  text-align: center;
}

.product-info h4 {
  color: #333;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.product-category-tag {
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Enhanced Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(10px);
  animation: lightboxFadeIn 0.3s ease-out;
}

.lightbox-content {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.lightbox-close {
  position: fixed;
  top: 25px;
  right: 35px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 45px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  line-height: 1;
  text-align: center;
  font-family: Arial, sans-serif;
}

.lightbox-close:hover {
  color: #fff;
  background: rgba(26, 115, 232, 0.8);
  border-color: #1a73e8;
  transform: scale(1.1);
}

#lightbox-image {
  max-width: 95vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: grab;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  background: #fff;
  padding: 2px;
}

#lightbox-image:active {
  cursor: grabbing;
}

.lightbox-caption {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.7);
  padding: 15px 25px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10000;
}

.lightbox-caption h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.lightbox-caption .product-category-tag {
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
}

.lightbox-controls {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px 20px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10000;
}

.lightbox-controls button {
  background: rgba(26, 115, 232, 0.9);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.lightbox-controls button:hover {
  background: #1557b0;
  transform: scale(1.15);
  border-color: #fff;
  box-shadow: 0 5px 15px rgba(26, 115, 232, 0.4);
}

/* Rename existing products section */
.products-info {
  padding: 80px 0;
  background: #f8f9fa;
}

.no-products {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 1.1rem;
}

/* Mobile Responsive for Product Gallery */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .filter-buttons {
    gap: 8px;
    flex-wrap: wrap;
  }

  .filter-btn {
    padding: 8px 12px;
    font-size: 12px;
    flex: 0 1 auto;
    min-width: 120px;
  }

  .filter-btn i {
    font-size: 12px;
  }

  .product-image {
    height: 200px;
  }

  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 35px;
    width: 50px;
    height: 50px;
  }

  #lightbox-image {
    max-width: 98vw;
    max-height: 80vh;
  }

  .lightbox-caption {
    bottom: 90px;
    left: 20px;
    right: 20px;
    transform: none;
    padding: 12px 18px;
  }

  .lightbox-caption h3 {
    font-size: 1.1rem;
  }

  .lightbox-controls {
    bottom: 15px;
    left: 20px;
    right: 20px;
    transform: none;
    justify-content: center;
    padding: 12px 15px;
  }

  .lightbox-controls button {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .filter-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .filter-btn {
    width: 250px;
    justify-content: center;
    padding: 12px 16px;
    font-size: 13px;
  }

  .filter-btn i {
    font-size: 14px;
  }

  .product-image {
    height: 180px;
  }

  .lightbox-close {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }

  .lightbox-caption {
    bottom: 75px;
    left: 15px;
    right: 15px;
    padding: 10px 15px;
  }

  .lightbox-controls {
    gap: 10px;
    bottom: 10px;
    left: 15px;
    right: 15px;
  }

  .lightbox-controls button {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* Lightbox Animations */
@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes imageZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox.show {
  animation: lightboxFadeIn 0.3s ease-out;
}

.lightbox.show #lightbox-image {
  animation: imageZoomIn 0.4s ease-out;
}
