/*
	Theme Name: Halley Records Template
	Theme URI: https://llos.xyz
	Description: Halley Records
	Version: 1.0
	Author: LLOS&
	Author URI: http://llos.xyz
	Text Domain: llos
	Domain Path: /lang
*/
/*	Variables
	---- */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=MuseoModerno:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --100vh: calc(var(--vh, 1vh) * 100);
  --custom-height: calc(100vh - 92px);
  --side-padding: 40px;
  --blue: #3c69b2;
  --green: #43994c;
}

/*	Typography
	---------- */
/*	Misc
	---- */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #ffffff;
  color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "DM Sans", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  overflow-x: hidden;
}

a {
  color: #000;
  text-decoration: none;
  outline: none;
}

a:hover,
a:focus {
  color: #000;
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

h1 {
  font-weight: 800;
}

h2 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 800;
}

p {
  margin-block-start: 0;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.transition {
  transition: all 0.25s ease-in-out;
}

.mobile {
  display: none;
}

.desktop {
  display: block;
}

.blue-bg {
  background-color: var(--blue);
  color: #000;
}

.green-bg {
  background-color: var(--green);
  color: #000;
}

.museo-moderno {
  font-family: "MuseoModerno", serif;
  font-weight: 400;
}

h1.museo-moderno {
  font-size: clamp(1rem, 9vw, 150px);
  line-height: clamp(1rem, 9vw, 150px);
  text-align: center;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.grid-4 > * {
  min-width: 0;
  overflow: hidden;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.side-padding {
  padding-left: var(--side-padding);
  padding-right: var(--side-padding);
}

/*	Header
	------ */
header {
  padding: 23px var(--side-padding);
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
}
header svg {
  display: block;
  margin: auto;
}
header .carrito {
  margin-left: 8px;
  display: flex;
}
header .carrito span {
  font-size: 12px;
  margin-left: 5px;
}
header .burger-cont {
  margin-left: 35px;
  width: 30px;
  cursor: pointer;
}
header .burger,
header .burger-close {
  display: none;
}
header .open {
  display: block;
}
header .lupa-btn {
  cursor: pointer;
}

.header-right-cont {
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
}

header.white .logo svg path {
  fill: #fff;
}
header.white .header-right-cont svg path {
  stroke: #fff;
}
header.white span {
  color: #fff;
}

header.black .logo svg path {
  fill: #000;
}
header.black .header-right-cont svg path {
  stroke: #000;
}

.supernova-close.black svg path {
  stroke: #000;
}

header:not(.home header) {
  background-color: #fff;
}

/*	Search
	------ */
.search-pop-up-cont {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--blue);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
}
.search-pop-up-cont .search-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 38px var(--side-padding);
}
.search-pop-up-cont .search-bar {
  width: 45vw;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.search-pop-up-cont .search-bar input.hidden-search {
  font-family: "MuseoModerno", serif;
  color: #fff;
  font-size: 85px;
  line-height: 120px;
  width: 100%;
  border: none;
  outline: none;
  color: #fff;
  background-color: transparent;
  border-bottom: 2px solid #fff;
}
.search-pop-up-cont .search-bar input.lupa {
  width: 60px;
  height: auto;
  cursor: pointer;
}

.search-pop-up-cont.open {
  opacity: 1;
  visibility: visible;
}

.search-results-cont {
  margin-bottom: 100px;
}
.search-results-cont .search-title {
  margin-bottom: 30px;
}
.search-results-cont .search-result-item {
  margin-bottom: 20px;
}
.search-results-cont .search-result-item a {
  display: flex;
  gap: 20px;
}
.search-results-cont .search-result-item a h2 {
  font-family: "MuseoModerno", serif;
}
.search-results-cont .search-result-item a .image {
  width: 310px;
  height: 310px;
}
.search-results-cont .search-result-item a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/*	Menu
	------ */
.menu-background-cont {
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}
.menu-background-cont .menu-background {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.home .menu-background-cont,
.menu-background-cont.open {
  opacity: 1;
  visibility: visible;
}

.menu-cont {
  position: fixed;
  inset: 0;
  padding-left: var(--side-padding);
  padding-right: var(--side-padding);
  padding-top: 100px;
  padding-bottom: 75px;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}
.menu-cont .main-menu a {
  font-family: "MuseoModerno", serif;
  color: #fff;
  font-size: 85px;
  line-height: 120px;
}
.menu-cont .menu-text-cont {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-right: -700px;
}
.menu-cont .menu-text-cont li {
  text-align: end;
}
.menu-cont .social-media .fa-brands {
  color: #fff;
}

.language-switch ul {
  margin-top: 20px;
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
  /* Remove the "/" from the last <a> */
}
.language-switch ul a {
  font-size: 35px !important;
  line-height: 35px !important;
  /* Add a "/" after each <a> except the last one */
}
.language-switch ul a::after {
  content: "/";
  margin-left: 10px;
  margin-right: 10px;
}
.language-switch ul li:last-child a::after {
  content: "";
}

.social-media {
  display: flex;
  gap: 30px;
}
.social-media .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-media .fa-brands {
  font-size: 30px;
}
.social-media .globe-svg {
  height: 30px;
  width: auto;
}

.menu-cont.open {
  opacity: 1;
  visibility: visible;
}
.menu-cont.open .menu-text-cont {
  margin-right: 0;
}

.main {
  margin-top: 92px;
  min-height: 60vh;
}

/*	Page Artists
	------ */
.page-artists .grid-item {
  position: relative;
  display: flex;
  flex-flow: column;
}
.page-artists .grid-item:hover {
  background-color: var(--blue);
}
.page-artists h3 {
  font-size: clamp(20px, 3.5vw, 80px);
  line-height: clamp(20px, 3.5vw, 80px);
}
.page-artists .featured-image {
  width: 100%;
  height: 25vw;
  flex: 0 0 auto;
}
.page-artists .featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.page-artists .text-cont {
  box-sizing: border-box;
  padding: 15px;
  height: 100%;
  border: 1px solid #000;
  border-top: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  min-height: 220px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 10px;
}
.page-artists .supernova-image {
  width: 100px;
  float: right;
  margin-top: 10px;
  margin-left: auto;
}
.page-artists .supernova-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-artists .pagination {
  display: none;
}

/*	Artist
	------ */
.single-artist h1 {
  margin-bottom: var(--side-padding);
}
.single-artist .single-artist-hero {
  height: var(--custom-height);
  display: flex;
  flex-flow: column;
}

.artist-featured-image {
  width: 100%;
  height: 100%;
}
.artist-featured-image .hero-image {
  display: block;
}
.artist-featured-image .thumbnail-image {
  display: none;
}
.artist-featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.artist-bio {
  position: relative;
  padding-top: 155px;
  padding-bottom: 70px;
}
.artist-bio .main-text {
  text-align: center;
  padding-bottom: 155px;
}
.artist-bio .social-media {
  justify-content: center;
}

.supernova-btn {
  cursor: pointer;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 110px;
  height: 90px;
  box-sizing: initial;
}
.supernova-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.supernova-close {
  cursor: pointer;
  position: absolute;
  top: 70px;
  right: 0;
}

.supernova-cont {
  position: fixed;
  inset: 0;
  z-index: 13;
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.supernova-cont .supernova-btn {
  pointer-events: none;
}
.supernova-cont .supernova-text {
  margin: auto;
}

.supernova-cont.open {
  display: flex;
}

.single-artist-discography-cont {
  padding-top: 50px;
  padding-bottom: 70px;
}
.single-artist-discography-cont p {
  text-align: center;
  margin-block-end: 45px;
}

.single-products-cont {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.single-products-cont .product {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: auto;
  position: relative;
}
.single-products-cont .product .product-link {
  width: 310px;
  height: 310px;
  display: block;
}
.single-products-cont .product img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-products-cont .product .product-title {
  text-align: center;
  margin-top: 10px;
  margin-block-end: 10px;
}
.single-products-cont .product .price {
  font-size: 15px;
  font-weight: 400;
  margin-block-end: 10px;
}
.single-products-cont .product .button {
  text-decoration: underline;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  margin: auto;
  text-transform: uppercase;
}

/*	Page About
	------ */
.page-about .about-main {
  height: var(--custom-height);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.page-about .about-store-cont {
  padding-bottom: 150px;
}
.page-about .about-store-cont h2 {
  font-size: 70px;
  line-height: 80px;
  text-align: center;
  margin-bottom: 140px;
}

.cometa-image {
  position: fixed;
  width: 400px;
  height: 401px;
  top: -200px; /* Start position above the viewport */
  left: -450px; /* Start position to the left of the viewport */
  opacity: 0;
  z-index: 0;
}
.cometa-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cometa-image.animate {
  animation: comet-fall 2.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes comet-fall {
  0% {
    top: -200px;
    left: -350px;
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    top: calc(100vh - 100px); /* End position at the bottom right */
    left: calc(100vw - 200px); /* End position at the bottom right */
    opacity: 0;
  }
}
/*	Contact
	------ */
.page-contact {
  height: var(--custom-height);
  display: flex;
  align-items: center;
}

.contact-info-cont {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  margin: auto;
  flex: 1;
  min-height: 60vh;
}
.contact-info-cont .columns {
  margin-top: 20px;
  margin-bottom: 50px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.contact-info-cont h3 {
  font-family: "MuseoModerno", serif;
  margin-block-end: 20px;
}

.newsletter-form-cont {
  width: 370px;
  margin-right: auto;
  margin-left: auto;
}
.newsletter-form-cont h3 {
  text-align: center;
  margin-bottom: 40px;
}
.newsletter-form-cont .forminator-custom-form {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.newsletter-form-cont .forminator-custom-form * {
  font-size: 18px;
}
.newsletter-form-cont .forminator-custom-form .forminator-checkbox__wrapper {
  display: flex;
  flex-flow: row;
  justify-content: center;
}
.newsletter-form-cont .forminator-custom-form .forminator-checkbox__wrapper label {
  margin-right: 10px;
}
.newsletter-form-cont .forminator-custom-form .forminator-checkbox__wrapper .forminator-consent__label * {
  font-size: 13px;
}
.newsletter-form-cont .forminator-custom-form .forminator-field {
  position: relative;
}
.newsletter-form-cont .forminator-custom-form input,
.newsletter-form-cont .forminator-custom-form button {
  width: 100%;
  text-align: center;
  padding: 15px;
  border-radius: 1.8em;
  position: relative;
}
.newsletter-form-cont .forminator-custom-form button {
  background-color: #000;
  color: #fff;
  cursor: pointer;
}
.newsletter-form-cont .forminator-custom-form .forminator-error-message,
.newsletter-form-cont .forminator-custom-form .forminator-response-message {
  color: red;
  font-size: 13px;
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  text-align: center;
}
.newsletter-form-cont .forminator-edit-module {
  display: none;
}

.max-width {
  max-width: 1200px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/*	Footer
	------ */
.footer {
  background-color: #000;
  padding-top: 100px;
  padding-bottom: 60px;
  padding-left: var(--side-padding);
  padding-right: var(--side-padding);
}
.footer *,
.footer *:hover,
.footer *:focus {
  color: #fff;
}
.footer h2 {
  margin-bottom: 20px;
}
.footer .footer-flex-cont {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  font-weight: 300;
}

/*	Halley Books
	------ */
.page-halley-books * {
  text-align: center;
}
.page-halley-books .highlight-section {
  min-height: calc(100vh - 92px);
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.page-halley-books .highlight-section .highlight-img {
  width: 1000px;
  height: 400px;
  margin-bottom: 50px;
}
.page-halley-books .highlight-section .highlight-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.page-halley-books .about-section {
  padding-top: 120px;
}
.page-halley-books .about-section h1 {
  margin-block-end: 50px;
}
.page-halley-books .about-section .text-cont {
  margin-bottom: 112px;
}
.page-halley-books .about-image {
  width: 100%;
  height: 100%;
}
.page-halley-books .about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/*	Shop
	------ */
.shop-swiper-container {
  height: var(--custom-height);
  height: 70vh;
  width: 100%;
  position: relative;
}
.shop-swiper-container .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-slider-item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 85px;
  position: relative;
}
.shop-slider-item h2 {
  font-size: clamp(7vw, 150px, 9vw);
  line-height: clamp(7vw, 150px, 9vw);
  font-weight: 300;
  margin-block-end: 20px;
}
.shop-slider-item h3 {
  font-size: 30px;
  line-height: 30px;
}
.shop-slider-item p {
  font-size: 20px;
  line-height: 20px;
}
.shop-slider-item .banner-text {
  text-align: center;
}
.shop-slider-item .banner-text .round-btn {
  margin-top: 50px;
}
.shop-slider-item .pack-text {
  width: 500px;
}
.shop-slider-item .pack-product-text-cont {
  flex-grow: 1;
  display: flex;
  gap: 20px;
  flex-flow: column;
  justify-content: center;
}
.shop-slider-item .album-info .album-title {
  font-size: 85px;
  line-height: 85px;
  font-weight: 400;
  margin-block-end: 35px;
}
.shop-slider-item .album-info .album-artist {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
}
.shop-slider-item .album-img {
  width: 30vw;
  height: 30vw;
}
.shop-slider-item .album-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.round-btn,
.wc-block-components-button:not(.is-link) .wc-block-components-button__text {
  border-radius: 3em;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #000;
  color: #fff;
  font-family: "dm sans", serif;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  display: inline-block;
}
.round-btn:hover,
.wc-block-components-button:not(.is-link) .wc-block-components-button__text:hover {
  color: #fff;
}

.novedad-btn {
  border-radius: 3em;
  color: #fff;
  font-family: "MuseoModerno", serif;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  display: inline-block;
  padding: 12px;
  position: absolute;
  top: 0;
  left: 0;
  margin: 30px;
  display: flex;
  background-color: var(--blue);
}
.novedad-btn img {
  margin: 0 !important;
  margin-right: 5px !important;
}

.novedad-btn.slider-btn {
  top: 0;
  left: -10vw;
  margin: 0;
  margin-top: 10px;
}

.single-products-cont .product .novedad-btn {
  margin: 20px;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item {
  border-radius: 3em;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: transparent;
  color: #000;
  font-family: "dm sans", serif;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  display: inline-block;
  border: 1px solid black;
}
.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item:hover {
  border: 1px solid black;
  color: #fff;
  background-color: #000;
  box-shadow: none !important;
}

.woo-variation-swatches .variable-items-wrapper {
  justify-content: center;
}

/* Swiper Pagination Styles */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent; /* Default color */
  border-radius: 50%; /* Makes it a circle */
  opacity: 1; /* Ensure full visibility */
  transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
  border: 2px solid #fff;
}

.swiper-pagination-bullet-active {
  background-color: #fff; /* Active bullet color */
}

/*	WooCommerce
	------ */
.woocommerce-message {
  border-top-color: transparent;
  color: #000;
  background-color: #fff;
}
.woocommerce-message:focus-visible {
  outline: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  margin: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  display: none;
}

.woocommerce ul.products li.product .button {
  display: none;
}

.woocommerce .woocommerce-result-count {
  display: none;
}

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

.woocommerce .woocommerce-ordering {
  display: none;
}

.woocommerce .products ul,
.woocommerce ul.products {
  margin: 0;
}

.products .product-type-bundle {
  display: none !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt {
  background-color: transparent;
  color: #000;
  -webkit-font-smoothing: antialiased;
  text-decoration: underline;
  font-size: 15px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover {
  background-color: inherit;
  color: inherit;
}

.woocommerce div.product form.cart div.quantity {
  display: none !important;
}

.woocommerce div.product form.cart .button {
  float: none;
  margin-left: auto;
  margin-right: auto;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
  color: black;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button {
  cursor: pointer;
  color: #fff;
  font-size: 12px;
  color: #000;
  border-radius: 3em;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #000;
  color: #fff;
  font-family: "dm sans", serif;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  display: inline-block;
  align-self: start;
  margin-left: auto;
  margin-right: auto;
}

button.disabled {
  background-color: transparent !important;
  color: grey !important;
}

.button-variable-item.selected {
  background-color: #000 !important;
  color: #fff !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: none;
}

.shop-page .woocommerce ul.products li.product .onsale {
  display: none;
}

.shop-page .woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: 25vw;
  width: 100%;
  height: 25vw;
  margin: 0;
  float: none;
  clear: none;
}

.products.columns-4 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.shop-page .woocommerce .products ul::before,
.woocommerce .products ul::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  content: none;
  display: none;
}

.product-grid {
  width: 50vh;
  display: grid;
}

.product-grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.product-grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: #fff;
  color: #515151;
  z-index: 2;
  border-bottom-color: #fff;
  display: none;
}

/*	Single product
	------ */
.single-product h1 {
  font-family: "MuseoModerno", serif;
  font-size: 85px;
  line-height: 85px;
  font-weight: 400;
}
.single-product .supernova-btn {
  position: relative;
  bottom: auto;
  right: auto;
}
.single-product .supernova-btn img {
  position: relative;
}
.single-product .single-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}
.single-product .product {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  gap: 30px;
}
.single-product .cont-left {
  display: flex;
  flex-flow: column;
}
.single-product .cont-left .product_meta {
  display: none;
}
.single-product .cont-right {
  display: flex;
  flex-flow: column;
  width: 670px;
  flex: 0 0 auto;
}
.single-product .embed-container {
  margin-bottom: 20px;
}
.single-product #tab-description h2 {
  display: none;
}
.single-product #tab-description p {
  text-align: center;
}
.single-product .social-media {
  margin-bottom: 40px;
}
.single-product .entry-summary .price:not(.single_variation .price) {
  pointer-events: none;
  background-color: transparent;
  color: grey;
}
.single-product .label,
.single-product .reset_variations {
  display: none !important;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .stock {
  color: grey;
}

.woocommerce div.product div.images,
.woocommerce #content div.product div.images,
.woocommerce-page div.product div.images,
.woocommerce-page #content div.product div.images {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.summary.entry-summary {
  display: flex;
  flex-flow: column;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.summary.entry-summary .artist-name,
.summary.entry-summary .product-title {
  font-family: "MuseoModerno", serif;
  margin-block-end: 10px;
}
.summary.entry-summary .year {
  font-family: "MuseoModerno", serif;
  margin-block-end: 10px;
  font-size: 15px;
}
.summary.entry-summary .artist-name {
  font-weight: 200;
}
.summary.entry-summary .product-title {
  margin-bottom: 10px;
}

.single-product .woocommerce-product-gallery__wrapper {
  pointer-events: none;
}
.single-product .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__trigger {
  display: none;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  display: none;
}

/*	Responsive
	------ */
@media (max-width: 768px) {
  /*	Variables
  ---- */
  :root {
    --side-padding: 15px;
  }
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  h1.museo-moderno {
    font-size: clamp(1rem, 15vw, 60px);
    line-height: clamp(1rem, 15vw, 60px);
  }
  .max-width {
    max-width: none;
  }
  header .burger-cont {
    margin-left: 20px;
  }
  .search-results-cont {
    margin-bottom: 100px;
  }
  .search-results-cont .search-title {
    margin-bottom: 30px;
  }
  .search-results-cont .search-result-item {
    margin-bottom: 20px;
  }
  .search-results-cont .search-result-item a {
    flex-flow: column;
    gap: 10px;
  }
  .search-results-cont .search-result-item a .image {
    width: 100%;
    aspect-ratio: 1;
  }
  .search-pop-up-cont .search-close-btn {
    padding: 34px var(--side-padding);
  }
  .search-pop-up-cont .search-bar {
    width: 100%;
  }
  .search-pop-up-cont .search-bar input.hidden-search {
    font-size: 35px;
    line-height: 40px;
  }
  /*	Page Artists
  ------ */
  .page-artists .featured-image {
    height: 100vw;
  }
  .page-artists h3 {
    font-size: 45px;
    line-height: 45px;
  }
  .page-artists .text-cont {
    min-height: 150px;
  }
  /*	Artist
  ------ */
  .artist-featured-image .hero-image {
    display: none;
  }
  .artist-featured-image .thumbnail-image {
    display: block;
  }
  .artist-bio {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .artist-bio .main-text {
    padding-bottom: 50px;
  }
  .artist-bio .social-media {
    margin-bottom: 35px;
  }
  .supernova-btn {
    position: relative;
    bottom: auto;
    margin: auto;
  }
  .supernova-close {
    position: relative;
    bottom: auto;
    top: auto;
    margin: auto;
  }
  .supernova-cont {
    align-items: center;
  }
  .single-artist-discography-cont .single-products-cont {
    flex-wrap: wrap;
  }
  .single-artist-discography-cont .single-products-cont .product .product-link {
    width: 100%;
    height: 43vw;
  }
  /* About
  ------ */
  .page-about .about-store-cont h2 {
    font-size: 45px;
    line-height: 45px;
    margin-bottom: 80px;
  }
  .page-about .about-store-cont .product .product-link {
    width: 100%;
  }
  .page-about .about-store-cont .single-products-cont {
    gap: 0;
    justify-content: flex-start;
  }
  .page-about .about-store-cont .swiper-pagination {
    position: relative;
    z-index: 0;
  }
  /*	Shop
  ------ */
  .shop-swiper-container {
    height: var(--custom-height);
  }
  .products.columns-4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .shop-page .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    height: 100vw;
  }
  .shop-slider-item {
    flex-flow: column-reverse;
    gap: 25px;
  }
  .shop-slider-item .album-img {
    width: 70vw;
    height: 70vw;
  }
  .shop-slider-item h2 {
    font-size: 45px;
    line-height: 45px;
    font-weight: 400;
  }
  .shop-slider-item h3 {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
  }
  .shop-slider-item .album-info {
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .shop-slider-item .album-info .album-title {
    font-size: 45px;
    line-height: 45px;
    margin-block-end: 25px;
  }
  .shop-slider-item .album-info .round-btn {
    align-self: center;
  }
  .shop-slider-item .product-grid {
    width: 100%;
  }
  .shop-slider-item .pack-product-text-cont {
    display: none;
  }
  .shop-slider-item .pack-text {
    width: 100%;
    text-align: center;
  }
  .woo-variation-swatches .variable-items-wrapper {
    justify-content: center;
  }
  .novedad-btn.slider-btn {
    top: auto;
    left: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    position: relative;
  }
  /* Contact
  ------ */
  .page-contact {
    height: auto;
    margin-top: 50px;
  }
  .contact-info-cont {
    min-height: auto;
    display: block;
    margin-bottom: 150px;
  }
  .contact-info-cont .columns {
    flex-flow: column;
    gap: 60px;
    align-items: center;
    margin-bottom: 160px;
  }
  .newsletter-form-cont {
    width: 250px;
  }
  .footer {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .footer h2 {
    margin-bottom: 0;
  }
  .footer .footer-flex-cont {
    flex-flow: column;
  }
  .footer .footer-flex-cont .col {
    margin-bottom: 35px;
  }
  .footer .footer-flex-cont p {
    margin-block-end: 0;
  }
  .single-header .supernova-btn {
    display: none;
  }
  .single-header h1 {
    font-size: 55px;
    line-height: 50px;
  }
  .single-product .product {
    flex-flow: column;
  }
  .single-product .cont-right {
    width: 100%;
  }
  /*	Halley Books
  ------ */
  .page-halley-books .highlight-section {
    padding-bottom: 80px;
  }
  .page-halley-books .highlight-section .highlight-img {
    width: 100%;
    height: 300px;
    margin-bottom: 50px;
    margin-top: 50px;
  }
  .page-halley-books .about-section {
    padding-top: 90px;
  }
  .page-halley-books .about-section h1 {
    margin-block-end: 30px;
  }
  .page-halley-books .about-section .text-cont {
    margin-bottom: 120px;
  }
  .page-halley-books .about-image {
    width: 100%;
    height: 260px;
  }
  .page-halley-books .about-image img {
    width: 100%;
    height: 100%;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
       object-fit: cover;
  }
}/*# sourceMappingURL=style.css.map */