/* Global Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f8f9ff;
  color: #1a1a1a;
  line-height: 1.6;
}

.store-construction-section {
  padding: 120px 20px 80px; /* Top padding to account for fixed header if applicable, or just spacing */
  background-color: #f8f9ff;
  min-height: 80vh; /* Ensure it takes up most of the screen */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.store-construction-container {
  max-width: 800px;
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(70, 127, 247, 0.1);
}

.construction-icon {
  margin-bottom: 24px;
  color: #467ff7;
}

.construction-icon svg {
  width: 64px;
  height: 64px;
}

.store-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.store-subtitle {
  font-size: 18px;
  color: #467ff7;
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 1.5;
}

.store-text-support {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.products-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 600px;
  text-align: left;
}

.products-list li {
  padding-left: 24px;
  position: relative;
  color: #444;
}

.products-list li::before {
  content: "•";
  color: #467ff7;
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

.btn-whatsapp-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-store:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-store svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 640px) {
  .store-title {
    font-size: 28px;
  }
  
  .store-construction-container {
    padding: 40px 20px;
  }
}
