* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.reveal {
    opacity: 1 !important;
    visibility: visible !important;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(66, 32, 6, 0.98);
    color: #fefce8;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

#cookie-banner.show {
    transform: translateY(0);
}

.iti {
    display: block;
    width: 100%;
}

.iti__flag-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

input[type="tel"] {
    padding-left: 52px !important;
}