/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  touch-action: manipulation;
}

/* Smooth scrolling for SPA */
html {
  scroll-behavior: smooth;
  /* Prevent anchored sections from being hidden under fixed navbar */
  scroll-padding-top: 90px;
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1001;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ffc107, #28a745);
  width: 0%;
  transition: width 0.3s ease;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  padding: 0.5rem;
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  align-items: center;
}

.mobile-menu-toggle:hover {
  background: #f8f9fa;
  border-color: #333;
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffc107;
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
}

/* Cart Button */
.cart-btn {
  position: relative;
  background: none;
  border: 1px solid #ddd;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-btn:hover {
  background: #f8f9fa;
  border-color: #333;
}

.cart-count {
  background: #ffc107;
  color: #333;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  position: absolute;
  top: -5px;
  right: -5px;
}

.cart-count.hidden {
  display: none;
}

.language-selector {
  position: relative;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  background: none;
  border: 1px solid #ddd;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 70px;
  justify-content: space-between;
}

.dropdown-toggle:hover {
  background: #f8f9fa;
  border-color: #333;
}

.dropdown-toggle.active {
  background: #333;
  color: white;
  border-color: #333;
}

.dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.dropdown-toggle.active i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 0.8rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background-color 0.2s ease;
  color: #333;
}

.dropdown-item:hover {
  background: #f8f9fa;
}

.dropdown-item.active {
  background: #333;
  color: white;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 20px;
  overflow: hidden;
}

/* Video Background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* Ensure content appears above video */
.hero-content {
  position: relative;
  z-index: 3;
}

.hero-image {
  position: relative;
  z-index: 3;
}

/* Mobile Play Button */
.mobile-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 2rem;
  color: #333;
  z-index: 4;
  display: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-play-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.mobile-play-btn.playing {
  opacity: 0;
  visibility: hidden;
}

/* Mobile video optimization */
@media (max-width: 768px) {
  .hero-video video {
    display: none; /* Hide video by default on mobile */
  }

  .mobile-play-btn {
    display: block; /* Show play button on mobile */
  }

  .hero-video.playing video {
    display: block; /* Show video when playing */
    filter: brightness(0.8);
  }

  .hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  }
}

/* Tablet optimization */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-video video {
    /* Reduce quality on tablets for better performance */
    filter: brightness(0.8);
  }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: #ffc107;
  color: #333;
}

.btn-primary:hover {
  background: #ffb300;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #333;
}

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

