:root {
    scroll-behavior: smooth;
    --fresh-green: #27ae60;
    --leafy-green: #2ecc71;
    --carrot-orange: #e67e22;
    --tomato-red: #e74c3c;
    --lemon-yellow: #f1c40f;
    --berry-blue: #3498db;
    --eggplant-purple: #8e44ad;
    --cream-bg: #fdfcfb;
    --mint-light: #f0f9f4;
    --forest-dark: #1b5e20;

    --primary: var(--fresh-green);
    --secondary: var(--carrot-orange);
    --success: var(--leafy-green);
    --danger: var(--tomato-red);
    --warning: var(--lemon-yellow);
    --info: var(--berry-blue);

    --card-shadow: 0 8px 30px rgba(39, 174, 96, 0.1);
    --card-shadow-hover: 0 15px 45px rgba(39, 174, 96, 0.15);
}

/* Global Styles */
body {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, var(--mint-light) 0%, #e6f0e9 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: #2c3e50;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

/* Navigation */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}

.navbar-logo {
    height: 48px;
    width: auto;
    margin-inline-end: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Cards */
.card {
    border: 1px solid rgba(39, 174, 96, 0.1);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--card-shadow-hover);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

/* Forms */
.form-control,
.form-select {
    border-radius: 12px;
    border: 2px solid #edf2f7;
    padding: 0.75rem 1.2rem;
    transition: all 0.2s ease-in-out;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--fresh-green);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.15);
}

/* Buttons */
.btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: var(--fresh-green);
    border-color: var(--fresh-green);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--leafy-green);
    border-color: var(--leafy-green);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.1rem;
}

/* Alerts */
.alert {
    border-radius: 8px;
    border: none;
}

/* Route Steps */
.route-step {
    position: relative;
    padding-inline-start: 50px;
}

.route-step::before {
    content: '';
    position: absolute;
    inset-inline-start: 15px;
    top: 40px;
    bottom: -20px;
    width: 2px;
    background-color: #dee2e6;
}

.route-step:last-child::before {
    display: none;
}

