﻿/* ============================
   ROOT / THEME (Desktop)
============================ */
:root {
    --color-primary: #97744b;
    --color-accent: #cdaa82;
    --color-brand: #478778;
    --color-text: #212529;
    --color-bg: #ffffff;
    --color-muted: #f8f9fa;
    --navbar-shadow: 0 4px 6px rgba(0,0,0,.08);
    --banner-height: 48px; /* fixed banner height */
    --navbar-pad-top: 4rem; /* spacing under banner */
    --max-content: 1200px;
}

/* ============================
   BASE
============================ */
html, body {
    font-family: 'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-x: hidden;
}

#layout_content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-top: 8rem;
}

main {
    flex-grow: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

    a:hover {
        color: var(--color-accent);
    }

/* ============================
   NAVBAR (Desktop)
============================ */
.navbar {
    position: absolute;
    background: #fff;
    width: 100%;
    z-index: 1055;
    box-shadow: var(--navbar-shadow);
    padding-top: 2rem;
}

.navbar-topnav .container-fluid {
    max-width: var(--max-content);
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 24px;
}

    .navbar-topnav .container-fluid .w-100 {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: flex-start;
        gap: 24px;
    }



/* desktop menu items */
.navbar-sidenav-menu-Item {
    color: var(--color-brand);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0 15px;
    transition: color .2s ease, transform .2s ease;
}

    .navbar-sidenav-menu-Item:hover {
        color: #d4f0d3;
        transform: translateY(-2px);
    }

/* icons */
.menu-icons {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: color .2s;
}

    .menu-icons:hover {
        color: #d4f0d3;
    }


/* ============================
   FOOTER (Desktop)
============================ */
.footer {
    margin-top: auto;
    background: var(--color-muted);
    padding: 5px 0;
}

    .footer .container {
        max-width: var(--max-content);
        margin-inline: auto;
        padding-inline: 24px;
    }

.footer-links-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto;
    padding: 10px 0;
}

.footer-item {
    flex: 1;
    min-width: 220px;
}

.footer-link {
    color: #343a40;
    font-size: 1rem;
    display: flex;
    align-items: center;
    transition: color .2s;
}

    .footer-link:hover {
        color: var(--color-accent);
        text-decoration: underline;
    }

.footer-icon {
    margin-right: 8px;
    color: var(--color-accent);
    font-size: 1.1rem;
}

.footer-bottom {
    background: #343a40;
    color: #fff;
    padding: 10px 0;
}

    .footer-bottom p {
        margin: 0;
        font-size: .9rem;
    }

/* ============================
   DROPDOWNS (Desktop)
============================ */

/* Base dropdown */
.navbar .dropdown-menu {
    background: #fff;
    border: 1px solid #e1e1e1;
    box-shadow: var(--navbar-shadow);
    padding: 10px 0;
    text-align: left;
    max-height: 18rem;
    overflow-y: auto;
    overflow-x: hidden;
}

    .navbar .dropdown-menu.show {
        display: inline-block;
    }

/* Items */
.navbar .dropdown-item {
    padding: 8px 15px;
    color: var(--color-brand);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .2s, color .2s;
}

    .navbar .dropdown-item:hover {
        background: var(--color-accent);
        color: #fff;
    }

/* Wide, grid-style menus (works for Brands & Categories) */
.navbar .dropdown-menu.dropdown-branches-menu {
    width: 30rem;
    max-height: 25rem;
    padding: 10px;
}

/* Sticky search row */
.navbar .dropdown-menu .search-sticky {
    position: sticky;
    top: -10px;
    z-index: 5;
    background: #fff;
    margin: 0;
    padding: 0.3rem;
}

    .navbar .dropdown-menu .search-sticky .form-control {
        width: 100% !important;
        padding: 10px 15px;
        border: 1px solid #ccc;
        border-radius: 25px;
        background: #f9f9f9;
        font-size: 1rem;
        box-shadow: 0 1px 5px rgba(0,0,0,.1);
        transition: border .2s, box-shadow .2s;
    }

        .navbar .dropdown-menu .search-sticky .form-control:focus {
            outline: none;
            border-color: var(--color-accent);
            box-shadow: 0 0 8px rgba(205,170,130,.5);
        }

/* Picture grid */
.navbar .dropdown-menu .dropdown-pictures > .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
    padding: 1rem;
    margin: 0;
}

.navbar .dropdown-menu .dropdown-pictures .picture-container {
    width: 100%;
}

.navbar .dropdown-menu .dropdown-pictures .picture-overlay {
    aspect-ratio: 1/1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-bottom: 1px solid var(--color-accent);
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}

.navbar .dropdown-menu .dropdown-pictures img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    padding: .3rem;
    transition: transform .2s;
}

