.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1000; /* Ensure it's on top of other content */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease-in-out;
    transform: translateY(0); /* Start visible */
}

.cookie-bar.hidden {
    transform: translateY(100%); /* Move off-screen to hide */
}

.cookie-bar p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-link {
    color: #87ceeb;
    text-decoration: underline;
}

.cookie-button {
    background-color: #4CAF50; /* Green */
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cookie-button:hover {
    background-color: #45a049;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #f0fdf4; /* Light green background */
    color: #166534; /* Dark green text */
    margin-bottom: 70px !important;
}
.header-bg {
    background-color: #10b981; /* Emerald green */
}
.profile-card {
    background-color: #ecfdf5; /* Lighter emerald */
    border: 2px solid #059669; /* Darker emerald border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.subscribe-btn {
    background-color: #f59e0b; /* Amber */
    color: white;
    transition: background-color 0.3s ease;
}
.subscribe-btn:hover {
    background-color: #d97706; /* Darker amber */
}
.footer-bg {
    background-color: #065f46; /* Even darker green */
}
.featured {
    border: 5px solid #5051f1;
    background-color: #9c9;
}
.special {
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}
pickles {
    color: #0F0;
    font-weight: bolder;
}
.thumbs {
    display: inline-flex;
}
.thumbs thumb {
    width: 25%;
    padding: 1%;
    cursor: pointer;
}

.thumbs thumb img {
    width: 100%;
}