/**
 * PS Shop Info - Banner Styles
 *
 * @author    Energiedin
 * @copyright 2025 Energiedin
 * @version   1.2.0
 */

.ps-shopinfo-banner {
    background-color: #232323;
    color: #ffffff;
    padding: 10px 0;
    font-size: 13px;
    line-height: 1.4;
}

.ps-shopinfo-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.ps-shopinfo-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Icône uploadée (SVG/PNG) */
.ps-shopinfo-icon {
    width: 20px;
    height: 20px;
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Icône par défaut (SVG inline) */
.ps-shopinfo-default-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    flex-shrink: 0;
}

.ps-shopinfo-default-icon svg {
    width: 18px;
    height: 18px;
}

/* Liens et texte */
.ps-shopinfo-item a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.ps-shopinfo-item a:hover {
    opacity: 0.85;
    text-decoration: underline;
}

.ps-shopinfo-item span {
    color: #ffffff;
}

/* Styles spécifiques par type */
.ps-shopinfo-address a:hover,
.ps-shopinfo-hours a:hover {
    color: #a8d8ff;
}

.ps-shopinfo-phone a:hover {
    color: #90EE90;
}

.ps-shopinfo-email a:hover {
    color: #FFD700;
}

/* Responsive - Tablette */
@media (max-width: 991px) {
    .ps-shopinfo-wrapper {
        gap: 15px;
    }
    
    .ps-shopinfo-item {
        font-size: 12px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .ps-shopinfo-banner {
        padding: 12px 0px;
    }

    .ps-shopinfo-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        align-items: flex-start;
    }

    .ps-shopinfo-item {
        font-size: 12px;
        width: 100%;
        justify-content: flex-start;
    }
    
    .ps-shopinfo-banner .ps-shopinfo-icon,
    .ps-shopinfo-banner .ps-shopinfo-item.ps-shopinfo-address .ps-shopinfo-icon {
        width: 15px;
        max-width: 15px;
    }

}
