/* LumiLean Website Styles */
:root {
  --primary-purple: #e9c22c;
  --dark-purple: #012b5b;
  --light-beige: #F8F4EC;
  --orange-accent: #FF8C42;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, var(--light-beige) 50%, var(--primary-purple) 50%);
  min-height: 100vh;
}

.lumi-lean-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.lumi-header {
  padding: 1.5rem;
  display: flex;
  justify-content: center;
}

.lumi-logo {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-purple);
}

.lumi-logo span {
  font-weight: 400;
}

/* Main Content Styles */
.lumi-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
}

.product-image-container {
  width: 100%;
  max-width: 450px;
  text-align: center;
  margin-bottom: 2rem;
}

.product-image {
  max-width: 100%;
  height: auto;
}

.country-selection-section {
  background-color: var(--primary-purple);
  width: 100%;
  color: black;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.country-selection-section h2 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 600;
  max-width: 800px;
  line-height: 1.4;
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  display: flex;
  align-items: center;
}

.carousel-button {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  padding: 0 1rem;
}

.flags-carousel {
  width: 100%;
  overflow: hidden;
}

.carousel-slide {
  width: 100%;
  display: none;
}

.carousel-slide.active {
  display: block;
}

.flags-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.flag-link {
  text-decoration: none;
  color: inherit;
}

.flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.flag img {
  width: 150px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.flag span {
  font-weight: 600;
  font-size: 1.2rem;
  color: white;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: white;
}

/* Footer Styles */
.lumi-footer {
  background-color: var(--dark-purple);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 0.9rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .lumi-logo {
    font-size: 2rem;
  }
  
  .country-selection-section h2 {
    font-size: 1rem;
  }
  
  .flags-container {
    gap: 1rem;
  }
  
  .flag img {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .lumi-logo {
    font-size: 1.8rem;
  }
  
  .country-selection-section {
    padding: 1.5rem 0.5rem;
  }
  
  .country-selection-section h2 {
    margin-bottom: 1.5rem;
  }
  
  .flags-container {
    gap: 0.5rem;
  }
  
  .flag img {
    width: 80px;
  }
  
  .flag span {
    font-size: 1rem;
  }
  
  .carousel-button {
    font-size: 1.2rem;
    padding: 0 0.5rem;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}