.global-header{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.03);
}


.global-header .content-wrapper{
    padding: 20px 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}


.global-header-column .global-header__logo{
    width: 200px;
    height: auto;
    object-fit: contain;
}

/* Basket  */

.global-header-column .basket{
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 8px;
    cursor: pointer;
}

 .basket__icon{
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.basket__indicator{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    border-radius: 100%;
    padding: 2px;
    width: 30px;
    height: 30px;
    display: none;
}

.basket__indicator__text{
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.basket__indicator.show-indicator{
    display: flex;
}

.basket__contents {
    background-color: #fff;
    top: 52px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    padding: 20px;
    pointer-events: none;
    position: absolute;
    transition: .3s ease-in-out;
    width: max-content;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.basket__contents.show-contents{
    opacity: 1;
    pointer-events: all;
}

.basket__contents .primary-cta{
    margin-top: 20px;
    width: 100%;
}

/*  Basket -> Products */

.basket__contents__product{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    max-width: 400px;
    border-bottom: 1px solid black;
    padding: 5px 0px;
    align-items: center;
}

.basket__contents__product p{
    margin-bottom: 0px;
}

.basket__contents__product: last-of-type{
    border-bottom: 0px solid black;
}

.basket__contents__product img{
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.product__quantity{
    background-color: red;
    padding: 4px;
    display: flex;
    font-size: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: white;
    min-width: 20px;
    min-height: 20px;
}