@import url('https://fonts.googleapis.com/css2?family=Mate+SC&display=swap');

body {
    background: rgb(230, 224, 216);
}

.market-space {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-container {
    margin: 1.5rem;
    width: 100%;
    max-width: 70rem;
}

.image {
    width: 100%;
}

.image-text {
    text-align: center;
    font-family: 'Mate SC', serif;
}

.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fffbe7;
    color: #333;
    border: 1px solid #e0c97f;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 18px 24px;
    z-index: 9999;
    display: none;
    min-width: 280px;
    max-width: 90vw;
    text-align: center;
}
.cookie-popup button {
    margin-top: 10px;
    padding: 6px 18px;
    border: none;
    border-radius: 4px;
    background: #f7c948;
    color: #222;
    cursor: pointer;
    font-weight: bold;
}
.cookie-popup button:hover {
    background: #ffe066;
}