@font-face {
  font-family: "Lato";
  font-weight: normal;
  src:
    url("../../fonts/Lato/Lato-Light.ttf") format(TrueType);
}

@font-face {
  font-family: "Lato";
  font-weight: bold;
  src:
    url("../../fonts/Lato/Lato-Bold.ttf") format(TrueType);
}

@font-face {
  font-family: "Prestige Elite Std";
  src:
    url("../../fonts/PrestigeEliteStd-Bd.otf") format(OpenType);
}

/*
  1. Use a more-intuitive box-sizing model.
*/

*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/

* {
  margin: 0;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", "Helvetica", "Arial", sans-serif;
}

/*
  5. Improve media defaults
*/

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/*
  6. Remove built-in form typography styles
*/

input, button, textarea, select {
  font: inherit;
}

/*
  7. Avoid text overflows
*/

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*
  8. Create a root stacking context
*/

#root, #__next {
  isolation: isolate;
}

.container {
  max-width: 90rem; /* 800px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.masonry {   
  display: grid;   
  gap: 1em;   
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));   
  grid-template-rows: masonry; 
}

.grid {
  display: flex;
  gap: 1rem;
}

.grid-item {
  width: calc(100%/3);
  padding: .5rem;
}

.font-mono {
  font-family: "Prestige Elite Std", monospace;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.single-product div.product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {

.single-product div.product {
    grid-template-columns: 1fr 1fr;
    gap: 3rem
}
  }

.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
  width: 100%;
}

.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
  width: 100%;
}

.product-description {
  margin-top: 1rem;
}

.cart {
  display: flex;
  align-items: stretch;
  justify-content: start;
  margin-top: .3rem;
}

.cart .quantity input {
  padding-top: .3rem;
  padding-right: .2rem;
  padding-bottom: .3rem;
  padding-left: .2rem;
}

.variations_form.cart {
  flex-wrap: wrap;
  align-items: start;
}

/* th { */

/*   text-align: start; */

/* } */

.variations_form.cart select {
    min-width: auto !important;
  }

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
  color: inherit;
  font-weight: bold;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
  color: inherit;
}

.button, a.wc-block-components-button, input[type="submit"], input[type="reset"], input[type="button"] {
  border: none !important;
  border-radius: 0 !important;
  background-color: rgb(200, 216, 205) !important;
  color: rgb(0, 0, 0) !important;
  font-weight: bold;
  text-decoration: none;
}

.woocommerce-product-attributes.shop_attributes {
  font-family: "Prestige Elite Std", monospace;
  border: none !important;
  margin-top: 2rem;
}

.woocommerce-product-attributes.shop_attributes th, .woocommerce-product-attributes.shop_attributes td {
    text-align: start;
    font-style: normal !important;
    border: none !important;
  }

.woocommerce-product-attributes.shop_attributes th p, .woocommerce-product-attributes.shop_attributes td p {
      font-size: inherit;
    }

.comments-reviews {
  grid-column: span 1;
}

@media (min-width: 768px) {

.comments-reviews {
    grid-column: span 2
}
  }

.commentlist {
  list-style: none;
  padding: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin-left: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  border-radius: 0;
}

.woocommerce .star-rating span {
  color: #ffa600;
}

#reply-title {
  display: none;
}

#commentform {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {

#commentform {
    grid-template-columns: 1fr 1fr
}
  }

#commentform .form-submit {
    grid-column: 1;
  }

@media (min-width: 768px) {

#commentform .form-submit {
      grid-column: 2;
      grid-row: 5;
      margin-bottom: 12px !important
  }
    }

.comment-notes {
  grid-column: 1;
}

@media (min-width: 768px) {

.comment-notes {
    grid-column: 2;
    margin-top: 1.4rem !important
}
  }

.comment-form-rating {
  grid-column: 1;
}

@media (min-width: 768px) {

.comment-form-rating {
    grid-column: 2;
    margin-top: 1.4rem
}
  }

.comment-form-rating .stars {
    color: #ffa600;
  }

.comment-form-author,
.comment-form-email {
  grid-column: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {

.comment-form-author,
.comment-form-email {
    grid-column: 2
}
  }

.comment-form-comment {
  grid-column: 1;
  grid-row: auto;
}

@media (min-width: 768px) {

.comment-form-comment {
    grid-row: 1 / span 5
}
  }

.comment-form-comment textarea {
    width: 100%;
    height: auto !important;
    resize: none;
  }

.comment-form-cookies-consent {
  grid-column: 1;
}

@media (min-width: 768px) {

.comment-form-cookies-consent {
    grid-column: 2
}
  }

.comment-form-privacy-policy {
  grid-column: 1;
}

@media (min-width: 768px) {

.comment-form-privacy-policy {
    grid-column: 2;
    grid-row: 4
}
  }

#commentform input[type="checkbox"] {
    margin-right: .5rem;
  }

#commentform p:has(>input[type="checkbox"]) {
    display: flex;
    align-items: center;
  }

