@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap');

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

body {
  font-family: "JetBrains Mono", monospace;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  color: #222;
  line-height: 1.6;
  padding: 20px;
  min-height: 100vh;
}

header {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

h1 {
  font-size: 2.5em;
  font-weight: 700;
  color: #111;
  padding: 20px 0;
  border-bottom: 4px solid #333;
  letter-spacing: -1px;
}

.info-section {
  max-width: 900px;
  margin: 0 auto 40px;
  background: #fff;
  border: 2px solid #333;
  padding: 25px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.intro {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.us-only {
  display: inline-block;
  background: #ffeb3b;
  padding: 8px 16px;
  border: 2px solid #333;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 0.95em;
}

.shipping-info {
  border-top: 2px dashed #ddd;
  padding-top: 20px;
  margin-top: 20px;
}

.shipping-info h2 {
  font-size: 1.2em;
  margin-bottom: 12px;
  font-weight: 600;
}

.shipping-info ul {
  list-style: none;
  padding-left: 0;
}

.shipping-info li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.shipping-info li:before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.products {
  max-width: 900px;
  margin: 0 auto;
}

.product {
  background: #fff;
  border: 2px solid #333;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.product:hover {
  transform: translateY(-2px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15);
}

.product-header {
  margin-bottom: 8px;
}

.product h2 {
  font-size: 2em;
  font-weight: 700;
  color: #111;
}

.brand {
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85em;
  letter-spacing: 1px;
}

.price {
  font-weight: 700;
  font-size: 1.8em;
  color: #000;
  display: inline-block;
}

.note {
  margin: 15px 0;
  padding: 12px 16px;
  background: #fff9e6;
  border-left: 4px solid #ffc107;
  font-style: italic;
  font-size: 0.95em;
  color: #555;
}

.buy-btn {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 12px 32px;
  border: 2px solid #333;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9em;
  margin-top: 15px;
  transition: all 0.2s;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.buy-btn:hover {
  background: #fff;
  color: #333;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.images {
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.images img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border: 2px solid #333;
  transition: transform 0.2s;
  background: #f9f9f9;
  padding: 5px;
}

.images img:hover {
  transform: scale(1.02);
  cursor: pointer;
}

@media (max-width: 768px) {
  body {
    padding: 15px;
  }
  
  h1 {
    font-size: 2em;
  }
  
  .product {
    padding: 20px;
  }
  
  .images {
    grid-template-columns: 1fr;
  }
  
  .images img {
    max-height: 500px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  border: 4px solid #333;
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.1);
  background: #fff;
  padding: 5px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "JetBrains Mono", monospace;
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
  user-select: none;
}

.modal-close:hover {
  color: #ffeb3b;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .modal-close {
    top: 10px;
    right: 15px;
    font-size: 40px;
  }
  
  .modal-content {
    max-width: 98%;
    max-height: 98%;
  }
}

