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

body {
  font-family: Arial, sans-serif;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #000;
}

.logo {
  color: white;
  font-size: 2em;
  font-weight: bold;
  letter-spacing: 5px;
}

nav a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  font-size: 1em;
}

nav a:hover {
  color: #f0c040;
}

.hero {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-text h1 {
  font-size: 4em;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.hero-text p {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #ccc;
}

.btn {
  background-color: #f0c040;
  color: #000;
  padding: 15px 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  border-radius: 30px;
}

.btn:hover {
  background-color: white;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 40px;
  background-color: #f9f9f9;
}

.feature {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
}

footer {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 20px;
}

.shop-title {
  text-align: center;
  padding: 40px;
  font-size: 2em;
  letter-spacing: 2px;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px 60px 60px 60px;
}

.product {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

.product img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-info {
  padding: 15px 20px;
  background: white;
}

.product-info h2 {
  font-size: 1em;
  margin-bottom: 8px;
}

.price {
  color: #f0c040;
  font-weight: bold;
  font-size: 1.1em;
}

.contact-hero {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  color: white;
  text-align: center;
  padding: 80px 40px;
}

.contact-hero h1 {
  font-size: 3em;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 1.2em;
  color: #ccc;
}

.contact-section {
  display: flex;
  gap: 60px;
  padding: 80px 100px;
  background: #f9f9f9;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 1.8em;
  margin-bottom: 25px;
}

.contact-info p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #555;
}

.contact-form {
  flex: 2;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 6px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f0c040;
  outline: none;
}

.contact-form button {
  margin-top: 25px;
  padding: 15px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1.1em;
  cursor: pointer;
  letter-spacing: 2px;
}

.contact-form button:hover {
  background-color: #f0c040;
  color: #000;
}
.product {
  cursor: pointer;
}

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

.modal-content {
  background: white;
  border-radius: 15px;
  display: flex;
  max-width: 700px;
  width: 90%;
  overflow: hidden;
  position: relative;
}

.modal-content img {
  width: 50%;
  object-fit: cover;
}

.modal-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.modal-info h2 {
  font-size: 1.8em;
}

.modal-info p {
  color: #666;
  line-height: 1.6;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #000;
  color: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 1em;
  cursor: pointer;
}

.close-btn:hover {
  background: #f0c040;
  color: #000;
}