@font-face {
  font-family: "ZonaPro";
  src: url("../fonts/ZonaPro-Regular.woff2") format("woff2"), url("../fonts/ZonaPro-Regular.woff") format("woff"), url("../fonts/ZonaPro-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ZonaPro";
  src: url("../fonts/ZonaPro-SemiBold.woff2") format("woff2"), url("../fonts/ZonaPro-SemiBold.woff") format("woff"), url("../fonts/ZonaPro-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ZonaPro";
  src: url("../fonts/ZonaPro-Bold.woff2") format("woff2"), url("../fonts/ZonaPro-Bold.woff") format("woff"), url("../fonts/ZonaPro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ZonaPro";
  src: url("../fonts/ZonaPro-ExtraBold.woff2") format("woff2"), url("../fonts/ZonaPro-ExtraBold.woff") format("woff"), url("../fonts/ZonaPro-ExtraBold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
html,
body {
  font-family: ZonaPro, Arial, Helvetica, sans-serif;
  width: 100%;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  text-transform: uppercase;
  font-weight: bold;
}

hr {
  background-color: #e6e6e6;
  height: 2px;
  border: none;
}

h1,
h2,
h3 {
  font-weight: 900;
  line-height: 1.25;
  margin: 1.5rem 0;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
}

p {
  line-height: 1.25;
  margin: 1rem 0;
}

.nomad-primary-color {
  color: #dc005a;
}

.w1024 {
  max-width: 980px;
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1200px !important;
  }
}
.nomad-image {
  display: block;
  position: relative;
}
.nomad-image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #dc005a;
  transform: translate(-10px, 10px);
  z-index: 1;
}
.nomad-image img {
  display: block;
  position: relative;
  z-index: 2;
}

.cta-actions {
  text-align: center;
  padding: 20px 0;
}
.cta-actions .cta-primary {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  font-weight: bold;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  background-color: #dc005a;
  padding: 0 20px;
  text-align: center;
  min-width: 150px;
  transition: all 0.2s linear;
}
.cta-actions .cta-primary:hover {
  background-color: black;
}
.cta-actions .cta-butcher {
  background-color: #a63325;
}
.cta-actions .cta-butcher:hover {
  background-color: black;
}

header#header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  width: 100%;
}
header#header .head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header#header div.logo {
  width: 140px;
  text-align: center;
  flex-grow: 0;
  flex-shrink: 0;
}
header#header nav {
  display: inline-block;
  width: auto;
}
header#header nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
header#header nav ul li {
  display: inline-block;
}
header#header nav ul li a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  color: black;
  font-size: 12px;
  padding: 4px 8px;
  position: relative;
  display: block;
}
header#header nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  border-bottom: 2px solid #dc005a;
  width: 0%;
  left: 50%;
  transition: all 0.2s linear;
}
header#header nav ul li a:hover::after {
  width: 100%;
  left: 0;
}
header#header .nomad-cart {
  margin-left: 10px;
  padding: 10px;
  border-radius: 10px;
  background-color: #dc005a;
  position: relative;
  color: white;
  font-weight: bold;
  text-decoration: none;
}
header#header .nomad-cart span {
  display: inline-block;
  margin-left: 5px;
}
header#header .nomad-user {
  margin-left: 10px;
  padding: 10px;
  border-radius: 10px;
  background-color: #dc005a;
  position: relative;
  color: white;
  font-weight: bold;
  text-decoration: none;
}
header#header .nomad-user span {
  display: inline-block;
  margin-left: 5px;
}

@media screen and (max-width: 768px) {
  header#header .head {
    max-width: 90%;
  }
  header#header .head .logo {
    margin-right: 20px;
  }
}
@media screen and (max-width: 600px) {
  header#header nav {
    display: none;
  }
}
.nomad-page-template {
  background-color: #fafafa;
  padding: 40px 0;
}
.nomad-page-template .page-body {
  border-radius: 30px;
  background-color: white;
  padding: 30px;
}
.nomad-page-template .page-body h1 {
  margin-top: 0;
  color: #dc005a;
}
.nomad-page-template .page-404 {
  padding: 40px 80px;
  min-height: 600px;
}
.nomad-page-template .page-404 .page-text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

