/**
 * Custom Styles for FoodLovers & Coop Theme
 */

/* Footer Styles */
.site-footer {
    background-color: #f8f8f8;
    color: #333333;
    padding: 50px 0 20px;
    margin-top: 30px;
    border-top: 3px solid var(--primary-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    width: fit-content;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #555555;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-menu a::before {
    content: '→';
    color: var(--primary-color);
    margin-right: 8px;
    opacity: 0;
    transition: all 0.3s ease;
    position: absolute;
    left: -20px;
}

.footer-menu a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-menu a:hover::before {
    opacity: 1;
    left: 0;
}

/* Social Icons */
.footer-social .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(243, 146, 13, 0.3);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(243, 146, 13, 0.5);
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

/* Footer Middle - Logo */
.footer-middle {
    text-align: center;
    margin-bottom: 30px;
    padding: 0;
    border-bottom: none;
    background-color: transparent;
}

.footer-logo-wrapper {
    display: inline-block;
    background-color: #ffffff;
    padding: 25px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.footer-logo {
    display: inline-block;
}

.footer-logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    max-height: 60px;
    width: auto;
    height: auto;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
    height: auto;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding-top: 20px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    font-weight: 500;
}

.footer-legal a {
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.footer-legal a:hover {
    color: var(--primary-color);
    background-color: rgba(243, 146, 13, 0.1);
}

.footer-legal .separator {
    color: var(--border-color);
    margin: 0 5px;
    font-weight: 300;
}

.footer-copyright {
    font-size: 13px;
    color: #777777;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.footer-copyright p {
    margin: 0;
    line-height: 1.8;
}

.footer-copyright a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.footer-copyright .separator {
    margin: 0 10px;
    color: var(--border-color);
    font-weight: 300;
}

/* Entry Header & Title Styles */
article {
    max-width: 1200px;
    margin: 0 auto;
}

.entry-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.entry-title {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}

.page .entry-title,
.single .entry-title {
    text-align: center;
}

/* Page Content Styles */
.page-content {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.page-content h1,
.page-content h2,
.page-content h3 {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Entry Content Styles */
.entry-content {
    line-height: 1.8;
    margin-top: 20px;
    text-align: left;
}

.entry-content p {
    margin-bottom: 15px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.entry-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.entry-content a:hover {
    text-decoration: underline;
}

.entry-content ul,
.entry-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Post Thumbnail */
.post-thumbnail {
    margin-bottom: 20px;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Entry Meta */
.entry-meta {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
}

.entry-meta span {
    margin-right: 15px;
}

/* Read More Button */
.read-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: var(--primary-dark);
}

/* Page Links */
.page-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.page-links a {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    background-color: var(--bg-light);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 3px;
}

.page-links a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.search-field {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
}

.search-submit {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.search-submit:hover {
    background-color: var(--primary-dark);
}

/* Screen Reader Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999999;
}

.skip-link:focus {
    left: 6px;
    top: 7px;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
}

/* Widget Styles */
.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget a:hover {
    color: var(--primary-color);
}

/* Responsive Adjustments - Tablet */
@media (max-width: 1024px) {
    .entry-title {
        font-size: 32px;
    }

    .entry-content {
        font-size: 16px;
    }

    .footer-widgets {
        gap: 25px;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: calc(100% - 40px);
    max-width: 1200px;
    margin: 0 auto;
    min-height: 450px;
    max-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 60px 20px;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 20px auto;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    max-width: 900px;
    text-align: center;
}

.hero-subtitle {
    font-size: 20px;
    color: #ffffff;
    margin: 0 auto 35px auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    max-width: 700px;
    text-align: center;
}

.hero-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 146, 13, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 146, 13, 0.6);
    color: #ffffff;
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        width: calc(100% - 20px);
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-button {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 350px;
        width: calc(100% - 20px);
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Promo Cards Section Styles */
.promo-cards-section {
    margin: 30px 0 50px 0;
    padding: 0;
}

.promo-cards-container {
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.promo-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    min-height: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.promo-card-content {
    flex: 1;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.promo-card-1 .promo-card-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.promo-card-2 .promo-card-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.promo-card-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.promo-card-text {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 0 25px 0;
    line-height: 1.6;
}

.promo-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.promo-card-link span {
    transition: transform 0.3s ease;
    display: inline-block;
}

.promo-card-link:hover {
    color: var(--primary-dark);
}

.promo-card-link:hover span {
    transform: translateX(5px);
}

.promo-card-image {
    flex: 1;
    min-width: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.promo-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
}

/* Promo Cards Responsive */
@media (max-width: 768px) {
    .promo-cards-section {
        padding: 0;
    }

    .promo-cards-container {
        grid-template-columns: 1fr;
        gap: 25px;
        width: calc(100% - 20px);
    }
    
    .promo-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .promo-card-image {
        min-height: 200px;
        min-width: 100%;
    }
    
    .promo-card-content {
        padding: 30px 20px;
    }
    
    .promo-card-title {
        font-size: 24px;
    }
}

/* Winkels Section Styles */
.winkels-section {
    margin: 50px 0 0 0;
    padding: 0 20px;
}

.winkels-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.winkels-block {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.winkels-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.winkels-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.winkels-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(243, 146, 13, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.winkels-icon svg {
    width: 24px;
    height: 24px;
}

.winkels-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.winkels-image-wrapper {
    margin-top: 30px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.winkels-image-text {
    text-align: center;
    padding: 0;
}

.winkels-image-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.01em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-transform: none;
    text-shadow: 0 1px 2px rgba(243, 146, 13, 0.1);
}

.winkels-image {
    flex-shrink: 0;
}

.coop-team-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

.winkel-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.winkel-item:hover {
    background-color: #ffffff;
    border-left-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.winkel-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: #ffffff;
}

.winkel-icon svg {
    width: 20px;
    height: 20px;
}

.winkel-content {
    flex: 1;
}

.winkel-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 8px 0;
}

.winkel-address {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Winkels Responsive */
@media (max-width: 768px) {
    .winkels-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .winkels-block {
        padding: 25px 20px;
    }
    
    .winkels-title {
        font-size: 20px;
    }
    
    .winkel-item {
        padding: 12px;
    }
    
    .winkel-name {
        font-size: 16px;
    }

    .winkels-image-wrapper {
        margin-top: 20px;
        gap: 15px;
    }

    .winkels-image-title {
        font-size: 18px;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .footer-column {
        text-align: left;
    }

    .footer-title {
        text-align: left;
    }

    .footer-menu {
        text-align: left;
    }

    .footer-social .social-icons {
        justify-content: flex-start;
    }

    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }

    .footer-legal .separator {
        display: none;
    }

    .footer-bottom {
        gap: 20px;
    }

    .footer-copyright p {
        font-size: 12px;
        line-height: 1.8;
    }

    .footer-copyright .separator {
        display: none;
    }

    .footer-copyright .mobile-break {
        display: block;
    }
}

@media (min-width: 769px) {
    .footer-copyright .mobile-break {
        display: none;
    }
}

/* Responsive Adjustments - Mobile */
@media (max-width: 768px) {
    .entry-title {
        font-size: 26px;
        text-align: center;
        line-height: 1.3;
    }
    
    .entry-header {
        text-align: center;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    
    article {
        max-width: 100%;
        padding: 0;
    }

    .entry-content {
        font-size: 15px;
        line-height: 1.7;
    }

    .entry-content h2 {
        font-size: 22px;
        margin-top: 25px;
    }

    .entry-content h3 {
        font-size: 20px;
        margin-top: 20px;
    }

    .entry-content h4 {
        font-size: 18px;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-widget-area {
        margin-bottom: 25px;
    }
    
    .search-form {
        flex-direction: column;
        gap: 8px;
    }
    
    .search-field {
        width: 100%;
    }
    
    .search-submit {
        width: 100%;
    }

    .post-thumbnail {
        margin-bottom: 15px;
    }

    .read-more {
        width: 100%;
        text-align: center;
    }

    .page-links {
        text-align: center;
    }
}

/* Responsive Adjustments - Small Mobile */
@media (max-width: 480px) {
    .entry-title {
        font-size: 22px;
    }

    .entry-header {
        padding-bottom: 12px;
        margin-bottom: 15px;
    }

    .entry-content {
        font-size: 14px;
    }

    .entry-content h2 {
        font-size: 20px;
    }

    .entry-content h3 {
        font-size: 18px;
    }

    .entry-content h4 {
        font-size: 16px;
    }

    .entry-content ul,
    .entry-content ol {
        margin-left: 15px;
    }

    .site-info {
        font-size: 12px;
        padding-top: 15px;
    }
}

/* Contact Maps Styles */
.contact-maps-container {
    width: 100%;
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-maps-wrapper {
    width: 100%;
    min-height: 400px;
    border-radius: 8px 8px 0 0;
}

.contact-maps-list {
    display: none;
}

/* Winkels List Styles */
.winkels-list-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 0 0 8px 8px;
}

.winkels-list-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.winkels-list-header h3 {
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.winkels-count {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.winkels-list-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 3), 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .winkels-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.winkel-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.winkel-list-item:hover {
    border-color: #f3920d;
    background: #fff;
    box-shadow: 0 2px 8px rgba(243, 146, 13, 0.2);
    transform: translateY(-2px);
}

.winkel-list-item.active {
    border-color: #f3920d;
    background: #fffef8;
    box-shadow: 0 4px 12px rgba(243, 146, 13, 0.3);
}

.winkel-list-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.winkel-number {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
}

.winkel-list-content {
    flex: 1;
    min-width: 0;
}

.winkel-name {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.winkel-address {
    margin: 0 0 5px 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.winkel-type {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.winkel-list-actions {
    flex-shrink: 0;
}

.winkel-route-btn {
    display: inline-block;
    padding: 8px 16px;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.winkel-route-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #ffffff !important;
}

.winkel-route-btn:visited,
.winkel-route-btn:active,
.winkel-route-btn:focus {
    color: #ffffff !important;
}

.winkel-route-btn-foodlovers {
    background-color: #f3920d !important;
    color: #ffffff !important;
}

.winkel-route-btn-coop {
    background-color: #0066cc !important;
    color: #ffffff !important;
}

.map-info-window {
    padding: 5px;
    max-width: 250px;
}

.map-info-window h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.map-info-window p {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.map-info-window a {
    display: inline-block;
    margin-top: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.map-info-window a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive Contact Maps */
@media (max-width: 768px) {
    .contact-maps-container {
        margin: 30px 0;
        border-radius: 0;
    }
    
    .contact-maps-wrapper {
        min-height: 350px;
        border-radius: 0;
    }
    
    .map-info-window {
        max-width: 200px;
    }
    
    .map-info-window h3 {
        font-size: 14px;
    }
    
    .map-info-window p {
        font-size: 12px;
    }
    
    .winkels-list-container {
        padding: 20px 15px;
    }
    
    .winkels-list-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .winkel-list-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    
    .winkel-list-marker {
        width: 35px;
        height: 35px;
    }
    
    .winkel-number {
        font-size: 14px;
    }
    
    .winkel-list-actions {
        width: 100%;
        margin-top: 10px;
    }
    
    .winkel-route-btn {
        width: 100%;
        text-align: center;
    }
}

