.privacy-consent[hidden] { display: none !important; }

.privacy-consent {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(12, 27, 20, 0.46);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    font-family: inherit;
}

.privacy-consent-card {
    width: min(100%, 520px);
    padding: 34px 34px 30px;
    background: rgba(255, 255, 255, 0.98);
    color: #102b20;
    border: 1px solid rgba(16, 43, 32, 0.10);
    border-radius: 22px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.privacy-consent-card::before {
    content: "●";
    display: block;
    margin-bottom: 14px;
    color: #078343;
    font-size: 1.35rem;
    line-height: 1;
}

.privacy-consent h2 {
    margin: 0 0 12px;
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.privacy-consent p {
    max-width: 430px;
    margin: 0 auto;
    color: #58675f;
    font-size: 0.96rem;
    line-height: 1.6;
}

.privacy-consent a {
    color: #315b47;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.privacy-consent-button {
    min-height: 48px;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1.5px solid #087d43;
    font: inherit;
    font-weight: 750;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.privacy-consent-button:hover { transform: translateY(-1px); }

.privacy-consent-button--accept {
    background: #087d43;
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(8, 125, 67, 0.18);
}

.privacy-consent-button--reject {
    background: #ffffff;
    color: #086f3d;
}


@media (max-width: 600px) {
    .privacy-consent { padding: 16px; }
    .privacy-consent-card { padding: 28px 20px 22px; border-radius: 18px; }
    .privacy-consent-actions { grid-template-columns: 1fr; }
    .privacy-consent-button { width: 100%; }
}

.privacy-choice-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 1.5px solid #087d43;
    border-radius: 999px;
    background: #ffffff;
    color: #086f3d;
    font: inherit;
    font-weight: 750;
    cursor: pointer;
}

.privacy-choice-reset:hover {
    background: #f3faf6;
}