footer#footer {
  background-color: white;
  min-height: 250px;
  padding: 80px 0;
}
footer#footer hr.primary {
  background-color: #dc005a;
  opacity: 100%;
  height: 1px;
}
footer#footer .footer h3 {
  margin-bottom: 40px;
}
footer#footer .footer nav ul li {
  padding: 10px 0px;
}
footer#footer .footer nav ul li a {
  color: black;
  text-decoration: none;
  transition: all 0.2s linear;
}
footer#footer .footer nav ul li a:hover {
  color: #dc005a;
}
footer#footer .footer .call-button {
  padding: 15px 20px;
  border-radius: 5px;
  background-color: #dc005a;
  color: white;
  display: flex;
  max-width: 220px;
  gap: 10px;
  transition: all 0.2s linear;
  float: right;
}
footer#footer .footer .call-button:hover {
  background-color: #b53f2d !important;
}
footer#footer .copy {
  text-align: center;
  color: #808080;
  padding: 20px 15px;
  margin-top: 40px;
  font-size: 12px;
  line-height: 1.5;
}
footer#footer ul.social-links {
  display: flex;
  justify-content: end;
  gap: 15px;
}
footer#footer ul.social-links li {
  display: inline-block;
}
footer#footer ul.social-links li img {
  width: 34px;
  height: 34px;
}

@media screen and (max-width: 1024px) {
  footer#footer .footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  footer#footer .footer .email-field {
    width: 100%;
  }
  footer#footer .footer .col-1 {
    width: 100%;
  }
  footer#footer .footer .col-2 {
    padding: 0 20px;
    width: 90%;
    max-width: 360px;
    min-width: 300px;
    flex-grow: 0;
  }
  footer#footer .footer .col-3 {
    padding: 0 20px;
    width: 90%;
    max-width: 360px;
    min-width: 300px;
    flex-grow: 0;
  }
}
.entry-content {
  font-size: 14px;
  line-height: 1.4;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-weight: bold;
  text-transform: uppercase;
}
.entry-content p {
  margin: 1rem 0;
}
.entry-content strong,
.entry-content b {
  font-weight: bold;
}
.entry-content ul {
  list-style: disc;
  padding-left: 15px;
}

.nomad-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.nomad-hero .container {
  padding: 40px 0;
  height: 100%;
}
.nomad-hero .overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
.nomad-hero.theme-dark .container {
  color: white;
}
.nomad-hero.theme-dark .overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.nomad-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #2a2c67;
  padding: 60px 0;
}
.nomad-banner .container .content h1 {
  font-size: 40px;
  text-transform: none;
  margin: 0;
}
.nomad-banner .container .content h1,
.nomad-banner .container .content h2,
.nomad-banner .container .content h3 {
  color: white;
  font-weight: 700;
  margin: 0;
}
.nomad-banner .container .content strong,
.nomad-banner .container .content b {
  color: #dc005a;
}

@media screen and (max-width: 1024px) {
  .nomad-banner .container .content h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .nomad-banner {
    padding: 80px 0;
  }
  .nomad-banner .container .content h1 {
    font-size: 22px;
  }
}
.nomad-text-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
  padding: 60px 0;
}
.nomad-text-banner .container .content h1,
.nomad-text-banner .container .content h2,
.nomad-text-banner .container .content h3 {
  text-transform: uppercase;
  color: white;
  font-weight: 700;
  color: #2a2c67;
}
.nomad-text-banner .container .content strong,
.nomad-text-banner .container .content b {
  color: #dc005a;
}
.nomad-text-banner .container .content .button {
  border-radius: 5px;
  background-color: #2a2c67;
  color: white;
  display: inline-block;
  padding: 15px 20px;
  text-decoration: none;
  transition: all 0.2s linear;
  margin-top: 15px;
}
.nomad-text-banner .container .content .button:hover {
  background-color: #dc005a;
}

.nomad-services .content {
  text-align: center;
  display: flex;
  min-height: 400px;
  padding: 40px;
  align-items: center;
  background-color: #f4f4f7;
}
.nomad-services .content h1,
.nomad-services .content h2,
.nomad-services .content h3 {
  text-transform: uppercase;
  color: white;
  font-weight: 700;
  color: #2a2c67;
}
.nomad-services .content .cont {
  display: inline-block;
  max-width: 700px;
  width: 100%;
}
.nomad-services .content .cont .button {
  border-radius: 5px;
  background-color: #2a2c67;
  color: white;
  display: inline-block;
  padding: 15px 20px;
  text-decoration: none;
  transition: all 0.2s linear;
  margin-top: 15px;
}
.nomad-services .content .cont .button:hover {
  background-color: #dc005a;
}
.nomad-services .image {
  height: 100%;
  background-size: cover;
  background-position: center;
}
.nomad-services .order-md-first .content {
  justify-content: end;
}

