/* Base Styles */
:root {
  --primary-color: #ff6b6b;
  --secondary-color: #4ecdc4;
  --accent-color: #ffe66d;
  --dark-color: #1a1a2e;
  --light-color: #f7fff7;
  --text-color: #333;
  --light-text: #f7fff7;
  --gray-bg: #f0f0f0;
  --card-bg: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
  margin-bottom: 1rem;
  line-height: 1.3;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

/* Header Styles */
header {
  background-color: var(--dark-color);
  color: var(--light-text);
  padding: 1.5rem 0;
  text-align: center;
  box-shadow: var(--shadow);
}

.logo-container {
  margin-bottom: 1rem;
}

.logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

.site-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

.site-title span {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('/placeholder.svg?height=600&width=1200');
  background-size: cover;
  background-position: center;
  color: var(--light-text);
  text-align: center;
  padding: 5rem 1rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.welcome-text {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Introduction Section */
.intro-section {
  padding: 4rem 0;
  background-color: var(--light-color);
}

.intro-text {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.location-info {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.location-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.map-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
}

.map-button:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.map-icon {
  margin-right: 8px;
  font-size: 1.2rem;
}

/* Products Section */
.products-section {
  padding: 4rem 0;
  background-color: var(--gray-bg);
}

.products-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.carousel-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto 2rem;
}

#carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  display: flex;
  scroll-behavior: smooth;
  border-radius: 10px;
  background-color: var(--card-bg);
  padding: 20px;
  box-shadow: var(--shadow);
  -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
  scrollbar-width: none;  /* Hide scrollbar for Firefox */
}

#carousel::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

#imageTrack {
  display: flex;
  gap: 16px;
}

.carousel-img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  scroll-snap-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  opacity: 0.7;
  transform: scale(0.95);
}

.carousel-img.loaded {
  animation: fadeIn 0.5s ease-in forwards;
}

.carousel-img.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--primary-color);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.7; }
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.nav:hover {
  background-color: var(--secondary-color);
  transform: translateY(-50%) scale(1.1);
}

.nav.left {
  left: -20px;
}

.nav.right {
  right: -20px;
}

.loading-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 250px;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.error-message {
  color: #e74c3c;
  text-align: center;
  padding: 2rem;
  font-size: 1.1rem;
}

/* Product Info Styles */
.product-info-container {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.product-info-title {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.size-item {
  background-color: var(--light-color);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.size-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.size-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.size-value {
  display: block;
  font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background-color: var(--light-color);
}

.contact-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  min-width: 150px;
}

.social-link:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--primary-color);
  color: white;
}

.social-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--light-text);
  padding: 2rem 0;
  text-align: center;
  margin-top: auto;
}

.copyright {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .site-title {
    font-size: 2rem;
  }
  
  .welcome-text {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .carousel-img {
    width: 200px;
    height: 200px;
  }
  
  .social-links {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .site-title {
    font-size: 1.5rem;
  }
  
  .welcome-text {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .carousel-img {
    width: 150px;
    height: 150px;
  }
  
  .nav {
    width: 30px;
    height: 30px;
  }
  
  .size-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.social-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: Red;
  font-weight: bold;
  margin: 10px;
}

.icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

.social-link2 {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: green;
  font-weight: bold;
  margin: 12px;
}

.icon2 {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}
