
body { font-family: 'Inter', sans-serif; color: #4A4A4A; padding-bottom: 80px; }
h1, h2, h3, .font-serif { font-family: 'Playfair Display', serif; }

/* Sticky Mobile CTA & Countdown */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 50;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    border-top: 2px solid #2E5C31;
}

/* Checkmark List Style */
.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-weight: 500;
}
.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    background: #2E5C31;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Sales Popup Styling */
.sales-popup {
    position: fixed;
    bottom: 100px; /* Above sticky bar */
    left: 20px;
    z-index: 40;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: none;
    align-items: center;
    gap: 12px;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid #2E5C31;
    max-width: 300px;
}
@media (min-width: 768px) {
    .sales-popup { display: flex; }
}
.sales-popup.active { transform: translateY(0); }

/* Scarcity Bar Stripes */
.bg-stripes {
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 1rem 1rem;
}