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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: #f3efe6;
  color: #333;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.logoimg {
  height: 60pt;
  display: flex;
  align-items: center;
}

.logoimg>* {
  margin: 0 5pt;
}

.logoimg>span {
  line-height: 20pt;
  font-size: 1.2em;
}

.products_desc {
  background: white;
  border-radius: 2em;
  padding: 2em 5em;
  cursor: pointer;
  text-align: center;
}

.products_desc>h2 {
  margin: 0.5em 0;
  margin-top: 1.2em;
}

.products_desc .sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.1em;
  cursor: pointer;

  pointer-events: none;
  /* height: 50pt; */
  -webkit-user-select: none;
  /* Safari, Chrome, Opera */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Standard syntax */
}

.products_desc .sub>img {
  width: 100%;
  cursor: pointer;
}

.products_desc .sub>* {
  border: 1pt solid #dddddd;
  border-radius: 0.5em;
  padding: 1em;
}


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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1a1a2e;
  cursor: pointer;
}

.logo svg {
  width: 36px;
  height: 36px;
}

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nav a {
  padding: 8px 18px;
  border: 1.5px solid #ddd;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  background: #fff;
  cursor: pointer;
}

.nav a:hover,
.nav a.active {
  background: #f8f4ec;
  border-color: #c45c26;
  color: #c45c26;
}

/* Placeholder Banner / Hero */
.hero-placeholder {
  box-shadow: inset 0 -40pt 20px 10px #c45c26;
  width: 100%;
  height: 280px;
  background: #1a2a4a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-placeholder .placeholder-text {
  position: absolute;
  color: #fff;
  font-size: 1.1rem;
  background: rgba(0, 0, 0, 0.45);
  padding: 10px 20px;
  border-radius: 8px;
  letter-spacing: 1px;
}

/* Banner strip */
.banner {
  background: #c45c26;
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Page container + transitions */
#app {
  flex: 1;
  position: relative;
}

.page {
  display: none;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding-bottom: 20px;
}

.page.active {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.page.fade-out {
  opacity: 0;
  transform: scale(0.97);
}

/* Sections */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 20px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-card .img-wrap {
  height: 150px;
  background: #e8e4dc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-weight: 600;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  padding: 8px;
}

.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .label {
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  background: #f8f5f0;
  text-align: center;
}

.btn-outline {
  display: block;
  width: fit-content;
  margin: 0 auto 30px;
  padding: 10px 28px;
  border: 1.5px solid #c45c26;
  border-radius: 50px;
  color: #c45c26;
  font-weight: 500;
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  background: #c45c26;
  color: #fff;
}

/* Section title pill */
.section-title {
  background: #f5e6c8;
  color: #1a1a2e;
  text-align: center;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: 600;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* About */
.about-card {
  display: flex;
  gap: 28px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.about-img {
  flex: 0 0 300pt;
  min-height: 260px;
  background: #022043;
}



.about-img img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}


#about_deepcopy {
  max-width: 600pt;
}

#about_deepcopy a {
  color: blue;
}

#about_deepcopy .about-content {
  text-align: center;
}

#about_deepcopy .about-content hr {
  margin: 1.1em;
  opacity: 0.3;
}

#about_deepcopy .about-content .logoimg {
  height: 100pt;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

#about_deepcopy .about-img {
  height: 350pt;
  border-radius: 1em;
  overflow: hidden;
}

#about_deepcopy .about-img img {
  object-fit: cover;
}

.about-content {
  padding: 28px 28px 28px 0;
  flex: 1;
}

.about-content h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #333;
}

.about-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
}

.about-content .proprietor {
  color: #c45c26;
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 14px;
}

/* Page hero for inner pages */
.page-hero {
  background: #c45c26;
  color: #fff;
  text-align: center;
  padding: 42px 20px;
}

.page-hero h1 {
  font-size: 1.9rem;
  font-weight: 600;
}

/* Contact form */
.contact-form {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
}

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

.btn-primary {
  background: #c45c26;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #a34a1e;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 36px 40px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.footer .logo {
  color: #fff;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.footer-nav a {
  padding: 8px 22px;
  border: 1px solid #444;
  border-radius: 50px;
  text-align: center;
  color: #e0a060;
  transition: all 0.2s;
  min-width: 130px;
  cursor: pointer;
}

.footer-nav a:hover {
  background: #333;
  border-color: #c45c26;
}

/* Responsive */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-card {
    flex-direction: column;
  }

  .about-img {
    flex: none;
    height: 200px;
  }

  .about-content {
    padding: 22px;
  }

  .header {
    padding: 12px 18px;
  }

  .hero-placeholder {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 6px;
  }

  .nav a {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .footer {
    flex-direction: column;
    gap: 22px;
    text-align: center;
  }

  .logo span {
    font-size: 1.05rem;
  }
}





@media (max-width: 768px) {
  .products_desc {
    padding: 0;
  }

  .products_desc .sub {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    flex-direction: column;
  }

  header .logoimg {
    flex-direction: column;
  }

  header .logoimg>span {
    line-height: 12pt;
    font-size: 9pt;
    background: white;
    padding: 0.5em 1em;
    border-radius: 0.5em;
  }

}