.step-number {
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    width: 26px;
    height: 26px;
    background-color: var(--fresh-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

/* Product Cards */
.product-item {
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
    border-inline-start: 5px solid var(--fresh-green);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.product-item.has-discount {
    border-inline-start-color: var(--carrot-orange);
    background-color: #fffaf0;
}

/* Price Display */
.price-original {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 0.9rem;
}

.price-current {
    color: var(--forest-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.price-savings {
    color: var(--tomato-red);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Store Cards */
.store-card {
    transition: all 0.2s ease-in-out;
}

.store-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Metrics Cards */
.metric-card {
    text-align: center;
    padding: 20px;
}

.metric-card i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--forest-dark);
}

.metric-label {
    color: #6c757d;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }

    .card-body {
        padding: 1rem;
    }

    .metric-card {
        padding: 15px;
        margin-bottom: 15px;
    }

    .route-step {
        padding-inline-start: 40px;
    }

    .step-number {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes hopping {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/*.spinning-rabbit {
    animation: hopping 0.6s infinite ease-in-out;
}*/

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spinner-classic {
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes fade-in-out {

    0%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }

    15%,
    85% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-out-up {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fade-out-up {
    animation: fade-out-up 0.6s forwards ease-in-out;
}

.fade-prompt {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-prompt.out {
    opacity: 0;
    transform: translateY(-10px);
}

.zen-input {
    font-size: 1.25rem;
    border: none;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    resize: none;
}

/* Responsive Header Spacing */
.header-spacing {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .header-spacing {
        margin-bottom: 2rem;
    }
}

.zen-input:focus {
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.15);
    outline: none;
}

.slide-in {
    animation: slideIn 0.5s ease-out forwards;
}

/* Hop Loader */
@keyframes shimmer {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

@keyframes messageScale {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hop-message-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 3rem;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hop-message-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2rem;
    line-height: 1.2;
    animation: shimmer 2s infinite ease-in-out;
}

.hop-message-subtext {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-top: 1rem;
    max-width: 600px;
}

.hop-step-animation {
    animation: messageScale 0.5s ease-out forwards;
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Gradient backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--fresh-green) 0%, var(--leafy-green) 100%) !important;
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--leafy-green) 0%, var(--forest-dark) 100%) !important;
}

.bg-fresh-navbar {
    background: linear-gradient(90deg, var(--fresh-green) 0%, var(--leafy-green) 100%) !important;
}

/* Custom Badge Colors */
.badge-discount {
    background-color: var(--carrot-orange);
}

.badge-top-deal {
    background: linear-gradient(135deg, #f39c12 0%, var(--carrot-orange) 100%);
    color: white !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.35em 0.65em;
    box-shadow: 0 3px 8px rgba(230, 126, 34, 0.4);
    border: none;
}

.badge-store {
    background-color: var(--fresh-green);
}

.offer-highlight {
    border-inline-start: 4px solid var(--carrot-orange) !important;
}

.badge-time {
    background-color: var(--berry-blue);
}

/* Footer */
footer {
    margin-top: auto;
}

/* Utility Classes */
.text-decoration-line-through {
    text-decoration: line-through;
}

.border-start-primary {
    border-inline-start: 5px solid var(--fresh-green) !important;
}

.border-start-success {
    border-inline-start: 5px solid var(--leafy-green) !important;
}

.bg-light-primary {
    background-color: rgba(39, 174, 96, 0.1) !important;
}

.bg-light-success {
    background-color: rgba(46, 204, 113, 0.1) !important;
}

/* Bootstrap Utility Overrides */
.text-primary {
    color: var(--fresh-green) !important;
}

.text-success {
    color: var(--leafy-green) !important;
}

.text-danger {
    color: var(--tomato-red) !important;
}

.text-warning {
    color: var(--lemon-yellow) !important;
}

.text-info {
    color: var(--berry-blue) !important;
}

.bg-primary {
    background-color: var(--fresh-green) !important;
}

.bg-success {
    background-color: var(--leafy-green) !important;
}

.border-primary {
    border-color: var(--fresh-green) !important;
}

.border-success {
    border-color: var(--leafy-green) !important;
}

.border-warning {
    border-color: var(--lemon-yellow) !important;
}

.border-info {
    border-color: var(--berry-blue) !important;
}

.border-secondary {
    border-color: var(--carrot-orange) !important;
}

.navbar-brand i {
    margin-inline-end: 8px;
}

.card-title {
    font-weight: 700;
}

.lead {
    font-weight: 500;
    color: #4a5568 !important;
}

/* Offer Cards */
.offer-card {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.offer-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.offer-image-container {
    width: 80px;
    height: 80px;
    min-width: 80px;
    padding: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-inline-end: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.zoomable-image {
    cursor: zoom-in;
}

.zoom-overlay {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background: rgba(39, 174, 96, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.offer-image-container:hover .zoom-overlay {
    opacity: 1;
}

.offer-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.offer-image-placeholder {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: #f8f9fa;
    font-size: 1.5rem;
    border-inline-end: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 576px) {

    .offer-image-container,
    .offer-image-placeholder {
        width: 60px;
        height: 60px;
        min-width: 60px;
        padding: 5px;
    }

    .offer-card .card-body {
        padding: 0.5rem 0.75rem !important;
    }

    .offer-card h6,
    .analyzed-offer-card h6 {
        font-size: 0.825rem !important;
        line-height: 1.2;
    }

    .offer-card .h5,
    .analyzed-offer-card .fw-bold.text-primary {
        font-size: 0.95rem !important;
    }

    .offer-card .tiny {
        font-size: 0.65rem !important;
    }
}

.opacity-90 {
    opacity: 0.9;
}

.tiny {
    font-size: 0.75rem;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Markdown & List Formatting */
.markdown-content p:last-child {
    margin-bottom: 0;
}

.markdown-content ul,
.markdown-content ol {
    padding-inline-start: 1.5rem;
    margin-bottom: 1rem;
}

.tips-list {
    list-style: none;
    padding-inline-start: 0;
    margin-bottom: 0;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.tips-list li:last-child {
    margin-bottom: 0;
}

.tips-list li i {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Premium Button */
.btn-premium {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--fresh-green);
    color: var(--fresh-green);
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-premium:hover,
.btn-premium:focus {
    background: var(--fresh-green);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.25);
}

.btn-premium i {
    transition: transform 0.3s ease;
}

.btn-premium:hover i {
    transform: scale(1.2) rotate(-10deg);
}

/* Premium Outline Button */
.btn-premium-outline {
    background: transparent;
    border: 2px solid var(--fresh-green);
    color: var(--fresh-green);
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-premium-outline:hover,
.btn-premium-outline:focus {
    background: var(--fresh-green);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.15);
}

.cursor-pointer {
    cursor: pointer;
}

/* Hide if zero savings */
.hide-if-zero {
    display: none !important;
}

/* For better list transitions */
.list-group-item {
    transition: background-color 0.2s ease;
}

.list-group-item:hover {
    background-color: rgba(39, 174, 96, 0.05) !important;
}

/* Map Container */
.map-card-container {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #f8f9fa;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.map-card-container:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(39, 174, 96, 0.3);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(1.1) contrast(1.05);
}

/* Google Places Autocomplete (New) */
gmp-place-autocomplete {
    flex: 1 1 auto;
    display: flex;
    color-scheme: light;
    /* Force light theme colors internally */
    border: none !important;
    outline: none !important;
    padding-inline-start: 5px;

}

/* Hop Log Main Message - Bigger */
.hop-log-message {
    font-size: 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Thinking Box Styling */
.hop-thinking-box {
    margin-top: 1rem;
    padding: 1.25rem;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1a1a1a !important;
    /* Dynamic height */
    min-height: 60px;
    height: auto;
    white-space: pre-wrap;
    text-align: start;
    width: 100%;
    max-width: 600px;
    margin-inline-start: auto;
    margin-inline-end: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

/* Custom Range Sliders */
.custom-range {
    height: 10px;
    background: linear-gradient(to bottom, #dae1e7, #e2e8f0);
    border-radius: 12px;
    outline: none;
    appearance: none;
    margin-top: 10px;
    margin-bottom: 15px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--fresh-green);
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background: var(--leafy-green);
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
}

.custom-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 3px solid white;
    border-radius: 50%;
    background: var(--fresh-green);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.custom-range::-moz-range-thumb:hover {
    background: var(--leafy-green);
}

/* Recent Searches Dropdown */
#recent-searches-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    z-index: 1050;
    overflow-y: auto;
    max-height: 220px;
    display: none;
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-5px);
    scrollbar-width: thin;
}

#recent-searches-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.search-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f9f9f9;
    font-size: 0.95rem;
    color: #495057;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:hover {
    background-color: #f8f9fa;
    color: #212529;
    padding-left: 20px;
}

.search-header {
    background: #fff;
    padding: 10px 16px 5px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-item i {
    margin-right: 10px;
    color: #ced4da;
    font-size: 0.9em;
}

/* Google Maps Autocomplete Customization */
gmp-place-autocomplete::part(icon),
.autocomplete-icon {
    display: none !important;
}

/* Store Search Progress Animations */
#search-icons div {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px;
    background: white !important;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

#search-icons .provider-icon {
    width: 21px !important;
    height: 21px !important;
    filter: grayscale(1);
    opacity: 0.4;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#search-icons i.provider-icon {
    font-size: 1.3rem !important;
    line-height: 1;
}

.emoji-icon {
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: saturate(0);
    transition: all 0.5s ease;
}

.searching-spinner .emoji-icon,
.search-complete .emoji-icon {
    filter: saturate(1) !important;
    transform: scale(1.1);
}

/* Searching Spinner State */
.searching-spinner .provider-icon {
    filter: grayscale(0) !important;
    opacity: 1 !important;
    transform: scale(1.05);
}

.searching-spinner::after {
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    width: 13px;
    height: 13px;
    border: 2px solid var(--fresh-green);
    border-top-color: transparent;
    border-radius: 50%;
    background: white;
    animation: spin 0.8s linear infinite;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Completion State */
.search-complete .provider-icon {
    filter: grayscale(0) !important;
    opacity: 1 !important;
}

.search-complete::after {
    content: var(--status-content, '\f272');
    font-family: var(--status-font, "bootstrap-icons") !important;
    position: absolute;
    top: -6px;
    right: -6px;
    background: white;
    color: var(--fresh-green);
    border-radius: 50%;
    font-size: 1rem;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    animation: messageScale 0.3s ease-out forwards;
    width: 14px;
    height: 14px;
}

.search-complete.has-count::after {
    font-weight: 800;
    font-size: 0.7rem;
    width: auto;
    min-width: 20px;
    padding: 0 4px;
    border-radius: 10px;
}

/* Promote Action Button for Alternatives */
.promote-btn {
    position: relative;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-left: 10px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.promote-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.promote-btn::after {
    content: "\F148";
    font-family: "bootstrap-icons" !important;
    position: absolute;
    top: -6px;
    right: -3px;
    color: var(--bs-success);
    font-size: 14px;
    font-weight: 900;
    text-shadow: 0 0 2px white;
    filter: opacity(.5);
}

.promote-btn:active {
    transform: scale(0.95);
}

.alternative-item:hover .promote-btn {
    border-color: rgba(40, 167, 69, 0.3);
}

/* Strategy Card */
.card-strategy {
    background: #d1e7dd;
    border: 1px solid rgba(27, 94, 32, 0.15);
}

.card-strategy .card-title {
    color: var(--forest-dark);
}

.card-strategy .markdown-content {
    color: #1e4620;
    /* Very dark green */
}