/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Apply Inter font to all elements */
body {
  font-family: 'Inter', sans-serif;
}

/* Header */
#header {
  background: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-top {
  padding: 20px 0;
}

/* Navigation */
.header-nav {
  background: #f8f9fa;
  padding: 10px 0;
}

.top-menu {
  display: flex;
  gap: 20px;
}

.top-menu > li > a {
  color: #333;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  transition: color 0.3s ease;
}

.top-menu > li > a:hover {
  color: #000;
}

/* Products */
.product-miniature {
  transition: transform 0.3s ease;
}

.product-miniature:hover {
  transform: translateY(-5px);
}

.product-title {
  font-size: 16px;
  margin: 10px 0;
  font-weight: 500;
}

.product-price-and-shipping .price {
  color: #000;
  font-weight: 600;
  font-size: 18px;
}

/* Footer */
.footer-container {
  background: #f8f9fa;
  padding: 40px 0;
  margin-top: 40px;
}

.block_newsletter {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.block_newsletter input[type="email"] {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
}

.block_newsletter .btn-primary {
  background: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.block_newsletter .btn-primary:hover {
  background: #333;
}

/* Typography improvements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

p, span, a, button {
  font-family: 'Inter', sans-serif;
}

/* Responsive */
@media (max-width: 767px) {
  .header-top {
    padding: 10px 0;
  }
  
  .product-miniature {
    margin-bottom: 20px;
  }
}