body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
}

footer {
    font-family: 'Roboto', sans-serif;
    letter-spacing: normal;
}

.card {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.card-img-top {
    max-height: 200px;
    object-fit: cover;
}

.product-image {
    max-width: 100%;
    height: auto;
}

.product-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 320px;
}

.card-body {
    flex: 1;
}

header .header-logo {
    height: 100px;
    margin-left: 10px;
}
header .navbar-toggler {
    margin-right: 10px;
}

header .navbar-brand {
    display: flex;
    align-items: center;
}

header .navbar-brand img {
    margin-right: 20px; /* Increased horizontal space between logo and title */
}

header .navbar-text {
    flex-grow: 1;
    text-align: center;
    color: #000; /* Black text color for header title */
}

header .nav-link {
    color: #000 !important; /* Black text color for nav links */
}


@media (max-width: 768px) {
    .navbar-text {
        font-size: 1.375rem; /* Further adjust font size for smaller screens */
    }

    .nav-link {
        font-size: 0.875rem; /* Further adjust font size for nav links on smaller screens */
    }
}

.footer-logo {
    height: 155px;
    max-width: 100%;
    /*max-height: 155px; !* Adjust the height as needed *!*/
    /*height: auto;*/
    width: auto;
}

.footer-logo-text {
    font-size: 1.5em;
    font-weight: 700;
    color: #f1f1f1;
}

.footer-address {
    text-align: left;
}

.footer-address p {
    margin: 0;
}

.footer-links {
    text-align: left;
}

.footer-links a {
    display: block;
    margin-bottom: 5px;
}

.payment-symbols {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.payment-symbols img {
    margin: 0 10px;
    max-width: 40px;
}

.footer-line {
    border-top: 1px solid #f1f1f1;
    margin-top: 10px;
    padding-top: 10px;
    font-size: 0.8em;
}

.bg-footer {
    background-color: #313137;
}

.text-footer {
    color: #f1f1f1;
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba%280, 0, 0, 1%29" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}

.product-details p {
    margin-bottom: 0.5rem;
}

.product-details .card-text {
    margin-bottom: 0.75rem;
}

footer a {
    text-decoration: none;
    color: inherit;
}

footer ul {
    margin: 0;
    padding: 0;
}

footer ul li {
    list-style-type: none;
    margin-bottom: 10px;
}

footer .is-divider {
    display: block;
    height: 3px;
    margin: 1em 0;
    max-width: 30px;
    width: 100%;
    background-color: hsla(0, 0%, 100%, .3);
}


/* Klarna styling */
.checkout label {
    font-family: Lato, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    height: auto;
    line-height: 23px;
}

.checkout ul li, .shop_table ul li {
    list-style: none;
    margin: 0;
}

.checkout ul {
    margin-top: 20px;
    padding-left: 5px;
}


.payment-icons .payment-icon {
    background-color: rgba(0, 0, 0, .1);
    border-radius: 5px;
    display: inline-block;
    margin: 3px 3px 0;
    opacity: .6;
    padding: 3px 5px 5px;
    transition: opacity .3s
}

.payment-icons .payment-icon svg {
    height: 20px;
    vertical-align: middle;
    width: auto !important
}

.payment-icons .payment-icon:hover {
    opacity: 1
}

.dark .payment-icons .payment-icon {
    background-color: hsla(0, 0%, 100%, .1)
}

.dark .payment-icons .payment-icon svg {
    fill: #fff
}

/* Additional styles for sidebar */
@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    .main-content {
        margin-left: 0;
    }
    .sidebar-toggle {
        display: block;
    }
}
@media (min-width: 769px) {
    .sidebar-toggle {
        display: none;
    }
}

/** To make sure the footer stays at the bottom **/
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

#footer {
    margin-top: auto;
}

@media (max-width: 576px) {
    .navbar-brand h1 {
        white-space: normal;
    }
}

.pickup-delivery .form-label {
    font-weight: 600;
}

.payment-card {
    transition: box-shadow 0.2s ease-in-out, translate 0.2s ease-in-out;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
}

.payment-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    translate: 0 -2px;
    cursor: pointer;
}

