/* Say10 Legacy Static Stylesheet */
@font-face {
  font-family: 'Harbara';
  src: url('harbara.woff2') format('woff2'),
       url('harbara.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg: #ffffff;
  --text: #000000;
  --red: #f50e02;
  --nav-mobile-icon: 44px;
  --nlh: 120px;
  --nlh-m: 180px;
}

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

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: futura, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== Master Header Navigation ===== */
.say10-navbar {
  left: 0;
  right: 0;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 1vw 0 1vw;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 200;
  margin-left: 0;
  color: #000;
}

.say10-page > main {
  margin-top: 120px;
}

.nav-group {
  display: contents;
}

.nav-link {
  font-size: 25px;
  color: #000;
  text-decoration: none;
  transition: color .2s;
  font-weight: 100;
}
.nav-link:hover, .nav-link.active {
  color: red;
}

.nav-link--icon {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav-icon-mail {
  height: 2.7em;
  width: auto;
  display: block;
}

.nav-icon-burni {
  height: 3.3em;
  width: auto;
  display: block;
}

img[src*="burnie_cart0.png"] {
  height: 2.9em !important;
  margin-top: 5px;
}

.nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.nav-logo img {
  max-height: 60px;
}

.nav-toggle {
  display: none;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: auto;
}

.cart-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 70px;
  z-index: 1;
}

.cartnav {
  margin-right: 20px;
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.mobile-drawer a {
  font-size: 24px;
  margin: 12px 0;
  color: #000;
  text-decoration: none;
  font-weight: 100;
}
.mobile-drawer a:hover {
  color: red;
}

.mobile-cart-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-cart-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.drawer-icon-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.drawer-icon-mail {
  height: 1.2em;
  width: auto;
  display: block;
}

.drawer-icon-mail[src*="burnie_cart0.png"] {
  height: 1.0em !important;
}

.mobile-nav-cart {
  display: none;
}

@media (max-width: 965px) {
  .nav-left, .nav-right { display: none; }
  .mobile-drawer { display: flex; }
  .mobile-nav-cart { display: flex; }
  
  .say10-navbar {
    display: grid;
    grid-template-columns: var(--nav-mobile-icon) 1fr var(--nav-mobile-icon);
    align-items: center;
    justify-items: center;
    padding: calc(20px + env(safe-area-inset-top, 0px)) 1vw 20px;
    position: fixed;
    top: 0;
    z-index: 200;
  }
  
  .cart-container {
    margin-right: 0;
  }
  
  .cartnav {
    margin-right: 10px;
  }
  
  .nav-toggle {
    display: block;
    grid-column: 1;
    justify-self: start;
    width: var(--nav-mobile-icon);
    height: var(--nav-mobile-icon);
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    color: inherit;
    padding: 0;
    line-height: 1;
  }
  
  .nav-logo {
    grid-column: 2;
    justify-self: center;
  }
  
  .nav-logo img {
    max-height: 45px;
  }
  
  .mobile-nav-cart {
    grid-column: 3;
    justify-self: end;
    align-items: center;
  }
}

/* ===== Main Page Frame ===== */
.say10-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.say10-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 4vw calc(var(--nlh) + 24px);
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* ===== Red Sticky Newsletter Footer ===== */
.newsletter-section {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 400;
  width: 100vw;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}

.newsletter-banner {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.newsletter-text {
  font-weight: 400;
  font-size: 26px;
  letter-spacing: .3px;
  color: #000;
}

.newsletter-form {
  display: flex;
  align-items: center;
}

.newsletter-input {
  font-size: large;
  width: 240px;
  height: 38px;
  margin-right: 10px;
  background: #ffffff;
  color: #000;
  border: 1.5px solid #000;
  padding: 0 12px;
}
.newsletter-input::placeholder {
  color: #000;
}

.newsletter-button {
  font-size: large;
  height: 40px;
  padding: 0 16px;
  border: 2px solid #000;
  background: #222;
  color: #fff;
  cursor: pointer;
  transition: .25s;
}
.newsletter-button:hover {
  background: #f50e02;
  color: #000;
}

.say10-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  margin-top: 0 !important;
}
.say10-footer a {
  color: #000;
  text-decoration: none;
}
.say10-footer a:hover {
  text-decoration: underline;
}

.mobile_footer {
  display: none;
}

@media (max-width: 640px) {
  .newsletter-section {
    display: none;
  }
  .mobile_footer {
    display: block;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .say10-content {
    padding: 24px 5vw 40px;
  }
}

.hidden {
  display: none !important;
}