.navbar .dropdown-menu .dropdown-pictures .image-title {
    position: static !important;
    background: transparent !important;
    color: var(--color-text);
    font-size: .95rem;
    font-weight: 600;
    text-align: center;
    padding: 6px 8px;
    line-height: 1.2;
    transition: transform .2s;
}

.navbar .dropdown-menu .dropdown-pictures .picture-overlay:hover img,
.navbar .dropdown-menu .dropdown-pictures .picture-overlay:hover .image-title {
    transform: scale(1.05);
    cursor: pointer;
}

/* Empty state */
.navbar .dropdown-menu .no-brand-results {
    display: none;
    padding: 6px 8px;
}


.category-card {
    width: 8rem;
    border: 1px solid #ceac85;
    border-radius: .5rem;
    overflow: hidden;
    height: 10rem;
}

    .category-card:hover {
        transform: scale(1.05);
        cursor: pointer;
    }

    .category-card .card-body {
        padding: .5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.category-thumb {
    width: 100%;
    height: 72px;
    object-fit: contain;
    display: block;
}

.category-card .card-footer {
    background: transparent;
    border-top: 0;
    padding: 0rem .5rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: absolute;
    bottom: 0px;
    font-size: 0.9rem;
}


/* ============================
   DESKTOP RESPONSIVE TWEAKS
============================ */
/* widen content on very large desktops */
@media (min-width:1400px) {
    :root {
        --max-content: 1320px;
    }
}

/* tighten spacing on smaller desktops */
@media (min-width:992px) and (max-width:1199.98px) {
    .navbar-topnav .container-fluid {
        padding-inline: 16px;
    }

    .navbar-sidenav-menu-Item {
        padding: 0 10px;
    }

}

/* ============================
   SCROLLBARS (subtle)
============================ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: #e5e5e5;
    border-radius: 3px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--color-accent);
    }



.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background: #4CAF50;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

    .submit-btn:hover {
        background-color: #43a047; /* Dark green on hover */
        border-color: #478778;
        color: #fff; /* White text when hovered */
        transform: scale(1.05); /* Slight pop effect */
    }

    .submit-btn:active {
        background-color: #43a047; /* Even darker green when pressed */
        border-color: #356358;
        transform: scale(0.95); /* Press down effect */
    }

    .submit-btn:disabled {
        background-color: #e6f4e6;
        border-color: #e6f4e6;
        color: #9bb9a0;
        cursor: not-allowed;
        opacity: 0.65;
    }


.social-sticky {
    position: fixed;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1040;
    padding-top: 5rem;
}

/* Base icon button */
.social-media-icon {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #658778;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,.12);
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

    .social-media-icon i {
        font-size: 18px;
        line-height: 1;
    }

    .social-media-icon:hover {
        transform: translateX(-2px) scale(1.05);
        box-shadow: 0 10px 22px rgba(0,0,0,.18);
    }

/* Emphasis for Shop */
.shop-icon {
    background: linear-gradient(135deg,#fd657b 0%, #53265E 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(253,101,123,.35);
    animation: pulse 1.6s infinite;
}

    .shop-icon:hover {
        transform: translateX(-2px) scale(1.12);
    }

    .shop-icon::after {
        content: "Shop";
        position: absolute;
        right: 54px; /* show label to the left of the bubble */
        top: 50%;
        transform: translateY(-50%);
        background: #222;
        color: #fff;
        padding: 4px 8px;
        font-size: 12px;
        border-radius: 999px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease;
    }

    .shop-icon:hover::after {
        opacity: 1;
        transform: translateY(-50%) translateX(-2px);
    }

.favorite-icon {
    position: relative; /* needed for tooltip */
    background: #f9fdfc;
    border: 1px solid rgba(0,0,0,.12);
    box-shadow: 0 3px 8px rgba(0,0,0,.1);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
    color: #dc3545;
}

    /* icon color */
    .favorite-icon i {
        font-size: 20px;
        transition: color .15s ease;
    }

    /* tooltip box (LEFT side) */
    .favorite-icon::after {
        content: "Favorites";
        position: absolute;
        top: 50%;
        right: 110%; /* place on left side */
        transform: translateY(-50%);
        background: #333;
        color: #fff;
        font-size: 12px;
        padding: 4px 8px;
        border-radius: 4px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity .15s ease, transform .15s ease;
    }

    /* show tooltip on hover */
    .favorite-icon:hover::after {
        opacity: 1;
        transform: translateY(-50%) translateX(-2px);
    }


/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(253,101,123,.45);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(253,101,123,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(253,101,123,0);
    }
}

/* Small screens: nudge inward a bit */
@media (max-width:576px) {
    .social-sticky {
        right: 8px;
        gap: 8px;
    }

    .social-media-icon {
        width: 40px;
        height: 40px;
    }
}

/*------- Set Favorites ------- */

.add-to-favorites {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #cca67c;
    font-size: 1rem;
    padding: 10px;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    z-index: 1;
}

    .add-to-favorites:hover {
        color: #dc3545;
        transform: scale(1.1);
    }

    .add-to-favorites:active {
        color: #dc3545;
        transform: scale(0.95);
    }

.is-favorited {
    color: #dc3545;
}
    .is-favorited:hover {
        color: #cca67c;
        transform: scale(1.1);
    }

#ajax-loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    width: 0%;
    background: linear-gradient(135deg, #fd657b 0%, #53265E 100%);
    z-index: 9999;
    transition: width .25s ease;
    display: none;
}

/* Cookie popup wrapper */
#cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    z-index: 10000;
    font-family: sans-serif;
    text-align: center;
    animation: slideUp 0.4s ease;
}

