:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main { flex: 1; }

.image-zoom,
.image-zoom-thumb {
    cursor: zoom-in;
}

.image-zoom:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

#imageZoomModalImg {
    width: auto;
    max-width: 100%;
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.store-card, .category-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.store-card:hover, .category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.category-card { border: 1px solid #e5e7eb; }

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
}

.rating-input input { display: none; }

.rating-input label {
    cursor: pointer;
    color: #ddd;
    font-size: 1.5rem;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #ffc107;
}

[data-bs-theme="dark"] .card {
    border-color: #374151;
}

.promo-slot .promo-image {
    width: 100%;
    height: auto;
    min-height: 100px;
    max-height: 240px;
    object-fit: contain;
    background: #f8fafc;
}

.promo-card {
    overflow: hidden;
}

footer .promo-slot .promo-image {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.375rem;
}

footer .promo-slot .promo-item {
    padding: 0.25rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.375rem;
}

.site-footer {
    background-color: #212529 !important;
    color: #f8f9fa;
}

.site-footer h5,
.site-footer h6 {
    color: #fff;
}

.site-footer .footer-text {
    color: rgba(255, 255, 255, 0.7);
}

.site-footer a.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.15s ease;
}

.site-footer a.footer-link:hover,
.site-footer a.footer-link:focus {
    color: #fff;
    text-decoration: underline;
}

.site-footer .footer-bar {
    color: rgba(255, 255, 255, 0.65);
}

.contact-info-list li {
    padding-bottom: 0.25rem;
}

.contact-form .cf-turnstile {
    min-height: 65px;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 1.75rem; }
    .sticky-top { position: relative !important; top: 0 !important; }
}