/** Shopify CDN: Minification failed

Line 846:0 Unexpected "/"

**/
.az-discovery-prompts-text:empty{
    display: none;
}

.shopify-section-group-header-group:has(.az-search-bar) {
    z-index: 4;
    background-color: #F5F5F5;
}

.product-section--container:has(atomz-product-grid){
  margin: 0 !important;
}

.page-width:has(.az-search-bar) {
    margin: 0;
    overflow-x: clip;
    max-width: 100vw;
}

.az-search-bar-form {
    margin: 0;
}

/* .az-search-bar{
    z-index: 2;
    background-color: #F5F5F5;
} */

@media (prefers-reduced-motion: no-preference) {
    .scroll-trigger:not(.scroll-trigger--offscreen).animate--slide-in:has(.az-search-bar) {
        animation: none;
    }
}

@media (prefers-reduced-motion: no-preference) {

    .scroll-trigger.animate--fade-in:has(.az-search-bar),
    .scroll-trigger.animate--slide-in:has(.az-search-bar) {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .scroll-trigger.animate--slide-in:has(.az-search-bar) {
        transform: none;
    }
}

.az-link {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

.az-responsive-image {
    position: relative;
    padding-top: 100%;
}

.az-responsive-image>img {
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: inherit;
}

.az-search-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    background-color: #ffd500;
    z-index: 698;
    position: relative;
}

.az-search-bar-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 5px;
}

.az-search-bar-wrapper::before {
    content: '';
    position: absolute;
    background-color: white;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    z-index: -1;
}

.az-search-bar-input {
    width: 100%;
    padding: 10px 30px 10px 40px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    outline: none;
    background: transparent;
    font-size: 14px;
}

.az-search-bar-input:focus {
    border: 2px solid rgba(0, 0, 0, 0.4);
    outline: none;
    box-shadow: none;
}

.az-search-bar-input::placeholder {
    opacity: 0;
}

.az-search-bar-input-label {
    position: absolute;
    left: 45px;
    top: 13px;
    white-space: nowrap;
    z-index: -1;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
}

.az-search-bar-input:focus~.az-search-bar-input-label,
.az-search-bar-input:not(:placeholder-shown)~.az-search-bar-input-label {
    display: none;
}

.az-search-bar-icon {
    position: absolute;
    left: 10px;
    top: 12px;
}

.az-icon-search {
    stroke: #909090;
    height: 18px;
    width: 18px;
}

.az-search-dropdown {
    position: absolute;
    top: 100%;
    width: 100%;
    margin-top: 5px;
    display: none;
    opacity: 0;
    transition: opacity 150ms ease;
}

.az-search-dropdown::before {
    content: '';
    background-color: rgba(245, 245, 245, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
}

.az-predict-search-list, .az-popular-products-search {
    font-size: 14px;
    max-height: 60vh;
    overflow: auto;
    padding: 0;
    outline: none;
    background-color: white;
    border-radius: 12px;
}

.az-predict-search-list-item {
    width: 100%;
    padding: 5px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    outline: none;
    background-color: white;
    position: relative;
    cursor: pointer;
    margin: 0;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    grid-column: span 2;
    display: flex;
    gap: 8px;
    align-items: center;
}

.az-predict-search-list-item:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.az-predict-search-list-item:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.az-predict-search-list-item:hover {
    border-color: rgba(0, 0, 0, 0.4);
    color: #000;
}

.az-predict-search-list-item .az-search-bar-icon{
  top: 9px;
}

.az-popular-searches-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.az-search-bar-popular-product-image {
    border-radius: 12px;
    overflow: hidden;
    height: 100px;
}

.az-search-bar-popular-product-image svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 450px) {
    .az-search-bar-product-card:nth-last-child(-n+2) {
        display: none;
    }
}

.az-search-bar-product-card,
.az-search-bar-product-card-placeholder {
    width: 100px;
}

.az-search-bar-product-card-price {
    font-size: 16px;
    color: #000;
}

.az-search-bar-product-card-title {
    color: #000;
    font-size: 14px;
}

.typewriter-container {
    display: inline-flex;
    align-items: center;
}

.typewriter {
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.1em;
    animation: typing var(--time) steps(50, end) infinite;
}

.typewriter-blinker {
    height: 15px;
    width: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    translate: 0px 1px;
    animation: blinking var(--time) infinite;
}

@keyframes typing {
    0% {
        width: 0;
    }

    45% {
        width: 100%;
    }

    65% {
        width: 100%;
    }

    100% {
        width: 0;
    }
}

