header {
  box-shadow: none;
  border-bottom: 1px solid #ccc;
}

.subnav {
  background-color: #f0f0f0;
  margin: -20px -20px 15px -20px;
  border-bottom: 1px solid #ccc;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  opacity: 0.85;
}

.subnav div {
  display: inline-block;
  width: calc(50% - 13px);
}

.subnav .left {
  padding: 10px 0 10px 15px;
}
.subnav .right {
  text-align: right;
}


h1 {
  margin-top: 3rem;
  text-align: center;
}

h2 {
  margin-top: 0.6rem;
  font-weight: 200;
  font-size: 3rem;
}

img {
  max-width: 100%;
  max-height: 100vh;
}

.col4 {
  display: inline-block;
  width: calc((100% - 100px) / 3);
  min-width: 300px;
  margin: 0 20px;
  vertical-align: top;
}
.col6 {
  display: inline-block;
  width: calc((100% - 100px) / 2);
  min-width: 300px;
  margin: 0 20px;
  vertical-align: top;
}
.col8 {
  display: inline-block;
  width: calc((100% - 100px) * 2 / 3);
  min-width: 300px;
  margin: 0 20px;
  vertical-align: top;
}

.img.col6 {
  vertical-align: middle;
}

.feature.row div div {
  padding: 5px 50px;
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.detail.row {
  margin-top: 2rem;
  padding: 2rem 0;
  border-top: 1px solid #ccc;
  font-size: 1.2rem;
  font-weight: 300;
}
.detail.row div.text div {
  text-align: left;
}
.detail.row h3 {
  font-size: 1.4rem;
}

.button {
  display: inline-block;
  text-align: center;
  padding: 7px 12px 7px 12px;
  background-color: #fff;
  color: #000;
  user-select: none;
  cursor: pointer;
  font-size: 0.9rem;
  border-radius: 5px;
}

.primary.button {
  background-color: #73a434;
  color: #fff;
  font-weight: 700;
}


.itemPrice {
  color: #73a434;
  font-size: 0.9em;
}
.itemPrice .amount {
  font-size: 1.4em;
  font-weight: 700;
}
.availability {
  font-size: 0.7em;
}
.availability.out-of-stock {
  color: #c0392b;
  font-weight: 600;
}
.availability.low-stock {
  color: #e67e22;
  font-weight: 600;
}

.cta button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8em;
  color: #888;
  margin-bottom: 5px;
}
.breadcrumb a {
  color: #888;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #73a434;
  text-decoration: underline;
}
.breadcrumb .sep {
  margin: 0 4px;
}

.cta {
  margin-top: 20px;
}

.short_desc {
  font-size: 0.9em;
}
.short_desc ul {
  padding-left: 15px;
  margin-top: 0;
}
.short_desc li::marker{
   color: #e5e5e5;
}

.long_desc {
  font-size: 0.9em;
  font-weight: 300;
}

.optionsWrapper {
  margin-bottom: 15px;
}

.optionsList {
  margin-top: 4px;
  display: flex;
  width: 100%;
}

.option {
  width: 10%;
  min-width: 100px;
  border: 1px solid #73a434;
  padding: 5px 7px;
  margin-right: 7px;
  color: #666;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.option:hover {
  background-color: #73a434;
  color: #fff;
  font-weight: bold;
}

.optPrice {
  font-size: 80%;
}
.selected.option {
  background-color: #73a434;
  color: #fff;
  font-weight: bold;
}


/* Image gallery */

.gallery {
  position: relative;
}

.gallery-images {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #fff;
}

.gallery-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-img.active {
  display: block;
}

.gallery-arrows {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.gallery:hover .gallery-arrows {
  opacity: 1;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 2.4rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  padding-bottom: 8px;
}

.gallery-arrow:hover {
  background: rgba(0, 0, 0, 0.65);
}

.gallery-prev {
  left: 10px;
}

.gallery-next {
  right: 10px;
}

.gallery-dots {
  text-align: center;
  padding: 10px 0;
}

.gallery-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 4px;
  cursor: pointer;
}

.gallery-dot.active {
  background: #73a434;
}

.gallery-placeholder {
  background: #e5e5e5;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  font-size: 1.1rem;
}