/*** VOLT GA Shopping Campaign Styles ***/

@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600&display=swap");

:root {
  --navLinks: #868686;
  --bodyCopy: #383838;
  --blue: #2344a0;
  --red: #d11212;
  --hoverRed: #920d0d;
  --font: "Source Sans Pro", sans-serif;
}

html,
body {
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.1em;
  line-height: 1.4em;
  color: var(--bodyCopy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
  padding: 0;
}

#wrap {
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/*****  Header Styles  */

#header {
  height: auto;
  width: 100%;
  box-sizing: border-box;
  padding: 1rem;
  display: flex;
  /* Mobile */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 4px solid var(--red);
}

#brand {
  /* Mobile */
  max-width: 220px;
}
#brand img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 900px) {
  #header {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  #brand {
    max-width: 300px;
  }
}

/****   Workspace Styles  */
#workspace {
  width: 100%;
  min-height: 90vh;
  box-sizing: border-box;
  padding: 0.5rem;
}

#contactWorkspace {
  width: 100%;
  min-height: 70vh;
  box-sizing: border-box;
  padding: 1rem;
}

.row {
  max-width: 100%;
  margin: auto;
  box-sizing: border-box;
  padding: 0rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.categoryHeader h2,
h3 {
  color: var(--blue);
}

.productRow {
  width: 100%;
  padding: 0rem 0.5rem 0rem;
  display: flex;
  /* mobile */
  flex-direction: column;
  align-items: center;
}

.product {
  padding: 1rem;
  background: white;
  -webkit-box-shadow: 0px 8px 8px -3px rgba(0, 0, 0, 0.31);
  box-shadow: 0px 8px 8px -3px rgba(0, 0, 0, 0.31);
  display: flex;
  /* Mobile */
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 1.5rem;
}

.productHero {
  max-width: 100%;
  height: auto;
  display: block;
}

.productDescription {
  width: 100%;
  padding: 0;
}

.productDescription p {
  text-indent: 0.5rem;
}

.titleWrap {
  padding-top: 0.5rem;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.title {
  display: block;
  padding: 0.5rem;
  font-weight: 600;
  background-color: var(--blue);
  color: white;
  font-size: 1.5rem;
  border-radius: 5px;
}

.price {
  line-height: 1em;
  font-weight: 600;
  padding-right: 0.5rem;
  font-size: 1.2rem;
}

.productButton {
  width: 100%;
  box-sizing: border-box;
  padding: 1rem;
  font-size: 2rem;
  color: white;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  background-color: var(--red);
  cursor: pointer;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}

.productButton:hover {
  background-color: var(--hoverRed);
}

#contactBox {
  width: 100%;
  margin: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#contactPhone span,
#contactEmail span {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2em;
}

#termsWrap {
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

#termsWrap ul {
  padding: 0.5rem;
}

#el-0,
#el-1,
#el-2,
#el-3,
#el-4,
#el-5,
#el-6,
#el-7,
#el-8,
#el-9,
#el-10 {
  overflow: auto;
}

.backTopLink {
  float: right;
  font-size: 0.8rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .product {
    max-width: 500px;
  }

  #pageHeader {
    align-self: flex-start;
  }

  #contactBox {
    border-top: 1px solid var(--blue);
    padding-top: 1rem;
    flex-direction: row;
    justify-content: space-evenly;
  }
}

@media screen and (min-width: 1000px) {
  .row {
    max-width: 85%;
    align-items: flex-start;
  }
  .productRow {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
  .product {
    max-width: 350px;
  }

  #termsWrap {
    display: grid;
    grid-template-columns: 1fr 3fr;
  }
  #termsNav {
    font-size: 1rem;
    height: 100%;
    position: sticky;
    position: -webkit-sticky;
  }
}

#footer {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 0.8em;
  line-height: 1.2em;
}
