/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remover o header dos mobiles */

@media (max-width: 768px) {
  .header {
    display: none;
  }
}

/* Remover o header dos mobiles */

/* Quando o campo de busca está em foco (clicado) */

#searchInput:focus {
  border-color: #ff2fa0;         /* rosa chiclete */
  box-shadow: 0 0 6px rgba(255, 46, 153, 0.4); /* brilho suave rosa */
  outline: none;
}

/* Quando o campo de busca está em foco (clicado) */

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fef5f7 0%, #ffffff 50%, #fef5f7 100%);
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
}

/* Colors */
:root {
    --primary: #ec5490;
    --primary-dark: #dc2f73;
    --primary-light: #f58bb0;
    --secondary: #fdeaef;
    --accent: #fcd7e2;
    --background: #fef5f7;
    --text: #1a1a1a;
    --text-muted: #737373;
    --border: #fcd7e2;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}



/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 1;
}

.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.menu-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.menu-btn:hover {
    background: var(--secondary);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    margin-right: auto; /* Empurra a logo para a esquerda */
    padding-left: 20px; /* Espaçamento da borda */
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: glow 2s ease-in-out infinite alternate;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    padding: 0;
    line-height: 1;
}


.nav {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  font-size: 1.1rem;
  font-family: 'Oswald';
  margin: 0 15px;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: #000000;
  /* ou sua cor desejada */
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #ff4eb5;
  /* Rosa */
  transform: scaleX(0);
}


.nav-link:hover::after {
  transform: scaleX(1);
}


.nav-link:hover {
  color: #ff4eb5;
  /* opcional, muda a cor do texto também */
}
/* Header */


/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.floating-element {
    position: absolute;
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeIn 0.6s ease-out 0.3s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeIn 0.6s ease-out 0.6s both;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Main Content */
.main {
    padding: 3rem 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Category Filter */
.category-section {
    margin-bottom: 2rem;
    animation: fadeIn 0.6s ease-out;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    background: white;
    color: var(--text);
    border-radius: 2rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(236, 84, 144, 0.25);
}

.category-count {
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 0.125rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.category-btn.active .category-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

@media (max-width: 768px) {
    .category-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }
    
    .category-btn {
        white-space: nowrap;
    }
}

/* Products Section */
.products-section {
    margin-bottom: 3rem;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.products-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.products-count {
    background: var(--secondary);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    border: 1px solid var(--border);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.5s;
    position: relative;
    animation: fadeIn 0.6s ease-out;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.product-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    animation: bounceIn 0.6s ease-out;
}

.product-badge.new {
    background: var(--success);
}

.product-badge.sale {
    background: var(--danger);
}

.product-info {
    flex-grow: 1;
}

.card-body {
  flex-grow: 1; /* ocupa o máximo possível e empurra o botão para baixo */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.favorite-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-muted);
}

.favorite-btn:hover {
    background: white;
    color: var(--primary);
    transform: scale(1.1);
}

.favorite-btn.active {
    background: var(--secondary);
    color: var(--primary);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 0;
}

.view-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.3s;
}

.view-btn:hover {
    background: white;
}

.product-info {
    padding: 1rem;
}

.product-category {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: color 0.2s;
}

.product-card:hover .product-name {
    color: var(--primary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.star {
    color: #fbbf24;
    font-size: 0.875rem;
}

.star.empty {
    color: #d1d5db;
}

.rating-text {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-current {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.price-original {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 18px;
}

.add-to-cart-btn:hover {
    box-shadow: 0 4px 12px rgba(236, 84, 144, 0.25);
    transform: translateY(-1px);
}

/* No Products */
.no-products {
    text-align: center;
    padding: 4rem 1rem;
    animation: fadeIn 0.6s ease-out;
}

.no-products-icon {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.no-products h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.no-products p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 4px 12px rgba(236, 84, 144, 0.25);
    transform: translateY(-1px);
}

.btn-outline {
    background: white;
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--secondary);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 100%);
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text);
    max-width: 48rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 3rem 0;
    animation: fadeIn 0.6s ease-out;
}

.contact-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Rodapé */

.footer {
  background-color: #000000;
  padding: 30px 0 20px 0;
  font-size: 0.9rem;
  color: #ffffff;
  border-top: 1px solid #333333;
  width: 100%;
  margin: 0;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 20px;
}

/* Brand Section */
.footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 200px;
  min-width: 200px;
}

.footer .footer-brand h3 {
  font-size: 1.3rem;
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  color: #ffffff;
}

.footer .logo-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Description */
.footer .footer-description {
  flex: 2 1 250px;
  margin: 0;
  font-size: 0.85rem;
  color: #cccccc;
  line-height: 1.5;
  max-width: 300px;
}

/* Links Section */
.footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 200px;
  min-width: 200px;
}

