/* Shop page styles */

.shop-products {
    gap: 3rem;
}

/* Guide Product Card - Teaser View */

.guide-product-card {
    padding-block-end: 1rem;
    border-bottom: 1px solid var(--zm-border-color);
}

.guide-product-card__image {
    aspect-ratio: 1/1;
    background-color: var(--zm-bg-surface);
    padding: 1.5rem;
}

.guide-product-card__image .field--name-field-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.guide-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.guide-product-card__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.5rem;
}

.guide-product-card__title {
    font-family: var(--zm-font-family-primary);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-block-start: 1.5rem;
    margin-block-end: 0;
}

.guide-product-card__title a {
    text-decoration: none;
}

.guide-product-card__artist {
    font-family: var(--zm-font-family-primary);
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    margin-block-start: 0.5rem;
}

.guide-product-card__price {
    font-family: var(--zm-font-family-primary);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Guide Product - Detail View */

.guide-product--full {
    margin-block-start: 4rem;
}

@media (max-width: 767px) {
    .guide-product--full {
        margin-block-start: 2rem;
    }
}

.guide-product__images {
    max-width: 48rem;
    margin-inline: auto;
    margin-block-end: 3rem;
    border-radius: 0.9375rem;
    overflow: hidden;
    border: 4px solid var(--zm-border-color);
}

.guide-product__images img {
    width: 100%;
    height: auto;
}

@media (max-width: 939px) {
    .guide-product__images {
        margin-block-end: 2rem;
    }
}

.guide-product__title,
.guide-product__artist {
    text-align: center;
    font-size: 2.5625rem;
    font-family: var(--zm-font-family-primary);
}

@media (max-width: 1023px) {
    .guide-product__title,
    .guide-product__artist {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .guide-product__title,
    .guide-product__artist {
        font-size: 1.875rem;
    }
}

.guide-product__title {
    font-weight: 700;
    margin-block-end: 0;
}

.guide-product__artist {
    font-weight: 400;
    font-style: italic;
}

.guide-product__price {
    text-align: center;
    font-size: 1.8125rem;
    font-weight: 700;
    font-family: var(--zm-font-family-primary);
    margin-block-start: 1.5rem;
}

@media (max-width: 767px) {
    .guide-product__price {
        font-size: 1.4375rem;
        margin-block-start: 1.25rem;
    }
}

.guide-product__purchase :is(.form-item, .form-wrapper) {
    /* remove margin on hidden fields */
    margin: 0;
}

.guide-product__purchase .form-actions {
    text-align: center;
    margin-block: 2rem 2.5rem;
}

@media (max-width: 767px) {
    .guide-product__purchase .form-actions {
        text-align: center;
        margin-block: 1.5rem 2rem;
    }
}

.guide-product__section {
    padding-block: 3rem;
    border-top: 1px solid var(--zm-border-color);
}

@media (max-width: 939px) {
    .guide-product__section {
        padding-block: 2rem;
    }
}

.guide-product__section-heading {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
}

.guide-product__section-text {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.guide-product__description {
    text-align: center;
    padding-block: 2rem;
}

.guide-product__info-grid {
    display: flex;
    gap: 2rem;
}

@media (max-width: 939px) {
    .guide-product__info-grid {
        flex-wrap: wrap;
    }
}

.guide-product__details,
.guide-product__about {
    width: 50%;
}

@media (max-width: 939px) {
    .guide-product__details,
    .guide-product__about {
        width: 100%;
        text-align: center;
    }

    .guide-product__about {
        border-block-start: 1px solid var(--zm-border-color);
        padding-block-start: 2rem;
    }
}

.guide-product__details :is(ul, ol) {
    padding-inline-start: 0;
    list-style: none;
}
