/* Tailwind is loaded via CDN for development/preview. Run 'npm run build' to generate this file for production. */


.shopier-bg {
  background-color: #6700ff;
}

.product-image-container {
  height: 420px !important;
}

@media (min-width: 768px) {
  .product-image-container {
    height: 520px !important;
  }
}

.product-image {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

.shopier-bg:hover {
  background-color: #5600d6;
}

/* Hata Sayfası Stilleri */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.error-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.error-content {
  text-align: left;
}

.error-code {
  font-size: 8rem;
  font-weight: 800;
  margin: 0;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.error-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.error-message {
  font-size: 1.25rem;
  margin: 1rem 0;
  line-height: 1.6;
}

.error-description {
  font-size: 1rem;
  margin: 1rem 0 2rem 0;
  line-height: 1.6;
}

.error-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  color: black;
  backdrop-filter: blur(10px);
  border: 2px solid black;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.error-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-svg {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* 403 Sayfası Renkleri */
.error-403 .error-code {
  color: #ff6b6b;
}

.error-403 .btn-primary {
  background: #ff6b6b;
  color: white;
}

.error-403 .btn-primary:hover {
  background: #ff5252;
}

/* 404 Sayfası Renkleri */
.error-404 .error-code {
  color: #ffd93d;
}

.error-404 .btn-primary {
  background: #ffd93d;
  color: #333;
}

.error-404 .btn-primary:hover {
  background: #ffcc02;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .error-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .error-content {
    text-align: center;
  }
  
  .error-code {
    font-size: 6rem;
  }
  
  .error-title {
    font-size: 2rem;
  }
  
  .error-actions {
    justify-content: center;
  }
  
  .btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .error-page {
    padding: 1rem;
  }
  
  .error-code {
    font-size: 4rem;
  }
  
  .error-title {
    font-size: 1.5rem;
  }
  
  .error-message {
    font-size: 1.1rem;
  }
  
  .error-actions {
    flex-direction: column;
  }
}



