* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

.header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6600;
  text-decoration: none;
}

.header .nav-link {
  color: #0066cc;
  margin: 0 1rem;
  text-decoration: none;
  font-size: 0.95rem;
}

.header .nav-link:hover {
  text-decoration: underline;
}

.btn-primary {
  background-color: #ff6600;
  border-color: #ff6600;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e65c00;
  border-color: #e65c00;
  color: #fff;
  transform: scale(1.03);
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.product-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: scale(1.03);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.product-card .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff6600;
  margin: 0.5rem 0;
}

.product-card .description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.info-box {
  background: #f8f9fa;
  border-left: 4px solid #0066cc;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.info-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.info-box p {
  color: #666;
  margin-bottom: 0.5rem;
}

.category-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: scale(1.03);
}

.category-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.category-card p {
  font-size: 0.9rem;
  color: #666;
}

.photo-strip {
  margin: 3rem 0;
  text-align: center;
}

.photo-strip img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.photo-strip p {
  margin-top: 1rem;
  color: #666;
  font-size: 0.95rem;
}

.footer {
  background-color: #f8f9fa;
  padding: 2rem 0;
  margin-top: 4rem;
  border-top: 1px solid #e0e0e0;
}

.footer a {
  color: #0066cc;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer a:hover {
  text-decoration: underline;
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  font-size: 0.85rem;
  border-radius: 4px;
  margin-right: 0.5rem;
}

.badge-category {
  background-color: #e3f2fd;
  color: #1976d2;
}

.table {
  margin-top: 2rem;
}

.table thead th {
  background-color: #f8f9fa;
  color: #333;
  font-weight: 600;
}

.contact-form .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 0.75rem;
}

.contact-form .form-control:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.reper-tag {
  font-size: 0.8rem;
  color: #0066cc;
  font-weight: 500;
  margin-top: 0.5rem;
  display: block;
}

.mini-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  margin: 0.5rem;
  font-size: 0.9rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.faq-item h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: #666;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner .btn {
  margin-left: 1rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .product-card img {
    height: 180px;
  }
  
  .header .nav-link {
    display: block;
    margin: 0.5rem 0;
  }
}
