:root {
    --background-color: #f2ece6;
    --text-color: #000000;
    --accent-color: #804a40;
    --secondary-color: #c3ced9;
    --body-padding: 2rem;
    --standard-padding: 2rem;
    --gap: 2rem;
}

body {
    background-color: var(--background-color);
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--body-padding) var(--body-padding) 7.5rem;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

header, div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    margin: var(--standard-padding) 0;
}

.numberfive-logo {
    width: 300px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", serif;
}
h1 {
    font-size: 2rem;
    font-weight: 100;
    font-style: normal;
    margin: var(--standard-padding) 0;
}

h1.numberfive-header-title {
    font-family: "Raleway", sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    margin: 20px;
    letter-spacing: 6px;
}

h1.section-title {
    text-align: center;
    font-weight: 300;
}

h2 {
    margin: var(--standard-padding) auto var(--standard-padding);
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: -1px;
    text-align: center;
}

h3 {
    font-weight: 400;
    text-transform: uppercase;
}

p {
    line-height: 1;
    font-weight: 400;
    font-size: 0.9rem;
}

img {
    width: 100%;
    height: auto;
}

#numberfive-menu-selections {
    max-width: 500px;
    margin: 0 auto;
}

hr {
    border: none;
    border-bottom: 1px solid #00000036;
    width: 100%;
    margin: var(--standard-padding) 0;
    scroll-margin-top: 1.5rem;
}

.details-list {
    width: 100%;
    display: flex;
    flex-direction: revert;
    gap: var(--gap);
    margin: var(--standard-padding) 0;
    border-top: 1px solid var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}
.menu-item.coffee, .menu-item.matcha {
    margin-bottom: var(--standard-padding);
}

.menu-item.coffee {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}
.menu-item.matcha {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}
.menu-item.coffee h2 {
    text-align: left;
    margin: 0;
    display: flex;
    flex-direction: row;
}
.coffee-item, .matcha-item {
    flex: 0 0 85%;
    align-items: flex-start;
    padding-right: 40px;
}
.menu_item.price {
    flex: 1;
    display: flex;
    align-items: end;
    justify-content: flex-end;
    font-weight: 800;
}
.menu_item.price p, p.menu-item-price {
    font-weight: 600;
}

.title {
    margin: var(--standard-padding) 0;
}

footer {
    margin: calc(var(--standard-padding)*5) 0 var(--standard-padding) 0;
}

.no5-sticky-menu {
    position: fixed;
    right: 50%;
    bottom: 1rem;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
    width: min(calc(100% - 2rem), 500px);
    background: rgba(242, 236, 230, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 8px;
    transform: translateX(50%);
    backdrop-filter: blur(12px);
}

.no5-sticky-menu-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0.5rem 0.2rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.no5-sticky-menu-link svg {
    width: 22px;
    height: 22px;
    margin-bottom: 0.25rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.no5-sticky-menu-link span {
    font-size: 0.64rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.no5-sticky-menu-link:hover,
.no5-sticky-menu-link:focus-visible {
    outline: none;
}

.no5-sticky-menu-link.is-active {
    color: #ffffff;
    background: var(--accent-color);
}