:root {
  --space-xs: 0.5rlh;
  --space-sm: 1rlh;
  --space-md: 3rlh;
  --space-lg: 6rlh;
  --space-xl: 12rlh;
}
@media (max-width: 600px) {
  :root {
    --space-md: 2rlh;
    --space-lg: 4rlh;
    --space-xl: 8rlh;
  }
}

* {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

html {
  font-family: sans-serif;
  line-height: 1.3;
  font-size: 16px;
  text-underline-offset: 2px;
  background-color: var(--random-color);
  overflow-x: hidden;
}

body {
  margin: 0;
  background: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-size: unset;
  font-weight: unset;
  margin: 0;
}

a {
  color: currentColor;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
}

p {
  margin: 0;
}

dl, dt, dd {
  margin: 0;
}

ul, ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

img, video {
  width: 100%;
  vertical-align: top;
}

figure {
  margin: 0;
  padding: 0;
}

button, select {
  padding: 0;
  margin: 0;
  background: none;
  outline: none;
  border: none;
  display: inline;
  font: inherit;
  cursor: pointer;
  color: black;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
}
button:disabled, select:disabled {
  color: gainsboro;
  text-decoration: none;
  cursor: unset;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
}

input {
  font: inherit;
  color: inherit;
  border: none;
  margin: 0;
  padding: 0.3rem 0.5rem 0.2rem;
  background: none;
}

th {
  font-weight: inherit;
}

element-ruler {
  display: contents;
}

summary {
  list-style: none;
}

::-webkit-details-marker {
  display: none;
}

::cue {
  color: white;
  font-size: 16px;
  font-family: sans-serif;
  background-color: transparent;
}

.BodyText {
  max-width: 80ch;
}
.BodyText p {
  margin-bottom: 1rlh;
}
.BodyText details summary {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
  cursor: pointer;
}

.CartProp[prop=storedTotalQty]:empty::before {
  content: "0";
}

.CartToggle {
  display: block;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  padding-left: 0;
  z-index: 1;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
  padding: var(--space-sm);
}
@media (max-width: 600px) {
  .CartToggle--header {
    position: static;
  }
}

.LineItem {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: 1fr max-content;
  border-top: 1px dashed currentColor;
  padding-top: var(--space-sm);
}
.LineItem:first-child {
  border-top: 1px solid currentColor;
}

.ShoppingCart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-xs);
  width: 100%;
  --max-width: 100%;
}
.ShoppingCart--inline {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--random-color);
  z-index: 1;
  display: none;
  padding: var(--space-sm);
  align-items: center;
  --max-width: 80ch;
}
.ShoppingCart--inline .ShoppingCart-header {
  text-align: center;
}
.ShoppingCart--inline.is-visible {
  display: flex;
}
.ShoppingCart.is-empty .ShoppingCart-message--empty {
  display: block;
}
.ShoppingCart.is-empty .ShoppingCart-body,
.ShoppingCart.is-empty .ShoppingCart-footer {
  display: none;
}

.ShoppingCart-header {
  width: 100%;
  max-width: var(--max-width);
}

.ShoppingCart-body {
  width: 100%;
  max-width: var(--max-width);
  display: grid;
  gap: var(--space-sm);
}

.ShoppingCart-footer {
  width: 100%;
  max-width: var(--max-width);
  border-top: 1px solid currentColor;
  padding-top: var(--space-sm);
}

.ShoppingCart-message--empty {
  display: none;
}

