/* Store Footer Specific Styles */
/* Store footer wrapper */
.store-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 3rem 0 2rem;
}

/* Ensure consistent centered width on all store pages
   (home, products, about, contact, etc.) regardless of their own .container styles */
.store-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ecf0f1;
}

.footer-section p {
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #3498db;
  text-decoration: underline;
}

.store-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: #3498db;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #95a5a6;
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #2980b9;
  text-decoration: underline;
}

.store-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.store-logo {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  font-weight: 700;
}

.store-description {
  color: #bdc3c7;
  font-size: 0.9rem;
  line-height: 1.5;
}

.quick-links h3,
.store-info h3 {
  color: #ecf0f1;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-info {
  color: #bdc3c7;
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info strong {
  color: #ecf0f1;
  font-weight: 600;
}

.platform-link {
  color: white;
}

/* Newsletter Section */
.newsletter {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.newsletter h4 {
  color: #ecf0f1;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.newsletter p {
  color: #bdc3c7;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.9rem;
}

.newsletter-input::placeholder {
  color: #bdc3c7;
}

.newsletter-input:focus {
  outline: none;
  border-color: #3498db;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  padding: 0.75rem 1.5rem;
  background: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: #2980b9;
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .store-info {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
  }

  .social-link {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .store-footer {
    padding: 1.25rem 0 1rem;
  }

  .store-footer .container {
    padding: 0 1.25rem;
  }

  .footer-content {
    gap: 0;
    margin-bottom: 1rem;
  }

  .footer-section h3 {
    font-size: 15px;
    margin-bottom: 0;
  }

  .footer-section p {
    font-size: 10px;
    margin-bottom: 0;
  }

  .footer-links a {
    font-size: 10px;
  }
  .footer-links li {
    margin-bottom: 0;
  }

  .footer-bottom {
    padding-top: 1rem;
  }

  .footer-bottom p {
    font-size: 10px;
  }
}