.footer .footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer .footer-link {
  color: #dddddd;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  padding: 2px 0;
}

.footer .footer-link:hover {
  color: #ff69b4;
  text-decoration: underline;
}

/* Social Icons */
.footer .social-icons {
  display: flex;
  gap: 20px;
  flex: 1 1 250px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer .social-icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.2s ease-in-out;
}

.footer .social-icons img:hover {
  transform: scale(1.1);
}

/* Footer Bottom */
.footer .footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: #aaaaaa;
  padding-top: 20px;
  border-top: 1px solid #333333;
  margin-top: 20px;
}

.footer .feito-por {
  text-align: center;
  font-size: 0.7rem;
  color: #888888;
  margin-top: 8px;
  font-style: italic;
}

/* Tablets */
@media (max-width: 1024px) {
  .footer .footer-content {
    gap: 25px;
  }
  
  .footer .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .footer .social-icons {
    justify-content: center;
    gap: 25px;
  }
}

/* Mobile Large (768px) */
@media (max-width: 768px) {
  .footer {
    padding: 25px 0 15px 0;
  }
  
  .footer .container {
    padding: 0 15px;
  }
  
  .footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }
  
  .footer .footer-brand {
    justify-content: center;
    flex: none;
    width: 100%;
  }
  
  .footer .footer-description {
    flex: none;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .footer .footer-links {
    flex: none;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer .footer-link-group {
    flex-direction: row;
    gap: 20px;
  }
  
  .footer .social-icons {
    flex: none;
    width: 100%;
    justify-content: center;
    gap: 25px;
  }
}

/* Mobile Medium (480px) */
@media (max-width: 480px) {
  .footer {
    padding: 20px 0 15px 0;
    font-size: 0.85rem;
  }
  
  .footer .container {
    padding: 0 12px;
  }
  
  .footer .footer-content {
    gap: 20px;
  }
  
  .footer .footer-brand h3 {
    font-size: 1.1rem;
  }
  
  .footer .logo-icon img {
    width: 45px;
    height: 45px;
  }
  
  .footer .footer-description {
    font-size: 0.8rem;
    padding: 0 10px;
  }
  
  .footer .footer-links {
    gap: 15px;
  }
  
  .footer .footer-link-group {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .footer .footer-link {
    font-size: 0.8rem;
  }
  
  .footer .social-icons {
    gap: 20px;
  }
  
  .footer .social-icons img {
    width: 35px;
    height: 35px;
  }
  
  .footer .footer-bottom {
    font-size: 0.7rem;
    padding-top: 15px;
  }
  
  .footer .feito-por {
    font-size: 0.65rem;
  }
}

/* Mobile Small (320px) */
@media (max-width: 360px) {
  .footer .container {
    padding: 0 10px;
  }
  
  .footer .footer-content {
    gap: 18px;
  }
  
  .footer .footer-brand h3 {
    font-size: 1rem;
  }
  
  .footer .logo-icon img {
    width: 40px;
    height: 40px;
  }
  
  .footer .footer-description {
    font-size: 0.75rem;
  }
  
  .footer .footer-link {
    font-size: 0.75rem;
  }
  
  .footer .social-icons {
    gap: 15px;
  }
  
  .footer .social-icons img {
    width: 32px;
    height: 32px;
  }
}

/* Correção para quemsomos.css - largura excessiva */
.page-container .footer {
  width: 100% !important;
  left: auto !important;
  position: static !important;
}

/* Garantir que o footer não cause overflow horizontal */
.footer, .footer * {
  box-sizing: border-box;
}

/* Prevenir quebras de layout em containers pequenos */
.footer .footer-content > * {
  min-width: 0;
  word-wrap: break-word;
}

.footer .footer-link:focus {
  outline: 2px solid #ff69b4;
  outline-offset: 2px;
  border-radius: 2px;
}

.footer .social-icons a:focus {
  outline: 2px solid #ff69b4;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Melhorar contraste em telas pequenas */
@media (max-width: 480px) {
  .footer .footer-link {
    color: #eeeeee;
  }
  
  .footer .footer-description {
    color: #dddddd;
  }
}

/* Rodapé */
  

/* Toast Styles */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    max-width: 20rem;
    animation: slideInRight 0.3s ease-out;
}

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left: 4px solid var(--danger);
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-description {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    from {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(236, 84, 144, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(236, 84, 144, 0.8), 0 0 30px rgba(236, 84, 144, 0.6);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-section {
        padding: 2rem 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
