.widget-eczane {
    background-color: var(--card-bg, #ffffff);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow-color, rgb(0 0 0 / .06));
    border: 1px solid var(--border-color, transparent);
    margin-bottom: 24px;
    max-width: 100%
}

.widget-eczane .eczane-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color, #eee)
}

.widget-eczane .header-icon {
    width: 24px;
    height: 24px;
    background: #059669;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px
}

.widget-eczane .header-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color, #333);
    margin: 0
}

.widget-eczane .pharmacy-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.widget-eczane .pharmacy-item {
    background: var(--bg-color, #f8fffe);
    border: 1px solid #fff0;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.widget-eczane .pharmacy-item:hover {
    background: var(--card-bg, #fff);
    border-color: #059669;
    box-shadow: 0 4px 12px rgb(5 150 105 / .15);
    transform: translateY(-2px)
}

.widget-eczane .pharmacy-name {
    font-size: 16px;
    font-weight: 700;
    color: #047857;
    margin-bottom: 2px
}

.widget-eczane .pharmacy-address {
    font-size: 13px;
    color: var(--text-gray, #555);
    line-height: 1.4
}

.widget-eczane .pharmacy-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid rgb(0 0 0 / .05)
}

.widget-eczane .pharmacy-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #059669;
    text-decoration: none;
    transition: color 0.2s
}

.widget-eczane .pharmacy-phone:hover {
    color: #047857
}

.widget-eczane .pharmacy-actions {
    display: flex;
    gap: 8px
}

.widget-eczane .action-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: var(--card-bg, white);
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px
}

.widget-eczane .action-btn:hover {
    background: #059669;
    color: #fff;
    border-color: #059669
}

.widget-eczane .all-link {
    display: block;
    text-align: center;
    margin-top: 16px;
    padding: 10px;
    background: #ecfdf5;
    color: #047857;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s
}

.widget-eczane .all-link:hover {
    background: #d1fae5
}

@media (max-width:600px) {
    .widget-eczane {
        padding: 16px
    }
}