/* Layout */
main {
    display: flex;
    flex-flow: column;
}

section {
    display: flex;
    flex: 0 0 100%;
}

section.high-vertical-spacing {
    padding-top: 6em;
    padding-bottom: 6em;
}

section .content.centered-box {
    padding: 2em;
    width: 80%;
    margin: auto;
}

@media (max-width: 768px) {
    .container-fluid {
        width: 100%;
    }

    section .content.centered-box {
        width: unset;
        min-width: 80%;
    }
}

/* Shop information section */
#shop-intro {
    display: flex;
    align-content: center;
}

#shop-intro > div {
    flex: 0 0 50%;
}

#shop-intro .image {
    background-size: cover;
}

#shop-intro .content {
    padding: 2em;
}

#shop-intro .info-item {
    margin-top: 4em;
}

#shop-intro .info-item h1 {
    font-weight: 700;
}

#shop-intro .info-item h2 {
    font-size: 1.5em;
    font-weight: 700;
}

#shop-intro .info-item h2.seo-tagline {
    font-size: 0.9em;
    font-weight: 300;

    color: var(--accent-color);
}

#shop-intro .action-buttons .button {
    margin-top: 2em;
}

#shop-intro .action-buttons .button:first-of-type {
    margin-right: 2em;
}

@media (max-width: 768px) {
    #shop-intro {
        flex-direction: column;
    }

    #shop-intro .image {
        min-height: 20em;
    }

    #shop-intro .info-item {
        margin-top: 1em;
    }
}

/* Shop information section - Products */
#shop-intro .products ul {
    list-style: none;
    padding-left: 0;
}

#shop-intro .products svg {
    height: 1em;
    margin-right: 0.25em;

    fill: var(--accent-color);
}

/* Footer */
.footer {
    background-color: var(--secondary-background-color);
    padding: 4em;

    font-size: 0.8em;
}

.footer-content {
    position: relative;
    left: 10%;
    width: 80%;

    display: grid;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
}

.footer .list-header {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1em;
}

@media (max-width: 768px) {
    .footer-content {
        left: 0;
        width: 100%;

        grid-row-gap: 20px;
        grid-template-columns: 1fr;
    }
}

/* Shop site component - Contact icons & anchors */
a.highlighted i.fa {
    color: var(--accent-color);
}

a.highlighted span > i.contact-icon {
    margin-right: 0.5em;
}

/* Shop site component - Premium shop label */
p.premium-shop-label {
    font-size: 0.75em;

    margin: 0;
    padding: 0.25em 0.75em;
    width: fit-content;

    color: var(--white);
    background-color: var(--accent-color);
}

/* Shop site component - Opening hours */
.opening-hours ul {
    list-style: none;
    padding-left: 0;
}

.opening-hours li p {
    display: inline-block;
    min-width: 8em;
    margin-bottom: 0.25em;
    font-weight: 500;
}