:root {
  --cyan: #42b7c3;
  --purple: #9334b1;
  --yellow: #f7f26e;
  --black: #111111;
  --gradient: linear-gradient(90deg, #42b7c3, #9334b1, #f7f26e);
}

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

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: var(--black);
}

header {
  background: var(--gradient);
  color: white;
  padding: 1.5rem 1rem;
  text-align: center;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-container img {
  height: 120px;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 600px) {
  .logo-container img {
    height: 80px;
  }
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

section {
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: auto;
}

#hero {
  background: var(--gradient);
  color: white;
  padding: 3rem 1rem;
  text-align: center;
  border-radius: 0 0 20px 20px;
}

#hero h2 {
  font-size: 2rem;
}

#hero p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

#about,
#hours,
#products,
#contact {
  margin-top: 2rem;
}

/* Trading Hours */
#hours {
  background: #f9f9f9;
  border-left: 6px solid var(--purple);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

#hours h2 {
  margin-bottom: 0.5rem;
  color: var(--black);
}

#hours p {
  font-size: 1rem;
  color: #444;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.product-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.product-image {
  position: relative;
}

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

.product-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 0.5rem;
  font-weight: bold;
  font-size: 1rem;
}

.read-more-btn {
  background: var(--cyan);
  color: white;
  border: none;
  padding: 0.5rem 1.2rem;
  margin: 1rem auto 0;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background: var(--purple);
}

.product-description {
  display: none;
  padding: 1rem;
  font-size: 0.95rem;
  color: #333;
}

#contact a {
  color: var(--purple);
  font-weight: bold;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}
.social-links {
  margin-top: 1rem;
}

.social-links a {
  color: white;
  margin: 0 10px;
  font-size: 1.5rem;
  display: inline-block;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--purple);
}
form .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

form .checkbox-group input[type="text"] {
  margin-top: 0.5rem;
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}

form input[type="file"] {
  padding: 0.3rem 0;
}

form label {
  font-weight: 600;
  margin-top: 0.5rem;
}

form input,
form textarea,
form select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

form button {
  background-color: var(--cyan);
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: var(--purple);
}
.popup {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--purple);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}

.popup.show {
  opacity: 1;
  pointer-events: auto;
}

.popup.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Contact form styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto;
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  font-weight: bold;
  color: var(--black);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  background: var(--purple);
  color: white;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: var(--cyan);
}