#commentform:has(.comment-form-author) {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {

#commentform:has(.comment-form-author) {
    grid-template-columns: 2fr 1fr 1fr
}
  }

#commentform:has(.comment-form-author) .comment-notes,
  #commentform:has(.comment-form-author) .comment-form-rating {
    grid-column: 1;
  }

@media (min-width: 768px) {

#commentform:has(.comment-form-author) .comment-notes,
  #commentform:has(.comment-form-author) .comment-form-rating {
      grid-column: 2 / span 2
  }
    }

#commentform:has(.comment-form-author) .comment-form-privacy-policy,
  #commentform:has(.comment-form-author) .comment-form-cookies-consent {
    grid-column: 1;
  }

@media (min-width: 768px) {

#commentform:has(.comment-form-author) .comment-form-privacy-policy,
  #commentform:has(.comment-form-author) .comment-form-cookies-consent {
      grid-column: 1 / span 1
  }
    }

#commentform:has(.comment-form-author) .comment-form-author {
    grid-column: 1;
  }

@media (min-width: 768px) {

#commentform:has(.comment-form-author) .comment-form-author {
      grid-column: 2
  }
    }

#commentform:has(.comment-form-author) .comment-form-email {
    grid-column: 1;
  }

@media (min-width: 768px) {

#commentform:has(.comment-form-author) .comment-form-email {
      grid-column: 3
  }
    }

@media (min-width: 768px) {

#commentform:has(.comment-form-author) .comment-form-comment textarea {
      padding-bottom: 5px
  }
    }

#commentform:has(.comment-form-author) .form-submit {
    grid-row: auto;
  }

@media (min-width: 768px) {

#commentform:has(.comment-form-author) .form-submit {
      grid-column: 3;
      text-align: right
  }
    }

.wc-block-components-product-metadata__description {
  display: none;
}

.woocommerce-message {
  background-color: transparent;
  border-top-color: rgb(200, 216, 205);
}

.woocommerce-message:before {
    color: rgb(200, 216, 205);
  }

.related.products {
  grid-column: span 1;
}

@media (min-width: 768px) {

.related.products {
    grid-column: span 2
}
  }

.legacy-itemprop-offers:has(> .woocommerce_de_versandkosten),
li.product:has(> .woocommerce_de_versandkosten) {
  display: flex;
  flex-wrap: wrap;
  container-type: inline-size;
}

.legacy-itemprop-offers:has(> .woocommerce_de_versandkosten) .woocommerce-loop-product__link, li.product:has(> .woocommerce_de_versandkosten) .woocommerce-loop-product__link {
    width: 100%;
  }

.legacy-itemprop-offers:has(> .woocommerce_de_versandkosten) .price, li.product:has(> .woocommerce_de_versandkosten) .price {
    width: 100%;
  }

@container (min-width: 175px) {
    .legacy-itemprop-offers:has(> .woocommerce_de_versandkosten) .woocommerce_de_versandkosten:before, li.product:has(> .woocommerce_de_versandkosten) .woocommerce_de_versandkosten:before {
      content: ", ";
    }
  }

.legacy-itemprop-offers:has(> .woocommerce_de_versandkosten) .shipping_de, li.product:has(> .woocommerce_de_versandkosten) .shipping_de {
    width: 100%;
  }

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
  width: 100%;
}

header .logo {
  width: 100%;
  max-width: 28rem; /* 450px */
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

header nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  font-size: 1.2rem;
}

header nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    gap: 2rem;
    padding: 0;
  }

header nav a {
    text-decoration: none;
    color: inherit;
  }

.header-upper {
  width: 100%;
  /* display: grid; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-upper .logo {
    /* grid-column: 1 / 1; */
    /* grid-row: 1 / 1; */
  }

.header-upper .cart-link {
    position: absolute;
    /* top: 0; */
    right: 1rem;
    transform: translateY(-25%);
  }

.header-upper .cart-link svg {
      width: 2rem;
      height: 2rem;
    }

@media(min-width: 520px) {
  header nav,
  header nav ul {
    flex-direction: row;
  }
}

p {
  font-size: 1.2rem;
}

p + p {
  margin-top: .6rem;
}

a {
  color: inherit;
}

body {
  /* background-color: #f2f1ed; */
  background-color: rgb(242, 241, 239);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
}

main, #primary {
  flex-grow: 1;
  width: 100%;
}

ul.products li.featured {
  grid-column-end: span 2;
  grid-row-end: span 2;
}

ul.products li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

article.post h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
  }

article.post> .thumbnail {
    width: auto;
    max-height: 90vh;
    margin-left: auto;
    margin-right: auto;
  }

article.post> .content {
    margin-top: 2rem;
  }

footer {
  margin-top: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #dad8d6;
}

footer ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
  }

footer ul a {
      text-decoration: none;
    }

[data-masonry="true"] .wp-block-image {
  padding: .5rem;
}

img.wpsmartcrop-image {
    display: block;
    width: 100%;
    height: 200px;
}
