:root {
  --ink: #1B1B1B;
  --aqua: #D8F0F4;
  --sage: #8AB8B2;
  --teal: #3B7773;
  --mist: #BFD8D0;
  --blush: #EBC8C3;
  --paper: #F4F4F2;
  --line: #D7D7D2;
  --white: #FFFFFF;
}

html, body {
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

a { color: var(--teal); }
img { max-width: 100%; height: auto; }
.container { width: min(1180px, 92%); }
.narrow { max-width: 860px; }

.top-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.top-strip-inner {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  min-height: 34px;
  align-items: center;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.logo-row {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo-link img { width: 236px; display: block; }

.search-form {
  width: min(430px, 100%);
  height: 42px;
  display: flex;
  align-items: center;
  background: var(--aqua);
  border: 1px solid var(--mist);
}

.search-form input[type="search"] {
  border: 0;
  box-shadow: none;
  height: 40px;
  margin: 0;
  padding: 0 14px;
}

.search-form .btn-flat {
  height: 40px;
  color: var(--teal);
}

.primary-nav {
  height: auto;
  line-height: 46px;
  background: var(--teal);
  box-shadow: none;
}

.primary-nav .nav-wrapper { min-height: 46px; }
.primary-nav .nav-wrapper > ul { display: flex; flex-wrap: wrap; }
.primary-nav li a {
  min-height: 46px;
  line-height: 46px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--white);
}

.dropdown-content li > a { color: var(--teal); font-size: 13px; }
.primary-nav li:hover > .dropdown-content,
.primary-nav .dropdown-trigger:focus + .dropdown-content {
  display: block;
  opacity: 1;
  transform: scaleX(1) scaleY(1);
  top: 46px;
}
.sidenav .child-link { padding-left: 38px; color: var(--teal); }
.breadcrumb-nav { background: var(--paper); box-shadow: none; }
.breadcrumb-nav .breadcrumb, .breadcrumb-nav .breadcrumb:before { color: var(--teal); }

.home-hero {
  min-height: 410px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.64)), url("/assets/images/megamenuspecial.jpg") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-copy { max-width: 560px; padding: 70px 0; }
h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  margin: 0 0 22px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
}

h2 { font-size: 30px; line-height: 1.24; }
h3 { font-size: 18px; line-height: 1.35; }
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: #4d4d4d;
}

.promo-band {
  padding: 28px 0 12px;
  background: var(--paper);
}

.promo-band img {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
}

.content-panel,
.simple-page,
.about-page,
.listing-page,
.content-article,
.content-category {
  font-size: 16px;
  line-height: 1.72;
}

.product-detail { background: linear-gradient(180deg, var(--white), var(--paper)); }
.product-media {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.product-media img { max-height: 390px; object-fit: contain; }
.content-image img, .about-image {
  border: 1px solid var(--line);
  background: var(--white);
}

.product-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.product-tile {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 18px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--paper);
}

.product-tile h3 {
  margin: 4px 0;
  font-weight: 700;
}

.tile-link {
  margin-top: auto;
  font-weight: 700;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.side-nav-panel .collection { border-color: var(--line); }
.side-nav-panel .collection-item { color: var(--teal); }

.site-footer {
  background: var(--teal);
  margin-top: 40px;
}

.footer-logo {
  max-width: 190px;
  background: var(--white);
  padding: 10px 14px;
  margin-bottom: 18px;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 8px 20px;
}

.footer-link-grid a,
.site-footer p {
  color: var(--white);
  overflow-wrap: anywhere;
}

.footer-copyright { background: rgba(0,0,0,.12); }

@media (max-width: 700px) {
  .top-strip-inner,
  .logo-row {
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    padding: 18px 0;
  }

  .top-strip-inner { align-items: flex-start; }
  .logo-link img { width: 210px; }
  .home-hero { min-height: 330px; background-position: center; }
  h1 { font-size: 34px; }
  .product-media { min-height: 260px; }
}