.cookieTitle {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

.cookieText {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}

    .cookieText .link {
        color: #007BFF;
        text-decoration: none;
        font-weight: 500;
    }

        .cookieText .link:hover {
            text-decoration: underline;
        }

#cookie-popup .submit-btn {
    padding: 0.6rem 1.5rem;
    background: #4CAF50;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

    #cookie-popup .submit-btn:hover {
        background: #43a047;
    }

@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

#goTopBtn {
    position: fixed;
    bottom: 24px;
    right: 12px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #212529, #1987549e);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    display: none;
}

    #goTopBtn:hover {
        transform: translateY(-4px);
    }


.add-to-basket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f9506b;
    color: #f1f1f1;
    font-size: 1rem;
    padding: 10px;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,.2);
    z-index: 1;
}

    .add-to-basket:hover {
        background-color: #ffffff;
        color: #dc3545;
        transform: scale(1.1);
    }

    .add-to-basket:active {
        background-color: #ffffff;
        color: #dc3545;
        transform: scale(1.1);
    }


.hidden {
    display: none;
}

#showMenu {
    position: fixed;
    top: 50%;
    right: -10px;
    height: 44px;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 44px;
    cursor: pointer;
    z-index: 1000;
    width: 2.3rem;
    justify-content: center;
    display: flex;
    background: linear-gradient(135deg, #212529, #1987549e);
}

    #showMenu:hover {
        transform: translateX(-2px) scale(1.05);
        box-shadow: 0 10px 22px rgba(0,0,0,.18);
    }

#hideMenu {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #212529, #1987549e);
    color: #fff;
    align-items: center;
    justify-content: center;
    border: #dbc1a3;
    font-size: xx-large;
    display: flex;
}

    #hideMenu:hover {
        transform: translateX(-2px) scale(1.05);
        box-shadow: 0 10px 22px rgba(0,0,0,.18);
    }

/* Card Item Styling */

.product-card {
    border-radius: 8px;
    overflow: hidden; /* keep corners tidy */
    transition: transform .2s ease;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-color: #dbc1a3;
}

    .product-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 32px #97744b47;
    }

.card-ribbon {
    position: absolute;
    top: 13px;
    right: -3rem;
    z-index: 10;
    width: 160px;
    height: 3rem;
    background: linear-gradient(135deg, #fd657b 0%, #53265E 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px -5px #cdaa82;
    text-align: center;
}

.image-container {
    padding: 0.7rem;
}

.tile-caption {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    text-align: start;
    text-decoration-line: underline;
    text-decoration-color: #97744b;
    text-decoration-thickness: 1px;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
}

.clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.2rem;
}

.tile-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-bottom: 1px solid #d3bea6;
}

.tile-img-nonproduct {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.card-info {
    padding: 15px;
}

    .card-info h4 {
        font-size: 1.5rem;
        color: #478778;
        margin: 0 0 10px;
    }

    .card-info h5 {
        font-size: 1rem;
        color: #343a4047;
        margin: 0;
        text-align: start;
    }

.price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.item-health-label {
    background: #dbc1a3;
    color: #fff;
    padding: 5px 12px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

    .item-health-label i {
        font-size: 18px;
        color: #fff;
        cursor: pointer;
    }

    .item-health-label .icon {
        font-size: 1rem;
        margin-left: 8px;
        color: #32CD32;
    }

.old-price {
    text-decoration: line-through;
    color: #6c757d73;
    font-size: 1.3rem;
    display: block;
    margin-top: 5px;
}

.oos-label {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font: 700 12px/1 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #991b1b; /* text red-800 */
    background: #fee2e2; /* bg red-100 */
    border: 1px solid #fecaca; /* border red-200 */
}

/*=========================*/

#basketLink {
    position: relative;
    display: inline-block;
}

.basket-badge {
    position: absolute;
    right: -6px;
    bottom: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    background: #dc3545; /* red */
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 0 0 2px #fff; /* ring to separate from bg */
}

/* ======= Basket / Price Modals ======= */

/* shared backdrop */
.modal-backdrop.show {
    opacity: .25;
}

#shadesModal .modal-backdrop,
#shadesModal + .modal-backdrop,
#priceModal .modal-backdrop,
#priceModal + .modal-backdrop {
    backdrop-filter: blur(2px);
}

