:root {
    --bg: #fafaf7;
    --bg-alt: #f0ebe3;
    --text: #1b1b1a;
    --muted: #6b6b66;
    --accent: #b25e3d;
    --accent-dark: #8e4830;
    --border: #e6e1d8;
    --white: #ffffff;
    --shadow: 0 8px 24px rgba(20, 18, 14, 0.06);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100vw;
}
img, video { max-width: 100%; height: auto; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; display: block; }

h1, h2, h3 { color: var(--text); font-weight: 700; line-height: 1.2; }
h1 { font-size: 2.6rem; margin: 0 0 1rem; }
h2 { font-size: 1.7rem; margin: 2.5rem 0 1rem; }
h3 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; }
p { margin: 0 0 1rem; }
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }
@media (max-width: 500px) {
    .container { padding: 0 12px; }
    body { font-size: 15px; }
    h1 { font-size: 1.55rem; line-height: 1.2; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.05rem; }
}

.topbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 50;
}
.topbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
    gap: 1rem;
}
.logo {
    font-weight: 800; font-size: 1.3rem; color: var(--text);
    letter-spacing: -0.02em;
    flex-shrink: 0;
}
.logo span { color: var(--accent); }
.topbar nav { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.topbar nav a { color: var(--text); font-weight: 500; }
.topbar nav a:hover { color: var(--accent); }
@media (max-width: 720px) {
    .topbar-inner { height: auto; padding: 0.75rem 0; flex-wrap: wrap; gap: 0.5rem; }
    .topbar nav { gap: 0.9rem; font-size: 0.92rem; }
    .topbar nav .btn-ghost { display: none; }
}
.btn-ghost {
    border: 1.5px solid var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: var(--accent) !important;
}
.btn-ghost:hover { background: var(--accent); color: var(--white) !important; }

.hero {
    position: relative;
    min-height: 520px;
    max-width: 100vw;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #2c4f5e 0%, #3d6f7a 40%, #b27843 100%);
    z-index: 0;
}
.hero-bg::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.15), transparent 60%);
}
.hero-bg-photo {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    z-index: 0;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
    z-index: 1;
}
.hero-with-photo .hero-inner { z-index: 2; }

/* ===== Public Gallery ===== */
.gallery-public {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
}
@media (max-width: 500px) {
    .gallery-public { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
}
.gallery-tile {
    position: relative;
    display: block;
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-alt);
    box-shadow: var(--shadow);
    transition: transform 0.15s;
}
.gallery-tile:hover { transform: scale(1.02); }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-tile .tile-noimg { display:flex;align-items:center;justify-content:center;height:100%;color:#888;font-weight:700; }
.gallery-tile .tile-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(0,0,0,0.55); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}

/* ===== Lightbox ===== */
.lightbox[hidden] { display: none !important; }
.lightbox {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,0.92);
    display: flex; align-items: center; justify-content: center;
}
.lb-content { max-width: 95vw; max-height: 85vh; display: flex; align-items: center; justify-content: center; }
.lb-content img, .lb-content video { max-width: 95vw; max-height: 85vh; display: block; object-fit: contain; }
.lb-close, .lb-prev, .lb-next {
    position: absolute; background: rgba(255,255,255,0.12);
    color: #fff; border: none; cursor: pointer;
    width: 48px; height: 48px; border-radius: 50%;
    font-size: 1.5rem; font-family: inherit;
}
.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }
.lb-caption { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); color: #fff; max-width: 80vw; text-align: center; font-size: 0.95rem; }

/* ===== Calendar ===== */
.calendar-container {
    background: var(--white);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin: 1.5rem 0;
}
.calendar-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.cal-nav {
    background: var(--bg-alt); border: none; cursor: pointer;
    width: 36px; height: 36px; border-radius: 50%;
    font-size: 1.3rem; color: var(--accent);
    font-family: inherit;
}
.cal-nav:hover { background: var(--accent); color: var(--white); }
.cal-range-label { font-weight: 700; font-size: 1.1rem; }

