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

body {
  font-family: "Arial", sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

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

/* Header Section */
header {
  background: white;
  padding: 30px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  background: white;
  padding: 15px 30px;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}

/* Hero Section */
.hero {
  background: #004799;
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 50px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.3rem;
  font-weight: 300;
}

/* Products Grid */
.products-section {
  padding: 40px 0;
}

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

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

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image-container {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: #f8f8f8;
  overflow: hidden;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.product-image.active {
  opacity: 1;
}

.product-info {
  padding: 20px;
  text-align: center;
}

.product-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #0066cc;
  margin-bottom: 10px;
}

.product-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
}

/* CTA Section */
.cta-section {
  background: #004799;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.2rem;
  font-weight: 300;
}

/* Stores Section */
.stores-section {
  padding: 50px 0;
  background: white;
}

.stores-grid {
  display: flex;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.store-wrapper {
  flex: 1;
  display: flex;
  gap: 15px;
  align-items: stretch;
}

.store-map {
  flex: 0 0 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.store-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
}

.store-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid #ed133f;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.store-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #0066cc;
  margin-bottom: 15px;
}

.store-address {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  color: white;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  transition: all 0.3s ease;
  user-select: none;
  z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: #004799;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-caption {
  color: white;
  text-align: center;
  padding: 20px;
  max-width: 80%;
}

.lightbox-product-name {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.lightbox-product-description {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.product-image {
  cursor: pointer;
  transition: transform 0.2s ease;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 25px 20px;
}

footer p {
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .logo-container {
    justify-content: center;
  }

  .stores-grid {
    flex-direction: column;
    gap: 25px;
  }

  .store-wrapper {
    flex-direction: column;
  }

  .store-wrapper.reverse {
    flex-direction: column;
  }

  .store-map {
    flex: 0 0 auto;
    width: 100%;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

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

  .product-description {
    font-size: 0.85rem;
  }

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

  .logo img {
    height: 45px;
  }
}