@keyframes blinking {
    52% {
        opacity: 1;
    }

    55% {
        opacity: 0;
    }

    58% {
        opacity: 1;
    }
}

.dropping-text-container {
    position: relative;
    height: 20px;
    display: block;
}

.dropping-text {
    width: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    animation: roll-text var(--time) linear infinite;
}

@keyframes roll-text {
    0% {
        opacity: 0;
        top: -50%;
        transform: rotateX(-45deg);
    }

    8% {
        opacity: 1;
        top: 20%;
        transform: rotateX(0);
    }

    12% {
        opacity: 1;
        top: 0%;
        transform: rotateX(0);
    }

    92% {
        opacity: 1;
        top: 0%;
        transform: rotateX(0);
    }

    100% {
        top: 50%;
        opacity: 0;
        transform: rotateX(45deg);
    }
}


/*NEW CSS*/



/* Fix for product suggestions display */
.az-suggestion-text {
    background-color: #2970B7;
    color: white;
    border-radius: 25px;
    padding: 12px 20px;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    text-decoration: none;
}

/* Fix dropdown behavior */
.az-search-dropdown {
    display: none;
    opacity: 0;
}

.az-search-bar-input:focus ~ .az-search-dropdown,
.az-search-bar-form:focus-within .az-search-dropdown {
    display: block;
    opacity: 1;
}

/* Styling for filter buttons */
button.facet-filters__button,
.filter-dropdown button {
    background-color: white;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

/* Product grid layout */
#atomz-product-grid,
.az-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.az-product-card-title {
    font-size: 14px !important;
}

/* Product card styling */
.az-search-bar-product-card {
    width: 100px;
    display: block;
}

/* Fix for dropdown arrows */
button.facet-filters__button::after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
}

