:root {
    --primary: #8b6508;
    --primary-dark: #6b4e05;
    --secondary: #f4f4f4;
    --dark: #1c1c1c;
    --text: #333;
    --text-light: #fff;
    --border: #e0e0e0;
    --accent: #d4af37;
    --shadow: 0 5px 15px rgba(0,0,0,.08);
    --transition: all .3s ease;
}

/* Footer link contrast on dark background */
.footer-link {
    color: rgba(255,255,255,.82) !important;
    text-decoration: none;
    transition: color .2s ease;
}
.footer-link:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* Cookie consent banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #1c1c1c;
    color: #ffffff;
    padding: 16px 22px;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    box-shadow: 0 -4px 15px rgba(0,0,0,.35);
}
.cookie-banner.show {
    display: flex;
}
.cookie-banner p {
    margin: 0;
    flex: 1 1 60%;
}

/* Notification toast */
.alert-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: #ffffff;
    color: #1c1c1c;
    padding: 14px 18px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
    opacity: 0;
    transition: opacity .3s ease;
}
.alert-notification.show {
    opacity: 1;
}

.section-padding{
    padding: 50px;
}