@import url("https://fonts.googleapis.com/css2?family=Tangerine:wght@700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  font-family: "Courier New", Courier, monospace;
}

.container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.inner__container {
  max-width: calc(100% - 2rem);
  margin: 0 auto;
  padding: 1rem 0;
}

.flex-row {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.grid {
  display: grid;
}

.col-12 {
  grid-template-columns: repeat(12, 1fr);
}

.hidden {
  display: none;
}

h1 {
  font-family: "Tangerine", cursive;
  font-size: 36px;
  color: #e9c48e;
}

h2 {
  font-size: 18px;
}

h3 {
  font-family: "Lucida Sans", Verdana, sans-serif;
  font-size: 16px;
}

h4 {
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  font-weight: 200;
}

p {
  font-size: 12px;
}

a {
  font-size: 12px;
  text-decoration: none;
}

a:hover {
  color: #e9c48e;
  cursor: pointer;
}

.icon-small {
  font-size: 0.875rem;
}

.icon-medium {
  font-size: 2rem;
}

/********
HEADER
********/
header {
  width: 100%;
}
header .inner__container {
  gap: 1.5rem;
}
header .inner__container .header__ticker__container {
  grid-row: 1/2;
  grid-column: span 12;
  overflow: hidden;
  margin-bottom: 1rem;
  color: #f5f5f5;
}
header .inner__container .header__ticker__container .header__ticker {
  width: 100%;
  display: flex;
  overflow: hidden;
}
header .inner__container .header__ticker__container .header__ticker .ticker__list {
  display: flex;
  justify-content: flex-start;
  white-space: nowrap;
  margin-top: 20px;
}
header .inner__container .header__ticker__container .header__ticker .ticker__list .ticker__item {
  display: flex;
  margin-right: 1rem;
  width: 100%;
}
header .inner__container .header__logo {
  grid-row: 2/3;
  grid-column: span 8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
header .inner__container .header__logo .logo__img {
  max-width: 1.5rem;
  height: auto;
}
header .inner__container .header__logo .logo__img img {
  width: 100%;
}
header .inner__container .header__search {
  grid-row: 3/4;
  grid-column: span 12;
  display: flex;
  gap: 0.5rem;
}
header .inner__container .header__search .search__bar {
  flex-basis: 100%;
  height: 2rem;
  background-color: #f5f5f5;
  color: black;
  border: 1px solid #e9c48e;
  border-radius: 5px;
}
header .inner__container .header__search .search__icon {
  padding: 0.3rem 0.5rem;
  background: black;
  color: #e9c48e;
  border-left: 0.5px outset rgba(240, 234, 234, 0.527);
  border-top: 0.5px outset rgba(240, 234, 234, 0.527);
  border-right: none;
  border-bottom: none;
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(240, 234, 234, 0.527);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
}
header .inner__container .header__search .search__icon:hover {
  background: #e9c48e;
  color: #f5f5f5;
}
header .inner__container .header__info {
  position: relative;
  grid-row: 2/3;
  grid-column: span 4;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
header .inner__container .header__info .user {
  padding: 0.3rem 0.5rem;
  background: black;
  color: #e9c48e;
  border-left: 0.5px outset rgba(240, 234, 234, 0.527);
  border-top: 0.5px outset rgba(240, 234, 234, 0.527);
  border-right: none;
  border-bottom: none;
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(240, 234, 234, 0.527);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
}
header .inner__container .header__info .user:hover {
  background: #e9c48e;
  color: #f5f5f5;
}
header .inner__container .header__info .cart {
  padding: 0.3rem 0.5rem;
  background: black;
  color: #e9c48e;
  border-left: 0.5px outset rgba(240, 234, 234, 0.527);
  border-top: 0.5px outset rgba(240, 234, 234, 0.527);
  border-right: none;
  border-bottom: none;
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(240, 234, 234, 0.527);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
}
header .inner__container .header__info .cart:hover {
  background: #e9c48e;
  color: #f5f5f5;
}

/* shopping cart */
.header__shopping-cart {
  z-index: 999;
  position: absolute;
  min-height: 10rem;
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
  padding: 1.5rem 0.5rem;
  background-color: black;
  color: #f5f5f5;
  border: 2px solid #e9c48e;
  border-radius: 10px;
  width: calc(100% - 2rem);
  top: 5%;
  right: 0;
}
.header__shopping-cart .cart-row {
  width: 100%;
  display: flex;
  align-self: center;
  gap: 1rem;
}
.header__shopping-cart .cart-row .cart-row-div {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}
.header__shopping-cart .cart-row .cart-row-div .cart-row-title {
  font-style: italic;
  font-size: 0.8rem;
  width: 50%;
}
.header__shopping-cart .cart-row .cart-row-div .cart-row-author {
  font-size: 0.8rem;
  width: 40%;
}
.header__shopping-cart .cart-row .cart-row-div .cart-row-price {
  margin-left: auto;
  font-size: 0.8rem;
}
.header__shopping-cart .cart-row .cart-delete-btn {
  padding: 0.3rem 0.5rem;
  background: black;
  color: #e9c48e;
  border-left: 0.5px outset rgba(240, 234, 234, 0.527);
  border-top: 0.5px outset rgba(240, 234, 234, 0.527);
  border-right: none;
  border-bottom: none;
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(240, 234, 234, 0.527);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
}
.header__shopping-cart .cart-row .cart-delete-btn:hover {
  background: #e9c48e;
  color: #f5f5f5;
}
.header__shopping-cart .pay-row {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}
.header__shopping-cart .sum-total {
  text-transform: uppercase;
}
.header__shopping-cart .checkout-btn {
  padding: 0.3rem 0.5rem;
  background: black;
  color: #e9c48e;
  border-left: 0.5px outset rgba(240, 234, 234, 0.527);
  border-top: 0.5px outset rgba(240, 234, 234, 0.527);
  border-right: none;
  border-bottom: none;
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(240, 234, 234, 0.527);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
}
.header__shopping-cart .checkout-btn:hover {
  background: #e9c48e;
  color: #f5f5f5;
}

/**********
NAVIGATION
**********/
nav {
  width: 100%;
}
nav .inner__container .nav-btn {
  grid-column: span 12;
  padding: 0.5rem 1rem;
  border: none;
  background-color: #e9c48e;
  color: black;
  font-weight: 600;
  cursor: pointer;
}
nav .inner__container .nav-btn:hover {
  background-color: black;
  color: #e9c48e;
  cursor: pointer;
}

/***********
MAIN SECTION
***********/
main .inner__container {
  gap: 4rem;
}
main .inner__container .item-container {
  row-gap: 4rem;
}
main .inner__container .item-container .item {
  position: relative;
  grid-column: span 12;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  color: #f5f5f5;
}
main .inner__container .item-container .item .item__img {
  flex-basis: 48%;
  border: 1px solid #e9c48e;
  object-fit: contain;
}
main .inner__container .item-container .item .item__img img {
  width: 100%;
  height: 100%;
}
main .inner__container .item-container .item .item__info {
  flex-basis: 48%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  flex-shrink: 2;
  justify-content: flex-start;
  gap: 1rem;
}
main .inner__container .item-container .item .item__info .item__name {
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
main .inner__container .item-container .item .item__info .show-btn {
  margin-top: auto;
  border: 1px solid #e9c48e;
  background-color: black;
  color: #f5f5f5;
  padding: 0.5rem 2rem;
}
main .inner__container .item-container .item .item__info .show-btn:hover {
  cursor: pointer;
  background: #e9c48e;
  color: #000;
  font-weight: 600;
}
main .inner__container .item-container .item .item__info .item__description {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  display: none;
  align-items: flex-start;
  background: rgba(187, 192, 194, 0.5);
  backdrop-filter: blur(5px);
  border: 1px double #e9c48e;
  border-radius: 5px;
  color: #000;
  padding: 0.8rem;
  text-align: justify;
  font-style: italic;
}
main .inner__container .item-container .item .item__info .close-btn {
  position: relative;
  left: 0.5rem;
  top: -0.5rem;
  padding: 0.3rem;
  background: black;
  color: #e9c48e;
  border: none;
  border-radius: 5px;
  box-shadow: 1.5px 1.5px 3px rgba(240, 234, 234, 0.527);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-size: 0.7rem;
}
main .inner__container .item-container .item .item__info .item__toolbar {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
}
main .inner__container .item-container .item .item__info .item__toolbar .toolbar__price {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid #e9c48e;
}
main .inner__container .item-container .item .item__info .item__toolbar .toolbar__price:hover {
  color: #e9c48e;
  border-bottom: 2px solid #f5f5f5;
}
main .inner__container .item-container .item .item__info .item__toolbar .toolbar__favorite {
  padding: 0.3rem;
  background: black;
  color: #e9c48e;
  border: none;
  border-radius: 5px;
  box-shadow: 1.5px 1.5px 3px rgba(240, 234, 234, 0.527);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-size: 0.7rem;
}
main .inner__container .item-container .item .item__info .item__toolbar .toolbar__favorite:hover {
  background: #e9c48e;
  color: #f5f5f5;
  cursor: pointer;
}
main .inner__container .item-container .item .item__info .item__toolbar .toolbar__cart {
  padding: 0.3rem;
  background: black;
  color: #e9c48e;
  border: none;
  border-radius: 5px;
  box-shadow: 1.5px 1.5px 3px rgba(240, 234, 234, 0.527);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-size: 0.7rem;
}
main .inner__container .item-container .item .item__info .item__toolbar .toolbar__cart:hover {
  background: #e9c48e;
  color: #f5f5f5;
  cursor: pointer;
}

/*******
FOOTER SECTION
********/
footer {
  width: 100%;
}
footer .inner__container {
  color: #f5f5f5;
  padding-top: 4rem;
  gap: 2rem;
}
footer .inner__container .footer__top {
  grid-column: span 12;
}
footer .inner__container .flex-column {
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

@media only screen and (min-width: 500px) {
  .inner__container {
    max-width: calc(100% - 4rem);
  }
  nav .inner__container .nav-btn {
    grid-column: span 6;
  }
  .header__shopping-cart {
    width: calc(100% - 4rem);
    top: 8%;
    right: 2rem;
  }
}
@media only screen and (min-width: 600px) {
  .inner__container {
    max-width: calc(100% - 6rem);
  }
  nav .inner__container .nav-btn {
    grid-column: span 4;
  }
  .header__shopping-cart {
    width: calc(100% - 6rem);
    top: 9%;
    right: 3rem;
  }
  main .inner__container .item-container {
    column-gap: 1.5rem;
    row-gap: 3rem;
  }
  main .inner__container .item-container .item {
    grid-column: span 6;
    flex-direction: column;
    gap: 1rem;
  }
  footer .inner__container .footer__top {
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: 2rem;
    row-gap: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .inner__container {
    max-width: calc(100% - 8rem);
  }
  nav .inner__container .nav-btn {
    grid-column: span 2;
  }
  .header__shopping-cart {
    width: calc(100% - 8rem);
    top: 10%;
    right: 4rem;
  }
  main .inner__container .item-container .item {
    grid-column: span 4;
  }
  footer .inner__container .footer__top {
    column-gap: 1.5rem;
  }
  footer .inner__container .footer__middle {
    grid-column: span 12;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .inner__container {
    max-width: calc(100% - 10rem);
  }
  header .inner__container {
    gap: 0.5rem;
  }
  header .inner__container .header__logo {
    grid-row: 2/3;
    grid-column: span 4;
    gap: 0.5rem;
  }
  header .inner__container .header__search {
    grid-row: 2/3;
    grid-column: span 6;
    gap: 0.5rem;
  }
  header .inner__container .header__info {
    grid-row: 2/3;
    grid-column: span 2;
    gap: 0.5rem;
  }
  .header__shopping-cart {
    width: 50%;
    top: 10%;
    right: 5rem;
  }
  main .inner__container .item-container .item {
    grid-column: span 3;
  }
  footer .inner__container .footer__bot {
    grid-column: span 12;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  body h1 {
    font-size: 40px;
  }
  body h2 {
    font-size: 22px;
  }
  body h3 {
    font-size: 20px;
  }
  body h4 {
    font-size: 18px;
    font-weight: 400;
  }
  body p {
    font-size: 16px;
  }
  body a {
    font-size: 16px;
  }
  .inner__container {
    max-width: calc(100% - 12rem);
  }
  header .inner__container {
    grid-template-areas: "x x x x x x x x x x x x x x x" "a a a . b b b b b b b . . c c";
  }
  header .inner__container .header__ticker__container {
    grid-column: span 15;
  }
  header .inner__container .header__logo {
    gap: 0.8rem;
    grid-area: a;
  }
  header .inner__container .header__search {
    gap: 0.8rem;
    grid-area: b;
  }
  header .inner__container .header__info {
    gap: 0.8rem;
    grid-area: c;
  }
  nav .inner__container .nav-btn {
    padding: 0.8rem 1rem;
  }
  .header__shopping-cart {
    width: 40%;
    top: 13%;
    right: 6rem;
  }
  main .inner__container .item-container {
    grid-template-columns: repeat(15, 1fr);
  }
  main .inner__container .item-container .item {
    grid-column: span 3;
  }
  .footer .inner__container .footer__middle .fa-sm {
    font-size: 1.25em;
  }
}
@media only screen and (min-width: 2000px) {
  .container {
    max-width: 2000px;
  }
  main .inner__container .item-container {
    gap: 5rem;
  }
}
.container {
  position: relative;
  justify-content: center;
  align-items: center;
  color: #e9c48e;
}

#order_form {
  padding: 2rem 1rem;
  margin: 0 auto;
  gap: 1.5rem;
  color: #f5f5f5;
}
#order_form h4 {
  color: #e9c48e;
}
#order_form input {
  background-color: #e9c48e;
}
#order_form .button {
  text-align: center;
}
#order_form .button #complete-btn {
  padding: 0.3rem 0.5rem;
  background: black;
  color: #e9c48e;
  border-left: 0.5px outset rgba(240, 234, 234, 0.527);
  border-top: 0.5px outset rgba(240, 234, 234, 0.527);
  border-right: none;
  border-bottom: none;
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(240, 234, 234, 0.527);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
}
#order_form .button #complete-btn:hover {
  background: #e9c48e;
  color: #f5f5f5;
}
#order_form .button #complete-btn:disabled:hover {
  padding: 0.3rem 0.5rem;
  background: black;
  color: #e9c48e;
  border-left: 0.5px outset rgba(240, 234, 234, 0.527);
  border-top: 0.5px outset rgba(240, 234, 234, 0.527);
  border-right: none;
  border-bottom: none;
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(240, 234, 234, 0.527);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
  cursor: default;
}
#order_form .user-info__field {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  gap: 0.5rem;
}
#order_form .pay-options {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  gap: 0.5rem;
  align-items: flex-start;
}
#order_form .pay-options div {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.2rem;
}
#order_form .gift-options {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  gap: 0.5rem;
  align-items: flex-start;
}
#order_form .gift-options div {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.2rem;
}

.order_confirm {
  position: absolute;
  top: 25%;
  height: 50vh;
  display: flex;
  align-items: flex-start;
  background: black;
  padding: 1rem;
  gap: 1rem;
}
.order_confirm .orderConfirm__info {
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
}
.order_confirm .orderConfirm__btn {
  padding: 0.3rem 0.5rem;
  background: black;
  color: #e9c48e;
  border-left: 0.5px outset rgba(240, 234, 234, 0.527);
  border-top: 0.5px outset rgba(240, 234, 234, 0.527);
  border-right: none;
  border-bottom: none;
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(240, 234, 234, 0.527);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
}
.order_confirm .orderConfirmOk__btn {
  padding: 0.3rem 0.5rem;
  background: black;
  color: #e9c48e;
  border-left: 0.5px outset rgba(240, 234, 234, 0.527);
  border-top: 0.5px outset rgba(240, 234, 234, 0.527);
  border-right: none;
  border-bottom: none;
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(240, 234, 234, 0.527);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
  margin-top: 3rem;
  align-self: center;
}

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