/* Styling for category suggestion buttons */
.az-suggestion-text,
a[class^="az-suggestion"],
.batallas-espaciales-tematicas,
.sets-de-500-piezas,
.modelos-para-exhibicion,
.coleccion-para-adultos,
.naves-con-construccion-detallada {
    background-color: #2970B7;
    color: white;
    border-radius: 25px;
    padding: 12px 20px;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

/* Hover state for category buttons */
.az-suggestion-text:hover,
a[class^="az-suggestion"]:hover,
.batallas-espaciales-tematicas:hover,
.sets-de-500-piezas:hover,
.modelos-para-exhibicion:hover,
.coleccion-para-adultos:hover,
.naves-con-construccion-detallada:hover {
    background-color: #1E5C9A;
    text-decoration: none;
    color: white;
}

/* Container for suggestion buttons to ensure proper spacing */

.az-price-filter details{
  margin: 0;
  border: none;
}

.az-price-filter details[open]{
  padding: 0;
}

.az-price-filter details[open] summary ~ *{
  animation: none;
}

.az-price-filter{
  justify-content: center;
}

.grid-span-2{
    grid-column: span 2;
    padding-top: 0 !important;
}


.az-heading {
    font-size: 16px;
    color: #000;
    margin: 0;
    padding: 10px 0px 5px 12px; 
}

.az-results-heading {
  padding-top: 1em;
}
.az-suggestion-text {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.az-product-card-badge {
    display:none !important;
  background: linear-gradient(135deg, #ff6b6b, #cc6e6e) !important; 
  border: transparent !important; 
  top:5%;
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  font-size: 14px;
}

/* Hover effect */
.az-product-card-badge:hover {
        display:none !important;
  transform: translateY(-2px) !important; /* Slight lift on hover */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.15) !important; /* Enhanced shadow on hover */
}
.shopify-section-group-header-group:has(.az-search-bar) {
    z-index: 4;
    background-color: #F5F5F5;
}

.product-section--container:has(atomz-product-grid){
  margin: 0 !important;
}

.page-width:has(.az-search-bar) {
    margin: 0;
    overflow-x: clip;
    max-width: 100vw;
}

.az-search-bar-form {
    margin: 0;
}

/* .az-search-bar{
    z-index: 2;
    background-color: #F5F5F5;
} */

@media (prefers-reduced-motion: no-preference) {
    .scroll-trigger:not(.scroll-trigger--offscreen).animate--slide-in:has(.az-search-bar) {
        animation: none;
    }
}

@media (prefers-reduced-motion: no-preference) {

    .scroll-trigger.animate--fade-in:has(.az-search-bar),
    .scroll-trigger.animate--slide-in:has(.az-search-bar) {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .scroll-trigger.animate--slide-in:has(.az-search-bar) {
        transform: none;
    }
}

.az-perdict-search-product-grid .az-link, .az-popular-search-product-grid .az-link {
    width: 100%;
}

.az-link {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

.az-responsive-image {
    position: relative;
    padding-top: 100%;
}

.az-responsive-image>img {
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: inherit;
}

.az-search-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    background-color: #ffd500;
    z-index: 698;
    position: relative;
}

.az-search-bar-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 5px;
}

.az-search-bar-wrapper::before {
    content: '';
    position: absolute;
    background-color: white;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    z-index: -1;
}

.az-search-bar-input {
    width: 100%;
    padding: 10px 30px 10px 40px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    outline: none;
    background: transparent;
    font-size: 14px;
}

.az-search-bar-input:focus {
    border: 2px solid rgba(0, 0, 0, 0.4);
    outline: none;
    box-shadow: none;
}

.az-search-bar-input::placeholder {
    opacity: 0;
}

.az-search-bar-input-label {
    position: absolute;
    left: 45px;
    top: 13px;
    white-space: nowrap;
    z-index: -1;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
}

.az-search-bar-input:focus~.az-search-bar-input-label,
.az-search-bar-input:not(:placeholder-shown)~.az-search-bar-input-label {
    display: none;
}

.az-search-bar-icon {
    position: absolute;
    left: 10px;
    top: 12px;
}

.az-icon-search {
    stroke: #909090;
    height: 18px;
    width: 18px;
}

.az-search-dropdown {
    position: absolute;
    top: 100%;
    width: 100%;
    margin-top: 5px;
    display: none;
    opacity: 0;
    transition: opacity 150ms ease;
}

.az-search-dropdown::before {
    content: '';
    background-color: rgba(245, 245, 245, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
}

.az-predict-search-list {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.az-predict-search-list-item {
    width: 100%;
    padding: 10px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    outline: none;
    background-color: white;
    position: relative;
    cursor: pointer;
    margin: 0;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
}

.az-predict-search-list-item:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.az-predict-search-list-item:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.az-predict-search-list-item:hover {
    border-color: rgba(0, 0, 0, 0.4);
    color: #000;
}

.az-predict-search-list-item .az-search-bar-icon{
  top: 9px;
}

@media (max-width: 450px) {
    .az-search-bar-product-card:nth-last-child(-n+2) {
        display: none;
    }
}

.az-search-bar-product-card,
.az-search-bar-product-card-placeholder {
    width: 100px;
}

.az-search-bar-product-card-price {
    font-size: 16px;
    color: #000;
}

.typewriter-container {
    display: inline-flex;
    align-items: center;
}

.typewriter {
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.1em;
    animation: typing var(--time) steps(50, end) infinite;
}

.typewriter-blinker {
    height: 15px;
    width: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    translate: 0px 1px;
    animation: blinking var(--time) infinite;
}

@keyframes typing {
    0% {
        width: 0;
    }

    45% {
        width: 100%;
    }

    65% {
        width: 100%;
    }

    100% {
        width: 0;
    }
}

@keyframes blinking {
    52% {
        opacity: 1;
    }

    55% {
        opacity: 0;
    }

    58% {
        opacity: 1;
    }
}

.dropping-text-container {
    position: relative;
    height: 20px;
    display: block;
}

.dropping-text {
    width: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    animation: roll-text var(--time) linear infinite;
}

@keyframes roll-text {
    0% {
        opacity: 0;
        top: -50%;
        transform: rotateX(-45deg);
    }

    8% {
        opacity: 1;
        top: 20%;
        transform: rotateX(0);
    }

    12% {
        opacity: 1;
        top: 0%;
        transform: rotateX(0);
    }

    92% {
        opacity: 1;
        top: 0%;
        transform: rotateX(0);
    }

    100% {
        top: 50%;
        opacity: 0;
        transform: rotateX(45deg);
    }
}


/*NEW CSS*/

/az-compare-at-price

.az-results-heading {
  padding-top: 1em;
}
.az-suggestion-text {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}
.az-product-card-badge {
        display:none !important;
  background: #cc6e6e;
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  font-size: 14px;
}

             
.site-header-search-button {display:none;}

.az-search-bar, 
#shopify-section-atomz_header {
  position: sticky;
  top: 67px;
  z-index: 698;
  background-color: #fff; /* or match your header background */
}

.az-sticky-suggestions {
     top: 120px !important;
}


.az-discovery-prompt-contianer{
    z-index: 3;
    background-color: #F5F5F5;
}

.section-header ~ .shopify-section-group-header-group.az-discovery-prompt-contianer{
    z-index: 3;
}

.az-discovery-prompts {
    background-color: inherit;
    padding-top: 20px;
}

@media (min-width: 769px) { 
    .az-discovery-prompts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 769px) {
    .az-discovery-prompts {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        white-space: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

.az-discovery-prompts::-webkit-scrollbar {
    display: none;
}

.az-discovery-prompts-text {
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 12px !important;
    background-color: blue;
    color: white;
    cursor: pointer;
    line-height: 16px;
    transition: translate 0.2s, opacity 0.2s;
    animation: stackup-animate 1s linear;
    text-decoration: none;
}

@keyframes stackup-animate {
    0% {
        top: 4px;
        opacity: 0.5;
    }

    100% {
        opacity: 1;
        top: 0;
    }
}

.az-discovery-prompts-text:hover {
    opacity: 0.8;
    translate: 0 -5px;
}

.az-hidden{
    display: none !important;
}

#shopify-section-atomz_journey_prompts{
  position: sticky;
  top: 128px;
  z-index: 697;
  background-color: #fff;
}

@media (min-width: 769px) {
    .az-prdeict-list-gird, .az-popular-list-grid {
        display: none;
        grid-template-columns: 30% 70%;
    }

    .az-perdict-search-product-grid, .az-popular-search-product-grid {
        display: grid;
        grid-template-columns: 50% 50%;
        border-left: 1px solid rgba(0, 0, 0, 0.2);
    }

    .az-perdict-search-product-grid:has(.no-border), .az-popular-search-product-grid:has(.no-border) {
        border: none !important;
    }


    .az-predict-search-list-image, .az-popular-search-list-image {
        width: 60px;
        height: 60px;
    }
}

.az-predict-search-list-image, .az-popular-search-list-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
}

.az-predict-search-list-product-prompts {
    padding: 10px;
}

.az-predict-search-list-prompts, .az-popular-search-list-prompts {
    padding: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.az-search-list-icon {
    height: 18px;
    padding: 0 2px;
}

.az-predict-search-list-products, .az-popular-search-list-products {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 5px 0;
}

.az-perdict-search-product-grid, .az-popular-search-product-grid {
    margin: 10px 0;
    padding: 0 10px;
}

@media (max-width: 769px) {
    .az-perdict-search-product-grid .az-link:nth-last-child(-n+3),  .az-popular-search-product-grid .az-link:nth-last-child(-n+3) {
        display: none;
    }

    .az-predict-prompt:nth-last-child(-n+3), .az-popular-prompt:nth-last-child(-n+3) {
        display: none;
    }
}

.az-predict-prompt, .az-popular-prompt{
    cursor: pointer;
    border-radius: 10px;
}

.az-predict-prompt:first-child, .az-popular-prompt:first-child  {
    margin-top: 10px;
}

.az-predict-prompt:last-child, .az-popular-prompt:last-child {
    margin-bottom: 10px;
}

.az-predict-prompt:hover, .az-popular-prompt:hover{
    background-color: rgba(0,0,0,0.1);
}

.az-predict-prompt:hover .az-predict-search-list-text, .az-popular-prompt:hover .az-popular-search-list-text{
    padding-left: 5px
}

.az-predict-search-list-text, .az-popular-search-list-text{
    transition: padding-left 0.3s;
}

.az-perdict-search-product-grid .az-link:hover, .az-popular-search-product-grid .az-link:hover {
    background-color: rgba(0,0,0,0.1);
}

.az-perdict-search-product-grid .az-link, .az-popular-search-product-grid .az-link {
    padding-left: 5px;
    display: flex;
    border-radius: 10px;
}

.A-Btest-groups-testA .A-Btest-groupB{
    display: none !important;
}

.A-Btest-groups-testB .A-Btest-groupA{
    display: none !important;
}

.az--page-width {
  max-width: 1600px;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1079px) and (min-width: 720px) {
 .az--page-width {
    padding-right: 1.640625rem;
    padding-left: 1.640625rem;
  }
}
@media screen and (min-width: 1080px) {
  .az--page-width {
    padding-right: 40px;
    padding-left: 40px;
  }
}

/* Price styles */
.az-predict-search-list-image-compare-at-price{
    text-decoration: line-through;
    color: rgba(128, 128, 128, 1);
    font-size: 12px;
}