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

:root {
  --color-primary: #d97706;
  --color-primary-dark: #b45309;
  --color-dark: #1f2937;
  --color-text: #374151;
  --color-light-bg: #f9fafb;
  --color-border: #e5e7eb;
  --max-width: 1150px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: #fff;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  color: var(--color-dark);
  margin-bottom: 10px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 40px;
}

.section-text {
  max-width: 750px;
  margin: 0 auto 20px;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--color-primary-dark); }

.btn-outline {
  border-color: #fff;
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--color-dark);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.logo-svg {
  display: block;
  height: 48px;
  width: auto;
}
@media (max-width: 480px) {
  .logo-svg { height: 40px; }
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  font-weight: 500;
  color: var(--color-dark);
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--color-primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--color-dark);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(rgba(31,41,55,0.75), rgba(31,41,55,0.75)),
              url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="600"><rect width="800" height="600" fill="%23374151"/></svg>');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 130px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  max-width: 800px;
  margin: 0 auto 20px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
  color: #e5e7eb;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- About ---------- */
.about-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label {
  color: #6b7280;
  font-size: 0.95rem;
}

/* ---------- Products ---------- */
.products { background: var(--color-light-bg); }

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

.product-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.product-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.product-card h3 {
  color: var(--color-dark);
  margin-bottom: 10px;
}

/* ---------- Wholesale ---------- */
.wholesale {
  background: var(--color-dark);
  color: #f3f4f6;
}

.wholesale .section-title { color: #fff; }

.wholesale-inner { text-align: center; }

.wholesale-text .section-text { color: #d1d5db; }

.wholesale-list {
  max-width: 500px;
  margin: 0 auto 30px;
  text-align: left;
}

.wholesale-list li {
  padding: 6px 0;
  color: #e5e7eb;
}

/* ---------- Product Gallery ---------- */
.pg-group {
  margin-top: 38px;
}
.pg-group:first-of-type {
  margin-top: 26px;
}

.pg-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--color-border);
}

.pg-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.pg-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  /* graceful fallback: soft tile shown until a real photo is dropped in */
  background-color: var(--color-light-bg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pg-item picture,
.pg-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pg-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pg-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 12px 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

/* ---------- Map link ---------- */
.map-link {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
}
.map-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* ---------- Contact ---------- */
.contact { background: var(--color-light-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 14px;
}

/* ---------- WhatsApp CTA ---------- */
.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-whatsapp:hover {
  background: #1ebc59;
  transform: translateY(-2px);
}

.whatsapp-icon { font-size: 1.2rem; }

.contact-cta-note {
  color: #6b7280;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: #9ca3af;
  text-align: center;
  padding: 24px 0;
  font-size: 0.9rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
    display: none;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 { font-size: 1.8rem; }
}
