/**
 * Styles for Connected Shop Pills
 * Displays shop connections as stylish pills/badges
 */

.jxw-connected-shops {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    justify-content: center;
}

.jxw-shop-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px 6px 50px;
    margin-top: 5px;
    color: #000 !important;
    text-decoration: none !important;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.4;
    position: relative;
}

.jxw-shop-pill img {
    width: 40px;
    left: 5px;
    position: absolute;
    border: 1px solid rgb(240, 240, 240);
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.jxw-shop-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #000 !important;
}

.jxw-shop-pill:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Alternative color schemes - add classes to customize */
.jxw-shop-pill.blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.jxw-shop-pill.green {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.jxw-shop-pill.orange {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.jxw-shop-pill.pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Related posts section on shop page */
.jxw-shop-related-posts {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.jxw-shop-related-posts h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 20px;
}

.jxw-shop-related-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jxw-shop-related-posts li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.jxw-shop-related-posts li:last-child {
    border-bottom: none;
}

.jxw-shop-related-posts a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.jxw-shop-related-posts a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .jxw-connected-shops {
        gap: 10px;
    }
    
    .jxw-shop-pill {
        padding: 5px 12px 5px 50px;
        font-size: 13px;
    
    }
    
    .jxw-shop-pill::before {
        font-size: 14px;
        margin-right: 4px;
    }
}

/* Integration with post meta - place pills after post meta */
.entry-meta + .jxw-connected-shops {
    margin-top: 15px;
}

/* Alternative layout - inline with meta */
.jxw-connected-shops.inline {
    display: inline-flex;
    margin: 0 10px;
    padding: 0;
    border: none;
}

.jxw-connected-shops.inline .jxw-shop-pill {
    font-size: 12px;
    padding: 4px 10px;
}


.jxw-connected-shops:before {
    position: absolute;
    content: 'Butikker omtalt i denne artikel';
    font-size: .6rem;
    font-weight: 600;
    text-transform: uppercase;
    background-color: white;
    padding-inline: 10px;
    margin-top: -23px;
}