.image-placeholder {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.image-placeholder i {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Section Styling */
section {
  padding: 5rem 0;
  position: relative;
}

section:nth-child(even) {
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ffc107, #28a745);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Scroll to section button */
.scroll-to-section {
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-to-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Scroll-triggered animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animations for grid items */
.about-item:nth-child(1) {
  transition-delay: 0.1s;
}
.about-item:nth-child(2) {
  transition-delay: 0.2s;
}
.about-item:nth-child(3) {
  transition-delay: 0.3s;
}

.product-item:nth-child(1) {
  transition-delay: 0.1s;
}
.product-item:nth-child(2) {
  transition-delay: 0.2s;
}
.product-item:nth-child(3) {
  transition-delay: 0.3s;
}
.product-item:nth-child(4) {
  transition-delay: 0.4s;
}
.product-item:nth-child(5) {
  transition-delay: 0.5s;
}
.product-item:nth-child(6) {
  transition-delay: 0.6s;
}

.advantage-item:nth-child(1) {
  transition-delay: 0.1s;
}
.advantage-item:nth-child(2) {
  transition-delay: 0.2s;
}
.advantage-item:nth-child(3) {
  transition-delay: 0.3s;
}
.advantage-item:nth-child(4) {
  transition-delay: 0.4s;
}
.advantage-item:nth-child(5) {
  transition-delay: 0.5s;
}
.advantage-item:nth-child(6) {
  transition-delay: 0.6s;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffc107, #28a745);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
  padding: 6rem 0;
  background: #f8f9fa;
}

/* Products Section */
.products {
  padding: 6rem 0;
  background: white;
}

.products .section-title {
  margin-bottom: 4rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.product-item {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  height: 250px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image .image-placeholder {
  width: 150px;
  height: 150px;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 193, 7, 0.2);
}

.product-image .image-placeholder i {
  font-size: 3rem;
  color: #ffc107;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #28a745;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-badge.sale {
  background: #dc3545;
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.product-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-price .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffc107;
}

.product-price .old-price {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
}

.product-price .unit {
  font-size: 0.9rem;
  color: #666;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 2% auto;
  border-radius: 20px;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

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

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #666;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.close:hover {
  background: #f8f9fa;
  color: #333;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.modal-image {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 0 0 20px;
}

.modal-image .image-placeholder.large {
  width: 250px;
  height: 250px;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid rgba(255, 193, 7, 0.2);
}

.modal-image .image-placeholder.large i {
  font-size: 5rem;
  color: #ffc107;
}

.modal-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-badge {
  margin-bottom: 1rem;
}

.modal-badge .badge {
  background: #28a745;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}

.modal-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.modal-price {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.modal-price .price {
  font-size: 2rem;
  font-weight: 700;
  color: #ffc107;
}

.modal-price .old-price {
  font-size: 1.3rem;
  color: #999;
  text-decoration: line-through;
}

.modal-price .unit {
  font-size: 1rem;
  color: #666;
}

.modal-description {
  margin-bottom: 1.5rem;
}

.modal-description p {
  line-height: 1.7;
  color: #555;
  font-size: 1rem;
}

.modal-features {
  margin-bottom: 2rem;
}

.modal-features h4 {
  margin-bottom: 0.8rem;
  color: #333;
  font-size: 1.1rem;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 0.3rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.modal-btn {
  flex: 1;
  min-width: 150px;
  padding: 0.8rem 1.5rem;
}

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

.about-text {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #666;
}

/* Advantages Section */
.advantages {
  padding: 6rem 0;
  background: #2c3e50;
  color: white;
  position: relative;
}

.advantages .section-title {
  color: white;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.advantage-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.advantage-icon {
  position: relative;
  min-width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.icon-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ffc107;
  color: #333;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.advantage-content p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.advantages-image {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.advantages-image .image-placeholder {
  width: 400px;
  height: 250px;
  border-radius: 20px;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: #f8f9fa;
}

.contact .section-title {
  margin-bottom: 4rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-item p {
  color: #666;
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: #333;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ffc107;
  color: #333;
  transform: translateY(-2px);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffc107;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  text-align: center;
  padding: 8rem 0 4rem 0;
  margin-top: 70px;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Welcome Section */
.welcome {
  padding: 6rem 0;
  background: #f8f9fa;
}

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

.welcome-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 2rem;
}

.welcome-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mission Section */
.mission {
  padding: 6rem 0;
  background: white;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.mission-image {
  display: flex;
  justify-content: center;
}

/* About Page Specific Styles */
.about-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-icon {
  min-width: 50px;
  height: 50px;
  background: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.about-item-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.about-item-content p {
  color: #666;
  line-height: 1.6;
}

/* Contact Page Specific Styles */
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  min-width: 50px;
  height: 50px;
  background: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.contact-details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-details p {
  color: #666;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 1.5rem;
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.map-placeholder {
  background: #e9ecef;
  height: 400px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.map-content {
  text-align: center;
  color: #666;
}

.map-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffc107;
}

/* Process Section */
.process {
  padding: 6rem 0;
  background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1rem auto;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.step-content p {
  color: #666;
  line-height: 1.6;
}

/* Navigation Active State */
.nav-link.active {
  color: #ffc107;
  font-weight: 600;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 10001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.show {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
}

.cart-header h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #333;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cart-close:hover {
  background: #e9ecef;
  color: #333;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #666;
}

.cart-empty i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ddd;
}

.cart-empty p {
  margin: 0;
  font-size: 1.1rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #f9f9f9;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc107;
  font-size: 1.5rem;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.cart-item-price {
  color: #ffc107;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  background: #333;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: background 0.3s ease;
}

.quantity-btn:hover {
  background: #555;
}

.quantity-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.quantity-display {
  min-width: 40px;
  text-align: center;
  font-weight: 600;
}

.remove-item {
  background: #dc3545;
  color: white;
  border: none;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background 0.3s ease;
  margin-left: 0.5rem;
}

.remove-item:hover {
  background: #c82333;
}

.cart-footer {
  border-top: 1px solid #eee;
  padding: 1.5rem;
  background: #f8f9fa;
}

.cart-total {
  margin-bottom: 1rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.total-price {
  color: #ffc107;
}

.cart-actions {
  display: flex;
  gap: 1rem;
}

.cart-actions .btn {
  flex: 1;
  padding: 0.8rem;
  font-size: 0.9rem;
}

/* Cart Overlay */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

.footer p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile Navigation */
  .mobile-menu-toggle {
    display: flex;
    order: 1;
    margin-left: auto;
    z-index: 1001;
  }

  .nav-logo {
    order: 0;
  }

  .nav-container {
    position: relative;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 10px 10px;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    order: 2;
    width: 100%;
  }

  .nav-menu.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    display: block;
    text-align: center;
    font-size: 1.1rem;
  }

  .nav-menu .nav-link:last-of-type {
    border-bottom: none;
  }

  .nav-actions {
    margin-left: 0;
    margin-top: 1rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }

  .language-selector {
    margin-left: 0;
  }

  .dropdown-menu {
    position: relative;
    box-shadow: none;
    border: 1px solid #eee;
    margin-top: 0.5rem;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  /* Better touch targets */
  .cart-btn,
  .dropdown-toggle,
  .mobile-menu-toggle {
    min-height: 44px;
    min-width: 44px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

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

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

  .page-header {
    padding: 6rem 0 3rem 0;
  }

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

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-buttons,
  .welcome-buttons {
    justify-content: center;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .image-placeholder {
    width: 250px !important;
    height: 250px !important;
  }

  .advantages-image .image-placeholder {
    width: 300px !important;
    height: 200px !important;
  }

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

  .product-item {
    max-width: 400px;
    margin: 0 auto;
  }

  .modal-content {
    width: 95%;
    margin: 5% auto;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .modal-image {
    border-radius: 20px 20px 0 0;
    min-height: 300px;
  }

  .modal-info {
    padding: 1.5rem;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-btn {
    width: 100%;
  }

  .mission-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

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

  .advantage-item {
    flex-direction: column;
    text-align: center;
  }

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

  .product-item {
    margin: 0 auto;
    max-width: 350px;
  }

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

  .modal-price .price {
    font-size: 1.5rem;
  }

  .modal-image .image-placeholder.large {
    width: 200px;
    height: 200px;
  }

  .modal-image .image-placeholder.large i {
    font-size: 4rem;
  }

  /* Improve cart on very small screens */
  .cart-item {
    flex-direction: column;
    text-align: center;
  }

  .cart-item-image {
    align-self: center;
    margin-bottom: 1rem;
  }

  .cart-item-controls {
    justify-content: center;
  }

  /* Better button spacing */
  .hero-buttons,
  .welcome-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Improve form layout */
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Better navigation spacing */
  .nav-actions {
    gap: 0.5rem;
  }

  .language-selector {
    margin-left: 0.5rem;
  }
}

/* iOS specific fixes */
@supports (-webkit-appearance: none) {
  .btn,
  .cart-btn,
  .dropdown-toggle,
  .mobile-menu-toggle {
    appearance: none;
    -webkit-appearance: none;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
  }
}

/* Android specific fixes */
@media (max-width: 767px) and (orientation: landscape) {
  .page-header {
    padding: 6rem 0 2rem 0;
  }

  .hero {
    min-height: 100vh;
  }
}
