/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Oswald', serif;
  font-size: 16px;
  font-weight: 400;
  background-color: #ffffff;
  color: #000000;
  overflow-x: hidden;
  overflow-y: auto;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: unset;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

.container {
  max-width: 1170px;
  width: min(100% - calc(30rem / 16));
  margin: 0 auto;
}

/* Header */
.header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 15px;
  padding: 15px;
}

.header-index {
  background-image: url('../assets/images/home-main-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: calc(100dvh - 30px);
  margin: 15px;
  padding: 15px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo {
  width: 152px;
}

.header-logo > img {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-cart {
  position: relative;
  padding-right: 18px;
}

.headert-cart-quantity {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  color: #fff;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  font-family: 'Roboto', serif;
  font-size: 14px;
  line-height: 14px;
}

.header-cart > img {
  width: 20px;
}

.header-navbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.header-navlink {
  padding: 10px 5px;
  border-bottom: 3px solid transparent;
  display: inline-block;
  font-size: 18px;
}

.header-navlink:hover {
  border-color: #000;
}

.header-navlink.active {
  border-color: #000;
}

.header-hamburger-btn {
  display: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.header-hamburger-btn > img {
  width: 20px;
}

/* About-Section */
.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-right {
  max-width: 650px;
  padding: 50px;
}

.about-title {
  font-family: 'Special Elite', serif;
  max-width: 60%;
  border-bottom: 2px solid #000;
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.1;
}

.about-text {
  font-family: 'Roboto', serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
}

.about-btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  background: #000;
  color: #fff;
  padding: 15px 40px;
  border-radius: 0;
  border: 2px solid #000;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  margin-top: 10px;
}

.about-btn:hover {
  border-color: #000;
  color: #000;
  background: transparent;
}

.about-left {
  width: calc(60% + ((100vw - 1170px) / 2) - 15px);
  margin-left: calc(((100vw - 1170px) / -2) + 24px);
}

.about-left img {
  width: 100%;
}

/* Video-Section */
.video-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.video-title {
  max-width: 360px;
  margin: 0 auto;
  font-family: 'Special Elite', serif;
  border-bottom: 2px solid #000;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.video-box {
  width: 50%;
}

.video-box video {
  width: 100%;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

/* HIW-Section */
.hiw {
  background: #fffcf3;
  padding: 50px 0;
  text-align: center;
  border: 15px solid #fff;
  border-bottom: none;
}

.hiw-title {
  margin: 20px auto 50px;
  max-width: 300px;
  border-bottom: 2px solid #000;
  font-family: 'Special Elite', serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.hiw-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.hiw-card {
  width: 200px;
}

.hiw-card > img {
  width: 200px;
  margin: 0 auto;
}

.hiw-card-title {
  font-family: 'Special Elite', cursive;
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0;
  text-align: center;
}

.hiw-card-text {
  font-family: 'Roboto', sans-serif;
  color: #000;
  font-weight: 300;
  font-size: 14px;
  text-align: center;
  line-height: 2;
}

.hiw-btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  background: #000;
  color: #fff;
  padding: 15px 40px;
  border-radius: 0;
  border: 2px solid #000;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  margin-top: 32px;
}

.hiw-btn:hover {
  border-color: #000;
  color: #000;
  background: transparent;
}

/* Ingredients-Section */
.ingredients {
  padding: 15px 0;
}

.ingredients-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ingredients-left {
  max-width: 360px;
}

.ingredients-title {
  font-family: 'Special Elite', serif;
  border-bottom: 2px solid #000;
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.1;
}

.ingredients-text {
  font-family: 'Roboto', serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
}

.ingredients-btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  background: #000;
  color: #fff;
  padding: 15px 40px;
  border-radius: 0;
  border: 2px solid #000;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  margin-top: 10px;
}

.ingredients-btn:hover {
  border-color: #000;
  color: #000;
  background: transparent;
}

.ingredients-right {
  width: calc(60% + ((100vw - 1170px) / 2) - 15px);
  margin-right: calc(((100vw - 1170px) / -2) + 24px);
}

.ingredients-right img {
  width: 100%;
}

/* Good-Section */
.good {
  background: #fff1de;
  padding: 50px 0;
  text-align: center;
  border: 15px solid #fff;
  border-bottom: none;
}

.good-title {
  margin: 20px auto 50px;
  max-width: 300px;
  border-bottom: 2px solid #000;
  font-family: 'Special Elite', serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.good-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.good-item {
  max-width: 200px;
  margin: 0 auto 30px;
}

.good-item > img {
  width: 14px;
  margin: 0 auto;
}

.good-item-title {
  font-family: 'Special Elite', cursive;
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0;
  text-align: center;
}

/* Why-Section */
.why {
  background: #fffcf3;
  padding: 100px 0;
  position: relative;
  border: 15px solid #fff;
  border-bottom: none;
}

.why-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.why-left {
  width: 41.5%;
}

.why-title {
  margin: 20px auto 50px;
  max-width: 300px;
  border-bottom: 2px solid #000;
  font-family: 'Special Elite', serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.why-text {
  font-family: 'Roboto', serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 28px;
  font-style: italic;
}

.why-author {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 400;
}

.why-right {
  width: calc(60% + ((100vw - 1170px) / 2) - 15px);
  margin-right: calc(((100vw - 1170px) / -2) + 24px);
}

.why-right img {
  width: 100%;
}

/* Footer */
.footer {
  padding: 15px;
}

.footer-newsletter {
  border: 1px solid #dce5dd;
  text-align: center;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.footer-newsletter-title {
  font-family: 'Special Elite', cursive;
  margin: 20px 0 15px;
  font-size: 24px;
  text-align: right;
}

.footer-form {
  display: flex;
}

.footer-field {
  width: 250px;
}

.footer-field > input {
  width: 100%;
  max-width: 250px;
  border: 1px solid #dce5dd;
  border-right: none;
  padding: 12px 15px;
  font-family: 'Roboto', serif;
  font-size: 14px;
  font-weight: 300;
  color: #000;
}

.footer-field > input:focus,
.footer-field > input:focus-visible {
  outline: none;
}

.footer-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background-color: #000000;
  border: 0;
  color: white;
  cursor: pointer;
  font-size: 28px;
  line-height: 10px;
}

.footer-content {
  padding: 30px 0;
  display: flex;
  gap: 30px;
}

.footer-item {
  width: 380px;
}

.footer-item > img {
  width: 150px;
  margin-bottom: 20px;
}

.footer-item-text {
  font-family: 'Roboto', serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  color: #000;
  max-width: 250px;
}

.footer-item-title {
  font-family: 'Special Elite', cursive;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
}

.footer-navbar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-navlink {
  font-family: 'Roboto', serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  color: #000;
}

.footer-navlink:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-family: 'Roboto', serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  color: #000;
}

.footer-link > span {
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

.footer-bottom-link {
  font-family: 'Roboto', serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  color: #000;
}

.footer-bottom-link:hover {
  text-decoration: underline;
}

/* Search-Button */
.search-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 45.4%;
  width: 100px;
  height: 100px;
  border-style: solid;
  border-width: 1.5px;
  border-color: #702963;
  background-color: #c5afc9;
  position: fixed;
  overflow: hidden;
  z-index: 2147483647;
  cursor: pointer;
  border-radius: 50% !important;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1), 0px 2px 8px rgba(0, 0, 0, 0.15),
    0px 4px 8px rgba(0, 0, 0, 0.05);
  opacity: 1;
}

.search-btn > img {
  width: 24px;
}

/* Screen Menu */
.screen-menu {
  position: fixed;
  inset: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
  color: #000;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.screen-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.screen-menu-navlink {
  width: fit-content;
  font-family: 'Oswald', sans-serif;
  padding: 10px 5px;
  border-bottom: 3px solid transparent;
  display: inline-block;
  color: #000;
  font-size: 18px;
}

.screen-menu-navlink:hover {
  border-color: #000;
}

.screen-menu-navlink.active {
  border-color: #000;
}

.screen-menu-close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 30px;
}

.screen-menu-close > img {
  width: 20px;
}

/* Page-Search */
.page-search {
  position: fixed;
  inset: 0;
  min-height: 100dvh;
  background-color: rgba(249, 249, 249, 0.95);
  color: #000;
}

.page-search-field {
  height: 74px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-search-field > input {
  max-width: 767px;
  width: 98%;
  margin: 0 auto;
  height: 42px;
  padding: 10px;
  border: 0;
  background-color: #fff;
  color: #333;
  font-family: 'Roboto', serif;
  font-size: 18px;
  line-height: 1.3;
}

.page-search-field > input:focus,
.page-search-field > input:focus-visible {
  outline: none;
}

.hidden {
  display: none;
}

/* Media Queries */
@media (max-width: 1400px) {
  .header-navbar {
    display: none;
  }

  .header-hamburger-btn {
    display: flex;
  }
}

@media (max-width: 1170px) {
  .about-right {
    max-width: 50%;
  }

  .about-left {
    width: 50%;
    margin-left: 0;
  }

  .ingredients-right {
    width: 60%;
    margin-right: 0;
  }

  .why-right {
    width: 50%;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .header {
    background-image: url('../assets/images/home-main-mobile-bg.jpg');
  }

  .about-content {
    flex-direction: column;
  }

  .about-left {
    width: 100%;
    order: 2;
  }

  .about-right {
    max-width: 100%;
    padding: 25px 0;
  }

  .video {
    padding-top: 15px;
  }

  .video-box {
    width: 100%;
  }

  .video-box video {
    height: 100%;
  }

  .video-content {
    flex-direction: column;
  }

  .video-title {
    order: 2;
  }

  .hiw-cards {
    flex-wrap: wrap;
  }

  .hiw-card {
    width: auto;
    flex: 1 1 33%;
  }

  .ingredients-content {
    flex-direction: column;
  }

  .ingredients-left {
    max-width: 100%;
    padding: 25px 0;
  }

  .ingredients-right {
    width: 100%;
  }

  .good-content {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
  }

  .why {
    padding: 50px 0;
  }

  .why-content {
    flex-direction: column;
  }

  .why-title {
    margin: 20px auto;
  }

  .why-left {
    width: 100%;
  }

  .why-text {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .why-right {
    width: 100%;
  }

  .footer-newsletter {
    flex-direction: column;
    gap: 0;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-bottom {
    justify-content: center;
  }
}

main .featured p {
  display: inline-block;
  margin: 0;
  width: 1050px;
  font-size: 24px;
  color: #FFFFFF;
}

main .recentlyadded h2 {
  display: block;
  font-weight: normal;
  margin: 0;
  padding: 40px 0;
  font-size: 24px;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid #EEEEEE;
}

main .recentlyadded .products, main .products .products-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1px 0 0 0;
}

main .recentlyadded .products .product, main .products .products-wrapper .product {
  display: block;
  overflow: hidden;
  text-decoration: none;
  width: 25%;
  padding-bottom: 60px;
}

main .recentlyadded .products .product img, main .products .products-wrapper .product img {
  transform: scale(1);
  transition: transform 1s;
}

main .recentlyadded .products .product .name, main .products .products-wrapper .product .name {
  display: block;
  color: #555555;
  padding: 20px 0 2px 0;
}

main .recentlyadded .products .product .price, main .products .products-wrapper .product .price {
  display: block;
  color: #999999;
}

main .recentlyadded .products .product .rrp, main .products .products-wrapper .product .rrp {
  color: #BBBBBB;
  text-decoration: line-through;
}

main .recentlyadded .products .product:hover img, main .products .products-wrapper .product:hover img {
  transform: scale(1.05);
  transition: transform 1s;
}

main .recentlyadded .products .product:hover .name, main .products .products-wrapper .product:hover .name {
  text-decoration: underline;
}

main > .product {
  display: flex;
  padding: 40px 0;
}

main > .product h1 {
  font-size: 34px;
  font-weight: normal;
  margin: 0;
  padding: 20px 0 10px 0;
}

main > .product .product-img-large {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
}

main > .product .product-small-imgs {
  display: flex;
  flex-flow: wrap;
}

main > .product .product-small-imgs .product-img-small {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 31%;
  border: 1px solid #EEEEEE;
  cursor: pointer;
  margin: 20px 12px 0 0;
}

main > .product .product-small-imgs .product-img-small:nth-child(3n) {
  margin-right: 0;
}

main > .product .product-small-imgs .product-img-small.selected {
  border: 1px solid #c8c8c8;
}

main > .product .product-img-large img, main > .product .product-img-small img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

main > .product .product-imgs {
  flex: 1;
  padding: 15px;
}

main > .product .product-wrapper {
  padding-left: 25px;
  flex: 1;
}

main > .product .prices {
  display: flex;
}

main > .product .price {
  display: block;
  font-size: 22px;
  color: #999999;
}

main > .product .rrp {
  color: #BBBBBB;
  text-decoration: line-through;
  font-size: 22px;
  padding-left: 10px;
}

main > .product form {
  display: flex;
  flex-flow: column;
  margin: 25px 0 40px 0;
}

main > .product form label {
  padding-bottom: 10px;
}

main > .product form select, main > .product form input[type="number"], main > .product form input[type="text"], main > .product form input[type="datetime-local"] {
  width: 400px;
  padding: 8px 10px;
  margin-bottom: 15px;
  border: 1px solid #d5d5d5;
  color: #555555;
  border-radius: 4px;
  background-color: #fff;
}

main > .product form .radio-checkbox {
  display: flex;
  flex-flow: wrap;
  max-width: 400px;
}

main > .product form .radio-checkbox input {
  margin: 0 10px 10px 0;
}

main > .product form .radio-checkbox label {
  padding-right: 15px;
}

main > .product form .btn {
  margin-top: 10px;
  width: 400px;
  text-transform: uppercase;
}

main > .products h1 {
  display: block;
  font-weight: normal;
  margin: 0;
  padding: 40px 0;
  font-size: 24px;
  text-align: center;
  width: 100%;
}

main > .products .products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}

main > .products .products-header p {
  margin: 0;
}

main > .products .products-header label {
  padding-left: 20px;
}

main > .products .products-header select {
  padding: 5px;
  margin-left: 15px;
  border: 1px solid #d5d5d5;
  color: #555555;
  border-radius: 4px;
}

main > .products .buttons {
  text-align: right;
  padding-bottom: 40px;
}

main > .products .buttons a:first-child {
  margin-right: 5px;
}

main .cart h1, main .myaccount h1 {
  display: block;
  font-weight: normal;
  margin: 0;
  padding: 40px 0;
  font-size: 24px;
  text-align: center;
  width: 100%;
}

main .cart table, main .myaccount table {
  width: 100%;
}

main .cart table thead td, main .myaccount table thead td {
  padding: 30px 0;
  border-bottom: 1px solid #EEEEEE;
}

main .cart table thead td:last-child, main .myaccount table thead td:last-child {
  text-align: right;
}

main .cart table tbody td, main .myaccount table tbody td {
  padding: 20px 0;
  border-bottom: 1px solid #EEEEEE;
}

main .cart table tbody td:last-child, main .myaccount table tbody td:last-child {
  text-align: right;
}

main .cart table .img, main .myaccount table .img {
  width: 80px;
}

main .cart table .remove, main .myaccount table .remove {
  color: #777777;
  font-size: 12px;
  padding-top: 3px;
}

main .cart table .remove:hover, main .myaccount table .remove:hover {
  text-decoration: underline;
}

main .cart table .price, main .cart table .options, main .myaccount table .price, main .myaccount table .options {
  color: #999999;
}

main .cart table .options, main .myaccount table .options {
  font-size: 14px;
  max-width: 200px;
}

main .cart table a, main .myaccount table a {
  text-decoration: none;
  color: #555555;
}

main .cart table input[type="number"], main .myaccount table input[type="number"] {
  width: 68px;
  padding: 10px;
  border: 1px solid #d5d5d5;
  color: #555555;
  border-radius: 4px;
}

main .cart .total, main .myaccount .total {
  text-align: right;
  padding: 30px 0 40px 0;
}

main .cart .total .text, main .myaccount .total .text {
  padding-right: 40px;
  font-size: 18px;
}

main .cart .total .price, main .myaccount .total .price {
  font-size: 18px;
  color: #999999;
}

main .cart .total .note, main .myaccount .total .note {
  display: block;
  padding-top: 15px;
}

main .cart .buttons, main .myaccount .buttons {
  text-align: right;
  padding-bottom: 40px;
}

main .cart .buttons .btn, main .myaccount .buttons .btn {
  margin: 0 0 10px 5px;
}

main .placeorder h1 {
  display: block;
  font-weight: normal;
  margin: 0;
  padding: 40px 0;
  font-size: 24px;
  text-align: center;
  width: 100%;
}

main .placeorder p {
  text-align: center;
}

main .checkout h1, main .myaccount h1 {
  display: block;
  font-weight: normal;
  margin: 0;
  padding: 40px 0;
  font-size: 24px;
  text-align: center;
  width: 100%;
}

main .checkout .shipping-details, main .myaccount .shipping-details {
  width: 600px;
  display: flex;
  flex-flow: wrap;
  padding-bottom: 40px;
}

main .checkout .shipping-details h2, main .myaccount .shipping-details h2 {
  width: 100%;
  font-weight: normal;
  font-size: 20px;
  padding: 30px 0 20px 0;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #EEEEEE;
}

main .checkout .shipping-details h2:first-child, main .myaccount .shipping-details h2:first-child {
  padding: 20px 0 20px 0;
}

main .checkout .shipping-details label, main .myaccount .shipping-details label {
  display: block;
  padding: 15px 0 10px 0;
}

main .checkout .shipping-details .row1, main .checkout .shipping-details .row2, main .myaccount .shipping-details .row1, main .myaccount .shipping-details .row2 {
  width: 50%;
  display: inline-block;
}

main .checkout .shipping-details .row1, main .myaccount .shipping-details .row1 {
  padding-right: 10px;
}

main .checkout .shipping-details .row2, main .myaccount .shipping-details .row2 {
  padding-left: 10px;
}

main .checkout .container {
  display: flex;
  align-items: flex-start;
}

main .checkout .shipping-details {
  margin-right: 25px;
  width: 100%;
}

main .checkout .payment-methods {
  display: flex;
  flex-flow: wrap;
  width: 100%;
  justify-content: space-between;
}

main .checkout .payment-methods label {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  height: 60px;
  width: 159px;
  margin: 10px;
  font-weight: 500;
  color: #434f61;
  padding: 0;
  cursor: pointer;
}

main .checkout .payment-methods label .fa-stripe {
  color: #6671E4;
}

main .checkout .payment-methods label:nth-child(2), main .checkout .payment-methods label:nth-child(8) {
  margin-left: 0;
}

main .checkout .payment-methods label:nth-child(3n) {
  margin-right: 0;
}

main .checkout .payment-methods label:hover {
  border: 1px solid #d5d5d5;
}

main .checkout .payment-methods input {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

main .checkout .payment-methods input:checked + label {
  border: 2px solid #7ed1a1;
}

main .checkout .cart-details {
  width: 90%;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin-left: 25px;
  margin-bottom: 50px;
}

main .checkout .cart-details h2 {
  margin: 0;
  padding: 23px 15px;
  font-weight: 500;
  border-bottom: 1px solid #EEEEEE;
}

main .checkout .cart-details table {
  width: 100%;
  padding: 20px;
}

main .checkout .cart-details table .price {
  text-align: right;
  font-weight: 500;
}

main .checkout .cart-details table td {
  padding: 5px;
}

main .checkout .cart-details .discount-code {
  padding: 0 23px 23px 23px;
}

main .checkout .cart-details .discount-code .result {
  display: block;
  padding-top: 10px;
}

main .checkout .cart-details .shipping-methods {
  border-top: 1px solid #EEEEEE;
  padding: 23px;
}

main .checkout .cart-details .shipping-methods h3 {
  margin: 0;
  padding: 0 0 10px;
  font-weight: 500;
}

main .checkout .cart-details .shipping-methods .shipping-method {
  padding-top: 10px;
  margin: 0;
}

main .checkout .cart-details .total {
  border-top: 1px solid #EEEEEE;
  display: flex;
  justify-content: space-between;
  padding: 23px;
  font-size: 18px;
  font-weight: 500;
}

main .checkout .cart-details .alt {
  font-size: 14px;
  color: #a6aab1;
  padding-left: 5px;
}

main .checkout .cart-details .summary {
  border-top: 1px solid #EEEEEE;
  padding: 23px 0;
}

main .checkout .cart-details .summary div {
  display: flex;
  justify-content: space-between;
  padding: 10px 23px;
}

main .checkout .cart-details .summary div span {
  font-size: 14px;
  font-weight: 500;
}

main .checkout .cart-details .summary .discount span {
  color: #de0000;
}

main .checkout .cart-details .buttons {
  margin: 0 23px 23px 23px;
}

main .checkout .cart-details .buttons .btn {
  width: 100%;
}

main .myaccount {
  display: flex;
  flex-flow: wrap;
}

main .myaccount .menu {
  padding-right: 35px;
  width: 300px;
}

main .myaccount .menu a {
  display: block;
  text-decoration: none;
  color: #888888;
  padding: 15px 0;
  border-bottom: 1px solid #f6f6f6;
}

main .myaccount .menu a:hover {
  color: #3c3c3c;
}

main .myaccount .myorders, main .myaccount .mydownloads, main .myaccount .settings {
  flex: 1;
  padding-bottom: 50px;
}

main .myaccount .myorders .order {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  margin: 30px 0 30px 0;
}

main .myaccount .myorders .order .order-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f6f6f6;
}

main .myaccount .myorders .order .order-header > div {
  display: flex;
  padding: 15px;
}

main .myaccount .myorders .order .order-header > div div {
  padding-right: 35px;
}

main .myaccount .myorders .order .order-header > div div:last-child {
  padding-right: 0;
}

main .myaccount .myorders .order .order-header > div div span {
  display: block;
  font-size: 14px;
}

main .myaccount .myorders .order .order-items {
  padding: 15px;
}

main .myaccount .myorders .order .order-items table {
  margin: 0;
  padding: 0;
}

main .myaccount .settings form {
  max-width: 400px;
}

main .myaccount .settings form .btn {
  margin-top: 25px;
}

main .myaccount form {
  width: 100%;
}

main .myaccount h2 {
  width: 100%;
  font-weight: normal;
  font-size: 20px;
  padding: 30px 0 20px 0;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #EEEEEE;
}

main .myaccount table {
  padding-bottom: 40px;
}

main .myaccount table tr:last-child td {
  border-bottom: 0;
}

main .myaccount table a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border: 1px solid #EEEEEE;
  border-radius: 4px;
  padding: 0 10px;
  font-size: 14px;
  color: #de0000;
  margin: 0 5px 5px 0;
}

main .myaccount table a:hover {
  color: #ab0000;
}

main .myaccount table a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding-right: 10px;
  margin-right: 10px;
  height: 100%;
  border-right: 1px solid #EEEEEE;
}

main .myaccount table .name {
  word-break: break-all;
}

main .myaccount .login-register {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 40px;
}

main .myaccount .login-register h1 {
  text-align: left;
  padding-top: 15px;
}

main .myaccount .login-register .login {
  width: 100%;
  border-right: 1px solid #f6f6f6;
  padding-right: 45px;
}

main .myaccount .login-register .register {
  width: 100%;
  padding-left: 45px;
}

main .myaccount .login-register .btn {
  margin-top: 25px;
}

main p.error {
  color: red;
}

.img-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.img-modal div {
  position: absolute;
  display: flex;
  flex-flow: column;
  width: 800px;
  height: 800px;
  max-width: 90%;
  max-height: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  padding: 15px;
}

.img-modal div a {
  display: inline-flex;
  align-self: flex-end;
  text-decoration: none;
  font-size: 34px;
  line-height: 26px;
  color: #bbbbbb;
}

.img-modal div a:hover {
  color: #a2a2a2;
}

.img-modal div img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding-top: 20px;
  padding-bottom: 25px;
}

.btn {
  text-decoration: none;
  background: #4b505c;
  border: 0;
  color: #FFFFFF;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
}

.btn:hover {
  background: #444954;
}

.btn:disabled {
  background: #ddd;
}

.form-label {
  display: block;
  padding: 20px 0 10px 0;
}

.form-field {
  width: 100%;
  padding: 10px;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  background-color: #fff;
}

footer {
  position: absolute;
  bottom: 0;
  border-top: 1px solid #EEEEEE;
  padding: 20px 0;
  width: 100%;
}

footer a {
  text-decoration: none;
  color: #555555;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive CSS below */
@media screen and (max-width: 1050px) {
  .rhide {
    display: none;
  }
  .content-wrapper {
    width: 100%;
    padding: 0 10px;
  }
  header {
    justify-content: space-between;
  }
  header h1 {
    font-size: 16px;
    flex-basis: auto;
  }
  header nav {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 1px);
    width: 100%;
    background-color: #FFFFFF;
  }
  header nav a {
    display: block;
    padding: 10px 12px;
    margin: 0;
    border-bottom: 1px solid #f6f6f6;
  }
  header .link-icons {
    display: inline-flex;
    width: 100px;
  }
  header .link-icons .responsive-toggle {
    display: block;
  }
  header .link-icons .search input {
    max-width: 150px;
  }
  main .recentlyadded .products, main .products .products-wrapper {
    justify-content: center;
  }
  main .recentlyadded .products .product, main .products .products-wrapper .product {
    width: auto;
  }
  main .featured {
    height: 300px;
  }
  main .featured h2 {
    font-size: 48px;
    width: 100%;
    padding: 0 10px;
  }
  main .featured p {
    font-size: 22px;
    width: 100%;
    padding: 0 10px;
  }
  main > .products .products-header {
    flex-flow: column;
  }
  main > .products .products-header p {
    padding-bottom: 10px;
  }
  main > .products .products-header form {
    display: flex;
    flex-flow: column;
  }
  main > .products .products-header form label {
    padding-top: 15px;
  }
  main > .product {
    padding: 0 10px;
    flex-flow: column;
  }
  main > .product .product-imgs {
    padding: 20px 10px 0 10px;
  }
  main > .product .product-imgs .product-img-large {
    height: 300px;
  }
  main > .product .product-imgs .product-small-imgs .product-img-small {
    height: 80px;
    flex-basis: 30%;
  }
  main > .product form input[type="number"], main > .product form input[type="text"], main > .product form input[type="datetime-local"], main > .product form input[type="submit"], main > .product form select {
    width: 100%;
  }
  main > .product .product-wrapper {
    padding: 0;
  }
  main .cart table input[type="number"] {
    width: 40px;
  }
  main .checkout .container, main .myaccount .container {
    flex-flow: column;
  }
  main .checkout .shipping-details .payment-methods, main .myaccount .shipping-details .payment-methods {
    flex-flow: column;
  }
  main .checkout .shipping-details .payment-methods label, main .myaccount .shipping-details .payment-methods label {
    margin: 0 0 10px 0;
  }
  main .checkout .cart-details, main .myaccount .cart-details {
    margin: 0 0 40px 0;
    width: 100%;
  }
  main .checkout form, main .myaccount form {
    width: 100%;
  }
  main .myaccount .login-register {
    flex-flow: column;
  }
  main .myaccount .login-register .login {
    border-right: 0;
    padding: 10px;
  }
  main .myaccount .login-register .register {
    padding: 10px;
  }
  main .myaccount .menu {
    width: 100%;
    padding-right: 0;
  }
}

