/* Store Coming Soon Styles */
.page[data-name="store"] .page-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #000;
  padding: 20px;
  box-sizing: border-box;
}

.coming-soon-container {
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  backdrop-filter: blur(10px);
}

.coming-soon-icon {
  font-size: 4em;
  color: #c8a165;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.coming-soon-title {
  font-size: 2.5em;
  color: #333;
  margin: 0 0 10px 0;
  font-weight: bold;
}

.coming-soon-subtitle {
  font-size: 1.8em;
  color: #c8a165;
  margin: 0 0 20px 0;
  font-weight: 600;
}

.coming-soon-description {
  font-size: 1.1em;
  color: #666;
  line-height: 1.6;
  margin: 0 0 30px 0;
}

.coming-soon-features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 100px;
}

.feature-item i {
  font-size: 1.8em;
  color: #c8a165;
}

.feature-item span {
  font-size: 0.9em;
  color: #555;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 480px) {
  .coming-soon-container {
    padding: 30px 20px;
  }
  
  .coming-soon-title {
    font-size: 2em;
  }
  
  .coming-soon-subtitle {
    font-size: 1.5em;
  }
  
  .coming-soon-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .feature-item {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
} 