/* Main CSS file - Base styles and layout */

/* Purchase page styles */
.page-purchase .hero {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-parchment) 100%);
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.page-purchase .hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--color-dark-brown);
}

.page-purchase .hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-brown);
  max-width: 600px;
  margin: 0 auto;
}

.page-purchase .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Auth notice */
.auth-notice {
  background: var(--color-cream);
  border: 2px solid var(--color-secondary);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.auth-notice h3 {
  color: var(--color-dark-brown);
  margin-bottom: 16px;
}

.auth-notice p {
  color: var(--color-brown);
  margin-bottom: 20px;
}

/* Loading and error states */
.loading-section, .error-section {
  text-align: center;
  padding: 60px 20px;
}

.loading-section .loader {
  width: 40px;
  height: 40px;
  border: 4px solid var(--color-cream);
  border-top: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.error-section {
  background: #fff3cd;
  border: 2px solid #ffeaa7;
  border-radius: 15px;
  margin-bottom: 40px;
}

.error-content h3 {
  color: #856404;
  margin-bottom: 16px;
}

.error-content p {
  color: #856404;
  margin-bottom: 20px;
}

/* Products section */
.products-section {
  margin-bottom: 60px;
}

.products-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--color-dark-brown);
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Product cards */
.product-card {
  background: var(--color-cream);
  border: 2px solid var(--color-secondary);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-header {
  margin-bottom: 20px;
}

.product-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.product-title {
  font-size: 1.5rem;
  color: var(--color-dark-brown);
  margin: 0;
}

.product-details {
  margin-bottom: 25px;
}

.points-amount {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-dark-brown);
  margin-bottom: 15px;
}

.product-description {
  color: var(--color-brown);
  font-size: 0.95rem;
  line-height: 1.5;
}

.product-features {
  margin-bottom: 25px;
  text-align: left;
}

.product-features .feature {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: var(--color-brown);
  font-size: 0.9rem;
}

.purchase-btn {
  width: 100%;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.purchase-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.purchase-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Purchase info section */
.purchase-info {
  background: var(--color-cream);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.info-card {
  text-align: center;
  padding: 20px;
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.info-card h3 {
  color: var(--color-dark-brown);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.info-card p {
  color: var(--color-brown);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Notifications */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease;
}

.notification.success {
  background: #d4edda;
  border: 2px solid #c3e6cb;
}

.notification.warning {
  background: #fff3cd;
  border: 2px solid #ffeaa7;
}

.notification-content {
  padding: 20px;
}

.notification h3 {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
}

.notification p {
  margin: 0;
  font-size: 0.95rem;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .page-purchase .hero {
    padding: 40px 20px 30px;
  }
  
  .page-purchase .hero h1 {
    font-size: 2rem;
  }
  
  .page-purchase .hero-description {
    font-size: 1.1rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-card {
    padding: 25px;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .purchase-info {
    padding: 30px 20px;
  }
  
  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

/* Base reset */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  color: var(--color-dark-brown);
  background: var(--color-parchment);
  background-image:
    radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.45), rgba(0, 0, 0, 0) 60%),
    radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.35), rgba(0, 0, 0, 0) 60%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Layout */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--color-wood);
  color: var(--color-cream);
  border-bottom: 2px solid var(--color-secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

header h1 {
  margin: 0 0 15px 0;
  font-size: 28px;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Style dla tytułu "Twoje Bajki" - zarówno z linkiem jak i bez */
header h1,
header h1 a {
  color: inherit;
  text-decoration: none;
  font-family: var(--font-family-title);
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
  letter-spacing: 1px;
}

header h1 a:hover {
  color: var(--color-secondary);
}

header h1 a:visited,
header h1 a:active,
header h1 a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}

header nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

header nav a {
  color: var(--color-cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

header nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}

header nav a.active {
  background: var(--color-secondary);
  color: white;
  border-color: var(--color-secondary);
}

/* Header Authentication Container */
.header-auth-container {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 11;
}

main {
  max-width: 1000px;
  margin: 24px auto;
  padding: 0 20px 60px;
}

/* Page headers - kompaktowe nagłówki dla wszystkich stron */
main h2 {
  font-size: 1.4em;
  margin: 0 0 8px 0;
  font-weight: 600;
  color: var(--color-dark-brown);
}

main .info {
  font-size: 0.95em;
  color: var(--color-medium-brown);
  margin: 0 0 20px 0;
  line-height: 1.4;
}

/* Terms page styles */
.terms h2 {
  font-size: 1.4em;
  margin: 0 0 16px 0;
  font-weight: 600;
  color: var(--color-dark-brown);
}

.terms ol {
  margin: 0 0 20px 0;
  padding-left: 20px;
}

.terms li {
  margin-bottom: 8px;
  line-height: 1.5;
  color: var(--color-dark-brown);
}

.terms p {
  margin: 0;
  font-size: 0.95em;
  color: var(--color-medium-brown);
  font-style: italic;
}

/* Forms */
.form-page form {
  display: grid;
  gap: 14px;
  background: var(--color-card-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
}

.form-page label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  color: var(--color-dark-brown);
}

.form-page input[type="text"],
.form-page textarea {
  padding: 12px 14px;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  font: inherit;
  background: var(--color-light-cream);
}

.form-page button {
  width: fit-content;
  padding: 12px 18px;
  border-radius: 10px;
  border: 0;
  background: var(--color-primary);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.form-page button:hover {
  background: var(--color-primary-hover);
}

/* Select elements */
select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-light-cream);
  color: var(--color-dark-brown);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  cursor: pointer;
  transition: all var(--transition-normal);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d1a45b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

select:hover {
  border-color: var(--color-primary);
  background-color: #fff;
  box-shadow: var(--shadow-sm);
}

select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(209, 164, 91, 0.2);
  background-color: #fff;
}

/* Utility classes */
.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  padding: 10px 12px;
  border-radius: 10px;
}

.loading {
  text-align: center;
  padding: 40px;
  color: var(--color-medium-brown);
  font-size: var(--font-size-large);
}

.help-text {
  font-size: var(--font-size-small);
  color: var(--color-light-brown);
  font-weight: 400;
  font-style: italic;
  margin-top: 4px;
}

footer {
  text-align: center;
  color: var(--color-light-brown);
  padding: 20px;
}
/*
 Lazy loading styles */
img.lazy-loading {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background: var(--color-light-brown);
  background-image: linear-gradient(45deg, transparent 25%, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.1) 50%, transparent 50%, transparent 75%, rgba(255,255,255,0.1) 75%);
  background-size: 20px 20px;
  animation: loading-shimmer 1.5s infinite linear;
}

img.lazy-loaded {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

@keyframes loading-shimmer {
  0% {
    background-position: -20px 0;
  }
  100% {
    background-position: 20px 0;
  }
}

/* Performance optimizations */
.virtual-scroll-container {
  height: 100%;
  overflow-y: auto;
  position: relative;
}

.virtual-scroll-spacer-before,
.virtual-scroll-spacer-after {
  width: 100%;
  pointer-events: none;
}

.virtual-scroll-items {
  position: relative;
}

/* Smooth scrolling for better UX */
.pagination-content {
  scroll-behavior: smooth;
}

/* Loading states for components */
.component-loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.component-loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* Cache status indicator (for development) */
.cache-indicator {
  position: fixed;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  z-index: 9999;
  display: none;
}

.cache-indicator.show {
  display: block;
}

.cache-hit {
  background: rgba(0, 128, 0, 0.8);
}

.cache-miss {
  background: rgba(255, 165, 0, 0.8);
}
/* 
Home page styles */
.home-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.05));
  border-radius: 20px;
  margin: 40px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-content h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--color-dark-brown);
  font-family: var(--font-family-title);
}

.hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--color-text);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-secondary);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: var(--color-cream);
  color: var(--color-dark-brown);
  border: 2px solid var(--color-secondary);
}

.btn-secondary:hover {
  background: var(--color-secondary);
  color: white;
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: var(--color-dark-brown);
  border: 2px solid #FFD700;
  font-weight: bold;
}

.btn-accent:hover {
  background: linear-gradient(135deg, #FFA500, #FF8C00);
  border-color: #FFA500;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 165, 0, 0.3);
}

.features {
  margin: 60px 0;
}

.features h3 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
  color: var(--color-dark-brown);
  font-family: var(--font-family-title);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.7);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: var(--color-dark-brown);
}

.feature-card p {
  color: var(--color-text);
  line-height: 1.5;
}

.categories {
  margin: 60px 0;
}

.categories h3 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
  color: var(--color-dark-brown);
  font-family: var(--font-family-title);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.category-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.category-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.category-card h4 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: var(--color-dark-brown);
}

.category-card p {
  color: var(--color-text);
  font-size: 0.9em;
}

.cta {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  border-radius: 20px;
  margin: 60px 0;
  color: white;
}

.cta-content h3 {
  font-size: 2em;
  margin-bottom: 15px;
  font-family: var(--font-family-title);
}

.cta-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta .btn-primary {
  background: white;
  color: var(--color-secondary);
}

