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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #fff;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 30px;
  background-color: #1e1e1e;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.logo {
  height: 50px;
  width: 50px;
  margin-right: 15px;
}

.site-name {
  font-size: 28px;
  background: linear-gradient(90deg, orange, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
}

.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
  padding: 5px 10px;
  border-radius: 5px;
}

.nav-links a:hover,
.nav-links .active {
  color: orange;
  background-color: #2a2a2a;
}

.hero {
  padding: 80px 50px;
  text-align: center;
  background: linear-gradient(to bottom, #1e1e1e, #111);
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
  color: #ccc;
}

.info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px;
}

.info-box {
  background-color: orange;
  color: #1e1e1e;
  padding: 25px;
  border-radius: 15px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}

.info-box:hover {
  transform: scale(1.03);
}

.info-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.info-box p {
  font-size: 16px;
  line-height: 1.5;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #1e1e1e;
  border-top: 1px solid #333;
  color: #aaa;
}
.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  font-size: 16px;
}

.btn-orange {
  background-color: #ff6600;
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-orange:hover {
  background-color: #e65c00;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.shop-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.shop-item p {
  font-size: 18px;
  color: white;
  font-weight: bold;
}

.btn-orange {
  background-color: #ff6600;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  cursor: pointer;
}

.btn-orange:hover {
  background-color: #e65c00;
}

.btn-orange.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}