/* dialog sizing & centering */
#shadesModal .modal-dialog,
#priceModal .modal-dialog {
    max-width: 640px;
    width: calc(100% - 2rem);
    margin: 1rem auto;
}

@media (min-width: 768px) {
    #shadesModal .modal-dialog,
    #priceModal .modal-dialog {
        max-width: 720px;
        margin: 1.5rem auto;
    }
}

/* scrollable body with fixed height */
#shadesModal .modal-dialog.modal-dialog-scrollable .modal-content,
#priceModal .modal-dialog.modal-dialog-scrollable .modal-content {
    max-height: 85vh;
}

#shadesModal .modal-body,
#priceModal .modal-body {
    height: 375px;
    overflow-y: auto;
    padding: 1rem 1.25rem 1.25rem;
}

/* card look */
#shadesModal .modal-content,
#priceModal .modal-content {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.15);
    overflow: hidden;
}

/* header */
#shadesModal .modal-header,
#priceModal .modal-header {
    border: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,0));
}

#shadesModal .modal-title,
#priceModal .modal-title {
    font-weight: 600;
    letter-spacing: .2px;
}

/* close button */
#shadesModal .btn-close,
#priceModal .btn-close {
    box-shadow: none !important;
}

    #shadesModal .btn-close:focus,
    #priceModal .btn-close:focus {
        outline: 2px solid rgba(0,0,0,.25);
        outline-offset: 2px;
    }

/* motion */
@media (prefers-reduced-motion: no-preference) {
    #shadesModal.modal.fade .modal-dialog,
    #priceModal.modal.fade .modal-dialog {
        transform: translateY(8px) scale(.98);
        transition: transform .18s ease, opacity .18s ease;
        opacity: 0;
    }

    #shadesModal.modal.show .modal-dialog,
    #priceModal.modal.show .modal-dialog {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}


/* Search */

.search-container {
    padding: 1rem 4rem 0rem 4rem;
    width: 500px;
    max-width: var(--max-content);
    margin-inline: auto;
    padding-inline: 24px;
}

input[type="search"] {
    -webkit-appearance: none !important;
    background-clip: padding-box;
    background-color: white;
    vertical-align: middle;
    border-radius: 0.25rem;
    border: 1px solid #e0e0e5;
    font-size: 1rem;
    width: 100%;
    line-height: 2;
    padding: 0.375rem 1.25rem;
    -webkit-transition: border-color 0.2s;
    -moz-transition: border-color 0.2s;
    transition: border-color 0.2s;
}

    input[type="search"]:focus {
        transition: all 0.5s;
        box-shadow: 0 0 40px #f9d442b9;
        border-color: #f9d342;
        outline: none;
    }

form.search-form {
    display: flex;
    justify-content: center;
}

label {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: auto;
    align-self: center;
    margin-bottom: 0;
}

input.search-field {
    margin-bottom: 0;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: auto;
    align-self: center;
    height: 51px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

input.search-submit {
    height: 51px;
    margin: 0;
    padding: 1rem 1.3rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    font-family: "Font Awesome 5 Free";
    font-size: 1rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.button {
    display: inline-block;
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1.15;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    background: #f9d342;
    color: #292826;
    border: 1px solid transparent;
    vertical-align: middle;
    text-shadow: none;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}

    .button:hover,
    .button:active,
    .button:focus {
        cursor: pointer;
        background: #d4b743;
        color: #292826;
        outline: 0;
    }

.search-submit:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.6;
}

.menu-wrap {
    position: relative;
    display: inline-block;
}

.menu-btn {
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: color .2s;
}

    .menu-btn:focus-visible {
        outline: 2px solid #0b5ed7;
        outline-offset: 2px;
        border-radius: .5rem;
    }

    .menu-btn:hover {
        color: #d4f0d3;
    }

#searchMenu .search-container {
    position: absolute;
    z-index: 1000;
    /* hidden by default, animated in */
    opacity: 0;
    transform: translateY(6px) scale(.98);
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    margin-inline: 0; /* override center to align left under button */
}

#searchMenu.is-open .search-container {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: auto;
}