.cta .btn-primary:hover {
  background: var(--color-cream);
  color: var(--color-dark-brown);
}

/* Responsive design */
@media (max-width: 768px) {
  header {
    padding: 15px;
    padding-top: 60px; /* Make room for auth container */
  }
  
  header h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  header nav {
    gap: 15px;
    justify-content: center;
  }
  
  header nav a {
    font-size: 14px;
    padding: 6px 12px;
  }

  .header-auth-container {
    top: 15px;
    right: 15px;
  }
}
  
  .hero-content h2 {
    font-size: 2em;
  }
  
  .hero-description {
    font-size: 1em;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  header {
    padding-top: 70px; /* More room for auth container on mobile */
  }

  header nav {
    gap: 10px;
  }
  
  header nav a {
    font-size: 13px;
    padding: 5px 10px;
  }

  .header-auth-container {
    top: 10px;
    right: 10px;
  }
}
}/* Erro
r message styles */
.error-message {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}

.error-content h3 {
  color: #d32f2f;
  margin-bottom: 10px;
}

.error-content p {
  color: #666;
  margin-bottom: 20px;
}

/* Animation improvements */
.feature-card,
.category-card {
  will-change: transform, opacity;
}

/* Smooth transitions for interactive elements */
.hero-actions .btn,
.category-card,
.feature-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced hover effects */
.category-card:hover {
  transform: translateY(-5px) scale(1.02);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Focus states for accessibility */
.btn:focus,
.category-card:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Loading state if needed */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--color-cream);
  border-top: 4px solid var(--color-secondary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ========================================
   FOOTER STYLES
   ======================================== */

footer {
  background: linear-gradient(135deg, var(--color-wood) 0%, var(--color-dark-brown) 100%);
  color: var(--color-cream);
  margin-top: auto;
  border-top: 3px solid var(--color-secondary);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: start;
}

.footer-section h4 {
  color: var(--color-secondary);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: var(--color-cream);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  line-height: 1.5;
}

.footer-section a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Footer brand section */
.footer-brand {
  max-width: 350px;
}

.footer-brand .brand-name {
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.cookies-note {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(249, 245, 231, 0.8);
  margin-top: 8px;
}

.cookies-note a {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Footer bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(209, 164, 91, 0.3);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom small {
  font-size: 12px;
  color: rgba(249, 245, 231, 0.7);
}

.footer-bottom .copyright {
  font-weight: 500;
}

.footer-bottom .attribution a {
  color: rgba(249, 245, 231, 0.6);
  text-decoration: none;
}

.footer-bottom .attribution a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-brand {
    max-width: none;
  }
  
  .footer-section h4 {
    font-size: 15px;
    margin-bottom: 12px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 32px 16px;
    gap: 24px;
  }
  
  .footer-brand .brand-name {
    font-size: 20px;
  }
  
  .footer-bottom {
    padding: 12px 16px;
  }
}