* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: #222;
  line-height: 1.6;
  background: #fff;
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: #f8f8f8;
}

.logo {
  max-width: 260px;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

.cta-button {
  background: #000;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 4px;
}

.cta-button:hover {
  background: #333;
}

/* SECTIONS */
.section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.section.light {
  background: #fafafa;
}

/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.product-card {
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
}

.product-card img {
  max-width: 100%;
  margin-bottom: 15px;
}

.product-card h3 {
  margin-bottom: 10px;
}

/* 🔥 PRODUCT IMAGE SCROLL GALLERY (NEW) */
.product-gallery {
  display: flex;
  gap: 10px;
  margin: 10px 0 15px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 5px;
  scroll-snap-type: x mandatory;

  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}


.product-gallery img {
  width: 120px;
  height: auto;
  border-radius: 6px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* Optional scrollbar styling */
.product-gallery::-webkit-scrollbar {
  height: 6px;
}

.product-gallery::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

/* ABOUT */
.about-text {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  text-align: center;
}

/* NEWSLETTER */
.newsletter {
  background: #000;
  color: #fff;
  text-align: center;
}

.newsletter-form {
  margin-top: 20px;
}

.newsletter input {
  padding: 12px;
  width: 260px;
  border: none;
  margin-right: 10px;
}

.newsletter button {
  padding: 12px 20px;
  background: #fff;
  color: #000;
  border: none;
  cursor: pointer;
}

.newsletter button:hover {
  background: #ddd;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  background: #111;
  color: #aaa;
  font-size: 0.9rem;
}