.Footer {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: start;
  max-width: max-content;
  background-color: var(--random-color);
  padding: var(--space-sm);
  padding-right: var(--space-md);
  gap: var(--space-lg) var(--space-md);
}
@media (max-width: 600px) {
  .Footer {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}
.Footer--checkout {
  background: white;
}
.Footer .Form-header {
  border: none;
}
@media (max-width: 600px) {
  .Footer {
    padding-right: var(--space-sm);
  }
}

.Footer-section--statement {
  grid-row: 1/2;
  grid-column: 1/2;
  max-width: 60ch;
}
.Footer-section--nav {
  grid-row: 1/2;
  grid-column: 2/3;
}
@media (max-width: 600px) {
  .Footer-section--nav {
    grid-row: 2/3;
  }
}
.Footer-section--newsletter {
  grid-row: 2/3;
  grid-column: 1/3;
}
@media (max-width: 600px) {
  .Footer-section--newsletter {
    grid-row: 3/4;
  }
}
@media (max-width: 600px) {
  .Footer-section {
    grid-column: unset !important;
  }
}

.Form {
  display: grid;
  width: 100%;
  gap: var(--space-sm);
}
.Form form {
  display: contents;
}
.Form--cart, .Form--newsletter {
  display: grid;
  gap: var(--space-xs);
}
.Form--cart .Form-body, .Form--newsletter .Form-body {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: var(--space-xs);
  background-color: snow;
  padding: 3px;
  border-radius: 5px;
}
.Form--cart cart-prop {
  padding: 0.3rem 0.5rem 0.2rem;
  display: flex;
  align-items: center;
}
.Form--newsletter {
  display: grid;
  gap: var(--space-xs);
}
.Form--newsletter .Form-body {
  max-width: 30ch;
}
@media (max-width: 600px) {
  .Form--newsletter .Form-body {
    max-width: unset;
  }
}
.Form--newsletter .Form-body input {
  width: 100%;
}
.Form--subscribe {
  display: grid;
  gap: 0.5rem;
}
.Form--shipping .Form-block:empty::after {
  content: "* Complete shipping address to view available shipping methods.";
  color: red;
  display: block;
  flex: 0 0 100%;
}

.Form-header {
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid black;
}

.Form-grid {
  display: grid;
  gap: var(--space-xs);
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
@media (max-width: 1000px) {
  .Form-grid {
    grid-template-columns: 1fr;
  }
}

.Form-block {
  display: flex;
  flex-wrap: wrap;
}
.Form-block label {
  flex: 0 0 100%;
  padding: 0.3rem 0;
}
.Form-block select {
  flex: 0 0 100%;
  width: 100%;
}
.Form-block input {
  flex: 0 0 100%;
  background-color: white;
  border-radius: 4px;
}
.Form-block[col-span="2"] {
  grid-column: span 2;
}
@media (max-width: 1000px) {
  .Form-block[col-span="2"] {
    grid-column: span 1;
  }
}
.Form-block input[type=submit] {
  background-color: gainsboro;
  color: darkslategray;
  padding: 0.3rem 0.5rem 0.2rem;
  border-radius: 0.25rem;
  border: 1px outset gainsboro;
  text-decoration: none;
}
.Form-block input[type=submit]:disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: unset;
}
.Form-block p {
  flex: 0 0 100%;
}

.Form--product form {
  display: inline;
}

.FormGroup {
  background-color: rgb(240, 240, 240);
  border: 1px ridge rgb(240, 240, 240);
  padding: var(--space-sm);
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 80ch;
  border-radius: 5px;
}

.Header {
  position: relative;
  margin-bottom: var(--space-md);
  z-index: 1;
}
@media (max-width: 600px) {
  .Header {
    position: sticky;
    margin-bottom: 0;
    top: 0;
  }
  .Header .CartToggle--header {
    background-color: var(--random-color);
  }
}
.Header--home {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 600px) {
  .Header--home {
    position: sticky;
    margin-bottom: 0;
  }
}
.Header--home .HeaderNav {
  grid-template-columns: max-content 1fr max-content;
}
.Header--home .HeaderNav a {
  color: inherit;
}
.Header--home .HeaderNav-group {
  background: var(--random-color);
}
.Header--home .CartToggle--header {
  position: static;
  background-color: var(--random-color);
  padding: var(--space-xs);
}
@media (max-width: 600px) {
  .Header--home .CartToggle--header {
    padding: var(--space-sm);
  }
}
@media (max-width: 600px) {
  .Header--default {
    position: sticky;
    height: calc(1lh + var(--space-sm) * 2);
    overflow: visible;
  }
}

.Header-title {
  display: inline-block;
}

.HeaderNav {
  padding: var(--space-xs);
  z-index: 1;
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: start;
}
@media (max-width: 600px) {
  .HeaderNav {
    display: none;
  }
}

.HeaderNav-group {
  display: grid;
  padding: var(--space-xs);
  padding-right: calc(var(--space-lg) - var(--space-xs));
  gap: var(--space-lg);
  align-items: start;
}
.HeaderNav-group:not(:first-child) {
  grid-template-columns: max-content 1fr;
}

.HeaderNav-list {
  display: grid;
}

.HeaderNav-item.is-active {
  text-decoration: underline;
}

.MediaGallery {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}

.MediaGallery-figure {
  width: var(--width);
  flex: 0 0 var(--width);
  position: relative;
}
@media (max-width: 600px) {
  .MediaGallery-figure {
    width: 100%;
    flex: 0 0 100%;
  }
}

.MediaGallery-media {
  width: 100%;
}

.MediaGallery-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  color: white;
  padding: var(--space-sm);
}

