.wci-contact-icons-wrapper {
    margin-top: 20px;
    text-align: left;
}

.wci-contact-icons-wrapper .wci-title {
    font-weight: 500;
    margin-bottom: 10px;
}

.wci-icons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.wci-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    font-size: 14px;
    transition: opacity 0.2s;
}

.wci-icon:hover {
    opacity: 0.8;
}

.wci-icon-svg {
    display: inline-flex;
    width: 20px;
    height: 20px;
}

.wci-icon-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.wci-label {
    display: inline-block;
}

.wci-label:hover {
    color: #d73028;
}

/* Popup osnovni stil */
#wci-popup {
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wci-popup-inner {
    background: #fff;
    padding: 20px;
    max-width: 420px;
    width: 100%;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.wci-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 20px;
    cursor: pointer;
}

#wci-contact-form p {
    margin-bottom: 12px;
}

#wci-contact-form input,
#wci-contact-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

#wci-contact-form button {
    margin-top: 10px;
    background: #333;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#wci-contact-form button:hover {
    background: #111;
}

#wci-spinner svg {
    animation: spin 1s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}