@media screen and (max-width: 768px) {
  .nomad-services .image {
    aspect-ratio: 2;
    width: 100%;
  }
}
.nomad-featured-post {
  background-color: white;
}
.nomad-featured-post .image {
  background-size: cover;
  background-position: center;
}
.nomad-featured-post h1,
.nomad-featured-post h2,
.nomad-featured-post h3 {
  color: #a63325;
}
.nomad-featured-post .post-content {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}
.nomad-featured-post .post-content > .cont {
  padding: 40px 0;
  margin: 0 40px;
  max-width: 500px;
}
.nomad-featured-post .order-md-first .post-content {
  justify-content: end;
}

@media screen and (max-width: 768px) {
  .nomad-featured-post .nomad-image {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.nomad-timeline {
  background-color: white;
  overflow: hidden;
}
.nomad-timeline .timeline-carousel {
  position: absolute;
  width: 100%;
  height: 100%;
}
.nomad-timeline .timeline-carousel .slick-list {
  height: 100%;
}
.nomad-timeline .timeline-carousel .slick-list .slick-track {
  height: 100%;
}
.nomad-timeline .timeline-carousel .slick-list .slick-track .slick-slide {
  height: 100%;
}
.nomad-timeline .timeline-carousel .slick-list .slick-track .slick-slide img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  width: 100%;
}
.nomad-timeline .timeline-carousel button {
  position: absolute;
  top: 50%;
  z-index: 100;
  width: 24px;
  height: 24px;
  opacity: 0.4;
}
.nomad-timeline .timeline-carousel button:hover {
  opacity: 1;
}
.nomad-timeline .timeline-carousel button::before {
  width: 24px;
  height: 24px;
  display: block;
  color: transparent;
}
.nomad-timeline .timeline-carousel button.slick-prev {
  left: 34px;
}
.nomad-timeline .timeline-carousel button.slick-prev::before {
  background-image: url(../images/timeline-prev.svg);
}
.nomad-timeline .timeline-carousel button.slick-next {
  right: 10px;
}
.nomad-timeline .timeline-carousel button.slick-next::before {
  background-image: url(../images/timeline-next.svg);
}
.nomad-timeline .timeline {
  max-width: 400px;
  width: 80%;
  margin: 40px 0;
  margin-left: 20px;
}
.nomad-timeline .timeline h1,
.nomad-timeline .timeline h2,
.nomad-timeline .timeline h3 {
  color: #a63325;
  margin: 20px 0;
}
.nomad-timeline .timeline ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding-left: 20px;
  border-left: 2px solid #f4f4f7;
}
.nomad-timeline .timeline ul li {
  border-radius: 10px;
  padding: 10px 15px;
  color: black;
  position: relative;
  cursor: pointer;
  transition: all 0.3s linear;
}
.nomad-timeline .timeline ul li h4 {
  font-weight: 900;
  margin-bottom: 12px;
}
.nomad-timeline .timeline ul li span {
  display: block;
  line-height: 1.25;
}
.nomad-timeline .timeline ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid #f4f4f7;
  background-color: #f4f4f7;
  border-radius: 10px;
  position: absolute;
  left: -25px;
  top: 50%;
  transition: all 0.3s linear;
}
.nomad-timeline .timeline ul li.active {
  background-color: #a63325;
  color: white;
}
.nomad-timeline .timeline ul li.active * {
  color: white !important;
}
.nomad-timeline .timeline ul li.active::before {
  background-color: #a63325;
  border-color: #a63325;
}
.nomad-timeline .timeline ul li:first-child::before {
  top: 0px;
}
.nomad-timeline .timeline ul li:last-child::before {
  top: auto;
  bottom: 0px;
}