.MobileNav {
  display: none;
}
@media (max-width: 600px) {
  .MobileNav {
    display: block;
  }
}
.MobileNav--static {
  margin-bottom: var(--space-md);
}
.MobileNav--static .MobileNav-list {
  background: transparent;
}

.MobileNav-summary {
  display: grid;
  grid-template-columns: 1fr max-content;
}

.MobileNav-header {
  padding: var(--space-sm);
  display: grid;
  gap: var(--space-xs);
  grid-template-columns: max-content 1fr;
  background: var(--random-color);
}

.MobileNav-hamburger {
  padding-right: 0;
}

.MobileNav-list {
  padding: var(--space-sm);
  flex: 0 0 100%;
  grid-column: span 2;
  display: grid;
  background-color: var(--random-color);
}

.MobileNav-subList {
  padding: 0 var(--space-xs);
}

.Page {
  margin-bottom: var(--space-lg);
  max-width: calc(100% - var(--cart-toggle-width) - var(--space-xs));
  flex: 1;
}
@media (max-width: 1000px) {
  .Page {
    max-width: unset;
  }
}
@media (max-width: 600px) {
  .Page--product {
    display: grid;
  }
  .Page--product .Page-header {
    margin-bottom: var(--space-sm);
  }
  .Page--product .ProductGallery {
    grid-row: 2/3;
    margin-bottom: 0;
  }
  .Page--product .ProductGallery .ScaleRef {
    width: calc(100vw - var(--space-sm) * 2);
  }
}
.Page--product, .Page--home {
  margin-bottom: 0;
}
.Page--about .Page-header {
  padding: 0;
  margin-bottom: var(--space-sm);
}
.Page--about h1 {
  padding: var(--space-sm);
  padding-bottom: 0;
}
.Page--collection .Page-header {
  margin: 0;
}
.Page--checkout {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.Page--checkout .Page-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.Page-header {
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  padding-bottom: 0;
  position: relative;
}
.Page-header img, .Page-header video {
  width: auto;
  height: auto;
  max-height: 90vh;
  max-width: 100%;
}
@media (max-width: 1000px) {
  .Page-header {
    margin-bottom: var(--space-lg);
  }
}

.Page-body {
  padding: 0 var(--space-sm);
  margin-bottom: var(--space-md);
}

.Page-footer {
  padding: var(--space-sm);
}

.Page-group {
  display: grid;
  gap: var(--space-sm);
  align-items: start;
  max-width: 120ch;
}
.Page-group[cols="2/1"] {
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 1000px) {
  .Page-group[cols="2/1"] {
    grid-template-columns: 1fr;
  }
}

.Page-groupSection {
  display: grid;
  gap: var(--space-sm);
}

.ProductGallery {
  padding: 0 var(--space-sm);
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-lg);
}

