.product-card-full-width h5 {
    font-weight: 400;
    font-size: 48px;
}

.product-card-full-width a {
    display: flex;
    cursor: pointer;
}

.product-card-full-width {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    background-size: cover;
    background-position: bottom;
}

.product-card-full-width .product-image {
    flex: 1;
    aspect-ratio: 1 / 1;
    width: 100%;
}

.product-card-full-width .product-attribute-icon {
    width: 40px;
    height: 40px;
}

.product-card-full-width .product-card-body {
    flex: 1;
    aspect-ratio: 1 / 1;
    width: 100%;
    padding: 24px;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 100%
    );
}

.product-card-full-width .product-name {
    margin-top: 16px;
    font-size: 48px;
    font-weight: 200;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--yellow);
}

.product-card-full-width .series-name {
    font-size: 24px;
    font-weight: 200;
}

.product-card-full-width .product-model-name span:first-child {
    font-size: 36px;
    font-weight: 900;
}

.product-card-full-width .product-model-name span {
    font-size: 36px;
    font-weight: 200;
}

.product-model-item {
    flex: 1;
}
.product-card-full-width .product-model {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-card-full-width .product-model-attributes {
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.product-card-full-width .product-model-attribute {
    border-top-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border: 1px solid var(--secondary);
}

.product-card-full-width .product-model-attribute-name {
    border-top-left-radius: 14px;
    background-color: var(--secondary);
    color: var(--black);
    font-size: 12px;
    font-weight: 400;
    padding: 4px 12px;
    text-wrap: nowrap;
}

.product-card-full-width .product-model-attribute-value {
    color: var(--secondary);
    font-size: 12px;
    padding: 4px 12px;
    font-weight: 400;
    text-wrap: nowrap;
}

@media (max-width: 576px) {

    .product-card-full-width .product-model-attribute {
        border-top-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    
    .product-card-full-width .product-model-attribute-name {
        border-top-left-radius: 8px;
        font-size: 10px;
        padding: 2px 8px;
    }
    
    .product-card-full-width .product-model-attribute-value {
        font-size: 10px;
        padding: 2px 8px;
    }

    .product-card-full-width .product-model-name span:first-child {
        font-size: 24px;
    }

    .product-card-full-width .product-model-name span {
        font-size: 24px;
    }
    
    
    .product-card-full-width {
        flex-direction: column-reverse;
        background-position: left;
    }

    .product-card-full-width .product-card-body {
        flex: 1;
        aspect-ratio: 1 / 1;
        width: 100%;
        padding: 24px;
        background: linear-gradient(
            0deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 100%
        );
    }

    .product-card-full-width .product-card-body {
        padding: 16px;
    }
}