@media screen and (max-width: 768px) {
  .nomad-timeline {
    padding: 10px 0 30px 0;
  }
  .nomad-timeline .timeline-carousel {
    display: none;
  }
  .nomad-timeline .timeline {
    margin: 0 auto;
  }
}
.nomad-product-tabs {
  padding: 40px 0;
}
.nomad-product-tabs h1,
.nomad-product-tabs h2,
.nomad-product-tabs h3 {
  color: #a63325;
}
.nomad-product-tabs .content {
  max-width: 660px;
  margin: 0 auto;
  width: 90%;
}
.nomad-product-tabs .content p {
  line-height: 1.5;
  font-size: 14px;
}
.nomad-product-tabs .nomad-tabs {
  border-radius: 10px;
  background-color: #fafafa;
  display: inline-block;
  margin: 15px 0 30px 0;
}
.nomad-product-tabs .nomad-tabs li {
  display: inline-block;
}
.nomad-product-tabs .nomad-tabs li a {
  text-decoration: none;
  display: block;
  border-radius: 10px;
  padding: 10px 20px;
  background-color: transparent;
  color: #808080;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s linear;
}
.nomad-product-tabs .nomad-tabs li a:hover {
  color: #676767;
  background-color: #e1e1e1;
}
.nomad-product-tabs .nomad-tabs li a.active {
  color: white;
  background-color: #a63325 !important;
}
.nomad-product-tabs .product-carousel {
  margin: 0 80px;
}
.nomad-product-tabs .product-carousel button {
  position: absolute;
  top: 50%;
  z-index: 100;
  width: 50px;
  height: 50px;
  opacity: 0.4;
  transition: all 0.2s linear;
}
.nomad-product-tabs .product-carousel button:hover {
  opacity: 0.8;
}
.nomad-product-tabs .product-carousel button::before {
  width: 50px;
  height: 50px;
  display: block;
  color: transparent;
}
.nomad-product-tabs .product-carousel button.slick-prev {
  left: -65px;
}
.nomad-product-tabs .product-carousel button.slick-prev::before {
  background-image: url(../images/product-tabs-prev.svg);
}
.nomad-product-tabs .product-carousel button.slick-next {
  right: -65px;
}
.nomad-product-tabs .product-carousel button.slick-next::before {
  background-image: url(../images/product-tabs-next.svg);
}
.nomad-product-tabs .nomad-slide a {
  text-decoration: none;
}
.nomad-product-tabs .nomad-product-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 0.75;
  margin: 5px;
  background-position: center;
  background-size: cover;
}
.nomad-product-tabs .nomad-product-thumb .overlay {
  transition: all 0.2s linear;
  background-color: rgba(0, 0, 0, 0.4);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.nomad-product-tabs .nomad-product-thumb .text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: white;
  text-align: center;
}
.nomad-product-tabs .nomad-product-thumb .text h3 {
  color: white;
  margin: 0;
}
.nomad-product-tabs .nomad-product-thumb .text .desc {
  font-size: 14px;
  margin: 15px 0;
}
.nomad-product-tabs .nomad-product-thumb .text .price {
  font-weight: bold;
}
.nomad-product-tabs .nomad-product-thumb:hover .overlay {
  background-color: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 480px) {
  .nomad-product-tabs .nomad-tabs li a {
    padding: 10px 15px;
    font-size: 13px;
  }
  .nomad-product-tabs .product-carousel {
    margin: 0;
  }
}
.nomad-popular-products {
  background-color: #f4f4f7;
  padding: 40px 0 60px 0;
}
.nomad-popular-products h1,
.nomad-popular-products h2,
.nomad-popular-products h3 {
  color: #2a2c67;
}
.nomad-popular-products .content {
  max-width: 660px;
  margin: 0 auto;
  width: 90%;
}
.nomad-popular-products .content p {
  line-height: 1.5;
  font-size: 14px;
}
.nomad-popular-products .product-carousel {
  margin: 0 80px;
}
.nomad-popular-products .product-carousel button {
  position: absolute;
  top: 50%;
  z-index: 100;
  width: 50px;
  height: 50px;
  opacity: 0.4;
  transition: all 0.2s linear;
}
.nomad-popular-products .product-carousel button:hover {
  opacity: 0.8;
}
.nomad-popular-products .product-carousel button::before {
  width: 50px;
  height: 50px;
  display: block;
  color: transparent;
}
.nomad-popular-products .product-carousel button.slick-prev {
  left: -65px;
}
.nomad-popular-products .product-carousel button.slick-prev::before {
  background-image: url(../images/product-tabs-prev.svg);
}
.nomad-popular-products .product-carousel button.slick-next {
  right: -65px;
}
.nomad-popular-products .product-carousel button.slick-next::before {
  background-image: url(../images/product-tabs-next.svg);
}
.nomad-popular-products .nomad-slide a {
  text-decoration: none;
}
.nomad-popular-products .nomad-product-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 10px;
  transition: all 0.2s linear;
}
.nomad-popular-products .nomad-product-thumb:hover {
  background-color: white;
}
.nomad-popular-products .nomad-product-thumb:hover .text .button {
  opacity: 1;
}
.nomad-popular-products .nomad-product-thumb .image {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
}
.nomad-popular-products .nomad-product-thumb .image img {
  display: block;
  width: 100%;
  height: 100%;
}
.nomad-popular-products .nomad-product-thumb .text {
  height: 100%;
  padding-top: 10px;
  text-align: center;
}
.nomad-popular-products .nomad-product-thumb .text h3 {
  font-size: 14px;
  margin: 0;
}
.nomad-popular-products .nomad-product-thumb .text .desc {
  font-size: 12px;
  margin: 10px 0;
  color: black;
}
.nomad-popular-products .nomad-product-thumb .text .price {
  font-weight: bold;
  color: #dc005a;
  margin-bottom: 10px;
}
.nomad-popular-products .nomad-product-thumb .text .button {
  display: block;
  border-radius: 6px;
  color: #2a2c67;
  background-color: #f4f4f7;
  padding: 10px;
  text-align: center;
  transition: all 0.2s linear;
  text-transform: uppercase;
  font-size: 11px;
  opacity: 0;
}
.nomad-popular-products .nomad-product-thumb .text .button:hover {
  color: white;
  background-color: #dc005a;
}
.nomad-popular-products .nomad-product-thumb:hover .overlay {
  background-color: rgba(0, 0, 0, 0.6);
}
.nomad-popular-products.theme-dark {
  background-color: black;
}
.nomad-popular-products.theme-dark h1,
.nomad-popular-products.theme-dark h2,
.nomad-popular-products.theme-dark h3 {
  color: #dc005a;
}
.nomad-popular-products.theme-dark .nomad-product-thumb:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.nomad-popular-products.theme-dark .nomad-product-thumb:hover .text .button {
  opacity: 1;
}
.nomad-popular-products.theme-dark .nomad-product-thumb .text .desc {
  color: #f4f4f7;
}
.nomad-popular-products.theme-dark .nomad-product-thumb .text .price {
  color: #dc005a;
}
.nomad-popular-products.theme-dark .nomad-product-thumb .text .button {
  display: block;
  border-radius: 6px;
  color: #2a2c67;
  background-color: #f4f4f7;
  padding: 10px;
  text-align: center;
  transition: all 0.2s linear;
  text-transform: uppercase;
  font-size: 11px;
  opacity: 0;
}
.nomad-popular-products.theme-dark .nomad-product-thumb .text .button:hover {
  color: white;
  background-color: #dc005a;
}
.nomad-popular-products.theme-dark .nomad-product-thumb:hover .overlay {
  background-color: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 480px) {
  .nomad-popular-products .product-carousel {
    margin: 0;
  }
}
.nomad-product-selector {
  border-top: 2px solid #fafafa;
}
.nomad-product-selector .content {
  display: flex;
  flex-direction: row;
}
.nomad-product-selector .content .left {
  width: 50%;
  display: flex;
  justify-content: right;
  align-items: center;
  background-image: url("../images/product-selector-back.jpg");
  background-position: top right;
}
.nomad-product-selector .content .left .selectors {
  width: 90%;
  max-width: 600px;
}
.nomad-product-selector .content .left .selectors .image {
  position: relative;
  transition: all 0.2s linear;
  opacity: 0;
  z-index: 5;
  pointer-events: none;
}
.nomad-product-selector .content .left .selectors.beef .beef {
  display: block;
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
}
.nomad-product-selector .content .left .selectors.lamb .lamb {
  display: block;
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
}
.nomad-product-selector .content .left .selectors svg {
  width: 100%;
  height: auto;
}
.nomad-product-selector .content .left .selectors svg .cut {
  cursor: pointer;
}
.nomad-product-selector .content .left .selectors svg .cut path {
  transition: all 0.2s linear;
}
.nomad-product-selector .content .left .selectors svg .cut:hover .back {
  fill: #a63325;
}
.nomad-product-selector .content .left .selectors svg .cut:hover .center {
  fill: white;
}
.nomad-product-selector .content .right {
  width: 50%;
  padding: 25px;
}
.nomad-product-selector .content .right .text {
  max-width: 500px;
  width: 100%;
}
.nomad-product-selector .content .right .tab-contents .products {
  display: none;
}
.nomad-product-selector .content .right .tab-contents.beef .beef {
  display: flex;
}
.nomad-product-selector .content .right .tab-contents.lamb .lamb {
  display: flex;
}
.nomad-product-selector .content .right .products {
  gap: 15px;
  flex-direction: column;
}
.nomad-product-selector .content .right .product {
  display: flex;
  background-color: #fafafa;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  max-width: 375px;
  text-decoration: none;
  color: black;
  cursor: pointer;
  transition: all 0.2s linear;
}
.nomad-product-selector .content .right .product:hover {
  background-color: #e1e1e1;
}
.nomad-product-selector .content .right .product .image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}
.nomad-product-selector .content .right .product .image .label {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: white;
  background-color: rgba(0, 0, 0, 0.3);
  font-weight: bold;
}
.nomad-product-selector .content .right .product .image .label .bottom {
  font-size: 11px;
}
.nomad-product-selector .content .right .product .image img {
  display: block;
  width: 90px;
  height: 90px;
}
.nomad-product-selector .content .right .product .details {
  flex-grow: 1;
  flex-shrink: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.nomad-product-selector .content .right .product .details h4 {
  font-size: 14px;
  font-weight: bold;
  color: #212121;
  text-transform: uppercase;
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.nomad-product-selector .content .right .product .details h4 span {
  flex-shrink: 1;
}
.nomad-product-selector .content .right .product .details h4 .price {
  font-weight: 500;
  flex-shrink: 0;
}
.nomad-product-selector .content .right .product .details .desc {
  font-size: 12px;
  font-weight: 500;
  text-align: left;
}
.nomad-product-selector h1,
.nomad-product-selector h2,
.nomad-product-selector h3 {
  color: #a63325;
  margin-top: 0;
}
.nomad-product-selector .nomad-tabs {
  border-radius: 10px;
  background-color: #fafafa;
  display: inline-block;
  margin-bottom: 30px;
}
.nomad-product-selector .nomad-tabs li {
  display: inline-block;
}
.nomad-product-selector .nomad-tabs li a {
  text-decoration: none;
  display: block;
  border-radius: 10px;
  padding: 10px;
  background-color: transparent;
  color: #808080;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s linear;
  min-width: 150px;
}
.nomad-product-selector .nomad-tabs li a:hover {
  color: #676767;
  background-color: #e1e1e1;
}
.nomad-product-selector .nomad-tabs li a.active {
  color: white;
  background-color: #a63325 !important;
}

@media screen and (max-width: 1024px) {
  .nomad-product-selector {
    text-align: center;
  }
  .nomad-product-selector .content {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .nomad-product-selector .content .left {
    width: 100%;
    justify-content: center;
  }
  .nomad-product-selector .content .right {
    width: 100%;
    max-width: 375px;
    flex-shrink: 1;
    flex-grow: 0;
    justify-content: center;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 480px) {
  .nomad-product-selector .nomad-tabs li a {
    padding: 10px;
    font-size: 13px;
    min-width: auto;
    min-width: 100px;
  }
}
.nomad-merchendise-block {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: black;
}
.nomad-merchendise-block .image {
  background-position: center;
  background-size: cover;
  aspect-ratio: 1;
}
.nomad-merchendise-block .content {
  background-color: #0d0d0d;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nomad-merchendise-block .content .cont {
  margin: 20px;
  max-width: 400px;
  text-align: center;
  color: white;
}
.nomad-merchendise-block .content h1,
.nomad-merchendise-block .content h2,
.nomad-merchendise-block .content h3 {
  text-transform: uppercase;
  color: #dc005a;
  font-weight: 700;
}
.nomad-merchendise-block .content strong,
.nomad-merchendise-block .content b {
  color: #dc005a;
}
.nomad-merchendise-block .content .button {
  border-radius: 5px;
  background-color: #2a2c67;
  color: white;
  display: inline-block;
  padding: 15px 20px;
  text-decoration: none;
  transition: all 0.2s linear;
  margin-top: 15px;
}
.nomad-merchendise-block .content .button:hover {
  background-color: #dc005a;
}

@media screen and (max-width: 900px) {
  .nomad-merchendise-block .content .cont p {
    font-size: 12px;
  }
}
.woocommerce-message {
  border-top-color: #dc005a !important;
}
.woocommerce-message::before {
  color: #dc005a !important;
}
.woocommerce-message .button {
  font-size: 14px !important;
  text-transform: uppercase !important;
}

.wc-forward {
  display: none !important;
}

.related.products .product img {
  display: block;
  border-radius: 10px;
}
.related.products .product h2 {
  font-size: 14px !important;
  color: black;
}
.related.products .product .price {
  font-size: 16px !important;
  margin-bottom: 0px !important;
}
.related.products .product .add_to_cart_button {
  width: 100% !important;
  display: block !important;
  border-radius: 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.2s linear;
  background-color: #fafafa;
  padding: 15px !important;
}
.related.products .product .add_to_cart_button:hover {
  background-color: #dc005a !important;
  color: white !important;
}

.wc-block-cart-item__wrap a {
  text-decoration: none;
  color: black;
  text-transform: uppercase;
  font-weight: bold;
}
.wc-block-cart-item__wrap .wc-block-cart-item__remove-link {
  color: #dc005a !important;
}

.wc-block-cart-item__image img {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.wc-block-cart__submit-container {
  padding-top: 25px !important;
}
.wc-block-cart__submit-container .wc-block-components-button {
  border-radius: 15px;
  background-color: #dc005a;
  color: white;
  text-decoration: none;
  transition: all 0.2s linear !important;
}
.wc-block-cart__submit-container .wc-block-components-button:hover {
  background-color: #a90045;
}

.wc-block-components-checkout-place-order-button {
  border-radius: 15px;
  background-color: #dc005a;
  color: white;
  text-decoration: none;
  transition: all 0.2s linear !important;
  border: none;
}
.wc-block-components-checkout-place-order-button:hover {
  background-color: #a90045;
}

.wp-block-woocommerce-empty-cart-block {
  color: #dc005a;
}

.wc-block-grid__products .wc-block-grid__product-link {
  text-decoration: none;
  color: black;
}
.wc-block-grid__products .wc-block-grid__product-image {
  border-radius: 15px;
  overflow: hidden;
}
.wc-block-grid__products .wc-block-grid__product-image img {
  display: block;
}
.wc-block-grid__products .wc-block-grid__product-title {
  text-transform: uppercase;
  font-size: 14px;
}
.wc-block-grid__products .wc-block-grid__product-price {
  font-size: 18px;
}
.wc-block-grid__products .wc-block-grid__product-add-to-cart a {
  background-color: #dc005a;
}

.woocommerce-info {
  border-top-color: #2a2c67;
}
.woocommerce-info::before {
  color: #2a2c67;
}

.woocommerce-account #container {
  background-color: #fafafa;
  padding: 50px 0;
}
.woocommerce-account .woocommerce {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.woocommerce-account .woocommerce::before {
  display: none;
}
.woocommerce-account h1,
.woocommerce-account h2 {
  text-transform: capitalize;
  width: 100%;
  margin-top: 0;
  margin-bottom: 15px;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  height: 100%;
  flex-grow: 1;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  margin: 1px 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  text-decoration: none;
  background-color: white;
  padding: 8px;
  border-radius: 5px;
  color: #2a2c67;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  background-color: #fafafa;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #dc005a;
  background-color: #f4f4f7;
  font-weight: bold;
}
.woocommerce-account .woocommerce-MyAccount-content {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  min-height: 500px;
  height: 100%;
  flex-grow: 1;
}
.woocommerce-account .u-columns .woocommerce-Address {
  background-color: #fafafa;
  padding: 15px;
  border-radius: 10px;
}
.woocommerce-account .u-columns .woocommerce-Address address {
  font-style: normal;
}
.woocommerce-account .woocommerce-form,
.woocommerce-account .woocommerce-address-fields,
.woocommerce-account .woocommerce-EditAccountForm {
  margin: 15px 0 !important;
}
.woocommerce-account .woocommerce-form input,
.woocommerce-account .woocommerce-form textarea,
.woocommerce-account .woocommerce-address-fields input,
.woocommerce-account .woocommerce-address-fields textarea,
.woocommerce-account .woocommerce-EditAccountForm input,
.woocommerce-account .woocommerce-EditAccountForm textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  background-color: #fafafa;
}
.woocommerce-account .woocommerce-form .select2,
.woocommerce-account .woocommerce-address-fields .select2,
.woocommerce-account .woocommerce-EditAccountForm .select2 {
  padding: 6px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  background-color: #fafafa;
}
.woocommerce-account .woocommerce-form .select2 .select2-selection__arrow,
.woocommerce-account .woocommerce-address-fields .select2 .select2-selection__arrow,
.woocommerce-account .woocommerce-EditAccountForm .select2 .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
}
.woocommerce-account .woocommerce-form .select2-selection,
.woocommerce-account .woocommerce-address-fields .select2-selection,
.woocommerce-account .woocommerce-EditAccountForm .select2-selection {
  background-color: transparent;
  border: none;
}
.woocommerce-account .woocommerce-form .select2 .select2-selection__rendered,
.woocommerce-account .woocommerce-address-fields .select2 .select2-selection__rendered,
.woocommerce-account .woocommerce-EditAccountForm .select2 .select2-selection__rendered {
  background-color: transparent;
  border: none;
}
.woocommerce-account .woocommerce-form .select2-container--default .select2-results__option--highlighted[aria-selected],
.woocommerce-account .woocommerce-form .select2-container--default .select2-results__option--highlighted[data-selected],
.woocommerce-account .woocommerce-address-fields .select2-container--default .select2-results__option--highlighted[aria-selected],
.woocommerce-account .woocommerce-address-fields .select2-container--default .select2-results__option--highlighted[data-selected],
.woocommerce-account .woocommerce-EditAccountForm .select2-container--default .select2-results__option--highlighted[aria-selected],
.woocommerce-account .woocommerce-EditAccountForm .select2-container--default .select2-results__option--highlighted[data-selected] {
  background-color: #2a2c67 !important;
  color: #fff;
}
.woocommerce-account .woocommerce-form {
  background-color: white;
}
.woocommerce-account .button {
  padding: 15px 20px !important;
  border-radius: 10px !important;
  color: #fff !important;
  background-color: #2a2c67 !important;
}
.woocommerce-account span em {
  font-size: 11px;
}
.woocommerce-account fieldset p label {
  font-size: 11px;
}

.nomad-product-categories {
  margin: 50px auto;
  max-width: 880px;
  width: 100%;
}
.nomad-product-categories .product-thumb {
  border-radius: 15px;
  padding: 15px;
  height: 100%;
  transition: all 0.2s linear;
}
.nomad-product-categories .product-thumb .product .image {
  border-radius: 10px;
  aspect-ratio: 300/250;
  overflow: hidden;
  position: relative;
}
.nomad-product-categories .product-thumb .product .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.nomad-product-categories .product-thumb .product .image .add_to_cart_inline {
  transition: all 0.2s linear;
  opacity: 0;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}
.nomad-product-categories .product-thumb .product .image .add_to_cart_inline span {
  display: none;
}
.nomad-product-categories .product-thumb .product .image .add_to_cart_inline a {
  width: 100%;
  text-align: center;
  background-color: #a63325;
  color: white;
}
.nomad-product-categories .product-thumb .product a {
  text-decoration: none;
  color: #212121;
}
.nomad-product-categories .product-thumb .product h3 {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}
.nomad-product-categories .product-thumb .product h3 .nomad-price {
  font-weight: 500;
}
.nomad-product-categories .product-thumb .product .desc {
  font-size: 12px;
}
.nomad-product-categories .product-thumb .product .desc p:first-child {
  margin-top: 0px;
}
.nomad-product-categories .product-thumb:hover {
  background-color: white;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
.nomad-product-categories .product-thumb:hover .image .add_to_cart_inline {
  opacity: 1;
}

.nomad-product-page {
  max-width: 770px;
  margin: 50px auto;
}
.nomad-product-page .woocommerce-product-gallery__image {
  border-radius: 15px;
  overflow: hidden;
}
.nomad-product-page .woocommerce-product-gallery__image img {
  display: block;
}
.nomad-product-page .product_title {
  color: #dc005a !important;
}
.nomad-product-page .price {
  font-size: 36px !important;
  color: black !important;
  font-weight: bold;
}
.nomad-product-page form .quantity {
  padding-left: 49px;
  padding-right: 49px;
  position: relative;
  margin-right: 0 !important;
}
.nomad-product-page form .quantity input.qty {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  padding: 0;
  margin: 0;
  border: 1px solid #808080;
  height: 50px;
  width: 50px;
  z-index: 1;
  position: relative;
  background-color: white;
  border-radius: 0;
}
.nomad-product-page form .quantity a {
  border: 1px solid #808080;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 50px;
  height: 100%;
  background-color: white;
  transition: all 0.2s linear;
  text-decoration: none;
  color: black;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 10;
}
.nomad-product-page form .quantity a:hover {
  background-color: #808080;
  color: white;
}
.nomad-product-page form .quantity .prev {
  left: 0;
  top: 0;
  border-radius: 15px 0 0 15px;
}
.nomad-product-page form .quantity .next {
  right: 0;
  top: 0;
  border-radius: 0 15px 15px 0;
}
.nomad-product-page form .button {
  background-color: #dc005a !important;
  height: 50px !important;
  border-radius: 15px !important;
  margin-left: 15px !important;
  display: flex;
  align-items: center;
  text-transform: uppercase !important;
}/*# sourceMappingURL=main.css.map */