.ProductList {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 0 var(--space-md);
  padding: var(--space-sm);
  padding-top: 0;
}
@media (max-width: 1000px) {
  .ProductList .Scale {
    margin-bottom: var(--space-md);
  }
}

.ProductThumbnail {
  display: grid;
  gap: var(--space-xs);
}

.ProductThumbnail-link {
  display: contents;
}

.ProductThumbnail-container {
  display: flex;
  gap: 0 var(--space-sm);
  align-items: flex-start;
  flex-wrap: wrap;
}

.ProductThumbnail-meta {
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.Receipt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xs);
  padding: var(--space-sm);
  background-color: rgb(240, 240, 240);
  border: 1px ridge rgb(240, 240, 240);
  width: 100%;
  max-width: 80ch;
  border-radius: 10px;
}
.Receipt hr {
  width: 100%;
  grid-column: 1/-1;
  border: none;
  border-top: 1px dashed black;
}

.Receipt-block {
  display: grid;
  gap: 0.25rem;
  align-content: start;
}
.Receipt-block[cols="2"] {
  grid-column: span 2;
}
.Receipt-block[col-start="2"] {
  grid-column-start: 2;
}
.Receipt-block thead {
  margin-bottom: 0.25rem;
}
.Receipt-block table,
.Receipt-block tbody,
.Receipt-block thead {
  width: 100%;
  display: block;
}
.Receipt-block tr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
  text-align: left;
}
.Receipt-block table, .Receipt-block tbody {
  display: grid;
  gap: 0.25rem;
}
.Receipt-block tbody tr {
  background-color: snow;
  padding: 0.25rem;
  margin-bottom: 0.25rem;
  border-radius: 5px;
}

.Scale {
  display: inline-grid;
  gap: 0.2em;
  margin: var(--space-xs) 0;
}

.Scale::before {
  content: "";
  height: 0.75rlh;
  background-color: black;
  display: block;
  border: 1px solid black;
  border-top: none;
}

.Scale::after {
  content: "1in";
}

.ScaleGroup {
  display: contents;
}

.ScaleImage {
  display: contents;
}

.ScaleRef {
  display: block;
  width: 100%;
}

.Thumbnail {
  position: relative;
  display: grid;
  gap: var(--space-xs);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
}
.Thumbnail img {
  width: 100%;
}
.Thumbnail a {
  color: inherit;
}
.Thumbnail--page {
  flex: 0 0 var(--width);
}
.Thumbnail--page .Thumbnail-caption {
  padding: var(--space-sm);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1000px) {
  .Thumbnail--page {
    flex: 0 0 100% !important;
  }
}
.Thumbnail--product {
  margin-bottom: var(--space-sm);
}

.Thumbnail-link {
  display: contents;
}

.Thumbnail-container {
  display: flex;
  gap: 0 var(--space-sm);
  align-items: flex-start;
  flex-wrap: wrap;
}

.Thumbnail-caption {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
}

.ThumbnailList {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}

.u-strike {
  text-decoration: line-through;
}

.u-button {
  background-color: gainsboro;
  color: darkslategray;
  padding: 0.3rem 0.5rem 0.2rem;
  border-radius: 0.25rem;
  border: 1px outset gainsboro;
  text-decoration: none;
  cursor: pointer;
}
.u-button:disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: unset;
}

.u-flexBreak {
  flex-basis: 100%;
}

.u-alert {
  color: red;
}

.u-selectContainer {
  position: relative;
  width: 100%;
}
.u-selectContainer::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.65em;
  right: 0.5em;
  border-top: 0.5rlh solid slategray;
  border-left: 0.25rlh solid transparent;
  border-right: 0.25rlh solid transparent;
  pointer-events: none;
}

/*# sourceMappingURL=main.css.map */
