/**
 * Theme Name:     AK Norah
 * Author:         FredagMorgon
 * Template:       hello-elementor
 * Text Domain:	   ak-norah
 * Description:    Ak Norahs child theme
 */
/* Ändrar färgerna på de olika navbars i hamburger menyn*/

.purple-nav {
    background-color: #F9F3FA !important; /* Ändra till önskad färg */
}

.blue-nav {
    background-color: #CEEDF5 !important; /* Ändra till önskad färg */
}


.akn-attributes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.akn-attributes label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: "neue-haas-grotesk-display", Sans-serif;
}

.akn-attributes ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.akn-attributes ul li {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: .875rem;
    font-family: "neue-haas-grotesk-display", Sans-serif;
}

.akn-attributes ul li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.akn-attributes ul li svg {
    width: 20px;
    height: 20px;
    vertical-align: text-bottom;
}

.akn-attributes ul li > div {
    height: 20px;
    line-height: 1.4;
}

@media ( max-width: 768px ) {

    .akn-attributes {
        grid-template-columns: 1fr;
    }

}



















.ak-product {
    display: flex;
    flex-direction: column;
}

.ak-product .image {
    position: relative;
}

.ak-product .image img {
    display: block !important;
    height: 350px !important;
    object-fit: cover;
}

.ak-product .image .news-bubble {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #2E2C26;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
    z-index: 2;
}

.ak-product .image .sale-bubble {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #2E2C26;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
    z-index: 2;
}

.ak-product .image .sale-bubble.lower {
    top: 45px;
}

.ak-product .body {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

.ak-product .body .title a {
    color: #2E2C26;
    font-weight: 450;
    font-size: 18px;
}

.ak-product .body .ak-price {
    color: #2E2C26;
    font-weight: 600;
    font-size: 20px;
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.ak-product .body .ak-price .ak-sale-price {
    color: #C52D2C;
}

.ak-product .body .ak-price .small {
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.ak-product .body .vol {
    font-size: 14px;
}

.ak-product .body .usp {
    font-size: 14px;
}


@media ( max-width: 768px ) {

    .ak-product .image img {
        height: 200px !important;
    }

}



.ak-free-shipping {
    background-color: #CEEDE2;
    padding: 12px;
    border-radius: 5px;
    display: inline-flex;
    font-size: 14px;
    align-items: center;
    gap: 8px;
}

.ak-free-shipping img {
    display: block;
}