:root {
  --bg-dark: #000000;
  --bg-card: #0a0a0a;
  --text-primary: #ffffff;
  --text-secondary: #888888;
  --accent: #ff1414;
  --accent-secondary: #ffffff;
  --card-hover: #111111;
  --gradient: linear-gradient(135deg, #ffffff 0%, #ff1414 100%);
  --glow: 0 0 20px rgba(255,20,20,0.5);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,247,255,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0,247,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,247,255,0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

.banner-container {
  position: relative;
  width: 100%;
  height: min(60vh, 500px);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) contrast(120%);
}

.banner-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.8), transparent);
}

@keyframes titleFadeIn {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes colorPulse {
  0% { color: #ff1414; }
  50% { color: #ffffff; }
  100% { color: #ff1414; }
}

.title-section {
  padding: 3rem 0;
  margin-bottom: 2rem;
  background-color: rgba(0,0,0,0.8);
}

.store-title {
  font-size: clamp(3rem, 10vw, 5rem);
  width: min(90%, 800px);
  letter-spacing: -1px;
  text-align: center;
  margin: 0 auto;
  padding: 1rem;
  line-height: 1.2;
  font-weight: 900;
  animation: titleFadeIn 1.5s ease-out forwards, colorPulse 3s ease-in-out infinite;
}

.description-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.description-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
}

.description-card h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.store-description {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  animation: fadeIn 1s ease-out 0.5s forwards;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: block;
}

.footer {
  background-color: var(--bg-card);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-section h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--text-secondary);
}

.footer-bottom p {
  margin: 0.5rem 0;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-section.contact {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.footer {
  background-color: var(--bg-card);
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-section {
  text-align: center;
}

.footer h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.contact-button:hover {
  transform: scale(1.05);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    padding: 0 1rem;
  }
  
  .footer-section {
    width: 100%;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background-color: var(--bg-card);
  padding: 2.5rem;
  border-radius: 20px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.product-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.product-card-content {
  flex: 1;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.product-card:hover::before {
  opacity: 0.1;
}

.product-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-card p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .store-title {
    font-size: clamp(2rem, 8vw, 4rem);
    width: min(90%, 800px);
    letter-spacing: -0.5px;
    text-align: center;
    margin: 2rem auto;
    padding: 1rem;
    line-height: 1.2;
    animation: fadeIn 0.8s ease-out;
  }

  .product-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .product-card img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }

  .product-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .product-card p {
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
  }

  .banner-container {
    height: min(45vh, 250px);
  }
}

@media (max-width: 480px) {
  .products-grid {
    padding: 1rem;
    gap: 1rem;
  }

  .product-card {
    padding: 1.25rem;
  }

  .product-card h2 {
    font-size: 1.6rem;
  }

  .product-card p {
    font-size: 1rem;
  }
}

@media (min-width: 769px) {
  .product-card {
    animation: float 6s ease-in-out infinite;
  }

  .product-card:hover {
    box-shadow: var(--glow);
    animation: pulse 2s infinite;
  }
}