.product-image-area {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.product-image-container {
    border: 1px solid var(--theme-shadow-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
}

.product-image-rack {
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin: 5px 0 0 0;
}

.product-rack-image {
    width: 85px;
    border: 1px solid var(--theme-shadow-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    object-position: center;
    object-fit: cover;
    cursor: pointer;
}

.product-variants-container {
    margin: 20px 0;
}

.product-tags-container {
    margin: 0;
}

.product-main-image {
    width: 100%;
    /*aspect-ratio: 1;*/
}

.product-info-container {
    width: 50%;
    padding: 0 0 0 30px;
}

.product-title-label {
    font-weight: 400;
    font-size: var(--font-size-xxxxl);
}

.product-desc-html {
    margin: 30px 0;
    font-size: var(--font-size-body);
}

.product-price-label {
    font-size: var(--font-size-xxxl);
}

.product-select-button {
    width: 100%;
    margin: 50px 0;
    font-size: 1rem;
}

.personalization-link-container {
    width:100%;
    margin: 50px 0;
    text-align: center;
    display: flex;
}

.product-category-header {
    font-size: var(--font-size-xxxxxl);
    font-weight: var(--font-weight-bold);
    margin: 20px 0 10px 0;
    width: 100%;
    text-align: center;
}

/* Cards */

.product-card-container {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;
    align-items: center;

    padding: 10px 0;

    column-gap: 10px;
    row-gap: 10px;
}

.product-card-link {
    display: flex;
}

.card {
    position: relative;
    width: 250px;
    padding: 0;
    border: 1px solid var(--theme-shadow-color);
    transform: scale(1);
    transition: all .15s ease-in-out;
    display: flex;
    flex-direction: column;
    margin: 5px 10px 5px 0px;
    overflow: hidden;
    background-color: var(--theme-base-color);
    border-radius: var(--theme-border-radius);
}
.card:hover {
    box-shadow: 0px 0px 5px 0px var(--theme-shadow-color);
}
.card-image {
    cursor: pointer;
    width: 100%;
    object-fit: contain;
    aspect-ratio: 1;
}
.card-title {
    font-size: var(--font-size-xl);
    font-weight: bold;

    text-overflow: ellipsis;
    width: 95%;
    white-space: nowrap;
    overflow: hidden;

    cursor: pointer;
    margin: 8px 8px 0 8px;
}
.card-hook {
    position: absolute;
    top: 10px;
    left: 5px;
    background-color: var(--theme-component-color-secondary);
    color: var(--theme-base-color);
    border: 1px solid var(--theme-component-color-secondary);
    border-radius: 20px;
    padding: 2px 10px;
}
.card-hook label {
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-super-bold);
}
.card-bottom-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 3px 0px;
    box-sizing: border-box;
    width: 100%;
    padding: 8px;
}
.card-price {
    font-size: var(--font-size-xxl);
    margin: 5px 8px 5px 0;
}
.card-controls {
    display: flex;
}
.card-action {
    padding: 2px 10px;
    cursor: pointer;
    font-size: var(--font-size-l);
}
.card-action svg {
    width: 12px;
    height: 12px;
    margin: 0 0 0 5px;
}
.action-go {
    background-color: var(--theme-button-action-color);
    border: 1px solid var(--theme-button-action-border-color);
    border-radius: 0 15px 15px 0;
    color: var(--theme-base-color);
}
.action-detail {
    background-color: var(--theme-base-color);
    border: 1px solid var(--theme-shadow-color);
    border-radius: 15px 0 0 15px;
}
.card-featured {
    position: absolute;
    top: 18px;
    left: -22px;
    font-size: 11px;
    padding: 2px;
    background-color: #111111;
    color: #eeeeee;
    transform: rotate(-40deg);
    width: 108px;
    text-align: center;
    display: none;
}
.card-featured-show {
    display: block;
}

/* Widgets */

.product-tag {
    background-color: var(--theme-component-color-primary-25);
    padding: 5px 15px;
    border-radius: 15px;
    margin: 5px 10px 0 0;
    font-size: var(--font-size-m);
}

.product-tag:hover {
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 800px) {
    .product-image-area {
        width: 100%;
        justify-content: center;
    }
    .product-info-container {
        width: 100%;
        margin: 20px 0;
        padding: 0;
    }
    .product-title-label {
        font-size: var(--font-size-xxxxl);
    }
    .product-desc-html {
        margin: 20px 0;
        font-size: var(--font-size-body);
    }
    .product-card-container {
        justify-content: space-around;
        padding: 20px 0;
        column-gap: 2px;
    }
    .card {
        margin: 0;
        /*width: 150px;*/
    }
    .card-title {
        font-size: var(--font-size-l);
    }
    .product-card-link {
        width: 49%;
        justify-content: center;
    }
    .product-category-header {
        font-size: var(--font-size-xxxxl);
    }
    .card-hook label {
        font-size: var(--font-size-m);
        font-weight: var(--font-weight-super-bold);
    }
    .card-price {
        font-size: var(--font-size-l);
        margin: 5px 8px 5px 8px;
    }
}