.calendar-months {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
@media (max-width: 500px) {
    .calendar-months { grid-template-columns: 1fr; gap: 1rem; }
    .calendar-container { padding: 0.75rem; }
}
.cal-month-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-dark);
    text-transform: capitalize;
}
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.cal-wd {
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 600;
    padding: 0.3rem 0;
}
.cal-day {
    aspect-ratio: 1;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    position: relative;
    user-select: none;
}
.cal-day .day-num { font-weight: 600; line-height: 1; }
.cal-day .day-price { font-size: 0.65rem; color: var(--muted); margin-top: 2px; }
.cal-day.empty { background: transparent; }
.cal-day.past { background: transparent; color: #ccc; cursor: not-allowed; }
.cal-day.past .day-price { display: none; }
.cal-day.busy { background: #efe7e0; color: #b29c8a; cursor: not-allowed; text-decoration: line-through; }
.cal-day.busy .day-price { display: none; }
.cal-day.free { background: #e6f5ea; color: var(--text); cursor: pointer; transition: background 0.1s; }
.cal-day.free:hover { background: #c8e8d0; }
.cal-day.sel-start, .cal-day.sel-end { background: var(--accent) !important; color: #fff !important; font-weight: 700; }
.cal-day.sel-start .day-price, .cal-day.sel-end .day-price { color: rgba(255,255,255,0.85); }
.cal-day.in-range { background: #f3dccf !important; color: var(--accent-dark); }

.calendar-legend {
    display: flex; gap: 1.25rem; justify-content: center; margin-top: 1rem;
    flex-wrap: wrap; font-size: 0.85rem; color: var(--muted);
}
.leg-item { display: flex; align-items: center; gap: 0.4rem; }
.leg-dot { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.leg-dot.free { background: #e6f5ea; border: 1px solid #c8e8d0; }
.leg-dot.busy { background: #efe7e0; border: 1px solid #d8c5b5; }
.leg-dot.selected { background: var(--accent); }

.booking-summary { margin-top: 1rem; }

@media (max-width: 700px) {
    .calendar-container { padding: 1rem; }
    .cal-day { font-size: 0.78rem; }
    .cal-day .day-price { font-size: 0.6rem; }
}
.hero-inner { position: relative; z-index: 1; color: var(--white); padding: 6rem 0; }
.hero h1 { color: var(--white); font-size: 3.2rem; }
.hero-lead { font-size: 1.25rem; opacity: 0.95; max-width: 580px; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
@media (max-width: 500px) {
    .hero { min-height: 320px; }
    .hero-inner { padding: 2.25rem 0; }
    .hero h1 { font-size: 1.7rem; line-height: 1.15; }
    .hero-lead { font-size: 0.95rem; margin-bottom: 1.25rem; }
    .hero-cta { flex-direction: column; gap: 0.5rem; }
    .hero-cta .btn-primary, .hero-cta .btn-secondary { padding: 0.7rem 1rem; font-size: 0.95rem; width: 100%; text-align: center; }
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 0.85rem 1.6rem;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.15s;
}
.btn-primary:hover { background: var(--accent-dark); color: var(--white); }

.btn-secondary {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    padding: 0.85rem 1.6rem;
    border-radius: 10px;
    font-weight: 600;
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); color: var(--white); }

.section { padding: 4rem 0; }
.section-alt { background: var(--bg-alt); }
@media (max-width: 500px) { .section { padding: 2.5rem 0; } }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
@media (max-width: 800px) {
    .two-col { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero h1 { font-size: 2.2rem; }
    h1 { font-size: 2rem; }
}

.amenities {
    background: var(--white);
    padding: 1.75rem 2rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
}
@media (max-width: 500px) {
    .amenities { padding: 1.1rem 1.1rem; }
    .amenities ul { padding-left: 1rem; }
}
.amenities ul { padding-left: 1.2rem; margin: 0 0 1rem; }
.amenities li { margin-bottom: 0.35rem; }

.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 2rem 0;
}
@media (max-width: 800px) {
    .price-cards { grid-template-columns: 1fr; gap: 0.75rem; margin: 1.25rem 0; }
}
.price-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--accent);
    transition: transform 0.15s, box-shadow 0.15s;
}
.price-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(20, 18, 14, 0.1);
}
.price-card:nth-child(1) { border-top-color: #6b9aa8; }
.price-card:nth-child(2) { border-top-color: #c69a5b; }
.price-card:nth-child(3) { border-top-color: #b25e3d; }

.price-card-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 0.5rem;
}
.price-card-period {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.price-card-value {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}
@media (max-width: 500px) {
    .price-card { padding: 1.25rem 1rem; }
    .price-card-value { font-size: 1.9rem; }
}
.price-card-unit {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 0.4rem;
}

.longterm-note {
    background: var(--white);
    border-left: 4px solid var(--accent);
    padding: 1rem 1.25rem;
    border-radius: 0 10px 10px 0;
    margin: 1.5rem 0 0.75rem;
    box-shadow: var(--shadow);
    font-size: 0.98rem;
}
.longterm-note strong { color: var(--accent-dark); }

.book-wrap { max-width: 760px; }
.booking-form {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
    margin: 1.5rem 0;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}
@media (max-width: 700px) {
    .form-row { grid-template-columns: 1fr; }
}
.form-row label { display: flex; flex-direction: column; gap: 0.35rem; }
.form-row label span { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.form-row input {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.7rem;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg);
}
.form-row input:focus { outline: 2px solid var(--accent); border-color: transparent; }

.price-result {
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}
.pr-row { display: flex; justify-content: space-between; padding: 0.4rem 0; }
.pr-row.pr-total {
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    font-weight: 700;
    font-size: 1.15rem;
}
.pr-row.pr-prepay {
    color: var(--accent);
    font-weight: 600;
}
.pr-row .discount { color: #1f8a3f; font-weight: 600; }
.error { color: #c0392b; font-weight: 500; }

.contact-block {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
}
.contact-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}
.contact-btn:hover { background: var(--accent-dark); color: var(--white); }

.footer {
    background: var(--text);
    color: var(--white);
    padding: 2.5rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 2rem;
}
@media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr; }
}
.footer-title { font-weight: 800; font-size: 1.3rem; }
.footer-sub { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 0.4rem; }
.footer-heading {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.93rem; }
.footer a { color: var(--white); }
.footer a:hover { color: rgba(255,255,255,0.7); }

.offer-text-public {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow);
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.55;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 1.5rem 0;
}

.contacts-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow);
    margin: 1rem 0 1.5rem;
}
.contacts-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.contacts-row:last-child { border-bottom: none; }
.contacts-row span { color: var(--muted); flex-shrink: 0; }
.contacts-row strong { text-align: right; }

.narrow ul { padding-left: 1.5rem; }
.narrow li { margin-bottom: 0.4rem; }

.center { text-align: center; }
.btn-big {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
}

.summary-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow);
    margin: 1.5rem 0 2rem;
}
@media (max-width: 500px) {
    .summary-card { padding: 1rem 1.1rem; }
    .summary-row { font-size: 0.92rem; padding: 0.4rem 0; }
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}
.summary-row:last-child { border-bottom: none; }
.summary-row.pr-total {
    font-size: 1.15rem;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 2px solid var(--text);
    border-bottom: none;
}
.summary-row.pr-prepay {
    color: var(--accent);
    font-weight: 600;
}

.intro-box {
    background: linear-gradient(135deg, #f8f4ec 0%, #f0ebe3 100%);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    margin: 1.5rem 0 2.5rem;
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow);
}
@media (max-width: 500px) {
    .intro-box { padding: 1.1rem 1.1rem 1.1rem 1.2rem; }
    .intro-box .intro-title { font-size: 1.15rem; }
    .intro-box p { font-size: 0.94rem; }
}
.intro-box .intro-title {
    margin: 0 0 0.75rem;
    font-size: 1.4rem;
    color: var(--accent-dark);
}
.intro-box p { margin: 0 0 0.75rem; line-height: 1.6; }
.intro-box p:last-child { margin-bottom: 0; }

.booking-form-full { display: block; }
.booking-form-full h2 {
    font-size: 1.3rem;
    margin: 2.5rem 0 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
@media (max-width: 500px) {
    .booking-form-full h2 { font-size: 1.1rem; margin-top: 1.75rem; }
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}
@media (max-width: 500px) {
    .step-num { width: 26px; height: 26px; font-size: 0.85rem; }
}
.booking-form-full > p.muted { margin-top: 0.5rem; margin-bottom: 1rem; }
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
    margin: 1rem 0;
}
@media (max-width: 700px) {
    .grid-2 { grid-template-columns: 1fr; }
}
.grid-2 label { display: flex; flex-direction: column; gap: 0.3rem; }
.grid-2 label.span-2 { grid-column: 1 / -1; }
.grid-2 label span {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600;
}
.grid-2 input, .grid-2 select {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.7rem 0.85rem;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg);
}
.grid-2 input:focus, .grid-2 select:focus {
    outline: 2px solid var(--accent);
    border-color: transparent;
}

.file-upload {
    display: block;
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    background: var(--bg-alt);
    border-radius: 10px;
    border: 2px dashed var(--border);
}
.file-upload > span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.file-upload input { display: block; margin-top: 0.4rem; }
.file-upload small { display: block; margin-top: 0.3rem; }

.offer-block {
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin: 1rem 0 1.5rem;
    box-shadow: var(--shadow);
}
.offer-block summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--accent);
    padding: 0.25rem 0;
}
.offer-text {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.92rem;
    line-height: 1.55;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: inherit;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1rem 0;
    padding: 0.85rem 1rem;
    background: var(--bg-alt);
    border-radius: 8px;
    cursor: pointer;
}
.checkbox-row input[type=checkbox] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.checkbox-row span { font-size: 0.95rem; line-height: 1.5; }

.pay-placeholder {
    background: var(--bg-alt);
    border-radius: 14px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}
.pay-placeholder h3 { margin-top: 0; }

.contract-link {
    background: var(--bg-alt);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 0;
    text-align: center;
}
.btn-secondary-light {
    display: inline-block;
    background: var(--white);
    color: var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    border: 1.5px solid var(--accent);
    text-decoration: none;
    transition: background 0.15s;
}
.btn-secondary-light:hover {
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
}
.contract-link p { margin-top: 0.75rem; margin-bottom: 0; }

.ocr-status {
    margin-top: 0.75rem;
    padding: 0.7rem 0.9rem;
    border-radius: 8px;
    font-size: 0.92rem;
    line-height: 1.4;
}
.ocr-loading { background: #eaf3f7; color: #2c5b6a; }
.ocr-ok { background: #e6f5ea; color: #1f6f33; }
.ocr-warn { background: #fdf3e0; color: #8a5a13; }
.ocr-error { background: #fbeae8; color: #a82820; }

.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(0,0,0,0.15);
    border-top-color: #2c5b6a;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 0.4rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

input.autofilled, textarea.autofilled {
    background: #fdf8e8 !important;
    border-color: #d8c478 !important;
}
